diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2018-03-19 16:07:29 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2018-03-19 16:07:29 +0530 |
commit | 3fee816cf7ecbc9ac2f2d95e0f95e9a036d34cb5 (patch) | |
tree | caef127a211f07d7a56fb52170f13f51a6d8fe77 /products | |
parent | d8da133c6f20c2b036cfda2d56e67c50a84c792d (diff) |
CLI: service-model-approve beijing
Change-Id: Ie4a8a59c887891537079f46b06a85d05c162bc73
Issue-ID: CLI-100
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'products')
-rw-r--r-- | products/onap-beijing/features/sdc/src/main/resources/open-cli-schema/service-model/service-model-approve-schema-beijing.yaml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/products/onap-beijing/features/sdc/src/main/resources/open-cli-schema/service-model/service-model-approve-schema-beijing.yaml b/products/onap-beijing/features/sdc/src/main/resources/open-cli-schema/service-model/service-model-approve-schema-beijing.yaml new file mode 100644 index 00000000..23865f6f --- /dev/null +++ b/products/onap-beijing/features/sdc/src/main/resources/open-cli-schema/service-model/service-model-approve-schema-beijing.yaml @@ -0,0 +1,45 @@ +# Copyright 2018 Huawei Technologies Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +open_cli_schema_version: 1.0 +name: service-model-approve +description: Approves the Service model in SDC + +info: + product: onap-beijing + service: sdc + author: ONAP CLI Team onap-discuss@lists.onap.org + + +parameters: + - name: service-model-id + description: Service model ID + type: string + long_option: service-model-id + short_option: b + is_optional: true + +http: + service: + name: sdc + version: v1.0 + auth: basic + mode: direct + request: + uri: /sdc2/rest/v1/catalog/services/${service-model-id}/distribution-state/approve + method: POST + body: '{"userRemarks": "Approves service model via CLI"}' + success_codes: + - 200 + |