diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:07:59 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-30 14:07:59 +0530 |
commit | c40999cd797e8aaa2a08b86bf951507cebe0f0ae (patch) | |
tree | 4e6c9ede9c2809ae8b89250080901157282a73bc /plugins/sdc/src/main/resources/onap-cli-schema/vlm | |
parent | bb854b4b1ee71c9a3bbe20a587e3031c31a44730 (diff) |
Add vlm-create command for 1.1 with samples
CLI-57
Change-Id: I5a4475890db5b81fb15a32977f1ff1659c22a062
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'plugins/sdc/src/main/resources/onap-cli-schema/vlm')
7 files changed, 365 insertions, 0 deletions
diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-create-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-create-schema.yaml new file mode 100644 index 00000000..db0af2b6 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-create-schema.yaml @@ -0,0 +1,85 @@ +open_cli_schema_version: 1.0 +name: ep-create +description: Create Entitlement Pool +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: ep-name + description: Entitlement Pool name + type: string + short_option: x + long_option: ep-name + is_optional: false + - name: license-model-id + description: License Model ID + type: string + short_option: y + long_option: license-model-id + is_optional: false + - name: ep-description + description: Description for Entitlement Pool + type: string + short_option: z + long_option: ep-description + is_optional: false + - name: threshold-value + description: threshold + type: string + short_option: q + long_option: threshold-value + is_optional: false + - name: threshold-unit + description: threshold + type: string + short_option: b + long_option: threshold-unit + is_optional: false + - name: entitlement-metric + description: Entitlement Metric + type: string + short_option: c + long_option: entitlement-metric + is_optional: false + - name: aggregation-function + description: Aggregation Function + type: string + short_option: e + long_option: aggregation-function + is_optional: false + - name: operational-scope + description: Operational Scope + type: string + short_option: g + long_option: operational-scope + is_optional: false + - name: reference-number + description: Reference Number + type: string + short_option: k + long_option: reference-number + is_optional: false + + +results: + direction: portrait + attributes: + - name: ID + description: Entitlement Pool ID + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${license-model-id}/entitlement-pools + method: POST + body: '{"name": "${ep-name}", "description": "${ep-description}", "thresholdValue": "${threshold-value}", "thresholdUnits": "${threshold-unit}", "entitlementMetric":{"choice": "${entitlement-metric}","other": ""}, "increments": "robot", "aggregationFunction":{"choice": "${aggregation-function}","other": ""}, "operationalScope":{"choices":["${operational-scope}"], "other":""},"time":{"choice": "Hour", "other":""}, "manufacturerReferenceNumber":"${reference-number}"}' + success_codes: + - 200 + result_map: + ID: $b{$.value} + sample_response: + body: '{"value":"2DEB6CB4B082415BB7A697C9CD1273BA"}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-show-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-show-schema.yaml new file mode 100644 index 00000000..93968407 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-entitlement-pool-show-schema.yaml @@ -0,0 +1,51 @@ +open_cli_schema_version: 1.0 +name: ep-show +description: Details of the Entitlement Pool +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: license-model-id + description: Onap License Model ID + type: string + short_option: x + long_option: license-model-id + is_optional: false + - name: pool-id + description: Onap Entitlement Pool ID + type: string + short_option: y + long_option: pool-id + is_optional: false + +results: + direction: landscape + attributes: + - name: name + description: Entitlement Pool Name + scope: short + type: string + - name: ID + description: Entitlement Pool ID + scope: short + type: string + - name: description + description: Description for the Entitlement Pool + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${license-model-id}/entitlement-pools/${pool-id} + method: GET + success_codes: + - 200 + result_map: + name: $b{$.name} + ID: $b{$.id} + description: $b{$.description} + sample_response: + body: '{"name":"demo-group","description":"","type":"Universal","operationalScope":{"choices":["Tenant"]},"id":"FF87C2483B854B5BA5F96751BF251F46","referencingFeatureGroups":[]}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-create-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-create-schema.yaml new file mode 100644 index 00000000..bd9b8a23 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-create-schema.yaml @@ -0,0 +1,48 @@ +open_cli_schema_version: 1.0 +name: license-group-create +description: Create License Group +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: group-name + description: group name + type: string + short_option: x + long_option: group-name + is_optional: false + - name: license-model-id + description: License Model ID + type: string + short_option: y + long_option: license-model-id + is_optional: false + - name: license-group-description + description: Description for License Group + type: string + short_option: z + long_option: license-group-description + is_optional: true + +results: + direction: portrait + attributes: + - name: ID + description: License Group ID + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${license-model-id}/license-key-groups + method: POST + body: '{"name": "${group-name}", "description": "${license-group-description}", "operationalScope": {"choices": ["Tenant"],"other":""},"type": "Universal"}' + success_codes: + - 200 + result_map: + ID: $b{$.value} + sample_response: + body: '{"value":"2DEB6CB4B082415BB7A697C9CD1273BA"}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-show-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-show-schema.yaml new file mode 100644 index 00000000..3b93d9e2 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-group-show-schema.yaml @@ -0,0 +1,51 @@ +open_cli_schema_version: 1.0 +name: license-group-show +description: Details of the License Group +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: license-model-id + description: Onap License Model ID + type: string + short_option: x + long_option: license-model-id + is_optional: false + - name: license-group-id + description: Onap License Group ID + type: string + short_option: y + long_option: license-group-id + is_optional: false + +results: + direction: landscape + attributes: + - name: name + description: License Group Name + scope: short + type: string + - name: ID + description: License Group ID + scope: short + type: string + - name: description + description: Description for the License Group + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${license-model-id}/license-key-groups/${license-group-id} + method: GET + success_codes: + - 200 + result_map: + name: $b{$.name} + ID: $b{$.id} + description: $b{$.description} + sample_response: + body: '{"name":"demo-group","description":"","type":"Universal","operationalScope":{"choices":["Tenant"]},"id":"FF87C2483B854B5BA5F96751BF251F46","referencingFeatureGroups":[]}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-create-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-create-schema.yaml new file mode 100644 index 00000000..58a8681a --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-create-schema.yaml @@ -0,0 +1,41 @@ +open_cli_schema_version: 1.0 +name: license-model-create +description: Create License Model +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: vendor-name + description: vendor name + type: string + short_option: x + long_option: vendor-name + is_optional: false + - name: license-model-description + description: Description for License Model + type: string + short_option: y + long_option: license-model-description + is_optional: true +results: + direction: portrait + attributes: + - name: ID + description: License Model ID + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models + method: POST + body: '{"vendorName": "${vendor-name}", "description": "${license-model-description}", "iconRef": "icon"}' + success_codes: + - 200 + result_map: + ID: $b{$.value} + sample_response: + body: '{"value":"2DEB6CB4B082415BB7A697C9CD1273BA"}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-show-schema.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-show-schema.yaml new file mode 100644 index 00000000..52803f7f --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/license-model-show-schema.yaml @@ -0,0 +1,50 @@ +open_cli_schema_version: 1.0 +name: license-model-show +description: Details of the License Model +version: onap-1.0 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: license-model-id + description: Onap License Model ID + type: string + short_option: x + long_option: license-model-id + is_optional: false + +results: + direction: landscape + attributes: + - name: name + description: License Model Name + scope: short + type: string + - name: ID + description: License Model ID + scope: short + type: string + - name: description + description: Description for the License Model + scope: short + type: string + - name: status + description: Status of the License Model + scope: short + type: string +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models/${license-model-id} + method: GET + success_codes: + - 200 + result_map: + name: $b{$.vendorName} + ID: $b{$.id} + description: $b{$.description} + status: $b{$.status} + sample_response: + body: '{"vendorName": "5aa8a88c","description": "vendor license model","iconRef": "icon","id": "109F0F948B974D998D89893A1BD39D4A","version": "0.1","status": "Locked","lockingUser": "cs0008","viewableVersions": ["0.1"]}' diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-create-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-create-schema-1.1.yaml new file mode 100644 index 00000000..6fe6f575 --- /dev/null +++ b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-create-schema-1.1.yaml @@ -0,0 +1,39 @@ +open_cli_schema_version: 1.0 +name: vlm-create +description: Create License Model +version: onap-1.1 +service: + name: sdc + version: v1.0 + auth: basic + mode: direct + +parameters: + - name: vendor-name + description: vendor name + type: string + short_option: x + long_option: vendor-name + is_optional: false + - name: description + description: Description for License Model + type: string + short_option: y + long_option: description + is_optional: true +results: + direction: portrait + attributes: + - name: ID + description: License Model ID + scope: short + type: uuid +http: + request: + uri: /onboarding-api/v1.0/vendor-license-models + method: POST + body: '{"vendorName": "${vendor-name}", "description": "${description}", "iconRef": "icon"}' + success_codes: + - 200 + result_map: + ID: $b{$.value}
\ No newline at end of file |