Policy delete schema for onap-dublin product 09/82209/4
authorRuoyu Ying <ruoyu.ying@intel.com>
Thu, 14 Mar 2019 11:21:32 +0000 (19:21 +0800)
committerRuoyu Ying <ruoyu.ying@intel.com>
Thu, 14 Mar 2019 14:57:19 +0000 (22:57 +0800)
Change-Id: Id73e3e6faae60883f343a607677b2860d97620bf
Signed-off-by: Ruoyu Ying <ruoyu.ying@intel.com>
Issue-ID: CLI-140

products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml [new file with mode: 0644]
products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml [new file with mode: 0644]

diff --git a/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml
new file mode 100644 (file)
index 0000000..f3c6c44
--- /dev/null
@@ -0,0 +1,70 @@
+# 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-delete-pap
+description: Delete config 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-component
+    description: Component of the policy
+    type: string
+    short_option: y
+    long_option: policy-component
+    is_optional: false
+  - name: policy-type
+    description: Policy config type
+    type: string
+    long_option: policy-type
+    short_option: b
+    is_optional: false
+  - name: delete-condition
+    description: Delete condition
+    type: string
+    long_option: delete-condition
+    short_option: c
+    is_optional: false
+
+http:
+  service:
+    name: policy
+    version: v1.0
+    auth: basic
+    mode: direct
+  request:
+    uri: /pdp/api/deletePolicy
+    method: DELETE
+    context:
+      remove_empty_node: true
+    body: '{"policyName": "${policy-name}","policyComponent": "${policy-component}","policyType":"${policy-type}","deleteCondition":"${delete-condition}"}'
+    headers:
+      Content-Type: application/json
+      Accept: application/json
+      Environment: TEST
+      ClientAuth: cHl0aG9uOnRlc3Q=
+  success_codes:
+    - 200
+    - 202
+    - 204
diff --git a/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml
new file mode 100644 (file)
index 0000000..117cde5
--- /dev/null
@@ -0,0 +1,71 @@
+# 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-delete-pdp
+description: Delete config policy in 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-component
+    description: Component of the policy
+    type: string
+    short_option: y
+    long_option: policy-component
+    is_optional: false
+  - name: policy-type
+    description: Policy config type
+    type: string
+    long_option: policy-type
+    short_option: b
+    is_optional: false
+  - name: pdp-group
+    description: PDP group name
+    type: string
+    long_option: pdp-group
+    short_option: g
+    is_optional: false
+
+http:
+  service:
+    name: policy
+    version: v1.0
+    auth: basic
+    mode: direct
+  request:
+    uri: /pdp/api/deletePolicy
+    method: DELETE
+    context:
+      remove_empty_node: true
+    body: '{"policyName": "${policy-name}","policyComponent": "${policy-component}","policyType":"${policy-type}","pdpGroup":"${pdp-group}"}'
+    headers:
+      Content-Type: application/json
+      Accept: application/json
+      Environment: TEST
+      ClientAuth: cHl0aG9uOnRlc3Q=
+
+  success_codes:
+    - 200
+    - 202
+    - 204