From 7565e18ffba796d5e6cbe39ae593525a1f29bb63 Mon Sep 17 00:00:00 2001 From: Ruoyu Ying Date: Thu, 14 Mar 2019 22:01:36 +0800 Subject: Policy create, push, update schema for dublin 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 Issue-ID: CLI-141 Signed-off-by: Ruoyu Ying --- .../policy-create-schema-outdated-dublin.yaml | 80 ++++++++++++++++++++++ .../policy/policy-push-schema-outdated-dublin.yaml | 65 ++++++++++++++++++ .../policy-update-schema-outdated-dublin.yaml | 80 ++++++++++++++++++++++ 3 files changed, 225 insertions(+) create mode 100644 products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml create mode 100644 products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml create mode 100644 products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml (limited to 'products/onap-dublin/features/policy') 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 index 00000000..248ac60b --- /dev/null +++ b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml @@ -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 index 00000000..e020d84e --- /dev/null +++ b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml @@ -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 index 00000000..d825de38 --- /dev/null +++ b/products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml @@ -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 -- cgit 1.2.3-korg