diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:12:09 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:12:09 +0530 |
commit | c15c9f535a802bc218de2cfaaf96eabc220b11b0 (patch) | |
tree | dbae6603822f95d3a6de9ca530b11d60e2538fcd /plugins | |
parent | a3e3edada8adcf4e01f4b33509aacc38c63e613a (diff) |
Add vlm-checkin for 1.1
CLI-57
Change-Id: I9cf6adbabd4012355f0cb68808d4869848524f84
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'plugins')
3 files changed, 61 insertions, 0 deletions
diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-checkin-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-checkin-schema-1.1.yaml new file mode 100644 index 00000000..77822554 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-checkin-schema-1.1.yaml @@ -0,0 +1,31 @@ +open_cli_schema_version: 1.0 +name: vlm-checkin +description: Checkin 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": "Checkin"}' + success_codes: + - 201 + - 200 diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-schema-1.1-moco.json b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-schema-1.1-moco.json new file mode 100644 index 00000000..2493e9fd --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-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-605ac4af-0fda-49c3-8ac4-850d008cd485", + "Content-Type" : "application/json" + }, + "json" : { + "action" : "Checkin" + } + }, + "response" : { + "status" : 200, + "json" : { } + } +} ]
\ No newline at end of file diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-schema-1.1-sample.yaml b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-schema-1.1-sample.yaml new file mode 100644 index 00000000..28ff5a47 --- /dev/null +++ b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-checkin-schema-1.1-sample.yaml @@ -0,0 +1,9 @@ +onap_cli_sample_version: 1.0 +name: vlm-checkin +version: onap-1.1 +samples: + sample1: + name: vlm-checkin + input: --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 0.1 + moco: vlm-checkin-schema-1.1-moco.json + ouput:
\ No newline at end of file |