aboutsummaryrefslogtreecommitdiffstats
path: root/products/onap-elalto
diff options
context:
space:
mode:
authorItohan Ukponmwan <itohan.ukponmwan@intel.com>2019-09-17 17:26:40 +0000
committerItohan Ukponmwan <itohan.ukponmwan@intel.com>2019-09-17 17:26:40 +0000
commit812b3cb79e7b4f0adff8f44b269cdfa679127c90 (patch)
tree1869c17993a82fd609c40726585bdff0656cd3cd /products/onap-elalto
parent91b170c9334feaef47273b51f69c1471171464a4 (diff)
Added Policy commands not moved from dublin
Signed-off-by: Itohan Ukponmwan <itohan.ukponmwan@intel.com> Issue-ID: CLI-224 Change-Id: I18f807b6f64fe266f0bd9a5e677cb535e7b93f1d
Diffstat (limited to 'products/onap-elalto')
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-elalto.yaml80
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-list-outdated-schema-elalto.yaml88
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-elalto.yaml70
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-elalto.yaml71
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-elalto.yaml60
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-create-schema-elalto.yaml59
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-schema-elalto.yaml51
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-with-version-schema-elalto.yaml57
-rw-r--r--products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-elalto.yaml80
9 files changed, 616 insertions, 0 deletions
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-elalto.yaml
new file mode 100644
index 00000000..68a4ca03
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-create-schema-outdated-elalto.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-elalto
+ 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-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-list-outdated-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-list-outdated-schema-elalto.yaml
new file mode 100644
index 00000000..4d607f30
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-list-outdated-schema-elalto.yaml
@@ -0,0 +1,88 @@
+# Copyright 2019 Intel Corporation.
+#
+# 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-list-outdated
+description: List policies
+
+info:
+ product: onap-elalto
+ service: policy
+ author: ONAP HPA Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: policy-name
+ description: ONAP policy name
+ type: string
+ long_option: policy-name
+ short_option: x
+ is_optional: false
+ default_value: .*
+ - name: config-attributes
+ description: Configuration Attributes
+ type: json
+ long_option: config-attributes
+ short_option: A
+ is_optional: true
+ default_value: {}
+
+results:
+ direction: landscape
+ attributes:
+ - name: name
+ description: Policy Name
+ scope: short
+ type: string
+ - name: type
+ description: Policy type
+ scope: short
+ type: string
+ - name: config
+ description: Policy configuration
+ scope: short
+ type: json
+ - name: version
+ description: Policy version
+ scope: long
+ type: string
+ - name: rules
+ description: Policy rules
+ scope: long
+ type: json
+http:
+ service:
+ name: policy
+ version: v1.0
+ auth: basic
+ mode: direct
+ request:
+ uri: /pdp/api/getConfig
+ method: POST
+ body: '{"configAttributes": "${config-attributes}", "policyName": "${policy-name}"}'
+ headers:
+ Accept: application/json
+ ClientAuth: cHl0aG9uOnRlc3Q=
+ Environment: TEST
+
+
+ success_codes:
+ - 200
+
+ result_map:
+ name: $b{$.[*].policyName}
+ type: $b{$.[*].policyType}
+ version: $b{$.[*].policyVersion}
+ config: $b{$.[*].config}
+ rules: $b{$.[*].matchingConditions}
+
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-elalto.yaml
new file mode 100644
index 00000000..5fa9bb71
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pap-delete-schema-elalto.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-elalto
+ 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-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-elalto.yaml
new file mode 100644
index 00000000..5b8f3905
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-pdp-delete-schema-elalto.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-elalto
+ 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
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-elalto.yaml
new file mode 100644
index 00000000..c186c242
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-push-schema-outdated-elalto.yaml
@@ -0,0 +1,60 @@
+# 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-elalto
+ 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}"}'
+
+ success_codes:
+ - 200
+ - 201
+
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-create-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-create-schema-elalto.yaml
new file mode 100644
index 00000000..f84e45b4
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-create-schema-elalto.yaml
@@ -0,0 +1,59 @@
+# 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-type-create
+description: Create a policy type
+
+info:
+ product: onap-elalto
+ service: policy
+ author: ONAP HPA Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: policy-type-body
+ description: Configuration of the new policy type
+ type: json
+ short_option: x
+ long_option: policy-type-body
+ is_optional: false
+
+results:
+ direction: landscape
+ attributes:
+ - name: Response
+ type: string
+ description: Response message
+ scope: short
+
+http:
+ service:
+ name: policy
+ version: v1.0
+ auth: basic
+ mode: direct
+ request:
+ uri: /policy/api/v1/policytypes
+ method: POST
+ context:
+ remove_empty_node: true
+ body: ${policy-type-body}
+ headers:
+ Environment: TEST
+ ClientAuth: cHl0aG9uOnRlc3Q=
+
+ success_codes:
+ - 201
+ result_map:
+ Response: $b
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-schema-elalto.yaml
new file mode 100644
index 00000000..aeaf295f
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-schema-elalto.yaml
@@ -0,0 +1,51 @@
+# 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-type
+description: Delete all versions of a policy type
+
+info:
+ product: onap-elalto
+ service: policy
+ author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: policy-type-id
+ description: Policy type ID
+ type: string
+ short_option: x
+ long_option: policy-type-id
+ is_optional: false
+
+http:
+ service:
+ name: policy
+ version: v1.0
+ auth: basic
+ mode: direct
+ request:
+ uri: /policy/api/v1/policytypes/${policy-type-id}
+ method: DELETE
+ context:
+ remove_empty_node: true
+ headers:
+ Content-Type: application/json
+ Accept: application/json
+ Environment: TEST
+
+ success_codes:
+ - 404
+ - 204
+
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-with-version-schema-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-with-version-schema-elalto.yaml
new file mode 100644
index 00000000..31a0b3f2
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-type-delete-with-version-schema-elalto.yaml
@@ -0,0 +1,57 @@
+# 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-type-with-version
+description: Delete one version of a policy type
+
+info:
+ product: onap-elalto
+ service: policy
+ author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: policy-type-id
+ description: Policy type ID
+ type: string
+ short_option: x
+ long_option: policy-type-id
+ is_optional: false
+ - name: version-id
+ description: Policy type version ID
+ type: string
+ short_option: y
+ long_option: version-id
+ is_optional: false
+
+http:
+ service:
+ name: policy
+ version: v1.0
+ auth: basic
+ mode: direct
+ request:
+ uri: /policy/api/v1/policytypes/${policy-type-id}/versions/${version-id}
+ method: DELETE
+ context:
+ remove_empty_node: true
+ headers:
+ Content-Type: application/json
+ Accept: application/json
+ Environment: TEST
+
+ success_codes:
+ - 404
+ - 204
+
diff --git a/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-elalto.yaml b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-elalto.yaml
new file mode 100644
index 00000000..becf84a3
--- /dev/null
+++ b/products/onap-elalto/features/policy/src/main/resources/open-cli-schema/policy/policy-update-schema-outdated-elalto.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-elalto
+ 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