From c79d208c8f61b48cadc38f15e29b4bf285d21e12 Mon Sep 17 00:00:00 2001 From: Itohan Ukponmwan Date: Wed, 6 Mar 2019 19:49:45 +0000 Subject: Ems schemas for onap-dublin cli Change-Id: Ifa1be32e7ae7a54e012a9b6cfabcb307324f3682 Issue-ID: CLI-130 Signed-off-by: Itohan Ukponmwan --- .../esr/ems/ems-create-schema-dublin.yaml | 92 ++++++++++++++++++++++ .../esr/ems/ems-delete-schema-dublin.yaml | 50 ++++++++++++ .../esr/ems/ems-list-schema-dublin.yaml | 49 ++++++++++++ .../esr/ems/ems-show-schema-dublin.yaml | 78 ++++++++++++++++++ 4 files changed, 269 insertions(+) create mode 100644 products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-create-schema-dublin.yaml create mode 100644 products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-delete-schema-dublin.yaml create mode 100644 products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-list-schema-dublin.yaml create mode 100644 products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-show-schema-dublin.yaml (limited to 'products/onap-dublin/features/aai/src') diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-create-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-create-schema-dublin.yaml new file mode 100644 index 00000000..4f1d8d59 --- /dev/null +++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-create-schema-dublin.yaml @@ -0,0 +1,92 @@ +# 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: ems-create + +description: Register a EMS in Onap + + +info: + product: onap-dublin + service: aai + author: ONAP CLI Team onap-discuss@lists.onap.org + +parameters: + - name: ems-id + description: Onap EMS unique id + type: uuid + short_option: z + long_option: ems-id + is_optional: false + - name: name + description: Onap EMS name + type: string + short_option: b + long_option: name + is_optional: false + - name: type + description: Onap EMS type + type: string + short_option: c + long_option: type + is_optional: false + - name: vendor + description: Onap EMS vendor + type: string + short_option: e + long_option: vendor + is_optional: false + - name: ems-version + description: Onap EMS version + type: string + short_option: q + long_option: ems-version + is_optional: false + - name: url + description: Onap EMS URL + type: string + short_option: g + long_option: url + is_optional: false + - name: username + description: Onap EMS username + type: string + short_option: i + long_option: username + is_optional: false + - name: password + description: Onap EMS password + type: string + short_option: j + long_option: password + is_optional: false + - name: remote-path + description: Onap EMS remote-path + type: string + short_option: x + long_option: remote-path + is_optional: false + +http: + service: + auth: basic + mode: direct + request: + uri: /aai/v13/external-system/esr-ems-list/esr-ems/${ems-id} + method: PUT + body: '{"ems-id":"${ems-id}","passive":true,"remote-path":"${remote-path}","esr-system-info-list":{"esr-system-info":[{"esr-system-info-id":"${ems-id}","system-name":"${name}","type":"${type}","vendor":"${vendor}","version":"${ems-version}","service-url":"${url}","user-name":"${username}","password":"${password}","system-type":"ems","protocal":"","ssl-cacert":"","ssl-insecure":"","ip-address":"","port":"","cloud-domain":"","default-tenant":""}]}}' + success_codes: + - 201 diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-delete-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-delete-schema-dublin.yaml new file mode 100644 index 00000000..8e1cec8e --- /dev/null +++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-delete-schema-dublin.yaml @@ -0,0 +1,50 @@ +# 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: ems-delete + +description: Un-register a EMS in Onap + + +info: + product: onap-dublin + service: aai + author: ONAP CLI Team onap-discuss@lists.onap.org + +parameters: + - name: ems-id + description: Onap EMS unique id + type: uuid + short_option: x + long_option: ems-id + is_optional: false + - name: resource-version + description: Onap EMS resource version + type: string + short_option: y + long_option: resource-version + is_optional: true +http: + service: + auth: basic + mode: direct + request: + uri: /aai/v13/external-system/esr-ems-list/esr-ems/${ems-id}?resource-version=${resource-version} + method: DELETE + + success_codes: + - 204 + - 404 diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-list-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-list-schema-dublin.yaml new file mode 100644 index 00000000..5e256e03 --- /dev/null +++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-list-schema-dublin.yaml @@ -0,0 +1,49 @@ +# 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: ems-list + +description: List the configured ems + +info: + product: onap-dublin + service: aai + author: ONAP CLI Team onap-discuss@lists.onap.org + +results: + direction: landscape + attributes: + - name: ems-id + description: Onap ems id + scope: short + type: string + - name: resource-version + description: Onap ems resource version + scope: short + type: string + +http: + service: + auth: basic + mode: direct + request: + uri: /aai/v13/external-system/esr-ems-list + method: GET + success_codes: + - 200 + result_map: + ems-id: $b{$.esr-ems.[*].ems-id} + resource-version: $b{$.esr-ems.[*].resource-version} diff --git a/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-show-schema-dublin.yaml b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-show-schema-dublin.yaml new file mode 100644 index 00000000..b6d03ebe --- /dev/null +++ b/products/onap-dublin/features/aai/src/main/resources/open-cli-schema/esr/ems/ems-show-schema-dublin.yaml @@ -0,0 +1,78 @@ +# 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: ems-show + +description: Show the details of configured ems + + +info: + product: onap-dublin + service: aai + author: ONAP CLI Team onap-discuss@lists.onap.org + +parameters: + - name: ems-id + description: Onap EMS unique id + type: uuid + short_option: x + long_option: ems-id + is_optional: false + +results: + direction: landscape + attributes: + - name: name + description: Onap ems name + scope: short + type: string + - name: type + description: Onap ems type + scope: short + type: string + - name: vendor + description: Onap ems vendor + scope: short + type: string + - name: version + description: Onap ems version + scope: short + type: string + - name: url + description: Onap ems url + scope: short + type: string + - name: username + description: Onap ems username + scope: long + type: string + +http: + service: + auth: basic + mode: direct + request: + uri: /aai/v13/external-system/esr-ems-list/esr-ems/${ems-id}/esr-system-info-list/esr-system-info/${ems-id} + method: GET + success_codes: + - 200 + result_map: + name: $b{$.system-name} + type: $b{$.type} + vendor: $b{$.vendor} + version: $b{$.version} + url: $b{$.service-url} + username: $b{$.user-name} -- cgit 1.2.3-korg