From: Kanagaraj Manickam k00365106 Date: Mon, 30 Oct 2017 09:02:01 +0000 (+0530) Subject: Add vlm-revert 1.1 command with smaple X-Git-Tag: 1.0.0-Amsterdam~57 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F51%2F21251%2F1;p=cli.git Add vlm-revert 1.1 command with smaple CLI-57 Change-Id: I2cc49cbcbb7575edd81d2c1dd47d7d69cb9f2761 Signed-off-by: Kanagaraj Manickam k00365106 --- 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