Policy create, push, update schema for dublin 10/82210/3
authorRuoyu Ying <ruoyu.ying@intel.com>
Thu, 14 Mar 2019 14:01:36 +0000 (22:01 +0800)
committerRuoyu Ying <ruoyu.ying@intel.com>
Thu, 14 Mar 2019 14:14:17 +0000 (22:14 +0800)
Contains CLIs for policy creation, uploading, updating.
Note that this is an outdated part, however it is still supported in Dublin.

Change-Id: I96851ee3740aa111fc4ce3522c2cad062880e5be
Signed-off-by: Ruoyu Ying <ruoyu.ying@intel.com>
Issue-ID: CLI-141
Signed-off-by: Ruoyu Ying <ruoyu.ying@intel.com>
products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml [new file with mode: 0644]
products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml [new file with mode: 0644]
products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml [new file with mode: 0644]

diff --git a/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml
new file mode 100644 (file)
index 0000000..248ac60
--- /dev/null
@@ -0,0 +1,80 @@
+# Copyright © Intel Corporation 2019
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+open_cli_schema_version: 1.0
+name: policy-create-outdated
+description: Create a policy in PAP
+
+info:
+  product: onap-dublin
+  service: policy
+  author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+  - name: policy-name
+    description: Onap policy Name
+    type: string
+    short_option: x
+    long_option: policy-name
+    is_optional: false
+  - name: policy-config-type
+    description: Policy config type
+    type: string
+    long_option: policy--config-type
+    short_option: t
+    is_optional: false
+  - name: policy-scope
+    description: Policy scope
+    type: string
+    long_option: policy-scope
+    short_option: s
+    is_optional: false
+  - name: onap-name
+    description: Onap name
+    type: string
+    long_option: onap-name
+    short_option: o
+    is_optional: false
+  - name: policy-config-body
+    description: Policy config body
+    type: string
+    long_option: policy-config-body
+    short_option: b
+    is_optional: false
+
+http:
+  service:
+    name: policy
+    version: v1.0
+    auth: basic
+    mode: direct
+  request:
+    uri: /pdp/api/createPolicy
+    method: PUT
+    context:
+      remove_empty_node: true
+    body: '{"policyName": "${policy-name}",
+            "policyConfigType": "${policy-config-type}",
+            "policyScope": "${policy-scope}",
+            "onapName": "${onap-name}",
+            "configBody": "${policy-config-body}"}'
+    headers:
+      Content-Type: application/json
+      Accept: text/plain
+      Environment: TEST
+      ClientAuth: cHl0aG9uOnRlc3Q=
+
+  success_codes:
+    - 200
+    - 201
diff --git a/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml
new file mode 100644 (file)
index 0000000..e020d84
--- /dev/null
@@ -0,0 +1,65 @@
+# Copyright © Intel Corporation 2019
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+open_cli_schema_version: 1.0
+name: policy-push-outdated
+description: Push a policy to PDP
+
+info:
+  product: onap-dublin
+  service: policy
+  author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+  - name: policy-name
+    description: Onap policy Name
+    type: string
+    short_option: x
+    long_option: policy-name
+    is_optional: false
+  - name: policy-type
+    description: Policy type
+    type: string
+    long_option: policy-type
+    short_option: b
+    is_optional: false
+  - name: policy-group
+    description: Policy pdp group
+    type: string
+    long_option: policy-group
+    short_option: c
+    is_optional: false
+
+http:
+  service:
+    name: policy
+    version: v1.0
+    auth: basic
+    mode: direct
+  request:
+    uri: /pdp/api/pushPolicy
+    method: PUT
+    context:
+      remove_empty_node: true
+    body: '{"policyName": "${policy-name}", "policyType": "${policy-type}", "pdpGroup": "${policy-group}"}'
+    headers:
+      Content-Type: applicaton/json
+      Accept: text/plain
+      Environment: TEST
+      ClientAuth: cHl0aG9uOnRlc3Q=
+
+ success_codes:
+    - 200
+    - 201
+
diff --git a/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml
new file mode 100644 (file)
index 0000000..d825de3
--- /dev/null
@@ -0,0 +1,80 @@
+# Copyright © Intel Corporation 2019
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+open_cli_schema_version: 1.0
+name: policy-update-outdated
+description: Update a policy in PAP
+
+info:
+  product: onap-dublin
+  service: policy
+  author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+  - name: policy-name
+    description: Onap policy Name
+    type: string
+    short_option: x
+    long_option: policy-name
+    is_optional: false
+  - name: policy-config-type
+    description: Policy config type
+    type: string
+    long_option: policy--config-type
+    short_option: t
+    is_optional: false
+  - name: policy-scope
+    description: Policy scope
+    type: string
+    long_option: policy-scope
+    short_option: s
+    is_optional: false
+  - name: onap-name
+    description: Onap name
+    type: string
+    long_option: onap-name
+    short_option: o
+    is_optional: false
+  - name: policy-config-body
+    description: Policy config body
+    type: string
+    long_option: policy-config-body
+    short_option: b
+    is_optional: false
+
+http:
+  service:
+    name: policy
+    version: v1.0
+    auth: basic
+    mode: direct
+  request:
+    uri: /pdp/api/updatePolicy
+    method: PUT
+    context:
+      remove_empty_node: true
+    body: '{"policyName": "${policy-name}",
+            "policyConfigType": "${policy-config-type}",
+            "policyScope": "${policy-scope}",
+            "onapName": "${onap-name}",
+            "configBody": "${policy-config-body}"}'
+    headers:
+      Content-Type: application/json
+      Accept: text/plain
+      Environment: TEST
+      ClientAuth: cHl0aG9uOnRlc3Q=
+
+  success_codes:
+    - 200
+    - 201