aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuoyu Ying <ruoyu.ying@intel.com>2019-03-14 19:21:32 +0800
committerRuoyu Ying <ruoyu.ying@intel.com>2019-03-14 22:57:19 +0800
commit3529575487a6bcb99909c257fb0cd309af7858da (patch)
treede0f8117fd7eba2a86a4bbc2cbe99876fcd514ef
parent65d9d65c6e3bf9f4f5590a3ba3d9234b63c04596 (diff)
Policy delete schema for onap-dublin product
Change-Id: Id73e3e6faae60883f343a607677b2860d97620bf Signed-off-by: Ruoyu Ying <ruoyu.ying@intel.com> Issue-ID: CLI-140
-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