From ca7fbf3a8aa4c693ec469934f95a0c39fdbc937d Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Tue, 12 Sep 2017 18:52:23 +0530 Subject: Service create command for SO CLI implementation for service create command. Change-Id: Ifa834e70625c840cdf2278962679b6cbdec116f5 Issue-ID: CLI-15 Signed-off-by: subhash kumar singh --- plugins/pom.xml | 1 + plugins/so/pom.xml | 41 ++++++++++++++++ .../services/service-create-schema-1.1.yaml | 57 ++++++++++++++++++++++ .../services/service-create-sample-1.1.yaml | 8 +++ validation/pom.xml | 5 ++ 5 files changed, 112 insertions(+) create mode 100644 plugins/so/pom.xml create mode 100644 plugins/so/src/main/resources/onap-cli-schema/services/service-create-schema-1.1.yaml create mode 100644 plugins/so/src/test/resources/onap-cli-sample/services/service-create-sample-1.1.yaml 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 @@ msb aai sdc + so 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 @@ + + + + + 4.0.0 + + + org.onap.cli + cli-plugins + 1.0.0-SNAPSHOT + + + cli-plugins-so + cli/plugins/so + jar + + + + org.apache.maven.plugins + maven-dependency-plugin + + + + 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 diff --git a/validation/pom.xml b/validation/pom.xml index dc42e2f7..62b0db5d 100644 --- a/validation/pom.xml +++ b/validation/pom.xml @@ -57,6 +57,11 @@ cli-plugins-aai ${project.version} + + org.onap.cli + cli-plugins-so + ${project.version} +