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/src/main | |
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/src/main')
-rw-r--r-- | plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-revert-schema-1.1.yaml | 31 |
1 files changed, 31 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 |