diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-09-12 18:52:23 +0530 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-09-21 19:43:23 +0530 |
commit | ca7fbf3a8aa4c693ec469934f95a0c39fdbc937d (patch) | |
tree | f686b4aba5535d3a56af9711cb1362be8bf4d34f /plugins | |
parent | 96534c42dc6503767d1dae66a1a05ccbfc10662f (diff) |
Service create command for SO
CLI implementation for service create command.
Change-Id: Ifa834e70625c840cdf2278962679b6cbdec116f5
Issue-ID: CLI-15
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'plugins')
4 files changed, 107 insertions, 0 deletions
diff --git a/plugins/pom.xml b/plugins/pom.xml index acd24803..0ef6c302 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -47,6 +47,7 @@ <module>msb</module> <module>aai</module> <module>sdc</module> + <module>so</module> </modules> <build> <pluginManagement> diff --git a/plugins/so/pom.xml b/plugins/so/pom.xml new file mode 100644 index 00000000..2318f398 --- /dev/null +++ b/plugins/so/pom.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2017 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. + --> + +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 + http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.onap.cli</groupId> + <artifactId>cli-plugins</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + + <artifactId>cli-plugins-so</artifactId> + <name>cli/plugins/so</name> + <packaging>jar</packaging> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + </plugin> + </plugins> + </build> +</project> diff --git a/plugins/so/src/main/resources/onap-cli-schema/services/service-create-schema-1.1.yaml b/plugins/so/src/main/resources/onap-cli-schema/services/service-create-schema-1.1.yaml new file mode 100644 index 00000000..03d57582 --- /dev/null +++ b/plugins/so/src/main/resources/onap-cli-schema/services/service-create-schema-1.1.yaml @@ -0,0 +1,57 @@ +open_cli_schema_version: 1.0 +name: service-create +description: Create a service instance using MSO +version: onap-1.1 +service: + name: mso + version: v2 + auth: basic + mode: direct + +parameters: + - name: global-subscriber-id + description: unique id for customer + type: string + short_option: c + long_option: global-subscriber-id + is_optional: false + - name: subscriber-name + description: subscriber name + type: string + short_option: b + long_option: subscriber-name + is_optional: true + - name: instance-name + description: service instance name + type: string + short_option: i + long_option: instance-name + is_optional: false + - name: supress-rollback + description: rollback changes if instantiation fails. + type: bool + short_option: r + long_option: supress-rollback + is_optional: true + +results: + direction: portrait + attribute: + - name: instance-id + description: instance id for the created service. + type: string + scope: short + + +http: + request: + uri: ecomp/mso/infra/serviceInstances/v2 + method: PUT + body: '{"requestDetails": {"modelInfo": {"modelType": "service","modelInvariantId": "ff3514e3-5a33-55df-13ab-12abad84e7ff","modelNameVersionId": "fe6985cd-ea33-3346-ac12-ab121484a3fe","modelName": "Test","modelVersion": "1.0"},"subscriberInfo": {"globalSubscriberId": "${global-subscriber-id}","subscriberName": "${subscriber-name}"},"requestInfo": {"instanceName": "${instance-name}","source": "VID","suppressRollback": "${supress-rollback}"},"requestParameters": {"subscriptionServiceType": "MOG"}}}' + + success_codes: + - 202 + result_mpa: + instance-id: $b{$.instance-id} + sample_response: + body: '{"instance-id":"234567AB"}' diff --git a/plugins/so/src/test/resources/onap-cli-sample/services/service-create-sample-1.1.yaml b/plugins/so/src/test/resources/onap-cli-sample/services/service-create-sample-1.1.yaml new file mode 100644 index 00000000..c52d8000 --- /dev/null +++ b/plugins/so/src/test/resources/onap-cli-sample/services/service-create-sample-1.1.yaml @@ -0,0 +1,8 @@ +onap_cli_sample_version: 1.0 + +name: service-create +version: onap-1.1 +samples: + sample1: + name: Create a service instance + input: -h https://locahost:8080 -u InfraPortalClient -p password1$ -c customer -s subscriber -i instance -r
\ No newline at end of file |