From 3529575487a6bcb99909c257fb0cd309af7858da Mon Sep 17 00:00:00 2001 From: Ruoyu Ying Date: Thu, 14 Mar 2019 19:21:32 +0800 Subject: Policy delete schema for onap-dublin product Change-Id: Id73e3e6faae60883f343a607677b2860d97620bf Signed-off-by: Ruoyu Ying Issue-ID: CLI-140 --- .../policy/policy-pap-delete-schema-dublin.yaml | 70 +++++++++++++++++++++ .../policy/policy-pdp-delete-schema-dublin.yaml | 71 ++++++++++++++++++++++ 2 files changed, 141 insertions(+) create mode 100644 products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-dublin.yaml create mode 100644 products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-dublin.yaml (limited to 'products/onap-dublin/features/policy/src') 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 -- cgit 1.2.3-korg