diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:32:01 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:32:01 +0530 |
commit | 28e63cc0fb7c6f5643c044c2b52b5610fa39d131 (patch) | |
tree | 85842cdfc2c3257d610acaeba89564fc6ac11c0f /plugins/sdc | |
parent | 48e8c1edd353f90da2450464cfff768deed0a509 (diff) |
Add vlm-revert 1.1 command with smaple
CLI-57
Change-Id: I2cc49cbcbb7575edd81d2c1dd47d7d69cb9f2761
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'plugins/sdc')
3 files changed, 61 insertions, 0 deletions
diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-revert-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-revert-schema-1.1.yaml new file mode 100644 index 00000000..c1e15cff --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-revert-schema-1.1.yaml @@ -0,0 +1,31 @@ +open_cli_schema_version: 1.0 +name: vlm-revert +description: Revert Vendor License Model +version: onap-1.1 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: vlm-id + description: Onap VLM ID + type: string + short_option: x + long_option: vlm-id + is_optional: false + - name: vlm-version + description: VLM version + type: string + short_option: y + long_option: vlm-version + is_optional: false +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${vlm-id}/versions/${vlm-version}/actions + method: PUT + body: '{"action": "Undo_Checkout"}' + success_codes: + - 201 + - 200 diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-moco.json b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-moco.json new file mode 100644 index 00000000..692cf4e1 --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-moco.json @@ -0,0 +1,21 @@ +[ {
+ "request" : {
+ "method" : "put",
+ "uri" : "/onboarding-api/v1.0/vendor-license-models/cf2d907d998e44698ce3b4cded5f66a7/versions/0.1/actions",
+ "headers" : {
+ "Authorization" : "Basic Y3MwMDA4OmRlbW8xMjM0NTYh",
+ "X-FromAppId" : "onap-cli",
+ "Accept" : "application/json",
+ "USER_ID" : "cs0008",
+ "X-TransactionId" : "req-16ce9480-a0dc-4628-b49a-bc0f8aca4286",
+ "Content-Type" : "application/json"
+ },
+ "json" : {
+ "action" : "Undo_Checkout"
+ }
+ },
+ "response" : {
+ "status" : 200,
+ "json" : { }
+ }
+} ]
\ No newline at end of file diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-sample.yaml b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-sample.yaml new file mode 100644 index 00000000..e99d610f --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-revert-schema-1.1-sample.yaml @@ -0,0 +1,9 @@ +onap_cli_sample_version: 1.0 +name: vlm-revert +version: onap-1.1 +samples: + sample1: + name: vlm-revert + input: --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 0.1 + moco: vlm-revert-schema-1.1-moco.json + ouput:
\ No newline at end of file |