aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2017-11-02 14:18:38 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2017-11-02 14:18:38 +0530
commit1997f7cd489ebc16e384e9699904a85093fd36fc (patch)
treeaa572f0f25d9e590924898bf601d43c40b51cc3c /plugins
parent2843fc199f3a18b735b8f43773ae4ed3448a9bf7 (diff)
Checkin service model in SDC
CLI-57 Change-Id: Ic84c6b5194594c9c4869dd1aac9ee17de39502a6 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sdc/src/main/resources/onap-cli-schema/service-model/service-model-checkin-schema-1.1.yaml26
-rw-r--r--plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-moco.json48
-rw-r--r--plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-sample.yaml9
3 files changed, 83 insertions, 0 deletions
diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/service-model/service-model-checkin-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/service-model/service-model-checkin-schema-1.1.yaml
new file mode 100644
index 00000000..d5900fec
--- /dev/null
+++ b/plugins/sdc/src/main/resources/onap-cli-schema/service-model/service-model-checkin-schema-1.1.yaml
@@ -0,0 +1,26 @@
+open_cli_schema_version: 1.0
+name: service-model-checkin
+description: Checkin Service model in SDC
+version: onap-1.1
+service:
+ name: sdc
+ version: v1.0
+ auth: basic
+ mode: direct
+
+parameters:
+ - name: service-model-id
+ description: Service model ID
+ type: string
+ long_option: service-model-id
+ short_option: b
+ is_optional: true
+
+http:
+ request:
+ uri: /sdc2/rest/v1/catalog/services/${service-model-id}/lifecycleState/checkin
+ method: POST
+ body: '{"userRemarks": "Checked in via CLI"}'
+ success_codes:
+ - 200
+
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-moco.json b/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-moco.json
new file mode 100644
index 00000000..b6979a55
--- /dev/null
+++ b/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-moco.json
@@ -0,0 +1,48 @@
+[ {
+ "request" : {
+ "method" : "post",
+ "uri" : "/sdc2/rest/v1/catalog/services/7b427dbf-685b-4ba9-8838-a9b3b3c8e584/lifecycleState/checkin",
+ "headers" : {
+ "Authorization" : "Basic Y3MwMDA4OmRlbW8xMjM0NTYh",
+ "X-FromAppId" : "onap-cli",
+ "Accept" : "application/json",
+ "USER_ID" : "cs0008",
+ "X-TransactionId" : "req-7fce4b26-bae7-455f-b3d6-ebb01cca72b7",
+ "Content-Type" : "application/json"
+ },
+ "json" : {
+ "userRemarks" : "Checked in via CLI"
+ }
+ },
+ "response" : {
+ "status" : 200,
+ "json" : {
+ "uniqueId" : "7b427dbf-685b-4ba9-8838-a9b3b3c8e584",
+ "name" : "kanag-cli-VLB",
+ "version" : "0.1",
+ "isHighestVersion" : true,
+ "creationDate" : 1509606274213,
+ "lastUpdateDate" : 1509606402636,
+ "description" : "VLB created from CLI",
+ "lifecycleState" : "NOT_CERTIFIED_CHECKIN",
+ "tags" : [ "CLI", "kanag-cli-VLB" ],
+ "icon" : "defaulticon",
+ "normalizedName" : "kanagclivlb",
+ "systemName" : "KanagCliVlb",
+ "contactId" : "cs0008",
+ "projectCode" : "kanag-123456",
+ "invariantUUID" : "c4425f23-fc9a-4cbf-a3b7-12e69054806b",
+ "componentType" : "SERVICE",
+ "creatorUserId" : "cs0008",
+ "creatorFullName" : "Carlos Santana",
+ "lastUpdaterUserId" : "cs0008",
+ "lastUpdaterFullName" : "Carlos Santana",
+ "distributionStatus" : "DISTRIBUTION_NOT_APPROVED",
+ "ecompGeneratedNaming" : true,
+ "namingPolicy" : "",
+ "serviceType" : "",
+ "serviceRole" : "",
+ "uuid" : "660c524c-176b-43b1-a85b-1ef18011ca85"
+ }
+ }
+} ] \ No newline at end of file
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-sample.yaml b/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-sample.yaml
new file mode 100644
index 00000000..f9991df4
--- /dev/null
+++ b/plugins/sdc/src/test/resources/onap-cli-sample/service-model/service-model-checkin-schema-1.1-sample.yaml
@@ -0,0 +1,9 @@
+onap_cli_sample_version: 1.0
+name: service-model-checkin
+version: onap-1.1
+samples:
+ sample1:
+ name: service-model-checkin
+ input: --service-model-id 7b427dbf-685b-4ba9-8838-a9b3b3c8e584
+ moco: service-model-checkin-schema-1.1-moco.json
+ ouput: \ No newline at end of file