summaryrefslogtreecommitdiffstats
path: root/products/onap-beijing
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-03-19 17:00:04 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-03-19 17:00:04 +0530
commit93b9067e986a650db2c2ef29303f0a8c9f193a5d (patch)
tree6284d8a008ff0ca9e29f541e57b1b25dbf7b381d /products/onap-beijing
parent3508563446fb3e87d2e11d9d34f8727ece116bd1 (diff)
CLI: vf-module-delete beijing
Change-Id: Ia595e851fc49f3f1525867e669f79954643ca20b Issue-ID: CLI-100 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'products/onap-beijing')
-rw-r--r--products/onap-beijing/features/so/src/main/resources/open-cli-sample/services/vf-module-delete-sample-beijing.yaml22
-rw-r--r--products/onap-beijing/features/so/src/main/resources/open-cli-schema/services/vf-module-delete-schema-beijing.yaml87
2 files changed, 109 insertions, 0 deletions
diff --git a/products/onap-beijing/features/so/src/main/resources/open-cli-sample/services/vf-module-delete-sample-beijing.yaml b/products/onap-beijing/features/so/src/main/resources/open-cli-sample/services/vf-module-delete-sample-beijing.yaml
new file mode 100644
index 00000000..b284142f
--- /dev/null
+++ b/products/onap-beijing/features/so/src/main/resources/open-cli-sample/services/vf-module-delete-sample-beijing.yaml
@@ -0,0 +1,22 @@
+# Copyright 2018 Huawei Technologies Co., Ltd.
+#
+# 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_sample_version: 1.0
+
+name: vf-module-delete
+version: onap-beijing
+samples:
+ sample1:
+ name: delete a vf module
+ input: -h https://locahost:8080 -u InfraPortalClient -p password1$ -s aca51b0a-710d-4155-bc7c-7cef19d9a94e -v aca45a67123-710d-4155-bc7c-7cef19d9a94e -m ccb52b09-710d-4155-bc7c-7cef19d9a94e -l mdt1 -t 88a6ca3ee0394ade9403f075db23167e \ No newline at end of file
diff --git a/products/onap-beijing/features/so/src/main/resources/open-cli-schema/services/vf-module-delete-schema-beijing.yaml b/products/onap-beijing/features/so/src/main/resources/open-cli-schema/services/vf-module-delete-schema-beijing.yaml
new file mode 100644
index 00000000..53f4148b
--- /dev/null
+++ b/products/onap-beijing/features/so/src/main/resources/open-cli-schema/services/vf-module-delete-schema-beijing.yaml
@@ -0,0 +1,87 @@
+# Copyright 2018 Huawei Technologies Co., Ltd.
+#
+# 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: vfmodule-delete
+
+description: delete a VF module (experimental)
+
+info:
+ product: onap-beijing
+ service: so
+ author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: vfmodule-id
+ description: VF module Id
+ type: string
+ short_option: x
+ long_option: vfmodule-id
+ is_optional: false
+ - name: service-id
+ description: unique id for service
+ type: string
+ short_option: j
+ long_option: service-id
+ is_optional: false
+ - name: vf-id
+ description: unique id for related VF
+ type: string
+ short_option: y
+ long_option: vf-id
+ is_optional: false
+ - name: vf-model-invariant-id
+ description: vf model invariant id
+ type: string
+ short_option: k
+ long_option: vf-model-invariant-id
+ is_optional: false
+ - name: vfmodule-name
+ description: vfmodule model name
+ type: string
+ short_option: e
+ long_option: vfmodule-name
+ is_optional: false
+ - name: vfmodule-version
+ description: vf module version
+ type: string
+ short_option: g
+ long_option: vfmodule-version
+ is_optional: false
+ - name: cloud-region
+ description: cloud region identifier
+ type: string
+ short_option: l
+ long_option: cloud-region
+ is_optional: false
+ - name: tenant-id
+ description: openstack tenant id
+ type: string
+ long_option: tenant-id
+ short_option: z
+ is_optional: false
+
+http:
+ service:
+ name: so
+ version: v3
+ auth: basic
+ mode: direct
+ request:
+ uri: /ecomp/mso/infra/serviceInstances/v3/${service-id}/vnfs/${vf-id}/vfModules/${vfmodule-id}
+ method: DELETE
+ body: '{"requestDetails":{"modelInfo":{"modelType":"vfModule","modelInvariantId":"${vf-model-invariant-id}","modelName":"${vfmodule-name}","modelVersion":"${vfmodule-version}"},"cloudConfiguration":{"lcpCloudRegionId":"${cloud-region}","tenantId":"${tenant-id}"},"requestInfo":{"source":"VID"}}}'
+
+ success_codes:
+ - 202 \ No newline at end of file