summaryrefslogtreecommitdiffstats
path: root/products/onap-elalto/features/so/src/main/resources/open-cli-schema/service-update-schema-elalto.yaml
blob: 796038ffac310831ee5869b1ff5ee0235f22b358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# Copyright © Intel Corporation 2019
#
# 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-update
description: Update a service instance using SO

info:
  product: onap-elalto
  service: so
  author: ONAP CLI Team onap-discuss@lists.onap.org

parameters:
  - name: service-id
    description: unique id for service instance
    type: string
    short_option: x
    long_option: service-instace-id
    is_optional: false
  - name: cloud-region
    description: cloud region identifier
    type: string
    short_option: l
    long_option: cloud-region
    is_optional: false
  - name: tenant-id
    description: tenant id
    type: string
    short_option: b
    long_option: tenant-id
    is_optional: false
  - name: model-invariant-id
    description: model invariant id generated by ASDC.
    type: string
    short_option: e
    long_option: model-invariant-id
    is_optional: false
  - name: model-uuid
    description: model uuid generated by ASDC.
    type: string
    short_option: g
    long_option: model-uuid
    is_optional: false
  - name: model-name
    description: model name as provided in ASDC design time.
    type: string
    short_option: i
    long_option: model-name
    is_optional: false
  - name: model-version
    description: model-version
    type: string
    short_option: j
    long_option: model-version
    is_optional: false
  - name: model-version-id
    description: model-version-id
    type: string
    short_option: n
    long_option: model-version-id
    is_optional: false
  - name: customer
    description: unique id for customer
    type: string
    short_option: c
    long_option: customer
    is_optional: false
  - name: requestor-id
    description: requestor ID
    type: string
    short_option: q
    long_option: requestor-id
    is_optional: false
  - name: instance-name
    description: service instance name
    type: string
    short_option: k
    long_option: instance-name
    is_optional: false
  - name: supress-rollback
    description: rollback changes if instantiation fails.
    type: bool
    short_option: r
    long_option: supress-rollback
    is_optional: true
  - name: service-type
    description: subscription service type
    type: string
    short_option: w
    long_option: service-type
    is_optional: false

results:
  direction: portrait
  attributes:
    - name: service-id
      description: instance id for the created service.
      type: string
      scope: short


http:
  service:
    name: so
    version: v6
    auth: basic
    mode: direct
  request:
    uri: /onap/so/infra/serviceInstantiation/v7/serviceInstances/${service-id}
    method: PUT
    body: '{
      "requestDetails":{
        "cloudConfiguration":{
          "lcpCloudRegionId":"${cloud-region}",
          "tenantId":"${tenant-id}"
        },
        "modelInfo":{
          "modelType":"service",
          "modelInvariantId":"${model-invariant-id}",
          "modelNameVersionId":"${model-uuid}",
          "modelName":"${model-name}",
          "modelVersion":"${model-version}",
          "modelVersionId":"${model-version-id}"
        },
        "subscriberInfo":{
          "globalSubscriberId":"${customer}"
        },
        "requestInfo":{
          "requestorId":"${requestor-id}",
          "instanceName":"${instance-name}",
          "source":"VID",
          "suppressRollback":"${supress-rollback}"
        },
        "requestParameters":{
          "subscriptionServiceType":"${service-type}",
          "aLaCarte":true
        }
      }
    }'

  success_codes:
    - 202
  result_map:
    service-id: $b{$.requestReferences.instanceId}
  sample_response:
    body: '{
              "requestReferences":{
                 "instanceId":"${instance-id}",
                 "requestId":"375ba428-65e7-4f2b-afb9-74735ac6bfd0"
              }
           }'