aboutsummaryrefslogtreecommitdiffstats
path: root/products/onap-dublin
diff options
context:
space:
mode:
authorKanagaraj Manickam <kanagaraj.manickam@huawei.com>2019-03-14 06:52:32 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-14 06:52:32 +0000
commit0fb7edb4f2a496b0de6a2b41675362d5c30ebc7f (patch)
tree2a62835a53389fd407252b1e4fdb341f3ac89704 /products/onap-dublin
parent5b6d0448560525a7f5c419b57f3d20c9870f1b7f (diff)
parent7565e18ffba796d5e6cbe39ae593525a1f29bb63 (diff)
Merge "Policy create, push, update schema for dublin"
Diffstat (limited to 'products/onap-dublin')
-rw-r--r--products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-dublin.yaml80
-rw-r--r--products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-dublin.yaml65
-rw-r--r--products/onap-dublin/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-dublin.yaml80
3 files changed, 225 insertions, 0 deletions
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