aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKanagaraj Manickam <kanagaraj.manickam@huawei.com>2019-03-14 06:53:58 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-14 06:53:58 +0000
commit7bdf1ffcec130d6e0f76cd4b69919f7fdc6b805f (patch)
tree908cf4fb33ab843335be5d12c4c66c6939a7d80b
parent0fb7edb4f2a496b0de6a2b41675362d5c30ebc7f (diff)
parent3529575487a6bcb99909c257fb0cd309af7858da (diff)
Merge "Policy delete schema for onap-dublin product"
-rw-r--r--products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml70
-rw-r--r--products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml71
2 files changed, 141 insertions, 0 deletions
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
index 00000000..f3c6c44a
--- /dev/null
+++ b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml
@@ -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
index 00000000..117cde54
--- /dev/null
+++ b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml
@@ -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