@itentialopensource/adapter-onap_sdc 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CALLS.md +132 -0
- package/CHANGELOG.md +8 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/adapter.js +158 -329
- package/adapterBase.js +549 -879
- package/changelogs/changelog.md +79 -0
- package/metadata.json +47 -0
- package/package.json +24 -25
- package/pronghorn.json +981 -642
- package/propertiesSchema.json +431 -31
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +5265 -0
- package/report/adapter-openapi.yaml +3872 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507676774.json +120 -0
- package/report/updateReport1692202676079.json +120 -0
- package/report/updateReport1694462516016.json +120 -0
- package/report/updateReport1698421197587.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -112
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,3872 @@
|
|
|
1
|
+
openapi: 3.0.0
|
|
2
|
+
info:
|
|
3
|
+
title: onap_sdc
|
|
4
|
+
contact: {}
|
|
5
|
+
version: '1.2.0'
|
|
6
|
+
servers:
|
|
7
|
+
- url: https://{defaultHost}
|
|
8
|
+
variables:
|
|
9
|
+
defaultHost:
|
|
10
|
+
default: www.example.com/sdc
|
|
11
|
+
paths:
|
|
12
|
+
/v1/catalog/services/{serviceName}/{serviceVersion}/artifacts/{artifactName}:
|
|
13
|
+
get:
|
|
14
|
+
tags:
|
|
15
|
+
- Distribution Catalog Servlet
|
|
16
|
+
summary: downloadServiceArtifact
|
|
17
|
+
description: Returns downloaded artifact
|
|
18
|
+
operationId: downloadServiceArtifact
|
|
19
|
+
parameters:
|
|
20
|
+
- name: X-ECOMP-RequestID
|
|
21
|
+
in: header
|
|
22
|
+
description: X-ECOMP-RequestID header
|
|
23
|
+
style: simple
|
|
24
|
+
schema:
|
|
25
|
+
type: string
|
|
26
|
+
- name: X-ECOMP-InstanceID
|
|
27
|
+
in: header
|
|
28
|
+
description: X-ECOMP-InstanceID header
|
|
29
|
+
required: true
|
|
30
|
+
style: simple
|
|
31
|
+
schema:
|
|
32
|
+
type: string
|
|
33
|
+
- name: Accept
|
|
34
|
+
in: header
|
|
35
|
+
description: Determines the format of the body of the response
|
|
36
|
+
style: simple
|
|
37
|
+
schema:
|
|
38
|
+
type: string
|
|
39
|
+
- name: Authorization
|
|
40
|
+
in: header
|
|
41
|
+
description: The username and password
|
|
42
|
+
required: true
|
|
43
|
+
style: simple
|
|
44
|
+
schema:
|
|
45
|
+
type: string
|
|
46
|
+
- name: serviceName
|
|
47
|
+
in: path
|
|
48
|
+
description: ''
|
|
49
|
+
required: true
|
|
50
|
+
style: simple
|
|
51
|
+
schema:
|
|
52
|
+
type: string
|
|
53
|
+
- name: serviceVersion
|
|
54
|
+
in: path
|
|
55
|
+
description: ''
|
|
56
|
+
required: true
|
|
57
|
+
style: simple
|
|
58
|
+
schema:
|
|
59
|
+
type: string
|
|
60
|
+
- name: artifactName
|
|
61
|
+
in: path
|
|
62
|
+
description: ''
|
|
63
|
+
required: true
|
|
64
|
+
style: simple
|
|
65
|
+
schema:
|
|
66
|
+
type: string
|
|
67
|
+
responses:
|
|
68
|
+
'200':
|
|
69
|
+
description: The artifact is found and streamed.
|
|
70
|
+
headers: {}
|
|
71
|
+
content:
|
|
72
|
+
application/octet-stream:
|
|
73
|
+
schema:
|
|
74
|
+
type: string
|
|
75
|
+
description: The artifact is found and streamed.
|
|
76
|
+
format: binary
|
|
77
|
+
'400':
|
|
78
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
79
|
+
headers: {}
|
|
80
|
+
content: {}
|
|
81
|
+
'401':
|
|
82
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
83
|
+
headers: {}
|
|
84
|
+
content: {}
|
|
85
|
+
'403':
|
|
86
|
+
description: ECOMP component is not authorized - POL5003
|
|
87
|
+
headers: {}
|
|
88
|
+
content: {}
|
|
89
|
+
'404':
|
|
90
|
+
description: Specified artifact is not found - SVC4505
|
|
91
|
+
headers: {}
|
|
92
|
+
content: {}
|
|
93
|
+
'405':
|
|
94
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
95
|
+
headers: {}
|
|
96
|
+
content: {}
|
|
97
|
+
'500':
|
|
98
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
99
|
+
headers: {}
|
|
100
|
+
content: {}
|
|
101
|
+
deprecated: false
|
|
102
|
+
/v1/catalog/services/{serviceName}/{serviceVersion}/resourceInstances/{resourceInstanceName}/artifacts/{artifactName}:
|
|
103
|
+
get:
|
|
104
|
+
tags:
|
|
105
|
+
- Distribution Catalog Servlet
|
|
106
|
+
summary: downloadResourceInstanceArtifactByName
|
|
107
|
+
description: Returns downloaded artifact
|
|
108
|
+
operationId: downloadResourceInstanceArtifactByName
|
|
109
|
+
parameters:
|
|
110
|
+
- name: X-ECOMP-RequestID
|
|
111
|
+
in: header
|
|
112
|
+
description: X-ECOMP-RequestID header
|
|
113
|
+
style: simple
|
|
114
|
+
schema:
|
|
115
|
+
type: string
|
|
116
|
+
- name: X-ECOMP-InstanceID
|
|
117
|
+
in: header
|
|
118
|
+
description: X-ECOMP-InstanceID header
|
|
119
|
+
required: true
|
|
120
|
+
style: simple
|
|
121
|
+
schema:
|
|
122
|
+
type: string
|
|
123
|
+
- name: Accept
|
|
124
|
+
in: header
|
|
125
|
+
description: Determines the format of the body of the response
|
|
126
|
+
style: simple
|
|
127
|
+
schema:
|
|
128
|
+
type: string
|
|
129
|
+
- name: Authorization
|
|
130
|
+
in: header
|
|
131
|
+
description: The username and password
|
|
132
|
+
required: true
|
|
133
|
+
style: simple
|
|
134
|
+
schema:
|
|
135
|
+
type: string
|
|
136
|
+
- name: serviceName
|
|
137
|
+
in: path
|
|
138
|
+
description: ''
|
|
139
|
+
required: true
|
|
140
|
+
style: simple
|
|
141
|
+
schema:
|
|
142
|
+
type: string
|
|
143
|
+
- name: serviceVersion
|
|
144
|
+
in: path
|
|
145
|
+
description: ''
|
|
146
|
+
required: true
|
|
147
|
+
style: simple
|
|
148
|
+
schema:
|
|
149
|
+
type: string
|
|
150
|
+
- name: resourceInstanceName
|
|
151
|
+
in: path
|
|
152
|
+
description: ''
|
|
153
|
+
required: true
|
|
154
|
+
style: simple
|
|
155
|
+
schema:
|
|
156
|
+
type: string
|
|
157
|
+
- name: artifactName
|
|
158
|
+
in: path
|
|
159
|
+
description: ''
|
|
160
|
+
required: true
|
|
161
|
+
style: simple
|
|
162
|
+
schema:
|
|
163
|
+
type: string
|
|
164
|
+
responses:
|
|
165
|
+
'200':
|
|
166
|
+
description: The artifact is found and streamed.
|
|
167
|
+
headers: {}
|
|
168
|
+
content:
|
|
169
|
+
application/octet-stream:
|
|
170
|
+
schema:
|
|
171
|
+
type: string
|
|
172
|
+
description: The artifact is found and streamed.
|
|
173
|
+
format: binary
|
|
174
|
+
'400':
|
|
175
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
176
|
+
headers: {}
|
|
177
|
+
content: {}
|
|
178
|
+
'401':
|
|
179
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
180
|
+
headers: {}
|
|
181
|
+
content: {}
|
|
182
|
+
'403':
|
|
183
|
+
description: ECOMP component is not authorized - POL5003
|
|
184
|
+
headers: {}
|
|
185
|
+
content: {}
|
|
186
|
+
'404':
|
|
187
|
+
description: Specified artifact is not found - SVC4505
|
|
188
|
+
headers: {}
|
|
189
|
+
content: {}
|
|
190
|
+
'405':
|
|
191
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
192
|
+
headers: {}
|
|
193
|
+
content: {}
|
|
194
|
+
'500':
|
|
195
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
196
|
+
headers: {}
|
|
197
|
+
content: {}
|
|
198
|
+
deprecated: false
|
|
199
|
+
/v1/catalog/services/{serviceName}/{serviceVersion}/resources/{resourceName}/{resourceVersion}/artifacts/{artifactName}:
|
|
200
|
+
get:
|
|
201
|
+
tags:
|
|
202
|
+
- Distribution Catalog Servlet
|
|
203
|
+
summary: downloadResourceArtifact
|
|
204
|
+
description: Returns downloaded artifact
|
|
205
|
+
operationId: downloadResourceArtifact
|
|
206
|
+
parameters:
|
|
207
|
+
- name: X-ECOMP-RequestID
|
|
208
|
+
in: header
|
|
209
|
+
description: X-ECOMP-RequestID header
|
|
210
|
+
style: simple
|
|
211
|
+
schema:
|
|
212
|
+
type: string
|
|
213
|
+
- name: X-ECOMP-InstanceID
|
|
214
|
+
in: header
|
|
215
|
+
description: X-ECOMP-InstanceID header
|
|
216
|
+
required: true
|
|
217
|
+
style: simple
|
|
218
|
+
schema:
|
|
219
|
+
type: string
|
|
220
|
+
- name: Accept
|
|
221
|
+
in: header
|
|
222
|
+
description: Determines the format of the body of the response
|
|
223
|
+
style: simple
|
|
224
|
+
schema:
|
|
225
|
+
type: string
|
|
226
|
+
- name: Authorization
|
|
227
|
+
in: header
|
|
228
|
+
description: The username and password
|
|
229
|
+
required: true
|
|
230
|
+
style: simple
|
|
231
|
+
schema:
|
|
232
|
+
type: string
|
|
233
|
+
- name: serviceName
|
|
234
|
+
in: path
|
|
235
|
+
description: ''
|
|
236
|
+
required: true
|
|
237
|
+
style: simple
|
|
238
|
+
schema:
|
|
239
|
+
type: string
|
|
240
|
+
- name: serviceVersion
|
|
241
|
+
in: path
|
|
242
|
+
description: ''
|
|
243
|
+
required: true
|
|
244
|
+
style: simple
|
|
245
|
+
schema:
|
|
246
|
+
type: string
|
|
247
|
+
- name: resourceName
|
|
248
|
+
in: path
|
|
249
|
+
description: ''
|
|
250
|
+
required: true
|
|
251
|
+
style: simple
|
|
252
|
+
schema:
|
|
253
|
+
type: string
|
|
254
|
+
- name: resourceVersion
|
|
255
|
+
in: path
|
|
256
|
+
description: ''
|
|
257
|
+
required: true
|
|
258
|
+
style: simple
|
|
259
|
+
schema:
|
|
260
|
+
type: string
|
|
261
|
+
- name: artifactName
|
|
262
|
+
in: path
|
|
263
|
+
description: ''
|
|
264
|
+
required: true
|
|
265
|
+
style: simple
|
|
266
|
+
schema:
|
|
267
|
+
type: string
|
|
268
|
+
responses:
|
|
269
|
+
'200':
|
|
270
|
+
description: The artifact is found and streamed.
|
|
271
|
+
headers: {}
|
|
272
|
+
content:
|
|
273
|
+
application/octet-stream:
|
|
274
|
+
schema:
|
|
275
|
+
type: string
|
|
276
|
+
description: The artifact is found and streamed.
|
|
277
|
+
format: binary
|
|
278
|
+
'400':
|
|
279
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
280
|
+
headers: {}
|
|
281
|
+
content: {}
|
|
282
|
+
'401':
|
|
283
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
284
|
+
headers: {}
|
|
285
|
+
content: {}
|
|
286
|
+
'403':
|
|
287
|
+
description: ECOMP component is not authorized - POL5003
|
|
288
|
+
headers: {}
|
|
289
|
+
content: {}
|
|
290
|
+
'404':
|
|
291
|
+
description: Specified artifact is not found - SVC4505
|
|
292
|
+
headers: {}
|
|
293
|
+
content: {}
|
|
294
|
+
'405':
|
|
295
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
296
|
+
headers: {}
|
|
297
|
+
content: {}
|
|
298
|
+
'500':
|
|
299
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
300
|
+
headers: {}
|
|
301
|
+
content: {}
|
|
302
|
+
deprecated: false
|
|
303
|
+
/v1/registerForDistribution:
|
|
304
|
+
post:
|
|
305
|
+
tags:
|
|
306
|
+
- Distribution Servlet
|
|
307
|
+
summary: registerForDistribution
|
|
308
|
+
description: Subscribes for distribution notifications
|
|
309
|
+
operationId: registerForDistribution
|
|
310
|
+
parameters:
|
|
311
|
+
- name: X-ECOMP-RequestID
|
|
312
|
+
in: header
|
|
313
|
+
description: X-ECOMP-RequestID header
|
|
314
|
+
style: simple
|
|
315
|
+
schema:
|
|
316
|
+
type: string
|
|
317
|
+
- name: X-ECOMP-InstanceID
|
|
318
|
+
in: header
|
|
319
|
+
description: X-ECOMP-InstanceID header
|
|
320
|
+
required: true
|
|
321
|
+
style: simple
|
|
322
|
+
schema:
|
|
323
|
+
type: string
|
|
324
|
+
- name: Accept
|
|
325
|
+
in: header
|
|
326
|
+
description: Determines the format of the body of the response
|
|
327
|
+
style: simple
|
|
328
|
+
schema:
|
|
329
|
+
type: string
|
|
330
|
+
- name: Content-Length
|
|
331
|
+
in: header
|
|
332
|
+
description: Length of the request body
|
|
333
|
+
required: true
|
|
334
|
+
style: simple
|
|
335
|
+
schema:
|
|
336
|
+
type: string
|
|
337
|
+
- name: Authorization
|
|
338
|
+
in: header
|
|
339
|
+
description: The username and password
|
|
340
|
+
required: true
|
|
341
|
+
style: simple
|
|
342
|
+
schema:
|
|
343
|
+
type: string
|
|
344
|
+
requestBody:
|
|
345
|
+
description: json describe the artifact
|
|
346
|
+
content:
|
|
347
|
+
application/json:
|
|
348
|
+
schema:
|
|
349
|
+
allOf:
|
|
350
|
+
- $ref: '#/components/schemas/RegistrationRequest'
|
|
351
|
+
- description: json describe the artifact
|
|
352
|
+
required: true
|
|
353
|
+
responses:
|
|
354
|
+
'200':
|
|
355
|
+
description: ECOMP component is successfully registered for distribution
|
|
356
|
+
headers: {}
|
|
357
|
+
content:
|
|
358
|
+
application/json:
|
|
359
|
+
schema:
|
|
360
|
+
$ref: '#/components/schemas/TopicRegistrationResponse'
|
|
361
|
+
'400':
|
|
362
|
+
description: "Invalid Body : Specified 'distrEnvName' doesn’t exist - POL4137"
|
|
363
|
+
headers: {}
|
|
364
|
+
content: {}
|
|
365
|
+
'401':
|
|
366
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
367
|
+
headers: {}
|
|
368
|
+
content: {}
|
|
369
|
+
'403':
|
|
370
|
+
description: ECOMP component is not authorized - POL5003
|
|
371
|
+
headers: {}
|
|
372
|
+
content: {}
|
|
373
|
+
'405':
|
|
374
|
+
description: 'Method Not Allowed : Invalid HTTP method type used to register for distribution ( PUT,DELETE,GET will be rejected) - POL4050'
|
|
375
|
+
headers: {}
|
|
376
|
+
content: {}
|
|
377
|
+
'500':
|
|
378
|
+
description: The registration failed due to internal SDC problem or Cambria Service failure ECOMP Component should continue the attempts to register for distribution - POL5000
|
|
379
|
+
headers: {}
|
|
380
|
+
content: {}
|
|
381
|
+
deprecated: false
|
|
382
|
+
/v1/artifactTypes:
|
|
383
|
+
get:
|
|
384
|
+
tags:
|
|
385
|
+
- Distribution Servlet
|
|
386
|
+
summary: getValidArtifactTypes
|
|
387
|
+
description: Fetches available artifact types list
|
|
388
|
+
operationId: getValidArtifactTypes
|
|
389
|
+
parameters:
|
|
390
|
+
- name: X-ECOMP-RequestID
|
|
391
|
+
in: header
|
|
392
|
+
description: X-ECOMP-RequestID header
|
|
393
|
+
style: simple
|
|
394
|
+
schema:
|
|
395
|
+
type: string
|
|
396
|
+
- name: X-ECOMP-InstanceID
|
|
397
|
+
in: header
|
|
398
|
+
description: X-ECOMP-InstanceID header
|
|
399
|
+
required: true
|
|
400
|
+
style: simple
|
|
401
|
+
schema:
|
|
402
|
+
type: string
|
|
403
|
+
- name: Authorization
|
|
404
|
+
in: header
|
|
405
|
+
description: The username and password
|
|
406
|
+
required: true
|
|
407
|
+
style: simple
|
|
408
|
+
schema:
|
|
409
|
+
type: string
|
|
410
|
+
- name: Accept
|
|
411
|
+
in: header
|
|
412
|
+
description: The username and password
|
|
413
|
+
required: true
|
|
414
|
+
style: simple
|
|
415
|
+
schema:
|
|
416
|
+
type: string
|
|
417
|
+
responses:
|
|
418
|
+
'200':
|
|
419
|
+
description: Artifact types list fetched successfully
|
|
420
|
+
headers: {}
|
|
421
|
+
content:
|
|
422
|
+
application/json:
|
|
423
|
+
schema:
|
|
424
|
+
type: string
|
|
425
|
+
description: Artifact types list fetched successfully
|
|
426
|
+
'400':
|
|
427
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
428
|
+
headers: {}
|
|
429
|
+
content: {}
|
|
430
|
+
'401':
|
|
431
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
432
|
+
headers: {}
|
|
433
|
+
content: {}
|
|
434
|
+
'403':
|
|
435
|
+
description: ECOMP component is not authorized - POL5003
|
|
436
|
+
headers: {}
|
|
437
|
+
content: {}
|
|
438
|
+
'405':
|
|
439
|
+
description: 'Method Not Allowed : Invalid HTTP method type used to register for distribution ( POST,PUT,DELETE will be rejected) - POL4050'
|
|
440
|
+
headers: {}
|
|
441
|
+
content: {}
|
|
442
|
+
'500':
|
|
443
|
+
description: The registration failed due to internal SDC problem or Cambria Service failure ECOMP Component should continue the attempts to register for distribution - POL5000
|
|
444
|
+
headers: {}
|
|
445
|
+
content: {}
|
|
446
|
+
deprecated: false
|
|
447
|
+
/v1/unRegisterForDistribution:
|
|
448
|
+
post:
|
|
449
|
+
tags:
|
|
450
|
+
- Distribution Servlet
|
|
451
|
+
summary: unRegisterForDistribution
|
|
452
|
+
description: Removes from subscription for distribution notifications
|
|
453
|
+
operationId: unRegisterForDistribution
|
|
454
|
+
parameters:
|
|
455
|
+
- name: X-ECOMP-RequestID
|
|
456
|
+
in: header
|
|
457
|
+
description: X-ECOMP-RequestID header
|
|
458
|
+
style: simple
|
|
459
|
+
schema:
|
|
460
|
+
type: string
|
|
461
|
+
- name: X-ECOMP-InstanceID
|
|
462
|
+
in: header
|
|
463
|
+
description: X-ECOMP-InstanceID header
|
|
464
|
+
required: true
|
|
465
|
+
style: simple
|
|
466
|
+
schema:
|
|
467
|
+
type: string
|
|
468
|
+
- name: Accept
|
|
469
|
+
in: header
|
|
470
|
+
description: Determines the format of the body of the response
|
|
471
|
+
style: simple
|
|
472
|
+
schema:
|
|
473
|
+
type: string
|
|
474
|
+
- name: Content-Length
|
|
475
|
+
in: header
|
|
476
|
+
description: Length of the request body
|
|
477
|
+
required: true
|
|
478
|
+
style: simple
|
|
479
|
+
schema:
|
|
480
|
+
type: string
|
|
481
|
+
- name: Authorization
|
|
482
|
+
in: header
|
|
483
|
+
description: The username and password
|
|
484
|
+
required: true
|
|
485
|
+
style: simple
|
|
486
|
+
schema:
|
|
487
|
+
type: string
|
|
488
|
+
requestBody:
|
|
489
|
+
description: json describe the artifact
|
|
490
|
+
content:
|
|
491
|
+
application/json:
|
|
492
|
+
schema:
|
|
493
|
+
allOf:
|
|
494
|
+
- $ref: '#/components/schemas/RegistrationRequest'
|
|
495
|
+
- description: json describe the artifact
|
|
496
|
+
required: true
|
|
497
|
+
responses:
|
|
498
|
+
'204':
|
|
499
|
+
description: ECOMP component is successfully unregistered
|
|
500
|
+
headers: {}
|
|
501
|
+
content:
|
|
502
|
+
application/json:
|
|
503
|
+
schema:
|
|
504
|
+
$ref: '#/components/schemas/TopicUnregistrationResponse'
|
|
505
|
+
'400':
|
|
506
|
+
description: "Invalid Body : Specified 'distrEnvName' doesn’t exist - POL4137"
|
|
507
|
+
headers: {}
|
|
508
|
+
content: {}
|
|
509
|
+
'401':
|
|
510
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
511
|
+
headers: {}
|
|
512
|
+
content: {}
|
|
513
|
+
'403':
|
|
514
|
+
description: ECOMP component is not authorized - POL5003
|
|
515
|
+
headers: {}
|
|
516
|
+
content: {}
|
|
517
|
+
'405':
|
|
518
|
+
description: 'Method Not Allowed : Invalid HTTP method type used to register for distribution ( PUT,DELETE,GET will be rejected) - POL4050'
|
|
519
|
+
headers: {}
|
|
520
|
+
content: {}
|
|
521
|
+
'500':
|
|
522
|
+
description: The registration failed due to internal SDC problem or Cambria Service failure ECOMP Component should continue the attempts to register for distribution - POL5000
|
|
523
|
+
headers: {}
|
|
524
|
+
content: {}
|
|
525
|
+
deprecated: false
|
|
526
|
+
/v1/distributionUebCluster:
|
|
527
|
+
get:
|
|
528
|
+
tags:
|
|
529
|
+
- Distribution Servlet
|
|
530
|
+
summary: getUebServerList
|
|
531
|
+
description: return the available UEB Server List
|
|
532
|
+
operationId: getUebServerList
|
|
533
|
+
parameters:
|
|
534
|
+
- name: X-ECOMP-RequestID
|
|
535
|
+
in: header
|
|
536
|
+
description: X-ECOMP-RequestID header
|
|
537
|
+
style: simple
|
|
538
|
+
schema:
|
|
539
|
+
type: string
|
|
540
|
+
- name: X-ECOMP-InstanceID
|
|
541
|
+
in: header
|
|
542
|
+
description: X-ECOMP-InstanceID header
|
|
543
|
+
required: true
|
|
544
|
+
style: simple
|
|
545
|
+
schema:
|
|
546
|
+
type: string
|
|
547
|
+
- name: Accept
|
|
548
|
+
in: header
|
|
549
|
+
description: Determines the format of the body of the response
|
|
550
|
+
style: simple
|
|
551
|
+
schema:
|
|
552
|
+
type: string
|
|
553
|
+
- name: Authorization
|
|
554
|
+
in: header
|
|
555
|
+
description: The username and password
|
|
556
|
+
required: true
|
|
557
|
+
style: simple
|
|
558
|
+
schema:
|
|
559
|
+
type: string
|
|
560
|
+
responses:
|
|
561
|
+
'200':
|
|
562
|
+
description: ECOMP component is authenticated and list of Cambria API server’s FQDNs is returned
|
|
563
|
+
headers: {}
|
|
564
|
+
content:
|
|
565
|
+
application/json:
|
|
566
|
+
schema:
|
|
567
|
+
$ref: '#/components/schemas/ServerListResponse'
|
|
568
|
+
'400':
|
|
569
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
570
|
+
headers: {}
|
|
571
|
+
content: {}
|
|
572
|
+
'401':
|
|
573
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its credentials for Basic Authentication - POL5002
|
|
574
|
+
headers: {}
|
|
575
|
+
content: {}
|
|
576
|
+
'403':
|
|
577
|
+
description: ECOMP component is not authorized - POL5003
|
|
578
|
+
headers: {}
|
|
579
|
+
content: {}
|
|
580
|
+
'405':
|
|
581
|
+
description: 'Method Not Allowed: Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
582
|
+
headers: {}
|
|
583
|
+
content: {}
|
|
584
|
+
'500':
|
|
585
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
586
|
+
headers: {}
|
|
587
|
+
content: {}
|
|
588
|
+
deprecated: false
|
|
589
|
+
/v1/catalog/{assetType}/{uuid}/artifacts:
|
|
590
|
+
post:
|
|
591
|
+
tags:
|
|
592
|
+
- Artifact External Servlet
|
|
593
|
+
summary: uploadArtifact
|
|
594
|
+
description: uploads of artifact to a resource or service
|
|
595
|
+
operationId: uploadArtifact
|
|
596
|
+
parameters:
|
|
597
|
+
- name: Content-MD5
|
|
598
|
+
in: header
|
|
599
|
+
description: The value for this header must be the MD5 checksum over the whole json body
|
|
600
|
+
required: true
|
|
601
|
+
style: simple
|
|
602
|
+
schema:
|
|
603
|
+
type: string
|
|
604
|
+
- name: USER_ID
|
|
605
|
+
in: header
|
|
606
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
607
|
+
required: true
|
|
608
|
+
style: simple
|
|
609
|
+
schema:
|
|
610
|
+
type: string
|
|
611
|
+
- name: X-ECOMP-RequestID
|
|
612
|
+
in: header
|
|
613
|
+
description: X-ECOMP-RequestID header
|
|
614
|
+
style: simple
|
|
615
|
+
schema:
|
|
616
|
+
type: string
|
|
617
|
+
- name: X-ECOMP-InstanceID
|
|
618
|
+
in: header
|
|
619
|
+
description: X-ECOMP-InstanceID header
|
|
620
|
+
required: true
|
|
621
|
+
style: simple
|
|
622
|
+
schema:
|
|
623
|
+
type: string
|
|
624
|
+
- name: Accept
|
|
625
|
+
in: header
|
|
626
|
+
description: Determines the format of the body of the response
|
|
627
|
+
style: simple
|
|
628
|
+
schema:
|
|
629
|
+
type: string
|
|
630
|
+
- name: Authorization
|
|
631
|
+
in: header
|
|
632
|
+
description: The username and password
|
|
633
|
+
required: true
|
|
634
|
+
style: simple
|
|
635
|
+
schema:
|
|
636
|
+
type: string
|
|
637
|
+
- name: assetType
|
|
638
|
+
in: path
|
|
639
|
+
description: The requested asset type
|
|
640
|
+
required: true
|
|
641
|
+
style: simple
|
|
642
|
+
schema:
|
|
643
|
+
allOf:
|
|
644
|
+
- $ref: '#/components/schemas/assetType'
|
|
645
|
+
- description: The requested asset type
|
|
646
|
+
- name: uuid
|
|
647
|
+
in: path
|
|
648
|
+
description: The uuid of the asset as published in the metadata
|
|
649
|
+
required: true
|
|
650
|
+
style: simple
|
|
651
|
+
schema:
|
|
652
|
+
type: string
|
|
653
|
+
requestBody:
|
|
654
|
+
description: json describe the artifact
|
|
655
|
+
content:
|
|
656
|
+
application/json:
|
|
657
|
+
schema:
|
|
658
|
+
allOf:
|
|
659
|
+
- $ref: '#/components/schemas/ArtifactDefinition'
|
|
660
|
+
- description: json describe the artifact
|
|
661
|
+
required: true
|
|
662
|
+
responses:
|
|
663
|
+
'200':
|
|
664
|
+
description: Artifact uploaded
|
|
665
|
+
headers: {}
|
|
666
|
+
content:
|
|
667
|
+
application/json:
|
|
668
|
+
schema:
|
|
669
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
670
|
+
'400':
|
|
671
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
672
|
+
headers: {}
|
|
673
|
+
content: {}
|
|
674
|
+
'401':
|
|
675
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
676
|
+
headers: {}
|
|
677
|
+
content: {}
|
|
678
|
+
'403':
|
|
679
|
+
description: ECOMP component is not authorized - POL5003
|
|
680
|
+
headers: {}
|
|
681
|
+
content: {}
|
|
682
|
+
'404':
|
|
683
|
+
description: Specified resource is not found - SVC4063
|
|
684
|
+
headers: {}
|
|
685
|
+
content: {}
|
|
686
|
+
'405':
|
|
687
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
688
|
+
headers: {}
|
|
689
|
+
content: {}
|
|
690
|
+
'500':
|
|
691
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
692
|
+
headers: {}
|
|
693
|
+
content: {}
|
|
694
|
+
deprecated: false
|
|
695
|
+
/v1/catalog/{assetType}/{uuid}/artifacts/{artifactUUID}:
|
|
696
|
+
get:
|
|
697
|
+
tags:
|
|
698
|
+
- Artifact External Servlet
|
|
699
|
+
summary: downloadComponentArtifact
|
|
700
|
+
description: Returns downloaded artifact
|
|
701
|
+
operationId: downloadComponentArtifact
|
|
702
|
+
parameters:
|
|
703
|
+
- name: USER_ID
|
|
704
|
+
in: header
|
|
705
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
706
|
+
required: true
|
|
707
|
+
style: simple
|
|
708
|
+
schema:
|
|
709
|
+
type: string
|
|
710
|
+
- name: X-ECOMP-RequestID
|
|
711
|
+
in: header
|
|
712
|
+
description: X-ECOMP-RequestID header
|
|
713
|
+
style: simple
|
|
714
|
+
schema:
|
|
715
|
+
type: string
|
|
716
|
+
- name: X-ECOMP-InstanceID
|
|
717
|
+
in: header
|
|
718
|
+
description: X-ECOMP-InstanceID header
|
|
719
|
+
required: true
|
|
720
|
+
style: simple
|
|
721
|
+
schema:
|
|
722
|
+
type: string
|
|
723
|
+
- name: Accept
|
|
724
|
+
in: header
|
|
725
|
+
description: Determines the format of the body of the response
|
|
726
|
+
style: simple
|
|
727
|
+
schema:
|
|
728
|
+
type: string
|
|
729
|
+
- name: Authorization
|
|
730
|
+
in: header
|
|
731
|
+
description: The username and password
|
|
732
|
+
required: true
|
|
733
|
+
style: simple
|
|
734
|
+
schema:
|
|
735
|
+
type: string
|
|
736
|
+
- name: assetType
|
|
737
|
+
in: path
|
|
738
|
+
description: The requested asset type
|
|
739
|
+
required: true
|
|
740
|
+
style: simple
|
|
741
|
+
schema:
|
|
742
|
+
allOf:
|
|
743
|
+
- $ref: '#/components/schemas/assetType'
|
|
744
|
+
- description: The requested asset type
|
|
745
|
+
- name: uuid
|
|
746
|
+
in: path
|
|
747
|
+
description: The uuid of the asset as published in the metadata
|
|
748
|
+
required: true
|
|
749
|
+
style: simple
|
|
750
|
+
schema:
|
|
751
|
+
type: string
|
|
752
|
+
- name: artifactUUID
|
|
753
|
+
in: path
|
|
754
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
755
|
+
required: true
|
|
756
|
+
style: simple
|
|
757
|
+
schema:
|
|
758
|
+
type: string
|
|
759
|
+
responses:
|
|
760
|
+
'200':
|
|
761
|
+
description: Artifact downloaded
|
|
762
|
+
headers: {}
|
|
763
|
+
content:
|
|
764
|
+
application/octet-stream:
|
|
765
|
+
schema:
|
|
766
|
+
type: string
|
|
767
|
+
description: Artifact downloaded
|
|
768
|
+
format: binary
|
|
769
|
+
'400':
|
|
770
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
771
|
+
headers: {}
|
|
772
|
+
content: {}
|
|
773
|
+
'401':
|
|
774
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
775
|
+
headers: {}
|
|
776
|
+
content: {}
|
|
777
|
+
'403':
|
|
778
|
+
description: ECOMP component is not authorized - POL5003
|
|
779
|
+
headers: {}
|
|
780
|
+
content: {}
|
|
781
|
+
'404':
|
|
782
|
+
description: Artifact was not found - SVC4505
|
|
783
|
+
headers: {}
|
|
784
|
+
content: {}
|
|
785
|
+
'405':
|
|
786
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
787
|
+
headers: {}
|
|
788
|
+
content: {}
|
|
789
|
+
'500':
|
|
790
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
791
|
+
headers: {}
|
|
792
|
+
content: {}
|
|
793
|
+
deprecated: false
|
|
794
|
+
post:
|
|
795
|
+
tags:
|
|
796
|
+
- Artifact External Servlet
|
|
797
|
+
summary: updateArtifact
|
|
798
|
+
description: uploads of artifact to a resource or service
|
|
799
|
+
operationId: updateArtifact
|
|
800
|
+
parameters:
|
|
801
|
+
- name: Content-MD5
|
|
802
|
+
in: header
|
|
803
|
+
description: The value for this header must be the MD5 checksum over the whole json body
|
|
804
|
+
required: true
|
|
805
|
+
style: simple
|
|
806
|
+
schema:
|
|
807
|
+
type: string
|
|
808
|
+
- name: USER_ID
|
|
809
|
+
in: header
|
|
810
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
811
|
+
required: true
|
|
812
|
+
style: simple
|
|
813
|
+
schema:
|
|
814
|
+
type: string
|
|
815
|
+
- name: X-ECOMP-RequestID
|
|
816
|
+
in: header
|
|
817
|
+
description: X-ECOMP-RequestID header
|
|
818
|
+
style: simple
|
|
819
|
+
schema:
|
|
820
|
+
type: string
|
|
821
|
+
- name: X-ECOMP-InstanceID
|
|
822
|
+
in: header
|
|
823
|
+
description: X-ECOMP-InstanceID header
|
|
824
|
+
required: true
|
|
825
|
+
style: simple
|
|
826
|
+
schema:
|
|
827
|
+
type: string
|
|
828
|
+
- name: Accept
|
|
829
|
+
in: header
|
|
830
|
+
description: Determines the format of the body of the response
|
|
831
|
+
style: simple
|
|
832
|
+
schema:
|
|
833
|
+
type: string
|
|
834
|
+
- name: Authorization
|
|
835
|
+
in: header
|
|
836
|
+
description: The username and password
|
|
837
|
+
required: true
|
|
838
|
+
style: simple
|
|
839
|
+
schema:
|
|
840
|
+
type: string
|
|
841
|
+
- name: assetType
|
|
842
|
+
in: path
|
|
843
|
+
description: The requested asset type
|
|
844
|
+
required: true
|
|
845
|
+
style: simple
|
|
846
|
+
schema:
|
|
847
|
+
allOf:
|
|
848
|
+
- $ref: '#/components/schemas/assetType'
|
|
849
|
+
- description: The requested asset type
|
|
850
|
+
- name: uuid
|
|
851
|
+
in: path
|
|
852
|
+
description: The uuid of the asset as published in the metadata
|
|
853
|
+
required: true
|
|
854
|
+
style: simple
|
|
855
|
+
schema:
|
|
856
|
+
type: string
|
|
857
|
+
- name: artifactUUID
|
|
858
|
+
in: path
|
|
859
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
860
|
+
required: true
|
|
861
|
+
style: simple
|
|
862
|
+
schema:
|
|
863
|
+
type: string
|
|
864
|
+
requestBody:
|
|
865
|
+
description: json describe the artifact
|
|
866
|
+
content:
|
|
867
|
+
application/json:
|
|
868
|
+
schema:
|
|
869
|
+
allOf:
|
|
870
|
+
- $ref: '#/components/schemas/ArtifactDefinition'
|
|
871
|
+
- description: json describe the artifact
|
|
872
|
+
required: true
|
|
873
|
+
responses:
|
|
874
|
+
'200':
|
|
875
|
+
description: Artifact updated
|
|
876
|
+
headers: {}
|
|
877
|
+
content:
|
|
878
|
+
application/json:
|
|
879
|
+
schema:
|
|
880
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
881
|
+
'400':
|
|
882
|
+
description: Artifact name is missing in input - SVC4128
|
|
883
|
+
headers: {}
|
|
884
|
+
content: {}
|
|
885
|
+
'401':
|
|
886
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
887
|
+
headers: {}
|
|
888
|
+
content: {}
|
|
889
|
+
'403':
|
|
890
|
+
description: Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4086
|
|
891
|
+
headers: {}
|
|
892
|
+
content: {}
|
|
893
|
+
'404':
|
|
894
|
+
description: Specified resource is not found - SVC4063
|
|
895
|
+
headers: {}
|
|
896
|
+
content: {}
|
|
897
|
+
'405':
|
|
898
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
899
|
+
headers: {}
|
|
900
|
+
content: {}
|
|
901
|
+
'409':
|
|
902
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
903
|
+
headers: {}
|
|
904
|
+
content: {}
|
|
905
|
+
'500':
|
|
906
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
907
|
+
headers: {}
|
|
908
|
+
content: {}
|
|
909
|
+
deprecated: false
|
|
910
|
+
delete:
|
|
911
|
+
tags:
|
|
912
|
+
- Artifact External Servlet
|
|
913
|
+
summary: deleteArtifact
|
|
914
|
+
description: deletes an artifact of a resource or service
|
|
915
|
+
operationId: deleteArtifact
|
|
916
|
+
parameters:
|
|
917
|
+
- name: USER_ID
|
|
918
|
+
in: header
|
|
919
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
920
|
+
required: true
|
|
921
|
+
style: simple
|
|
922
|
+
schema:
|
|
923
|
+
type: string
|
|
924
|
+
- name: X-ECOMP-RequestID
|
|
925
|
+
in: header
|
|
926
|
+
description: X-ECOMP-RequestID header
|
|
927
|
+
style: simple
|
|
928
|
+
schema:
|
|
929
|
+
type: string
|
|
930
|
+
- name: X-ECOMP-InstanceID
|
|
931
|
+
in: header
|
|
932
|
+
description: X-ECOMP-InstanceID header
|
|
933
|
+
required: true
|
|
934
|
+
style: simple
|
|
935
|
+
schema:
|
|
936
|
+
type: string
|
|
937
|
+
- name: Accept
|
|
938
|
+
in: header
|
|
939
|
+
description: Determines the format of the body of the response
|
|
940
|
+
style: simple
|
|
941
|
+
schema:
|
|
942
|
+
type: string
|
|
943
|
+
- name: Authorization
|
|
944
|
+
in: header
|
|
945
|
+
description: The username and password
|
|
946
|
+
required: true
|
|
947
|
+
style: simple
|
|
948
|
+
schema:
|
|
949
|
+
type: string
|
|
950
|
+
- name: assetType
|
|
951
|
+
in: path
|
|
952
|
+
description: The requested asset type
|
|
953
|
+
required: true
|
|
954
|
+
style: simple
|
|
955
|
+
schema:
|
|
956
|
+
allOf:
|
|
957
|
+
- $ref: '#/components/schemas/assetType'
|
|
958
|
+
- description: The requested asset type
|
|
959
|
+
- name: uuid
|
|
960
|
+
in: path
|
|
961
|
+
description: The uuid of the asset as published in the metadata
|
|
962
|
+
required: true
|
|
963
|
+
style: simple
|
|
964
|
+
schema:
|
|
965
|
+
type: string
|
|
966
|
+
- name: artifactUUID
|
|
967
|
+
in: path
|
|
968
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
969
|
+
required: true
|
|
970
|
+
style: simple
|
|
971
|
+
schema:
|
|
972
|
+
type: string
|
|
973
|
+
responses:
|
|
974
|
+
'200':
|
|
975
|
+
description: Artifact deleted
|
|
976
|
+
headers: {}
|
|
977
|
+
content:
|
|
978
|
+
application/json:
|
|
979
|
+
schema:
|
|
980
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
981
|
+
'400':
|
|
982
|
+
description: Artifact name is missing in input - SVC4128
|
|
983
|
+
headers: {}
|
|
984
|
+
content: {}
|
|
985
|
+
'401':
|
|
986
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
987
|
+
headers: {}
|
|
988
|
+
content: {}
|
|
989
|
+
'403':
|
|
990
|
+
description: Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4086
|
|
991
|
+
headers: {}
|
|
992
|
+
content: {}
|
|
993
|
+
'404':
|
|
994
|
+
description: Specified resource is not found - SVC4063
|
|
995
|
+
headers: {}
|
|
996
|
+
content: {}
|
|
997
|
+
'405':
|
|
998
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
999
|
+
headers: {}
|
|
1000
|
+
content: {}
|
|
1001
|
+
'409':
|
|
1002
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
1003
|
+
headers: {}
|
|
1004
|
+
content: {}
|
|
1005
|
+
'500':
|
|
1006
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1007
|
+
headers: {}
|
|
1008
|
+
content: {}
|
|
1009
|
+
deprecated: false
|
|
1010
|
+
/v1/catalog/{assetType}/{uuid}/resourceInstances/{resourceInstanceName}/artifacts:
|
|
1011
|
+
post:
|
|
1012
|
+
tags:
|
|
1013
|
+
- Artifact External Servlet
|
|
1014
|
+
summary: uploadArtifactToInstance
|
|
1015
|
+
description: uploads an artifact to a resource instance
|
|
1016
|
+
operationId: uploadArtifactToInstance
|
|
1017
|
+
parameters:
|
|
1018
|
+
- name: Content-MD5
|
|
1019
|
+
in: header
|
|
1020
|
+
description: The value for this header must be the MD5 checksum over the whole json body
|
|
1021
|
+
required: true
|
|
1022
|
+
style: simple
|
|
1023
|
+
schema:
|
|
1024
|
+
type: string
|
|
1025
|
+
- name: USER_ID
|
|
1026
|
+
in: header
|
|
1027
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
1028
|
+
required: true
|
|
1029
|
+
style: simple
|
|
1030
|
+
schema:
|
|
1031
|
+
type: string
|
|
1032
|
+
- name: X-ECOMP-RequestID
|
|
1033
|
+
in: header
|
|
1034
|
+
description: X-ECOMP-RequestID header
|
|
1035
|
+
style: simple
|
|
1036
|
+
schema:
|
|
1037
|
+
type: string
|
|
1038
|
+
- name: X-ECOMP-InstanceID
|
|
1039
|
+
in: header
|
|
1040
|
+
description: X-ECOMP-InstanceID header
|
|
1041
|
+
required: true
|
|
1042
|
+
style: simple
|
|
1043
|
+
schema:
|
|
1044
|
+
type: string
|
|
1045
|
+
- name: Accept
|
|
1046
|
+
in: header
|
|
1047
|
+
description: Determines the format of the body of the response
|
|
1048
|
+
style: simple
|
|
1049
|
+
schema:
|
|
1050
|
+
type: string
|
|
1051
|
+
- name: Authorization
|
|
1052
|
+
in: header
|
|
1053
|
+
description: The username and password
|
|
1054
|
+
required: true
|
|
1055
|
+
style: simple
|
|
1056
|
+
schema:
|
|
1057
|
+
type: string
|
|
1058
|
+
- name: assetType
|
|
1059
|
+
in: path
|
|
1060
|
+
description: The requested asset type
|
|
1061
|
+
required: true
|
|
1062
|
+
style: simple
|
|
1063
|
+
schema:
|
|
1064
|
+
allOf:
|
|
1065
|
+
- $ref: '#/components/schemas/assetType'
|
|
1066
|
+
- description: The requested asset type
|
|
1067
|
+
- name: uuid
|
|
1068
|
+
in: path
|
|
1069
|
+
description: The uuid of the asset as published in the metadata
|
|
1070
|
+
required: true
|
|
1071
|
+
style: simple
|
|
1072
|
+
schema:
|
|
1073
|
+
type: string
|
|
1074
|
+
- name: resourceInstanceName
|
|
1075
|
+
in: path
|
|
1076
|
+
description: The component instance name (as publishedin the response of the detailed query)
|
|
1077
|
+
required: true
|
|
1078
|
+
style: simple
|
|
1079
|
+
schema:
|
|
1080
|
+
type: string
|
|
1081
|
+
requestBody:
|
|
1082
|
+
description: json describe the artifact
|
|
1083
|
+
content:
|
|
1084
|
+
application/json:
|
|
1085
|
+
schema:
|
|
1086
|
+
allOf:
|
|
1087
|
+
- $ref: '#/components/schemas/ArtifactDefinition'
|
|
1088
|
+
- description: json describe the artifact
|
|
1089
|
+
required: true
|
|
1090
|
+
responses:
|
|
1091
|
+
'200':
|
|
1092
|
+
description: Artifact uploaded
|
|
1093
|
+
headers: {}
|
|
1094
|
+
content:
|
|
1095
|
+
application/json:
|
|
1096
|
+
schema:
|
|
1097
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
1098
|
+
'400':
|
|
1099
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
1100
|
+
headers: {}
|
|
1101
|
+
content: {}
|
|
1102
|
+
'401':
|
|
1103
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1104
|
+
headers: {}
|
|
1105
|
+
content: {}
|
|
1106
|
+
'403':
|
|
1107
|
+
description: ECOMP component is not authorized - POL5003
|
|
1108
|
+
headers: {}
|
|
1109
|
+
content: {}
|
|
1110
|
+
'404':
|
|
1111
|
+
description: Specified resource is not found - SVC4063
|
|
1112
|
+
headers: {}
|
|
1113
|
+
content: {}
|
|
1114
|
+
'405':
|
|
1115
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
1116
|
+
headers: {}
|
|
1117
|
+
content: {}
|
|
1118
|
+
'500':
|
|
1119
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1120
|
+
headers: {}
|
|
1121
|
+
content: {}
|
|
1122
|
+
deprecated: false
|
|
1123
|
+
/v1/catalog/{assetType}/{uuid}/resourceInstances/{resourceInstanceName}/artifacts/{artifactUUID}:
|
|
1124
|
+
get:
|
|
1125
|
+
tags:
|
|
1126
|
+
- Artifact External Servlet
|
|
1127
|
+
summary: downloadResourceInstanceArtifact
|
|
1128
|
+
description: Returns downloaded artifact
|
|
1129
|
+
operationId: downloadResourceInstanceArtifact
|
|
1130
|
+
parameters:
|
|
1131
|
+
- name: USER_ID
|
|
1132
|
+
in: header
|
|
1133
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
1134
|
+
required: true
|
|
1135
|
+
style: simple
|
|
1136
|
+
schema:
|
|
1137
|
+
type: string
|
|
1138
|
+
- name: X-ECOMP-RequestID
|
|
1139
|
+
in: header
|
|
1140
|
+
description: X-ECOMP-RequestID header
|
|
1141
|
+
style: simple
|
|
1142
|
+
schema:
|
|
1143
|
+
type: string
|
|
1144
|
+
- name: X-ECOMP-InstanceID
|
|
1145
|
+
in: header
|
|
1146
|
+
description: X-ECOMP-InstanceID header
|
|
1147
|
+
required: true
|
|
1148
|
+
style: simple
|
|
1149
|
+
schema:
|
|
1150
|
+
type: string
|
|
1151
|
+
- name: Accept
|
|
1152
|
+
in: header
|
|
1153
|
+
description: Determines the format of the body of the response
|
|
1154
|
+
style: simple
|
|
1155
|
+
schema:
|
|
1156
|
+
type: string
|
|
1157
|
+
- name: Authorization
|
|
1158
|
+
in: header
|
|
1159
|
+
description: The username and password
|
|
1160
|
+
required: true
|
|
1161
|
+
style: simple
|
|
1162
|
+
schema:
|
|
1163
|
+
type: string
|
|
1164
|
+
- name: assetType
|
|
1165
|
+
in: path
|
|
1166
|
+
description: The requested asset type
|
|
1167
|
+
required: true
|
|
1168
|
+
style: simple
|
|
1169
|
+
schema:
|
|
1170
|
+
allOf:
|
|
1171
|
+
- $ref: '#/components/schemas/assetType'
|
|
1172
|
+
- description: The requested asset type
|
|
1173
|
+
- name: uuid
|
|
1174
|
+
in: path
|
|
1175
|
+
description: The uuid of the asset as published in the metadata
|
|
1176
|
+
required: true
|
|
1177
|
+
style: simple
|
|
1178
|
+
schema:
|
|
1179
|
+
type: string
|
|
1180
|
+
- name: artifactUUID
|
|
1181
|
+
in: path
|
|
1182
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
1183
|
+
required: true
|
|
1184
|
+
style: simple
|
|
1185
|
+
schema:
|
|
1186
|
+
type: string
|
|
1187
|
+
- name: resourceInstanceName
|
|
1188
|
+
in: path
|
|
1189
|
+
description: The component instance name (as publishedin the response of the detailed query)
|
|
1190
|
+
required: true
|
|
1191
|
+
style: simple
|
|
1192
|
+
schema:
|
|
1193
|
+
type: string
|
|
1194
|
+
responses:
|
|
1195
|
+
'200':
|
|
1196
|
+
description: Artifact downloaded
|
|
1197
|
+
headers: {}
|
|
1198
|
+
content:
|
|
1199
|
+
application/octet-stream:
|
|
1200
|
+
schema:
|
|
1201
|
+
type: string
|
|
1202
|
+
description: Artifact downloaded
|
|
1203
|
+
format: binary
|
|
1204
|
+
'400':
|
|
1205
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
1206
|
+
headers: {}
|
|
1207
|
+
content: {}
|
|
1208
|
+
'401':
|
|
1209
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1210
|
+
headers: {}
|
|
1211
|
+
content: {}
|
|
1212
|
+
'403':
|
|
1213
|
+
description: ECOMP component is not authorized - POL5003
|
|
1214
|
+
headers: {}
|
|
1215
|
+
content: {}
|
|
1216
|
+
'404':
|
|
1217
|
+
description: Artifact was not found - SVC4505
|
|
1218
|
+
headers: {}
|
|
1219
|
+
content: {}
|
|
1220
|
+
'405':
|
|
1221
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
1222
|
+
headers: {}
|
|
1223
|
+
content: {}
|
|
1224
|
+
'500':
|
|
1225
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1226
|
+
headers: {}
|
|
1227
|
+
content: {}
|
|
1228
|
+
deprecated: false
|
|
1229
|
+
post:
|
|
1230
|
+
tags:
|
|
1231
|
+
- Artifact External Servlet
|
|
1232
|
+
summary: updateArtifactOnResourceInstance
|
|
1233
|
+
description: uploads of artifact to a resource or service
|
|
1234
|
+
operationId: updateArtifactOnResourceInstance
|
|
1235
|
+
parameters:
|
|
1236
|
+
- name: Content-MD5
|
|
1237
|
+
in: header
|
|
1238
|
+
description: The value for this header must be the MD5 checksum over the whole json body
|
|
1239
|
+
required: true
|
|
1240
|
+
style: simple
|
|
1241
|
+
schema:
|
|
1242
|
+
type: string
|
|
1243
|
+
- name: USER_ID
|
|
1244
|
+
in: header
|
|
1245
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
1246
|
+
required: true
|
|
1247
|
+
style: simple
|
|
1248
|
+
schema:
|
|
1249
|
+
type: string
|
|
1250
|
+
- name: X-ECOMP-RequestID
|
|
1251
|
+
in: header
|
|
1252
|
+
description: X-ECOMP-RequestID header
|
|
1253
|
+
style: simple
|
|
1254
|
+
schema:
|
|
1255
|
+
type: string
|
|
1256
|
+
- name: X-ECOMP-InstanceID
|
|
1257
|
+
in: header
|
|
1258
|
+
description: X-ECOMP-InstanceID header
|
|
1259
|
+
required: true
|
|
1260
|
+
style: simple
|
|
1261
|
+
schema:
|
|
1262
|
+
type: string
|
|
1263
|
+
- name: Accept
|
|
1264
|
+
in: header
|
|
1265
|
+
description: Determines the format of the body of the response
|
|
1266
|
+
style: simple
|
|
1267
|
+
schema:
|
|
1268
|
+
type: string
|
|
1269
|
+
- name: Authorization
|
|
1270
|
+
in: header
|
|
1271
|
+
description: The username and password
|
|
1272
|
+
required: true
|
|
1273
|
+
style: simple
|
|
1274
|
+
schema:
|
|
1275
|
+
type: string
|
|
1276
|
+
- name: assetType
|
|
1277
|
+
in: path
|
|
1278
|
+
description: The requested asset type
|
|
1279
|
+
required: true
|
|
1280
|
+
style: simple
|
|
1281
|
+
schema:
|
|
1282
|
+
allOf:
|
|
1283
|
+
- $ref: '#/components/schemas/assetType'
|
|
1284
|
+
- description: The requested asset type
|
|
1285
|
+
- name: uuid
|
|
1286
|
+
in: path
|
|
1287
|
+
description: The uuid of the asset as published in the metadata
|
|
1288
|
+
required: true
|
|
1289
|
+
style: simple
|
|
1290
|
+
schema:
|
|
1291
|
+
type: string
|
|
1292
|
+
- name: artifactUUID
|
|
1293
|
+
in: path
|
|
1294
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
1295
|
+
required: true
|
|
1296
|
+
style: simple
|
|
1297
|
+
schema:
|
|
1298
|
+
type: string
|
|
1299
|
+
- name: resourceInstanceName
|
|
1300
|
+
in: path
|
|
1301
|
+
description: The component instance name (as publishedin the response of the detailed query)
|
|
1302
|
+
required: true
|
|
1303
|
+
style: simple
|
|
1304
|
+
schema:
|
|
1305
|
+
type: string
|
|
1306
|
+
requestBody:
|
|
1307
|
+
description: json describe the artifact
|
|
1308
|
+
content:
|
|
1309
|
+
application/json:
|
|
1310
|
+
schema:
|
|
1311
|
+
allOf:
|
|
1312
|
+
- $ref: '#/components/schemas/ArtifactDefinition'
|
|
1313
|
+
- description: json describe the artifact
|
|
1314
|
+
required: true
|
|
1315
|
+
responses:
|
|
1316
|
+
'200':
|
|
1317
|
+
description: Artifact updated
|
|
1318
|
+
headers: {}
|
|
1319
|
+
content:
|
|
1320
|
+
application/json:
|
|
1321
|
+
schema:
|
|
1322
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
1323
|
+
'400':
|
|
1324
|
+
description: Artifact name is missing in input - SVC4128
|
|
1325
|
+
headers: {}
|
|
1326
|
+
content: {}
|
|
1327
|
+
'401':
|
|
1328
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1329
|
+
headers: {}
|
|
1330
|
+
content: {}
|
|
1331
|
+
'403':
|
|
1332
|
+
description: Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4086
|
|
1333
|
+
headers: {}
|
|
1334
|
+
content: {}
|
|
1335
|
+
'404':
|
|
1336
|
+
description: Specified resource is not found - SVC4063
|
|
1337
|
+
headers: {}
|
|
1338
|
+
content: {}
|
|
1339
|
+
'405':
|
|
1340
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
1341
|
+
headers: {}
|
|
1342
|
+
content: {}
|
|
1343
|
+
'409':
|
|
1344
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
1345
|
+
headers: {}
|
|
1346
|
+
content: {}
|
|
1347
|
+
'500':
|
|
1348
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1349
|
+
headers: {}
|
|
1350
|
+
content: {}
|
|
1351
|
+
deprecated: false
|
|
1352
|
+
delete:
|
|
1353
|
+
tags:
|
|
1354
|
+
- Artifact External Servlet
|
|
1355
|
+
summary: deleteArtifactOnResourceInstance
|
|
1356
|
+
description: deletes an artifact of a resource insatnce
|
|
1357
|
+
operationId: deleteArtifactOnResourceInstance
|
|
1358
|
+
parameters:
|
|
1359
|
+
- name: USER_ID
|
|
1360
|
+
in: header
|
|
1361
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
1362
|
+
required: true
|
|
1363
|
+
style: simple
|
|
1364
|
+
schema:
|
|
1365
|
+
type: string
|
|
1366
|
+
- name: X-ECOMP-RequestID
|
|
1367
|
+
in: header
|
|
1368
|
+
description: X-ECOMP-RequestID header
|
|
1369
|
+
style: simple
|
|
1370
|
+
schema:
|
|
1371
|
+
type: string
|
|
1372
|
+
- name: X-ECOMP-InstanceID
|
|
1373
|
+
in: header
|
|
1374
|
+
description: X-ECOMP-InstanceID header
|
|
1375
|
+
required: true
|
|
1376
|
+
style: simple
|
|
1377
|
+
schema:
|
|
1378
|
+
type: string
|
|
1379
|
+
- name: Accept
|
|
1380
|
+
in: header
|
|
1381
|
+
description: Determines the format of the body of the response
|
|
1382
|
+
style: simple
|
|
1383
|
+
schema:
|
|
1384
|
+
type: string
|
|
1385
|
+
- name: Authorization
|
|
1386
|
+
in: header
|
|
1387
|
+
description: The username and password
|
|
1388
|
+
required: true
|
|
1389
|
+
style: simple
|
|
1390
|
+
schema:
|
|
1391
|
+
type: string
|
|
1392
|
+
- name: assetType
|
|
1393
|
+
in: path
|
|
1394
|
+
description: The requested asset type
|
|
1395
|
+
required: true
|
|
1396
|
+
style: simple
|
|
1397
|
+
schema:
|
|
1398
|
+
allOf:
|
|
1399
|
+
- $ref: '#/components/schemas/assetType'
|
|
1400
|
+
- description: The requested asset type
|
|
1401
|
+
- name: uuid
|
|
1402
|
+
in: path
|
|
1403
|
+
description: The uuid of the asset as published in the metadata
|
|
1404
|
+
required: true
|
|
1405
|
+
style: simple
|
|
1406
|
+
schema:
|
|
1407
|
+
type: string
|
|
1408
|
+
- name: artifactUUID
|
|
1409
|
+
in: path
|
|
1410
|
+
description: The uuid of the artifact as published in the asset detailed metadata or in the response of the upload / update operation
|
|
1411
|
+
required: true
|
|
1412
|
+
style: simple
|
|
1413
|
+
schema:
|
|
1414
|
+
type: string
|
|
1415
|
+
- name: resourceInstanceName
|
|
1416
|
+
in: path
|
|
1417
|
+
description: The component instance name (as publishedin the response of the detailed query)
|
|
1418
|
+
required: true
|
|
1419
|
+
style: simple
|
|
1420
|
+
schema:
|
|
1421
|
+
type: string
|
|
1422
|
+
responses:
|
|
1423
|
+
'200':
|
|
1424
|
+
description: Artifact deleted
|
|
1425
|
+
headers: {}
|
|
1426
|
+
content:
|
|
1427
|
+
application/json:
|
|
1428
|
+
schema:
|
|
1429
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
1430
|
+
'400':
|
|
1431
|
+
description: Artifact name is missing in input - SVC4128
|
|
1432
|
+
headers: {}
|
|
1433
|
+
content: {}
|
|
1434
|
+
'401':
|
|
1435
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1436
|
+
headers: {}
|
|
1437
|
+
content: {}
|
|
1438
|
+
'403':
|
|
1439
|
+
description: Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4086
|
|
1440
|
+
headers: {}
|
|
1441
|
+
content: {}
|
|
1442
|
+
'404':
|
|
1443
|
+
description: Specified resource is not found - SVC4063
|
|
1444
|
+
headers: {}
|
|
1445
|
+
content: {}
|
|
1446
|
+
'405':
|
|
1447
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
1448
|
+
headers: {}
|
|
1449
|
+
content: {}
|
|
1450
|
+
'409':
|
|
1451
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
1452
|
+
headers: {}
|
|
1453
|
+
content: {}
|
|
1454
|
+
'500':
|
|
1455
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1456
|
+
headers: {}
|
|
1457
|
+
content: {}
|
|
1458
|
+
deprecated: false
|
|
1459
|
+
/v1/catalog/resources/{uuid}/interfaces/{operationUUID}/artifacts/{artifactUUID}:
|
|
1460
|
+
post:
|
|
1461
|
+
tags:
|
|
1462
|
+
- Artifact External Servlet
|
|
1463
|
+
summary: uploadInterfaceOperationArtifact
|
|
1464
|
+
description: uploads of artifact to VF operation workflow
|
|
1465
|
+
operationId: uploadInterfaceOperationArtifact
|
|
1466
|
+
parameters:
|
|
1467
|
+
- name: Content-MD5
|
|
1468
|
+
in: header
|
|
1469
|
+
description: The value for this header must be the MD5 checksum over the whole json body
|
|
1470
|
+
required: true
|
|
1471
|
+
style: simple
|
|
1472
|
+
schema:
|
|
1473
|
+
type: string
|
|
1474
|
+
- name: USER_ID
|
|
1475
|
+
in: header
|
|
1476
|
+
description: The user ID of the DCAE Designer. This user must also have Designer role in SDC
|
|
1477
|
+
required: true
|
|
1478
|
+
style: simple
|
|
1479
|
+
schema:
|
|
1480
|
+
type: string
|
|
1481
|
+
- name: X-ECOMP-RequestID
|
|
1482
|
+
in: header
|
|
1483
|
+
description: X-ECOMP-RequestID header
|
|
1484
|
+
style: simple
|
|
1485
|
+
schema:
|
|
1486
|
+
type: string
|
|
1487
|
+
- name: X-ECOMP-InstanceID
|
|
1488
|
+
in: header
|
|
1489
|
+
description: X-ECOMP-InstanceID header
|
|
1490
|
+
required: true
|
|
1491
|
+
style: simple
|
|
1492
|
+
schema:
|
|
1493
|
+
type: string
|
|
1494
|
+
- name: Accept
|
|
1495
|
+
in: header
|
|
1496
|
+
description: Determines the format of the body of the response
|
|
1497
|
+
style: simple
|
|
1498
|
+
schema:
|
|
1499
|
+
type: string
|
|
1500
|
+
- name: Authorization
|
|
1501
|
+
in: header
|
|
1502
|
+
description: The username and password
|
|
1503
|
+
required: true
|
|
1504
|
+
style: simple
|
|
1505
|
+
schema:
|
|
1506
|
+
type: string
|
|
1507
|
+
- name: uuid
|
|
1508
|
+
in: path
|
|
1509
|
+
description: The uuid of the asset as published in the metadata
|
|
1510
|
+
required: true
|
|
1511
|
+
style: simple
|
|
1512
|
+
schema:
|
|
1513
|
+
type: string
|
|
1514
|
+
- name: operationUUID
|
|
1515
|
+
in: path
|
|
1516
|
+
description: The uuid of the operation
|
|
1517
|
+
required: true
|
|
1518
|
+
style: simple
|
|
1519
|
+
schema:
|
|
1520
|
+
type: string
|
|
1521
|
+
- name: artifactUUID
|
|
1522
|
+
in: path
|
|
1523
|
+
description: The uuid of the artifact
|
|
1524
|
+
required: true
|
|
1525
|
+
style: simple
|
|
1526
|
+
schema:
|
|
1527
|
+
type: string
|
|
1528
|
+
requestBody:
|
|
1529
|
+
description: json describe the artifact
|
|
1530
|
+
content:
|
|
1531
|
+
application/json:
|
|
1532
|
+
schema:
|
|
1533
|
+
allOf:
|
|
1534
|
+
- $ref: '#/components/schemas/ArtifactDefinition'
|
|
1535
|
+
- description: json describe the artifact
|
|
1536
|
+
required: true
|
|
1537
|
+
responses:
|
|
1538
|
+
'200':
|
|
1539
|
+
description: Artifact uploaded
|
|
1540
|
+
headers: {}
|
|
1541
|
+
content:
|
|
1542
|
+
application/json:
|
|
1543
|
+
schema:
|
|
1544
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
1545
|
+
'400':
|
|
1546
|
+
description: Restricted Operation – the user provided does not have role of Designer or the asset is being used by another designer - SVC4301
|
|
1547
|
+
headers: {}
|
|
1548
|
+
content: {}
|
|
1549
|
+
'401':
|
|
1550
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1551
|
+
headers: {}
|
|
1552
|
+
content: {}
|
|
1553
|
+
'403':
|
|
1554
|
+
description: ECOMP component is not authorized - POL5003
|
|
1555
|
+
headers: {}
|
|
1556
|
+
content: {}
|
|
1557
|
+
'404':
|
|
1558
|
+
description: Specified resource is not found - SVC4063
|
|
1559
|
+
headers: {}
|
|
1560
|
+
content: {}
|
|
1561
|
+
'405':
|
|
1562
|
+
description: 'Method Not Allowed: Invalid HTTP method type used (PUT,DELETE,POST will be rejected) - POL4050'
|
|
1563
|
+
headers: {}
|
|
1564
|
+
content: {}
|
|
1565
|
+
'500':
|
|
1566
|
+
description: The GET request failed either due to internal SDC problem or Cambria Service failure. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1567
|
+
headers: {}
|
|
1568
|
+
content: {}
|
|
1569
|
+
deprecated: false
|
|
1570
|
+
/v1/catalog/{assetType}:
|
|
1571
|
+
get:
|
|
1572
|
+
tags:
|
|
1573
|
+
- Asset Metadata External Servlet
|
|
1574
|
+
summary: getAssetListExternal
|
|
1575
|
+
description: Returns list of assets
|
|
1576
|
+
operationId: getAssetListExternal
|
|
1577
|
+
parameters:
|
|
1578
|
+
- name: X-ECOMP-RequestID
|
|
1579
|
+
in: header
|
|
1580
|
+
description: X-ECOMP-RequestID header
|
|
1581
|
+
style: simple
|
|
1582
|
+
schema:
|
|
1583
|
+
type: string
|
|
1584
|
+
- name: X-ECOMP-InstanceID
|
|
1585
|
+
in: header
|
|
1586
|
+
description: X-ECOMP-InstanceID header
|
|
1587
|
+
required: true
|
|
1588
|
+
style: simple
|
|
1589
|
+
schema:
|
|
1590
|
+
type: string
|
|
1591
|
+
- name: Accept
|
|
1592
|
+
in: header
|
|
1593
|
+
description: Determines the format of the body of the response
|
|
1594
|
+
style: simple
|
|
1595
|
+
schema:
|
|
1596
|
+
type: string
|
|
1597
|
+
- name: Authorization
|
|
1598
|
+
in: header
|
|
1599
|
+
description: The username and password
|
|
1600
|
+
required: true
|
|
1601
|
+
style: simple
|
|
1602
|
+
schema:
|
|
1603
|
+
type: string
|
|
1604
|
+
- name: assetType
|
|
1605
|
+
in: path
|
|
1606
|
+
description: The requested asset type
|
|
1607
|
+
required: true
|
|
1608
|
+
style: simple
|
|
1609
|
+
schema:
|
|
1610
|
+
allOf:
|
|
1611
|
+
- $ref: '#/components/schemas/assetType'
|
|
1612
|
+
- description: The requested asset type
|
|
1613
|
+
- name: category
|
|
1614
|
+
in: query
|
|
1615
|
+
description: The filter key (resourceType only for resources)
|
|
1616
|
+
style: form
|
|
1617
|
+
explode: true
|
|
1618
|
+
schema:
|
|
1619
|
+
type: string
|
|
1620
|
+
- name: subCategory
|
|
1621
|
+
in: query
|
|
1622
|
+
description: The filter key (resourceType only for resources)
|
|
1623
|
+
style: form
|
|
1624
|
+
explode: true
|
|
1625
|
+
schema:
|
|
1626
|
+
type: string
|
|
1627
|
+
- name: distributionStatus
|
|
1628
|
+
in: query
|
|
1629
|
+
description: The filter key (resourceType only for resources)
|
|
1630
|
+
style: form
|
|
1631
|
+
explode: true
|
|
1632
|
+
schema:
|
|
1633
|
+
type: string
|
|
1634
|
+
- name: resourceType
|
|
1635
|
+
in: query
|
|
1636
|
+
description: The filter key (resourceType only for resources)
|
|
1637
|
+
style: form
|
|
1638
|
+
explode: true
|
|
1639
|
+
schema:
|
|
1640
|
+
type: string
|
|
1641
|
+
responses:
|
|
1642
|
+
'200':
|
|
1643
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1644
|
+
headers: {}
|
|
1645
|
+
content:
|
|
1646
|
+
application/json:
|
|
1647
|
+
schema:
|
|
1648
|
+
type: array
|
|
1649
|
+
items:
|
|
1650
|
+
$ref: '#/components/schemas/AssetMetadata'
|
|
1651
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1652
|
+
'400':
|
|
1653
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
1654
|
+
headers: {}
|
|
1655
|
+
content: {}
|
|
1656
|
+
'401':
|
|
1657
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1658
|
+
headers: {}
|
|
1659
|
+
content: {}
|
|
1660
|
+
'403':
|
|
1661
|
+
description: ECOMP component is not authorized - POL5003
|
|
1662
|
+
headers: {}
|
|
1663
|
+
content: {}
|
|
1664
|
+
'405':
|
|
1665
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
1666
|
+
headers: {}
|
|
1667
|
+
content: {}
|
|
1668
|
+
'500':
|
|
1669
|
+
description: The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1670
|
+
headers: {}
|
|
1671
|
+
content: {}
|
|
1672
|
+
deprecated: false
|
|
1673
|
+
post:
|
|
1674
|
+
tags:
|
|
1675
|
+
- CRUD External Servlet
|
|
1676
|
+
summary: createResourceExternal
|
|
1677
|
+
description: Creates a resource
|
|
1678
|
+
operationId: createResourceExternal
|
|
1679
|
+
parameters:
|
|
1680
|
+
- name: USER_ID
|
|
1681
|
+
in: header
|
|
1682
|
+
description: The user id
|
|
1683
|
+
required: true
|
|
1684
|
+
style: simple
|
|
1685
|
+
schema:
|
|
1686
|
+
type: string
|
|
1687
|
+
- name: X-ECOMP-RequestID
|
|
1688
|
+
in: header
|
|
1689
|
+
description: X-ECOMP-RequestID header
|
|
1690
|
+
style: simple
|
|
1691
|
+
schema:
|
|
1692
|
+
type: string
|
|
1693
|
+
- name: X-ECOMP-InstanceID
|
|
1694
|
+
in: header
|
|
1695
|
+
description: X-ECOMP-InstanceID header
|
|
1696
|
+
required: true
|
|
1697
|
+
style: simple
|
|
1698
|
+
schema:
|
|
1699
|
+
type: string
|
|
1700
|
+
- name: Accept
|
|
1701
|
+
in: header
|
|
1702
|
+
description: Determines the format of the body of the response
|
|
1703
|
+
style: simple
|
|
1704
|
+
schema:
|
|
1705
|
+
type: string
|
|
1706
|
+
- name: Authorization
|
|
1707
|
+
in: header
|
|
1708
|
+
description: The username and password
|
|
1709
|
+
required: true
|
|
1710
|
+
style: simple
|
|
1711
|
+
schema:
|
|
1712
|
+
type: string
|
|
1713
|
+
- name: assetType
|
|
1714
|
+
in: path
|
|
1715
|
+
description: The requested asset type
|
|
1716
|
+
required: true
|
|
1717
|
+
style: simple
|
|
1718
|
+
schema:
|
|
1719
|
+
allOf:
|
|
1720
|
+
- $ref: '#/components/schemas/assetType'
|
|
1721
|
+
- description: The requested asset type
|
|
1722
|
+
requestBody:
|
|
1723
|
+
description: json describe the created resource
|
|
1724
|
+
content:
|
|
1725
|
+
application/json:
|
|
1726
|
+
schema:
|
|
1727
|
+
allOf:
|
|
1728
|
+
- $ref: '#/components/schemas/Resource'
|
|
1729
|
+
- description: json describe the created resource
|
|
1730
|
+
required: true
|
|
1731
|
+
responses:
|
|
1732
|
+
'200':
|
|
1733
|
+
description: ECOMP component is authenticated and Asset created
|
|
1734
|
+
headers: {}
|
|
1735
|
+
content:
|
|
1736
|
+
application/json:
|
|
1737
|
+
schema:
|
|
1738
|
+
$ref: '#/components/schemas/Resource'
|
|
1739
|
+
'400':
|
|
1740
|
+
description: 'Create VFCMT request: VFCMT name exceeds character limit - SVC4073'
|
|
1741
|
+
headers: {}
|
|
1742
|
+
content: {}
|
|
1743
|
+
'401':
|
|
1744
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1745
|
+
headers: {}
|
|
1746
|
+
content: {}
|
|
1747
|
+
'403':
|
|
1748
|
+
description: ECOMP component is not authorized - POL5003
|
|
1749
|
+
headers: {}
|
|
1750
|
+
content: {}
|
|
1751
|
+
'404':
|
|
1752
|
+
description: "Error: Requested '%1' (uuid) resource was not found - SVC4063"
|
|
1753
|
+
headers: {}
|
|
1754
|
+
content: {}
|
|
1755
|
+
'405':
|
|
1756
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
1757
|
+
headers: {}
|
|
1758
|
+
content: {}
|
|
1759
|
+
'500':
|
|
1760
|
+
description: The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1761
|
+
headers: {}
|
|
1762
|
+
content: {}
|
|
1763
|
+
deprecated: false
|
|
1764
|
+
/v1/catalog/{assetType}/{uuid}/metadata:
|
|
1765
|
+
get:
|
|
1766
|
+
tags:
|
|
1767
|
+
- Asset Metadata External Servlet
|
|
1768
|
+
summary: getAssetSpecificMetadataByUuidExternal
|
|
1769
|
+
description: Returns detailed metadata of an asset by uuid
|
|
1770
|
+
operationId: getAssetSpecificMetadataByUuidExternal
|
|
1771
|
+
parameters:
|
|
1772
|
+
- name: X-ECOMP-RequestID
|
|
1773
|
+
in: header
|
|
1774
|
+
description: X-ECOMP-RequestID header
|
|
1775
|
+
style: simple
|
|
1776
|
+
schema:
|
|
1777
|
+
type: string
|
|
1778
|
+
- name: X-ECOMP-InstanceID
|
|
1779
|
+
in: header
|
|
1780
|
+
description: X-ECOMP-InstanceID header
|
|
1781
|
+
required: true
|
|
1782
|
+
style: simple
|
|
1783
|
+
schema:
|
|
1784
|
+
type: string
|
|
1785
|
+
- name: Accept
|
|
1786
|
+
in: header
|
|
1787
|
+
description: Determines the format of the body of the response
|
|
1788
|
+
style: simple
|
|
1789
|
+
schema:
|
|
1790
|
+
type: string
|
|
1791
|
+
- name: Authorization
|
|
1792
|
+
in: header
|
|
1793
|
+
description: The username and password
|
|
1794
|
+
required: true
|
|
1795
|
+
style: simple
|
|
1796
|
+
schema:
|
|
1797
|
+
type: string
|
|
1798
|
+
- name: assetType
|
|
1799
|
+
in: path
|
|
1800
|
+
description: The requested asset type
|
|
1801
|
+
required: true
|
|
1802
|
+
style: simple
|
|
1803
|
+
schema:
|
|
1804
|
+
allOf:
|
|
1805
|
+
- $ref: '#/components/schemas/assetType'
|
|
1806
|
+
- description: The requested asset type
|
|
1807
|
+
- name: uuid
|
|
1808
|
+
in: path
|
|
1809
|
+
description: The requested asset uuid
|
|
1810
|
+
required: true
|
|
1811
|
+
style: simple
|
|
1812
|
+
schema:
|
|
1813
|
+
type: string
|
|
1814
|
+
responses:
|
|
1815
|
+
'200':
|
|
1816
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1817
|
+
headers: {}
|
|
1818
|
+
content:
|
|
1819
|
+
application/json:
|
|
1820
|
+
schema:
|
|
1821
|
+
type: array
|
|
1822
|
+
items:
|
|
1823
|
+
$ref: '#/components/schemas/AssetMetadata'
|
|
1824
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1825
|
+
'400':
|
|
1826
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
1827
|
+
headers: {}
|
|
1828
|
+
content: {}
|
|
1829
|
+
'401':
|
|
1830
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1831
|
+
headers: {}
|
|
1832
|
+
content: {}
|
|
1833
|
+
'403':
|
|
1834
|
+
description: ECOMP component is not authorized - POL5003
|
|
1835
|
+
headers: {}
|
|
1836
|
+
content: {}
|
|
1837
|
+
'404':
|
|
1838
|
+
description: "Error: Requested '%1' (uuid) resource was not found - SVC4063"
|
|
1839
|
+
headers: {}
|
|
1840
|
+
content: {}
|
|
1841
|
+
'405':
|
|
1842
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
1843
|
+
headers: {}
|
|
1844
|
+
content: {}
|
|
1845
|
+
'500':
|
|
1846
|
+
description: The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1847
|
+
headers: {}
|
|
1848
|
+
content: {}
|
|
1849
|
+
deprecated: false
|
|
1850
|
+
/v1/catalog/{assetType}/{uuid}/toscaModel:
|
|
1851
|
+
get:
|
|
1852
|
+
tags:
|
|
1853
|
+
- Asset Metadata External Servlet
|
|
1854
|
+
summary: getToscaModelExternal
|
|
1855
|
+
description: Returns asset csar
|
|
1856
|
+
operationId: getToscaModelExternal
|
|
1857
|
+
parameters:
|
|
1858
|
+
- name: X-ECOMP-RequestID
|
|
1859
|
+
in: header
|
|
1860
|
+
description: X-ECOMP-RequestID header
|
|
1861
|
+
style: simple
|
|
1862
|
+
schema:
|
|
1863
|
+
type: string
|
|
1864
|
+
- name: X-ECOMP-InstanceID
|
|
1865
|
+
in: header
|
|
1866
|
+
description: X-ECOMP-InstanceID header
|
|
1867
|
+
required: true
|
|
1868
|
+
style: simple
|
|
1869
|
+
schema:
|
|
1870
|
+
type: string
|
|
1871
|
+
- name: Accept
|
|
1872
|
+
in: header
|
|
1873
|
+
description: Determines the format of the body of the response
|
|
1874
|
+
style: simple
|
|
1875
|
+
schema:
|
|
1876
|
+
type: string
|
|
1877
|
+
- name: Authorization
|
|
1878
|
+
in: header
|
|
1879
|
+
description: The username and password
|
|
1880
|
+
required: true
|
|
1881
|
+
style: simple
|
|
1882
|
+
schema:
|
|
1883
|
+
type: string
|
|
1884
|
+
- name: assetType
|
|
1885
|
+
in: path
|
|
1886
|
+
description: The requested asset type
|
|
1887
|
+
required: true
|
|
1888
|
+
style: simple
|
|
1889
|
+
schema:
|
|
1890
|
+
allOf:
|
|
1891
|
+
- $ref: '#/components/schemas/assetType'
|
|
1892
|
+
- description: The requested asset type
|
|
1893
|
+
- name: uuid
|
|
1894
|
+
in: path
|
|
1895
|
+
description: The requested asset uuid
|
|
1896
|
+
required: true
|
|
1897
|
+
style: simple
|
|
1898
|
+
schema:
|
|
1899
|
+
type: string
|
|
1900
|
+
responses:
|
|
1901
|
+
'200':
|
|
1902
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1903
|
+
headers: {}
|
|
1904
|
+
content:
|
|
1905
|
+
application/octet-stream:
|
|
1906
|
+
schema:
|
|
1907
|
+
type: string
|
|
1908
|
+
description: ECOMP component is authenticated and list of Catalog Assets Metadata is returned
|
|
1909
|
+
format: binary
|
|
1910
|
+
'400':
|
|
1911
|
+
description: Missing 'X-ECOMP-InstanceID' HTTP header - POL5001
|
|
1912
|
+
headers: {}
|
|
1913
|
+
content: {}
|
|
1914
|
+
'401':
|
|
1915
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
1916
|
+
headers: {}
|
|
1917
|
+
content: {}
|
|
1918
|
+
'403':
|
|
1919
|
+
description: ECOMP component is not authorized - POL5003
|
|
1920
|
+
headers: {}
|
|
1921
|
+
content: {}
|
|
1922
|
+
'404':
|
|
1923
|
+
description: "Error: Requested '%1' (uuid) resource was not found - SVC4063"
|
|
1924
|
+
headers: {}
|
|
1925
|
+
content: {}
|
|
1926
|
+
'405':
|
|
1927
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
1928
|
+
headers: {}
|
|
1929
|
+
content: {}
|
|
1930
|
+
'500':
|
|
1931
|
+
description: The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
1932
|
+
headers: {}
|
|
1933
|
+
content: {}
|
|
1934
|
+
deprecated: false
|
|
1935
|
+
/v1/catalog/{assetType}/{uuid}/lifecycleState/{lifecycleOperation}:
|
|
1936
|
+
post:
|
|
1937
|
+
tags:
|
|
1938
|
+
- CRUD External Servlet
|
|
1939
|
+
summary: changeResourceStateExternal
|
|
1940
|
+
description: Change Resource lifecycle State
|
|
1941
|
+
operationId: changeResourceStateExternal
|
|
1942
|
+
parameters:
|
|
1943
|
+
- name: USER_ID
|
|
1944
|
+
in: header
|
|
1945
|
+
description: The user id
|
|
1946
|
+
required: true
|
|
1947
|
+
style: simple
|
|
1948
|
+
schema:
|
|
1949
|
+
type: string
|
|
1950
|
+
- name: X-ECOMP-RequestID
|
|
1951
|
+
in: header
|
|
1952
|
+
description: X-ECOMP-RequestID header
|
|
1953
|
+
style: simple
|
|
1954
|
+
schema:
|
|
1955
|
+
type: string
|
|
1956
|
+
- name: X-ECOMP-InstanceID
|
|
1957
|
+
in: header
|
|
1958
|
+
description: X-ECOMP-InstanceID header
|
|
1959
|
+
required: true
|
|
1960
|
+
style: simple
|
|
1961
|
+
schema:
|
|
1962
|
+
type: string
|
|
1963
|
+
- name: Accept
|
|
1964
|
+
in: header
|
|
1965
|
+
description: Determines the format of the body of the response
|
|
1966
|
+
style: simple
|
|
1967
|
+
schema:
|
|
1968
|
+
type: string
|
|
1969
|
+
- name: Authorization
|
|
1970
|
+
in: header
|
|
1971
|
+
description: The username and password
|
|
1972
|
+
required: true
|
|
1973
|
+
style: simple
|
|
1974
|
+
schema:
|
|
1975
|
+
type: string
|
|
1976
|
+
- name: lifecycleOperation
|
|
1977
|
+
in: path
|
|
1978
|
+
description: ''
|
|
1979
|
+
required: true
|
|
1980
|
+
style: simple
|
|
1981
|
+
schema:
|
|
1982
|
+
$ref: '#/components/schemas/lifecycleOperation'
|
|
1983
|
+
- name: uuid
|
|
1984
|
+
in: path
|
|
1985
|
+
description: id of component to be changed
|
|
1986
|
+
required: true
|
|
1987
|
+
style: simple
|
|
1988
|
+
schema:
|
|
1989
|
+
type: string
|
|
1990
|
+
- name: assetType
|
|
1991
|
+
in: path
|
|
1992
|
+
description: 'validValues: resources / services'
|
|
1993
|
+
required: true
|
|
1994
|
+
style: simple
|
|
1995
|
+
schema:
|
|
1996
|
+
allOf:
|
|
1997
|
+
- $ref: '#/components/schemas/assetType'
|
|
1998
|
+
- description: 'validValues: resources / services'
|
|
1999
|
+
requestBody:
|
|
2000
|
+
description: userRemarks - Short description (free text) about the asset version being changed
|
|
2001
|
+
content:
|
|
2002
|
+
application/json:
|
|
2003
|
+
schema:
|
|
2004
|
+
allOf:
|
|
2005
|
+
- $ref: '#/components/schemas/LifecycleChangeInfoWithAction'
|
|
2006
|
+
- description: userRemarks - Short description (free text) about the asset version being changed
|
|
2007
|
+
required: true
|
|
2008
|
+
responses:
|
|
2009
|
+
'200':
|
|
2010
|
+
description: Resource state changed
|
|
2011
|
+
headers: {}
|
|
2012
|
+
content:
|
|
2013
|
+
application/json:
|
|
2014
|
+
schema:
|
|
2015
|
+
$ref: '#/components/schemas/AssetMetadata'
|
|
2016
|
+
'400':
|
|
2017
|
+
description: Missing X-ECOMP-InstanceID HTTP header - POL5001
|
|
2018
|
+
headers: {}
|
|
2019
|
+
content: {}
|
|
2020
|
+
'401':
|
|
2021
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
2022
|
+
headers: {}
|
|
2023
|
+
content: {}
|
|
2024
|
+
'403':
|
|
2025
|
+
description: Asset is being edited by different user. Only one user can checkout and edit an asset on given time. The asset will be available for checkout after the other user will checkin the asset - SVC4080
|
|
2026
|
+
headers: {}
|
|
2027
|
+
content: {}
|
|
2028
|
+
'404':
|
|
2029
|
+
description: "Error: Requested '%1' (uuid) resource was not found - SVC4063"
|
|
2030
|
+
headers: {}
|
|
2031
|
+
content: {}
|
|
2032
|
+
'405':
|
|
2033
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
2034
|
+
headers: {}
|
|
2035
|
+
content: {}
|
|
2036
|
+
'500':
|
|
2037
|
+
description: The GET request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
2038
|
+
headers: {}
|
|
2039
|
+
content: {}
|
|
2040
|
+
deprecated: false
|
|
2041
|
+
/v1/catalog/services/{serviceUUID}/distribution/{opEnvId}/activate:
|
|
2042
|
+
post:
|
|
2043
|
+
tags:
|
|
2044
|
+
- Service Activation External Servlet
|
|
2045
|
+
summary: activateServiceExternal
|
|
2046
|
+
description: Activates a service
|
|
2047
|
+
operationId: activateServiceExternal
|
|
2048
|
+
parameters:
|
|
2049
|
+
- name: USER_ID
|
|
2050
|
+
in: header
|
|
2051
|
+
description: The user id
|
|
2052
|
+
required: true
|
|
2053
|
+
style: simple
|
|
2054
|
+
schema:
|
|
2055
|
+
type: string
|
|
2056
|
+
- name: X-ECOMP-RequestID
|
|
2057
|
+
in: header
|
|
2058
|
+
description: X-ECOMP-RequestID header
|
|
2059
|
+
style: simple
|
|
2060
|
+
schema:
|
|
2061
|
+
type: string
|
|
2062
|
+
- name: X-ECOMP-InstanceID
|
|
2063
|
+
in: header
|
|
2064
|
+
description: X-ECOMP-InstanceID header
|
|
2065
|
+
required: true
|
|
2066
|
+
style: simple
|
|
2067
|
+
schema:
|
|
2068
|
+
type: string
|
|
2069
|
+
- name: Accept
|
|
2070
|
+
in: header
|
|
2071
|
+
description: Determines the format of the body of the response
|
|
2072
|
+
style: simple
|
|
2073
|
+
schema:
|
|
2074
|
+
type: string
|
|
2075
|
+
- name: Authorization
|
|
2076
|
+
in: header
|
|
2077
|
+
description: The username and password
|
|
2078
|
+
required: true
|
|
2079
|
+
style: simple
|
|
2080
|
+
schema:
|
|
2081
|
+
type: string
|
|
2082
|
+
- name: serviceUUID
|
|
2083
|
+
in: path
|
|
2084
|
+
description: The serviceUUid to activate
|
|
2085
|
+
required: true
|
|
2086
|
+
style: simple
|
|
2087
|
+
schema:
|
|
2088
|
+
type: string
|
|
2089
|
+
- name: opEnvId
|
|
2090
|
+
in: path
|
|
2091
|
+
description: The operational environment on which to activate the service on
|
|
2092
|
+
required: true
|
|
2093
|
+
style: simple
|
|
2094
|
+
schema:
|
|
2095
|
+
type: string
|
|
2096
|
+
requestBody:
|
|
2097
|
+
description: ''
|
|
2098
|
+
content:
|
|
2099
|
+
application/json:
|
|
2100
|
+
schema:
|
|
2101
|
+
type: string
|
|
2102
|
+
required: false
|
|
2103
|
+
responses:
|
|
2104
|
+
'202':
|
|
2105
|
+
description: ECOMP component is authenticated and required service may be distributed
|
|
2106
|
+
headers: {}
|
|
2107
|
+
content: {}
|
|
2108
|
+
'400':
|
|
2109
|
+
description: The resource name is missing in the request body - SVC4062
|
|
2110
|
+
headers: {}
|
|
2111
|
+
content: {}
|
|
2112
|
+
'401':
|
|
2113
|
+
description: ECOMP component should authenticate itself and to re-send again HTTP request with its Basic Authentication credentials - POL5002
|
|
2114
|
+
headers: {}
|
|
2115
|
+
content: {}
|
|
2116
|
+
'403':
|
|
2117
|
+
description: ECOMP component is not authorized - POL5003
|
|
2118
|
+
headers: {}
|
|
2119
|
+
content: {}
|
|
2120
|
+
'404':
|
|
2121
|
+
description: "Error: Requested '%1' (uuid) resource was not found - SVC4063"
|
|
2122
|
+
headers: {}
|
|
2123
|
+
content: {}
|
|
2124
|
+
'405':
|
|
2125
|
+
description: 'Method Not Allowed : Invalid HTTP method type used ( PUT,DELETE,POST will be rejected) - POL4050'
|
|
2126
|
+
headers: {}
|
|
2127
|
+
content: {}
|
|
2128
|
+
'409':
|
|
2129
|
+
description: Service state is invalid for this action
|
|
2130
|
+
headers: {}
|
|
2131
|
+
content: {}
|
|
2132
|
+
'500':
|
|
2133
|
+
description: The request failed either due to internal SDC problem. ECOMP Component should continue the attempts to get the needed information - POL5000
|
|
2134
|
+
headers: {}
|
|
2135
|
+
content: {}
|
|
2136
|
+
'502':
|
|
2137
|
+
description: The server was acting as a gateway or proxy and received an invalid response from the upstream server
|
|
2138
|
+
headers: {}
|
|
2139
|
+
content: {}
|
|
2140
|
+
deprecated: false
|
|
2141
|
+
components:
|
|
2142
|
+
schemas:
|
|
2143
|
+
TopicRegistrationResponse:
|
|
2144
|
+
title: TopicRegistrationResponse
|
|
2145
|
+
type: object
|
|
2146
|
+
properties:
|
|
2147
|
+
distrNotificationTopicName:
|
|
2148
|
+
type: string
|
|
2149
|
+
distrStatusTopicName:
|
|
2150
|
+
type: string
|
|
2151
|
+
RegistrationRequest:
|
|
2152
|
+
title: RegistrationRequest
|
|
2153
|
+
type: object
|
|
2154
|
+
properties:
|
|
2155
|
+
apiPublicKey:
|
|
2156
|
+
type: string
|
|
2157
|
+
distrEnvName:
|
|
2158
|
+
type: string
|
|
2159
|
+
isConsumerToSdcDistrStatusTopic:
|
|
2160
|
+
type: boolean
|
|
2161
|
+
distEnvEndPoints:
|
|
2162
|
+
type: array
|
|
2163
|
+
items:
|
|
2164
|
+
type: string
|
|
2165
|
+
description: ''
|
|
2166
|
+
TopicUnregistrationResponse:
|
|
2167
|
+
title: TopicUnregistrationResponse
|
|
2168
|
+
type: object
|
|
2169
|
+
properties:
|
|
2170
|
+
distrNotificationTopicName:
|
|
2171
|
+
type: string
|
|
2172
|
+
distrStatusTopicName:
|
|
2173
|
+
type: string
|
|
2174
|
+
notificationUnregisterResult:
|
|
2175
|
+
$ref: '#/components/schemas/NotificationUnregisterResult'
|
|
2176
|
+
statusUnregisterResult:
|
|
2177
|
+
$ref: '#/components/schemas/StatusUnregisterResult'
|
|
2178
|
+
ServerListResponse:
|
|
2179
|
+
title: ServerListResponse
|
|
2180
|
+
type: object
|
|
2181
|
+
properties:
|
|
2182
|
+
uebServerList:
|
|
2183
|
+
type: array
|
|
2184
|
+
items:
|
|
2185
|
+
type: string
|
|
2186
|
+
description: ''
|
|
2187
|
+
ArtifactDefinition:
|
|
2188
|
+
title: ArtifactDefinition
|
|
2189
|
+
type: object
|
|
2190
|
+
properties:
|
|
2191
|
+
payloadData:
|
|
2192
|
+
type: array
|
|
2193
|
+
items:
|
|
2194
|
+
type: string
|
|
2195
|
+
description: ''
|
|
2196
|
+
listHeatParameters:
|
|
2197
|
+
type: array
|
|
2198
|
+
items:
|
|
2199
|
+
$ref: '#/components/schemas/HeatParameterDefinition'
|
|
2200
|
+
description: ''
|
|
2201
|
+
creationDate:
|
|
2202
|
+
type: integer
|
|
2203
|
+
format: int64
|
|
2204
|
+
timeout:
|
|
2205
|
+
type: integer
|
|
2206
|
+
format: int32
|
|
2207
|
+
esId:
|
|
2208
|
+
type: string
|
|
2209
|
+
description:
|
|
2210
|
+
type: string
|
|
2211
|
+
artifactLabel:
|
|
2212
|
+
type: string
|
|
2213
|
+
artifactUUID:
|
|
2214
|
+
type: string
|
|
2215
|
+
artifactVersion:
|
|
2216
|
+
type: string
|
|
2217
|
+
heatParameters:
|
|
2218
|
+
type: array
|
|
2219
|
+
items:
|
|
2220
|
+
$ref: '#/components/schemas/HeatParameterDataDefinition'
|
|
2221
|
+
description: ''
|
|
2222
|
+
artifactGroupType:
|
|
2223
|
+
$ref: '#/components/schemas/ArtifactGroupType'
|
|
2224
|
+
heatParamsUpdateDate:
|
|
2225
|
+
type: integer
|
|
2226
|
+
format: int64
|
|
2227
|
+
artifactChecksum:
|
|
2228
|
+
type: string
|
|
2229
|
+
generatedFromId:
|
|
2230
|
+
type: string
|
|
2231
|
+
mandatory:
|
|
2232
|
+
type: boolean
|
|
2233
|
+
serviceApi:
|
|
2234
|
+
type: boolean
|
|
2235
|
+
payloadUpdateDate:
|
|
2236
|
+
type: integer
|
|
2237
|
+
format: int64
|
|
2238
|
+
artifactName:
|
|
2239
|
+
type: string
|
|
2240
|
+
artifactType:
|
|
2241
|
+
type: string
|
|
2242
|
+
artifactRef:
|
|
2243
|
+
type: string
|
|
2244
|
+
apiUrl:
|
|
2245
|
+
type: string
|
|
2246
|
+
artifactRepository:
|
|
2247
|
+
type: string
|
|
2248
|
+
userIdCreator:
|
|
2249
|
+
type: string
|
|
2250
|
+
artifactCreator:
|
|
2251
|
+
type: string
|
|
2252
|
+
userIdLastUpdater:
|
|
2253
|
+
type: string
|
|
2254
|
+
updaterFullName:
|
|
2255
|
+
type: string
|
|
2256
|
+
isFromCsar:
|
|
2257
|
+
type: boolean
|
|
2258
|
+
requiredArtifacts:
|
|
2259
|
+
type: array
|
|
2260
|
+
items:
|
|
2261
|
+
type: string
|
|
2262
|
+
description: ''
|
|
2263
|
+
creatorFullName:
|
|
2264
|
+
type: string
|
|
2265
|
+
artifactDisplayName:
|
|
2266
|
+
type: string
|
|
2267
|
+
uniqueId:
|
|
2268
|
+
type: string
|
|
2269
|
+
generated:
|
|
2270
|
+
type: boolean
|
|
2271
|
+
duplicated:
|
|
2272
|
+
type: boolean
|
|
2273
|
+
lastUpdateDate:
|
|
2274
|
+
type: integer
|
|
2275
|
+
format: int64
|
|
2276
|
+
empty:
|
|
2277
|
+
type: boolean
|
|
2278
|
+
ownerId:
|
|
2279
|
+
type: string
|
|
2280
|
+
HeatParameterDataDefinition:
|
|
2281
|
+
title: HeatParameterDataDefinition
|
|
2282
|
+
type: object
|
|
2283
|
+
properties:
|
|
2284
|
+
uniqueId:
|
|
2285
|
+
type: string
|
|
2286
|
+
name:
|
|
2287
|
+
type: string
|
|
2288
|
+
type:
|
|
2289
|
+
type: string
|
|
2290
|
+
description:
|
|
2291
|
+
type: string
|
|
2292
|
+
currentValue:
|
|
2293
|
+
type: string
|
|
2294
|
+
defaultValue:
|
|
2295
|
+
type: string
|
|
2296
|
+
empty:
|
|
2297
|
+
type: boolean
|
|
2298
|
+
ownerId:
|
|
2299
|
+
type: string
|
|
2300
|
+
HeatParameterDefinition:
|
|
2301
|
+
title: HeatParameterDefinition
|
|
2302
|
+
type: object
|
|
2303
|
+
properties:
|
|
2304
|
+
uniqueId:
|
|
2305
|
+
type: string
|
|
2306
|
+
name:
|
|
2307
|
+
type: string
|
|
2308
|
+
type:
|
|
2309
|
+
type: string
|
|
2310
|
+
description:
|
|
2311
|
+
type: string
|
|
2312
|
+
currentValue:
|
|
2313
|
+
type: string
|
|
2314
|
+
defaultValue:
|
|
2315
|
+
type: string
|
|
2316
|
+
empty:
|
|
2317
|
+
type: boolean
|
|
2318
|
+
ownerId:
|
|
2319
|
+
type: string
|
|
2320
|
+
AssetMetadata:
|
|
2321
|
+
title: AssetMetadata
|
|
2322
|
+
type: object
|
|
2323
|
+
properties:
|
|
2324
|
+
uuid:
|
|
2325
|
+
type: string
|
|
2326
|
+
invariantUUID:
|
|
2327
|
+
type: string
|
|
2328
|
+
name:
|
|
2329
|
+
type: string
|
|
2330
|
+
version:
|
|
2331
|
+
type: string
|
|
2332
|
+
toscaModelURL:
|
|
2333
|
+
type: string
|
|
2334
|
+
LifecycleChangeInfoWithAction:
|
|
2335
|
+
title: LifecycleChangeInfoWithAction
|
|
2336
|
+
type: object
|
|
2337
|
+
properties:
|
|
2338
|
+
userRemarks:
|
|
2339
|
+
type: string
|
|
2340
|
+
action:
|
|
2341
|
+
$ref: '#/components/schemas/Action'
|
|
2342
|
+
AdditionalInfoParameterInfo:
|
|
2343
|
+
title: AdditionalInfoParameterInfo
|
|
2344
|
+
type: object
|
|
2345
|
+
properties:
|
|
2346
|
+
uniqueId:
|
|
2347
|
+
type: string
|
|
2348
|
+
key:
|
|
2349
|
+
type: string
|
|
2350
|
+
value:
|
|
2351
|
+
type: string
|
|
2352
|
+
empty:
|
|
2353
|
+
type: boolean
|
|
2354
|
+
ownerId:
|
|
2355
|
+
type: string
|
|
2356
|
+
AdditionalInformationDefinition:
|
|
2357
|
+
title: AdditionalInformationDefinition
|
|
2358
|
+
type: object
|
|
2359
|
+
properties:
|
|
2360
|
+
uniqueId:
|
|
2361
|
+
type: string
|
|
2362
|
+
creationTime:
|
|
2363
|
+
type: integer
|
|
2364
|
+
format: int64
|
|
2365
|
+
modificationTime:
|
|
2366
|
+
type: integer
|
|
2367
|
+
format: int64
|
|
2368
|
+
lastCreatedCounter:
|
|
2369
|
+
type: integer
|
|
2370
|
+
format: int32
|
|
2371
|
+
parameters:
|
|
2372
|
+
type: array
|
|
2373
|
+
items:
|
|
2374
|
+
$ref: '#/components/schemas/AdditionalInfoParameterInfo'
|
|
2375
|
+
description: ''
|
|
2376
|
+
parentUniqueId:
|
|
2377
|
+
type: string
|
|
2378
|
+
empty:
|
|
2379
|
+
type: boolean
|
|
2380
|
+
ownerId:
|
|
2381
|
+
type: string
|
|
2382
|
+
ArtifactDataDefinition:
|
|
2383
|
+
title: ArtifactDataDefinition
|
|
2384
|
+
type: object
|
|
2385
|
+
properties:
|
|
2386
|
+
creationDate:
|
|
2387
|
+
type: integer
|
|
2388
|
+
format: int64
|
|
2389
|
+
timeout:
|
|
2390
|
+
type: integer
|
|
2391
|
+
format: int32
|
|
2392
|
+
esId:
|
|
2393
|
+
type: string
|
|
2394
|
+
description:
|
|
2395
|
+
type: string
|
|
2396
|
+
artifactLabel:
|
|
2397
|
+
type: string
|
|
2398
|
+
artifactUUID:
|
|
2399
|
+
type: string
|
|
2400
|
+
artifactVersion:
|
|
2401
|
+
type: string
|
|
2402
|
+
heatParameters:
|
|
2403
|
+
type: array
|
|
2404
|
+
items:
|
|
2405
|
+
$ref: '#/components/schemas/HeatParameterDataDefinition'
|
|
2406
|
+
description: ''
|
|
2407
|
+
artifactGroupType:
|
|
2408
|
+
$ref: '#/components/schemas/ArtifactGroupType'
|
|
2409
|
+
heatParamsUpdateDate:
|
|
2410
|
+
type: integer
|
|
2411
|
+
format: int64
|
|
2412
|
+
artifactChecksum:
|
|
2413
|
+
type: string
|
|
2414
|
+
generatedFromId:
|
|
2415
|
+
type: string
|
|
2416
|
+
mandatory:
|
|
2417
|
+
type: boolean
|
|
2418
|
+
serviceApi:
|
|
2419
|
+
type: boolean
|
|
2420
|
+
payloadUpdateDate:
|
|
2421
|
+
type: integer
|
|
2422
|
+
format: int64
|
|
2423
|
+
artifactName:
|
|
2424
|
+
type: string
|
|
2425
|
+
artifactType:
|
|
2426
|
+
type: string
|
|
2427
|
+
artifactRef:
|
|
2428
|
+
type: string
|
|
2429
|
+
apiUrl:
|
|
2430
|
+
type: string
|
|
2431
|
+
artifactRepository:
|
|
2432
|
+
type: string
|
|
2433
|
+
userIdCreator:
|
|
2434
|
+
type: string
|
|
2435
|
+
artifactCreator:
|
|
2436
|
+
type: string
|
|
2437
|
+
userIdLastUpdater:
|
|
2438
|
+
type: string
|
|
2439
|
+
updaterFullName:
|
|
2440
|
+
type: string
|
|
2441
|
+
isFromCsar:
|
|
2442
|
+
type: boolean
|
|
2443
|
+
requiredArtifacts:
|
|
2444
|
+
type: array
|
|
2445
|
+
items:
|
|
2446
|
+
type: string
|
|
2447
|
+
description: ''
|
|
2448
|
+
creatorFullName:
|
|
2449
|
+
type: string
|
|
2450
|
+
artifactDisplayName:
|
|
2451
|
+
type: string
|
|
2452
|
+
uniqueId:
|
|
2453
|
+
type: string
|
|
2454
|
+
generated:
|
|
2455
|
+
type: boolean
|
|
2456
|
+
duplicated:
|
|
2457
|
+
type: boolean
|
|
2458
|
+
lastUpdateDate:
|
|
2459
|
+
type: integer
|
|
2460
|
+
format: int64
|
|
2461
|
+
empty:
|
|
2462
|
+
type: boolean
|
|
2463
|
+
ownerId:
|
|
2464
|
+
type: string
|
|
2465
|
+
CapabilityDataDefinition:
|
|
2466
|
+
title: CapabilityDataDefinition
|
|
2467
|
+
type: object
|
|
2468
|
+
properties:
|
|
2469
|
+
name:
|
|
2470
|
+
type: string
|
|
2471
|
+
type:
|
|
2472
|
+
type: string
|
|
2473
|
+
path:
|
|
2474
|
+
type: array
|
|
2475
|
+
items:
|
|
2476
|
+
type: string
|
|
2477
|
+
description: ''
|
|
2478
|
+
parentName:
|
|
2479
|
+
type: string
|
|
2480
|
+
source:
|
|
2481
|
+
type: string
|
|
2482
|
+
description:
|
|
2483
|
+
type: string
|
|
2484
|
+
capabilitySources:
|
|
2485
|
+
type: array
|
|
2486
|
+
items:
|
|
2487
|
+
type: string
|
|
2488
|
+
description: ''
|
|
2489
|
+
minOccurrences:
|
|
2490
|
+
type: string
|
|
2491
|
+
maxOccurrences:
|
|
2492
|
+
type: string
|
|
2493
|
+
validSourceTypes:
|
|
2494
|
+
type: array
|
|
2495
|
+
items:
|
|
2496
|
+
type: string
|
|
2497
|
+
description: ''
|
|
2498
|
+
leftOccurrences:
|
|
2499
|
+
type: string
|
|
2500
|
+
ownerName:
|
|
2501
|
+
type: string
|
|
2502
|
+
ownerId:
|
|
2503
|
+
type: string
|
|
2504
|
+
uniqueId:
|
|
2505
|
+
type: string
|
|
2506
|
+
empty:
|
|
2507
|
+
type: boolean
|
|
2508
|
+
CapabilityDefinition:
|
|
2509
|
+
title: CapabilityDefinition
|
|
2510
|
+
type: object
|
|
2511
|
+
properties:
|
|
2512
|
+
properties:
|
|
2513
|
+
type: array
|
|
2514
|
+
items:
|
|
2515
|
+
$ref: '#/components/schemas/ComponentInstanceProperty'
|
|
2516
|
+
description: ''
|
|
2517
|
+
name:
|
|
2518
|
+
type: string
|
|
2519
|
+
type:
|
|
2520
|
+
type: string
|
|
2521
|
+
path:
|
|
2522
|
+
type: array
|
|
2523
|
+
items:
|
|
2524
|
+
type: string
|
|
2525
|
+
description: ''
|
|
2526
|
+
parentName:
|
|
2527
|
+
type: string
|
|
2528
|
+
source:
|
|
2529
|
+
type: string
|
|
2530
|
+
description:
|
|
2531
|
+
type: string
|
|
2532
|
+
capabilitySources:
|
|
2533
|
+
type: array
|
|
2534
|
+
items:
|
|
2535
|
+
type: string
|
|
2536
|
+
description: ''
|
|
2537
|
+
minOccurrences:
|
|
2538
|
+
type: string
|
|
2539
|
+
maxOccurrences:
|
|
2540
|
+
type: string
|
|
2541
|
+
validSourceTypes:
|
|
2542
|
+
type: array
|
|
2543
|
+
items:
|
|
2544
|
+
type: string
|
|
2545
|
+
description: ''
|
|
2546
|
+
leftOccurrences:
|
|
2547
|
+
type: string
|
|
2548
|
+
ownerName:
|
|
2549
|
+
type: string
|
|
2550
|
+
ownerId:
|
|
2551
|
+
type: string
|
|
2552
|
+
uniqueId:
|
|
2553
|
+
type: string
|
|
2554
|
+
empty:
|
|
2555
|
+
type: boolean
|
|
2556
|
+
CapabilityRequirementRelationship:
|
|
2557
|
+
title: CapabilityRequirementRelationship
|
|
2558
|
+
type: object
|
|
2559
|
+
properties:
|
|
2560
|
+
relation:
|
|
2561
|
+
$ref: '#/components/schemas/RelationshipInfo'
|
|
2562
|
+
capability:
|
|
2563
|
+
$ref: '#/components/schemas/CapabilityDataDefinition'
|
|
2564
|
+
requirement:
|
|
2565
|
+
$ref: '#/components/schemas/RequirementDataDefinition'
|
|
2566
|
+
CategoryDefinition:
|
|
2567
|
+
title: CategoryDefinition
|
|
2568
|
+
type: object
|
|
2569
|
+
properties:
|
|
2570
|
+
name:
|
|
2571
|
+
type: string
|
|
2572
|
+
normalizedName:
|
|
2573
|
+
type: string
|
|
2574
|
+
uniqueId:
|
|
2575
|
+
type: string
|
|
2576
|
+
icons:
|
|
2577
|
+
type: array
|
|
2578
|
+
items:
|
|
2579
|
+
type: string
|
|
2580
|
+
description: ''
|
|
2581
|
+
subcategories:
|
|
2582
|
+
type: array
|
|
2583
|
+
items:
|
|
2584
|
+
$ref: '#/components/schemas/SubCategoryDefinition'
|
|
2585
|
+
description: ''
|
|
2586
|
+
empty:
|
|
2587
|
+
type: boolean
|
|
2588
|
+
ownerId:
|
|
2589
|
+
type: string
|
|
2590
|
+
ComponentInstance:
|
|
2591
|
+
title: ComponentInstance
|
|
2592
|
+
type: object
|
|
2593
|
+
properties:
|
|
2594
|
+
capabilities:
|
|
2595
|
+
type: object
|
|
2596
|
+
additionalProperties:
|
|
2597
|
+
type: object
|
|
2598
|
+
requirements:
|
|
2599
|
+
type: object
|
|
2600
|
+
additionalProperties:
|
|
2601
|
+
type: object
|
|
2602
|
+
deploymentArtifacts:
|
|
2603
|
+
type: object
|
|
2604
|
+
additionalProperties:
|
|
2605
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
2606
|
+
artifacts:
|
|
2607
|
+
type: object
|
|
2608
|
+
additionalProperties:
|
|
2609
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
2610
|
+
groupInstances:
|
|
2611
|
+
type: array
|
|
2612
|
+
items:
|
|
2613
|
+
$ref: '#/components/schemas/GroupInstance'
|
|
2614
|
+
description: ''
|
|
2615
|
+
actualComponentUid:
|
|
2616
|
+
type: string
|
|
2617
|
+
name:
|
|
2618
|
+
type: string
|
|
2619
|
+
uniqueId:
|
|
2620
|
+
type: string
|
|
2621
|
+
normalizedName:
|
|
2622
|
+
type: string
|
|
2623
|
+
creationTime:
|
|
2624
|
+
type: integer
|
|
2625
|
+
format: int64
|
|
2626
|
+
sourceModelInvariant:
|
|
2627
|
+
type: string
|
|
2628
|
+
sourceModelUuid:
|
|
2629
|
+
type: string
|
|
2630
|
+
sourceModelName:
|
|
2631
|
+
type: string
|
|
2632
|
+
sourceModelUid:
|
|
2633
|
+
type: string
|
|
2634
|
+
invariantName:
|
|
2635
|
+
type: string
|
|
2636
|
+
posX:
|
|
2637
|
+
type: string
|
|
2638
|
+
posY:
|
|
2639
|
+
type: string
|
|
2640
|
+
originType:
|
|
2641
|
+
$ref: '#/components/schemas/OriginType'
|
|
2642
|
+
description:
|
|
2643
|
+
type: string
|
|
2644
|
+
propertyValueCounter:
|
|
2645
|
+
type: integer
|
|
2646
|
+
format: int32
|
|
2647
|
+
customizationUUID:
|
|
2648
|
+
type: string
|
|
2649
|
+
modificationTime:
|
|
2650
|
+
type: integer
|
|
2651
|
+
format: int64
|
|
2652
|
+
componentUid:
|
|
2653
|
+
type: string
|
|
2654
|
+
componentVersion:
|
|
2655
|
+
type: string
|
|
2656
|
+
componentName:
|
|
2657
|
+
type: string
|
|
2658
|
+
toscaComponentName:
|
|
2659
|
+
type: string
|
|
2660
|
+
isProxy:
|
|
2661
|
+
type: boolean
|
|
2662
|
+
icon:
|
|
2663
|
+
type: string
|
|
2664
|
+
attributeValueCounter:
|
|
2665
|
+
type: integer
|
|
2666
|
+
format: int32
|
|
2667
|
+
inputValueCounter:
|
|
2668
|
+
type: integer
|
|
2669
|
+
format: int32
|
|
2670
|
+
empty:
|
|
2671
|
+
type: boolean
|
|
2672
|
+
ownerId:
|
|
2673
|
+
type: string
|
|
2674
|
+
ComponentInstanceInput:
|
|
2675
|
+
title: ComponentInstanceInput
|
|
2676
|
+
type: object
|
|
2677
|
+
properties:
|
|
2678
|
+
uniqueId:
|
|
2679
|
+
type: string
|
|
2680
|
+
type:
|
|
2681
|
+
type: string
|
|
2682
|
+
required:
|
|
2683
|
+
type: boolean
|
|
2684
|
+
definition:
|
|
2685
|
+
type: boolean
|
|
2686
|
+
defaultValue:
|
|
2687
|
+
type: string
|
|
2688
|
+
description:
|
|
2689
|
+
type: string
|
|
2690
|
+
schema:
|
|
2691
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
2692
|
+
password:
|
|
2693
|
+
type: boolean
|
|
2694
|
+
name:
|
|
2695
|
+
type: string
|
|
2696
|
+
value:
|
|
2697
|
+
type: string
|
|
2698
|
+
label:
|
|
2699
|
+
type: string
|
|
2700
|
+
hidden:
|
|
2701
|
+
type: boolean
|
|
2702
|
+
immutable:
|
|
2703
|
+
type: boolean
|
|
2704
|
+
inputPath:
|
|
2705
|
+
type: string
|
|
2706
|
+
status:
|
|
2707
|
+
type: string
|
|
2708
|
+
inputId:
|
|
2709
|
+
type: string
|
|
2710
|
+
instanceUniqueId:
|
|
2711
|
+
type: string
|
|
2712
|
+
propertyId:
|
|
2713
|
+
type: string
|
|
2714
|
+
parentUniqueId:
|
|
2715
|
+
type: string
|
|
2716
|
+
getInputValues:
|
|
2717
|
+
type: array
|
|
2718
|
+
items:
|
|
2719
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
2720
|
+
description: ''
|
|
2721
|
+
constraints:
|
|
2722
|
+
type: array
|
|
2723
|
+
items:
|
|
2724
|
+
type: object
|
|
2725
|
+
description: ''
|
|
2726
|
+
inputs:
|
|
2727
|
+
type: array
|
|
2728
|
+
items:
|
|
2729
|
+
$ref: '#/components/schemas/ComponentInstanceInput'
|
|
2730
|
+
description: ''
|
|
2731
|
+
properties:
|
|
2732
|
+
type: array
|
|
2733
|
+
items:
|
|
2734
|
+
$ref: '#/components/schemas/ComponentInstanceProperty'
|
|
2735
|
+
description: ''
|
|
2736
|
+
valueUniqueUid:
|
|
2737
|
+
type: string
|
|
2738
|
+
path:
|
|
2739
|
+
type: array
|
|
2740
|
+
items:
|
|
2741
|
+
type: string
|
|
2742
|
+
description: ''
|
|
2743
|
+
rules:
|
|
2744
|
+
type: array
|
|
2745
|
+
items:
|
|
2746
|
+
$ref: '#/components/schemas/PropertyRule'
|
|
2747
|
+
description: ''
|
|
2748
|
+
componentInstanceName:
|
|
2749
|
+
type: string
|
|
2750
|
+
componentInstanceId:
|
|
2751
|
+
type: string
|
|
2752
|
+
schemaType:
|
|
2753
|
+
type: string
|
|
2754
|
+
getInputProperty:
|
|
2755
|
+
type: boolean
|
|
2756
|
+
empty:
|
|
2757
|
+
type: boolean
|
|
2758
|
+
ownerId:
|
|
2759
|
+
type: string
|
|
2760
|
+
ComponentInstanceProperty:
|
|
2761
|
+
title: ComponentInstanceProperty
|
|
2762
|
+
type: object
|
|
2763
|
+
properties:
|
|
2764
|
+
uniqueId:
|
|
2765
|
+
type: string
|
|
2766
|
+
type:
|
|
2767
|
+
type: string
|
|
2768
|
+
required:
|
|
2769
|
+
type: boolean
|
|
2770
|
+
definition:
|
|
2771
|
+
type: boolean
|
|
2772
|
+
defaultValue:
|
|
2773
|
+
type: string
|
|
2774
|
+
description:
|
|
2775
|
+
type: string
|
|
2776
|
+
schema:
|
|
2777
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
2778
|
+
password:
|
|
2779
|
+
type: boolean
|
|
2780
|
+
name:
|
|
2781
|
+
type: string
|
|
2782
|
+
value:
|
|
2783
|
+
type: string
|
|
2784
|
+
label:
|
|
2785
|
+
type: string
|
|
2786
|
+
hidden:
|
|
2787
|
+
type: boolean
|
|
2788
|
+
immutable:
|
|
2789
|
+
type: boolean
|
|
2790
|
+
inputPath:
|
|
2791
|
+
type: string
|
|
2792
|
+
status:
|
|
2793
|
+
type: string
|
|
2794
|
+
inputId:
|
|
2795
|
+
type: string
|
|
2796
|
+
instanceUniqueId:
|
|
2797
|
+
type: string
|
|
2798
|
+
propertyId:
|
|
2799
|
+
type: string
|
|
2800
|
+
parentUniqueId:
|
|
2801
|
+
type: string
|
|
2802
|
+
getInputValues:
|
|
2803
|
+
type: array
|
|
2804
|
+
items:
|
|
2805
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
2806
|
+
description: ''
|
|
2807
|
+
constraints:
|
|
2808
|
+
type: array
|
|
2809
|
+
items:
|
|
2810
|
+
type: object
|
|
2811
|
+
description: ''
|
|
2812
|
+
valueUniqueUid:
|
|
2813
|
+
type: string
|
|
2814
|
+
path:
|
|
2815
|
+
type: array
|
|
2816
|
+
items:
|
|
2817
|
+
type: string
|
|
2818
|
+
description: ''
|
|
2819
|
+
rules:
|
|
2820
|
+
type: array
|
|
2821
|
+
items:
|
|
2822
|
+
$ref: '#/components/schemas/PropertyRule'
|
|
2823
|
+
description: ''
|
|
2824
|
+
componentInstanceName:
|
|
2825
|
+
type: string
|
|
2826
|
+
componentInstanceId:
|
|
2827
|
+
type: string
|
|
2828
|
+
schemaType:
|
|
2829
|
+
type: string
|
|
2830
|
+
getInputProperty:
|
|
2831
|
+
type: boolean
|
|
2832
|
+
empty:
|
|
2833
|
+
type: boolean
|
|
2834
|
+
ownerId:
|
|
2835
|
+
type: string
|
|
2836
|
+
GetInputValueDataDefinition:
|
|
2837
|
+
title: GetInputValueDataDefinition
|
|
2838
|
+
type: object
|
|
2839
|
+
properties:
|
|
2840
|
+
propName:
|
|
2841
|
+
type: string
|
|
2842
|
+
inputName:
|
|
2843
|
+
type: string
|
|
2844
|
+
inputId:
|
|
2845
|
+
type: string
|
|
2846
|
+
indexValue:
|
|
2847
|
+
type: integer
|
|
2848
|
+
format: int32
|
|
2849
|
+
getInputIndex:
|
|
2850
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
2851
|
+
list:
|
|
2852
|
+
type: boolean
|
|
2853
|
+
empty:
|
|
2854
|
+
type: boolean
|
|
2855
|
+
ownerId:
|
|
2856
|
+
type: string
|
|
2857
|
+
GroupDefinition:
|
|
2858
|
+
title: GroupDefinition
|
|
2859
|
+
type: object
|
|
2860
|
+
properties:
|
|
2861
|
+
typeUid:
|
|
2862
|
+
type: string
|
|
2863
|
+
propertyValueCounter:
|
|
2864
|
+
type: integer
|
|
2865
|
+
format: int32
|
|
2866
|
+
name:
|
|
2867
|
+
type: string
|
|
2868
|
+
properties:
|
|
2869
|
+
type: array
|
|
2870
|
+
items:
|
|
2871
|
+
$ref: '#/components/schemas/PropertyDataDefinition'
|
|
2872
|
+
description: ''
|
|
2873
|
+
type:
|
|
2874
|
+
type: string
|
|
2875
|
+
members:
|
|
2876
|
+
type: object
|
|
2877
|
+
additionalProperties:
|
|
2878
|
+
type: string
|
|
2879
|
+
version:
|
|
2880
|
+
type: string
|
|
2881
|
+
artifacts:
|
|
2882
|
+
type: array
|
|
2883
|
+
items:
|
|
2884
|
+
type: string
|
|
2885
|
+
description: ''
|
|
2886
|
+
invariantUUID:
|
|
2887
|
+
type: string
|
|
2888
|
+
artifactsUuid:
|
|
2889
|
+
type: array
|
|
2890
|
+
items:
|
|
2891
|
+
type: string
|
|
2892
|
+
description: ''
|
|
2893
|
+
groupUUID:
|
|
2894
|
+
type: string
|
|
2895
|
+
description:
|
|
2896
|
+
type: string
|
|
2897
|
+
uniqueId:
|
|
2898
|
+
type: string
|
|
2899
|
+
empty:
|
|
2900
|
+
type: boolean
|
|
2901
|
+
ownerId:
|
|
2902
|
+
type: string
|
|
2903
|
+
GroupInstance:
|
|
2904
|
+
title: GroupInstance
|
|
2905
|
+
type: object
|
|
2906
|
+
properties:
|
|
2907
|
+
name:
|
|
2908
|
+
type: string
|
|
2909
|
+
properties:
|
|
2910
|
+
type: array
|
|
2911
|
+
items:
|
|
2912
|
+
$ref: '#/components/schemas/PropertyDataDefinition'
|
|
2913
|
+
description: ''
|
|
2914
|
+
type:
|
|
2915
|
+
type: string
|
|
2916
|
+
creationTime:
|
|
2917
|
+
type: integer
|
|
2918
|
+
format: int64
|
|
2919
|
+
version:
|
|
2920
|
+
type: string
|
|
2921
|
+
groupName:
|
|
2922
|
+
type: string
|
|
2923
|
+
posX:
|
|
2924
|
+
type: string
|
|
2925
|
+
posY:
|
|
2926
|
+
type: string
|
|
2927
|
+
artifacts:
|
|
2928
|
+
type: array
|
|
2929
|
+
items:
|
|
2930
|
+
type: string
|
|
2931
|
+
description: ''
|
|
2932
|
+
groupUid:
|
|
2933
|
+
type: string
|
|
2934
|
+
groupInstanceArtifacts:
|
|
2935
|
+
type: array
|
|
2936
|
+
items:
|
|
2937
|
+
type: string
|
|
2938
|
+
description: ''
|
|
2939
|
+
groupInstanceArtifactsUuid:
|
|
2940
|
+
type: array
|
|
2941
|
+
items:
|
|
2942
|
+
type: string
|
|
2943
|
+
description: ''
|
|
2944
|
+
invariantUUID:
|
|
2945
|
+
type: string
|
|
2946
|
+
artifactsUuid:
|
|
2947
|
+
type: array
|
|
2948
|
+
items:
|
|
2949
|
+
type: string
|
|
2950
|
+
description: ''
|
|
2951
|
+
groupUUID:
|
|
2952
|
+
type: string
|
|
2953
|
+
description:
|
|
2954
|
+
type: string
|
|
2955
|
+
propertyValueCounter:
|
|
2956
|
+
type: integer
|
|
2957
|
+
format: int32
|
|
2958
|
+
customizationUUID:
|
|
2959
|
+
type: string
|
|
2960
|
+
modificationTime:
|
|
2961
|
+
type: integer
|
|
2962
|
+
format: int64
|
|
2963
|
+
normalizedName:
|
|
2964
|
+
type: string
|
|
2965
|
+
uniqueId:
|
|
2966
|
+
type: string
|
|
2967
|
+
empty:
|
|
2968
|
+
type: boolean
|
|
2969
|
+
ownerId:
|
|
2970
|
+
type: string
|
|
2971
|
+
GroupingDefinition:
|
|
2972
|
+
title: GroupingDefinition
|
|
2973
|
+
type: object
|
|
2974
|
+
properties:
|
|
2975
|
+
name:
|
|
2976
|
+
type: string
|
|
2977
|
+
normalizedName:
|
|
2978
|
+
type: string
|
|
2979
|
+
uniqueId:
|
|
2980
|
+
type: string
|
|
2981
|
+
empty:
|
|
2982
|
+
type: boolean
|
|
2983
|
+
ownerId:
|
|
2984
|
+
type: string
|
|
2985
|
+
InputDefinition:
|
|
2986
|
+
title: InputDefinition
|
|
2987
|
+
type: object
|
|
2988
|
+
properties:
|
|
2989
|
+
uniqueId:
|
|
2990
|
+
type: string
|
|
2991
|
+
type:
|
|
2992
|
+
type: string
|
|
2993
|
+
required:
|
|
2994
|
+
type: boolean
|
|
2995
|
+
definition:
|
|
2996
|
+
type: boolean
|
|
2997
|
+
defaultValue:
|
|
2998
|
+
type: string
|
|
2999
|
+
description:
|
|
3000
|
+
type: string
|
|
3001
|
+
schema:
|
|
3002
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
3003
|
+
password:
|
|
3004
|
+
type: boolean
|
|
3005
|
+
name:
|
|
3006
|
+
type: string
|
|
3007
|
+
value:
|
|
3008
|
+
type: string
|
|
3009
|
+
label:
|
|
3010
|
+
type: string
|
|
3011
|
+
hidden:
|
|
3012
|
+
type: boolean
|
|
3013
|
+
immutable:
|
|
3014
|
+
type: boolean
|
|
3015
|
+
inputPath:
|
|
3016
|
+
type: string
|
|
3017
|
+
status:
|
|
3018
|
+
type: string
|
|
3019
|
+
inputId:
|
|
3020
|
+
type: string
|
|
3021
|
+
instanceUniqueId:
|
|
3022
|
+
type: string
|
|
3023
|
+
propertyId:
|
|
3024
|
+
type: string
|
|
3025
|
+
parentUniqueId:
|
|
3026
|
+
type: string
|
|
3027
|
+
getInputValues:
|
|
3028
|
+
type: array
|
|
3029
|
+
items:
|
|
3030
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
3031
|
+
description: ''
|
|
3032
|
+
constraints:
|
|
3033
|
+
type: array
|
|
3034
|
+
items:
|
|
3035
|
+
type: object
|
|
3036
|
+
description: ''
|
|
3037
|
+
inputs:
|
|
3038
|
+
type: array
|
|
3039
|
+
items:
|
|
3040
|
+
$ref: '#/components/schemas/ComponentInstanceInput'
|
|
3041
|
+
description: ''
|
|
3042
|
+
properties:
|
|
3043
|
+
type: array
|
|
3044
|
+
items:
|
|
3045
|
+
$ref: '#/components/schemas/ComponentInstanceProperty'
|
|
3046
|
+
description: ''
|
|
3047
|
+
schemaType:
|
|
3048
|
+
type: string
|
|
3049
|
+
getInputProperty:
|
|
3050
|
+
type: boolean
|
|
3051
|
+
empty:
|
|
3052
|
+
type: boolean
|
|
3053
|
+
ownerId:
|
|
3054
|
+
type: string
|
|
3055
|
+
InterfaceDefinition:
|
|
3056
|
+
title: InterfaceDefinition
|
|
3057
|
+
type: object
|
|
3058
|
+
properties:
|
|
3059
|
+
definition:
|
|
3060
|
+
type: boolean
|
|
3061
|
+
type:
|
|
3062
|
+
type: string
|
|
3063
|
+
creationDate:
|
|
3064
|
+
type: integer
|
|
3065
|
+
format: int64
|
|
3066
|
+
description:
|
|
3067
|
+
type: string
|
|
3068
|
+
uniqueId:
|
|
3069
|
+
type: string
|
|
3070
|
+
operations:
|
|
3071
|
+
type: object
|
|
3072
|
+
additionalProperties:
|
|
3073
|
+
$ref: '#/components/schemas/OperationDataDefinition'
|
|
3074
|
+
toscaResourceName:
|
|
3075
|
+
type: string
|
|
3076
|
+
lastUpdateDate:
|
|
3077
|
+
type: integer
|
|
3078
|
+
format: int64
|
|
3079
|
+
empty:
|
|
3080
|
+
type: boolean
|
|
3081
|
+
ownerId:
|
|
3082
|
+
type: string
|
|
3083
|
+
InterfaceOperationDataDefinition:
|
|
3084
|
+
title: InterfaceOperationDataDefinition
|
|
3085
|
+
type: object
|
|
3086
|
+
properties:
|
|
3087
|
+
description:
|
|
3088
|
+
type: string
|
|
3089
|
+
artifactUUID:
|
|
3090
|
+
type: string
|
|
3091
|
+
inputParams:
|
|
3092
|
+
$ref: '#/components/schemas/ListDataDefinitionInterfaceOperationParamDataDefinition'
|
|
3093
|
+
uniqueId:
|
|
3094
|
+
type: string
|
|
3095
|
+
toscaResourceName:
|
|
3096
|
+
type: string
|
|
3097
|
+
outputParams:
|
|
3098
|
+
$ref: '#/components/schemas/ListDataDefinitionInterfaceOperationParamDataDefinition'
|
|
3099
|
+
operationType:
|
|
3100
|
+
type: string
|
|
3101
|
+
empty:
|
|
3102
|
+
type: boolean
|
|
3103
|
+
ownerId:
|
|
3104
|
+
type: string
|
|
3105
|
+
InterfaceOperationParamDataDefinition:
|
|
3106
|
+
title: InterfaceOperationParamDataDefinition
|
|
3107
|
+
type: object
|
|
3108
|
+
properties:
|
|
3109
|
+
paramName:
|
|
3110
|
+
type: string
|
|
3111
|
+
paramId:
|
|
3112
|
+
type: string
|
|
3113
|
+
empty:
|
|
3114
|
+
type: boolean
|
|
3115
|
+
ownerId:
|
|
3116
|
+
type: string
|
|
3117
|
+
ListDataDefinition:
|
|
3118
|
+
title: ListDataDefinition
|
|
3119
|
+
type: object
|
|
3120
|
+
properties:
|
|
3121
|
+
listToscaDataDefinition:
|
|
3122
|
+
type: array
|
|
3123
|
+
items:
|
|
3124
|
+
$ref: '#/components/schemas/ToscaDataDefinition'
|
|
3125
|
+
description: ''
|
|
3126
|
+
empty:
|
|
3127
|
+
type: boolean
|
|
3128
|
+
ownerId:
|
|
3129
|
+
type: string
|
|
3130
|
+
ListDataDefinitionInterfaceOperationParamDataDefinition:
|
|
3131
|
+
title: ListDataDefinitionInterfaceOperationParamDataDefinition
|
|
3132
|
+
type: object
|
|
3133
|
+
properties:
|
|
3134
|
+
listToscaDataDefinition:
|
|
3135
|
+
type: array
|
|
3136
|
+
items:
|
|
3137
|
+
$ref: '#/components/schemas/InterfaceOperationParamDataDefinition'
|
|
3138
|
+
description: ''
|
|
3139
|
+
empty:
|
|
3140
|
+
type: boolean
|
|
3141
|
+
ownerId:
|
|
3142
|
+
type: string
|
|
3143
|
+
ListDataDefinitionOperationInputDefinition:
|
|
3144
|
+
title: ListDataDefinitionOperationInputDefinition
|
|
3145
|
+
type: object
|
|
3146
|
+
properties:
|
|
3147
|
+
listToscaDataDefinition:
|
|
3148
|
+
type: array
|
|
3149
|
+
items:
|
|
3150
|
+
$ref: '#/components/schemas/OperationInputDefinition'
|
|
3151
|
+
description: ''
|
|
3152
|
+
empty:
|
|
3153
|
+
type: boolean
|
|
3154
|
+
ownerId:
|
|
3155
|
+
type: string
|
|
3156
|
+
OperationDataDefinition:
|
|
3157
|
+
title: OperationDataDefinition
|
|
3158
|
+
type: object
|
|
3159
|
+
properties:
|
|
3160
|
+
name:
|
|
3161
|
+
type: string
|
|
3162
|
+
creationDate:
|
|
3163
|
+
type: integer
|
|
3164
|
+
format: int64
|
|
3165
|
+
description:
|
|
3166
|
+
type: string
|
|
3167
|
+
inputs:
|
|
3168
|
+
$ref: '#/components/schemas/ListDataDefinitionOperationInputDefinition'
|
|
3169
|
+
uniqueId:
|
|
3170
|
+
type: string
|
|
3171
|
+
lastUpdateDate:
|
|
3172
|
+
type: integer
|
|
3173
|
+
format: int64
|
|
3174
|
+
implementation:
|
|
3175
|
+
$ref: '#/components/schemas/ArtifactDataDefinition'
|
|
3176
|
+
empty:
|
|
3177
|
+
type: boolean
|
|
3178
|
+
ownerId:
|
|
3179
|
+
type: string
|
|
3180
|
+
OperationInputDefinition:
|
|
3181
|
+
title: OperationInputDefinition
|
|
3182
|
+
type: object
|
|
3183
|
+
properties:
|
|
3184
|
+
uniqueId:
|
|
3185
|
+
type: string
|
|
3186
|
+
type:
|
|
3187
|
+
type: string
|
|
3188
|
+
required:
|
|
3189
|
+
type: boolean
|
|
3190
|
+
definition:
|
|
3191
|
+
type: boolean
|
|
3192
|
+
defaultValue:
|
|
3193
|
+
type: string
|
|
3194
|
+
description:
|
|
3195
|
+
type: string
|
|
3196
|
+
schema:
|
|
3197
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
3198
|
+
password:
|
|
3199
|
+
type: boolean
|
|
3200
|
+
name:
|
|
3201
|
+
type: string
|
|
3202
|
+
value:
|
|
3203
|
+
type: string
|
|
3204
|
+
label:
|
|
3205
|
+
type: string
|
|
3206
|
+
hidden:
|
|
3207
|
+
type: boolean
|
|
3208
|
+
immutable:
|
|
3209
|
+
type: boolean
|
|
3210
|
+
inputPath:
|
|
3211
|
+
type: string
|
|
3212
|
+
status:
|
|
3213
|
+
type: string
|
|
3214
|
+
inputId:
|
|
3215
|
+
type: string
|
|
3216
|
+
instanceUniqueId:
|
|
3217
|
+
type: string
|
|
3218
|
+
propertyId:
|
|
3219
|
+
type: string
|
|
3220
|
+
parentUniqueId:
|
|
3221
|
+
type: string
|
|
3222
|
+
getInputValues:
|
|
3223
|
+
type: array
|
|
3224
|
+
items:
|
|
3225
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
3226
|
+
description: ''
|
|
3227
|
+
schemaType:
|
|
3228
|
+
type: string
|
|
3229
|
+
getInputProperty:
|
|
3230
|
+
type: boolean
|
|
3231
|
+
empty:
|
|
3232
|
+
type: boolean
|
|
3233
|
+
ownerId:
|
|
3234
|
+
type: string
|
|
3235
|
+
PolicyDefinition:
|
|
3236
|
+
title: PolicyDefinition
|
|
3237
|
+
type: object
|
|
3238
|
+
properties:
|
|
3239
|
+
normalizedName:
|
|
3240
|
+
type: string
|
|
3241
|
+
name:
|
|
3242
|
+
type: string
|
|
3243
|
+
uniqueId:
|
|
3244
|
+
type: string
|
|
3245
|
+
properties:
|
|
3246
|
+
type: array
|
|
3247
|
+
items:
|
|
3248
|
+
$ref: '#/components/schemas/PropertyDataDefinition'
|
|
3249
|
+
description: ''
|
|
3250
|
+
version:
|
|
3251
|
+
type: string
|
|
3252
|
+
invariantName:
|
|
3253
|
+
type: string
|
|
3254
|
+
invariantUUID:
|
|
3255
|
+
type: string
|
|
3256
|
+
description:
|
|
3257
|
+
type: string
|
|
3258
|
+
derivedFrom:
|
|
3259
|
+
type: string
|
|
3260
|
+
targets:
|
|
3261
|
+
type: object
|
|
3262
|
+
additionalProperties:
|
|
3263
|
+
type: object
|
|
3264
|
+
isFromCsar:
|
|
3265
|
+
type: boolean
|
|
3266
|
+
policyTypeName:
|
|
3267
|
+
type: string
|
|
3268
|
+
policyTypeUid:
|
|
3269
|
+
type: string
|
|
3270
|
+
policyUUID:
|
|
3271
|
+
type: string
|
|
3272
|
+
componentName:
|
|
3273
|
+
type: string
|
|
3274
|
+
empty:
|
|
3275
|
+
type: boolean
|
|
3276
|
+
ownerId:
|
|
3277
|
+
type: string
|
|
3278
|
+
PropertyDataDefinition:
|
|
3279
|
+
title: PropertyDataDefinition
|
|
3280
|
+
type: object
|
|
3281
|
+
properties:
|
|
3282
|
+
uniqueId:
|
|
3283
|
+
type: string
|
|
3284
|
+
type:
|
|
3285
|
+
type: string
|
|
3286
|
+
required:
|
|
3287
|
+
type: boolean
|
|
3288
|
+
definition:
|
|
3289
|
+
type: boolean
|
|
3290
|
+
defaultValue:
|
|
3291
|
+
type: string
|
|
3292
|
+
description:
|
|
3293
|
+
type: string
|
|
3294
|
+
schema:
|
|
3295
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
3296
|
+
password:
|
|
3297
|
+
type: boolean
|
|
3298
|
+
name:
|
|
3299
|
+
type: string
|
|
3300
|
+
value:
|
|
3301
|
+
type: string
|
|
3302
|
+
label:
|
|
3303
|
+
type: string
|
|
3304
|
+
hidden:
|
|
3305
|
+
type: boolean
|
|
3306
|
+
immutable:
|
|
3307
|
+
type: boolean
|
|
3308
|
+
inputPath:
|
|
3309
|
+
type: string
|
|
3310
|
+
status:
|
|
3311
|
+
type: string
|
|
3312
|
+
inputId:
|
|
3313
|
+
type: string
|
|
3314
|
+
instanceUniqueId:
|
|
3315
|
+
type: string
|
|
3316
|
+
propertyId:
|
|
3317
|
+
type: string
|
|
3318
|
+
parentUniqueId:
|
|
3319
|
+
type: string
|
|
3320
|
+
getInputValues:
|
|
3321
|
+
type: array
|
|
3322
|
+
items:
|
|
3323
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
3324
|
+
description: ''
|
|
3325
|
+
schemaType:
|
|
3326
|
+
type: string
|
|
3327
|
+
getInputProperty:
|
|
3328
|
+
type: boolean
|
|
3329
|
+
empty:
|
|
3330
|
+
type: boolean
|
|
3331
|
+
ownerId:
|
|
3332
|
+
type: string
|
|
3333
|
+
PropertyDefinition:
|
|
3334
|
+
title: PropertyDefinition
|
|
3335
|
+
type: object
|
|
3336
|
+
properties:
|
|
3337
|
+
uniqueId:
|
|
3338
|
+
type: string
|
|
3339
|
+
type:
|
|
3340
|
+
type: string
|
|
3341
|
+
required:
|
|
3342
|
+
type: boolean
|
|
3343
|
+
definition:
|
|
3344
|
+
type: boolean
|
|
3345
|
+
defaultValue:
|
|
3346
|
+
type: string
|
|
3347
|
+
description:
|
|
3348
|
+
type: string
|
|
3349
|
+
schema:
|
|
3350
|
+
$ref: '#/components/schemas/SchemaDefinition'
|
|
3351
|
+
password:
|
|
3352
|
+
type: boolean
|
|
3353
|
+
name:
|
|
3354
|
+
type: string
|
|
3355
|
+
value:
|
|
3356
|
+
type: string
|
|
3357
|
+
label:
|
|
3358
|
+
type: string
|
|
3359
|
+
hidden:
|
|
3360
|
+
type: boolean
|
|
3361
|
+
immutable:
|
|
3362
|
+
type: boolean
|
|
3363
|
+
inputPath:
|
|
3364
|
+
type: string
|
|
3365
|
+
status:
|
|
3366
|
+
type: string
|
|
3367
|
+
inputId:
|
|
3368
|
+
type: string
|
|
3369
|
+
instanceUniqueId:
|
|
3370
|
+
type: string
|
|
3371
|
+
propertyId:
|
|
3372
|
+
type: string
|
|
3373
|
+
parentUniqueId:
|
|
3374
|
+
type: string
|
|
3375
|
+
getInputValues:
|
|
3376
|
+
type: array
|
|
3377
|
+
items:
|
|
3378
|
+
$ref: '#/components/schemas/GetInputValueDataDefinition'
|
|
3379
|
+
description: ''
|
|
3380
|
+
constraints:
|
|
3381
|
+
type: array
|
|
3382
|
+
items:
|
|
3383
|
+
type: object
|
|
3384
|
+
description: ''
|
|
3385
|
+
schemaType:
|
|
3386
|
+
type: string
|
|
3387
|
+
getInputProperty:
|
|
3388
|
+
type: boolean
|
|
3389
|
+
empty:
|
|
3390
|
+
type: boolean
|
|
3391
|
+
ownerId:
|
|
3392
|
+
type: string
|
|
3393
|
+
PropertyRule:
|
|
3394
|
+
title: PropertyRule
|
|
3395
|
+
type: object
|
|
3396
|
+
properties:
|
|
3397
|
+
rule:
|
|
3398
|
+
type: array
|
|
3399
|
+
items:
|
|
3400
|
+
type: string
|
|
3401
|
+
description: ''
|
|
3402
|
+
value:
|
|
3403
|
+
type: string
|
|
3404
|
+
empty:
|
|
3405
|
+
type: boolean
|
|
3406
|
+
ownerId:
|
|
3407
|
+
type: string
|
|
3408
|
+
RelationshipImpl:
|
|
3409
|
+
title: RelationshipImpl
|
|
3410
|
+
type: object
|
|
3411
|
+
properties:
|
|
3412
|
+
type:
|
|
3413
|
+
type: string
|
|
3414
|
+
RelationshipInfo:
|
|
3415
|
+
title: RelationshipInfo
|
|
3416
|
+
type: object
|
|
3417
|
+
properties:
|
|
3418
|
+
requirement:
|
|
3419
|
+
type: string
|
|
3420
|
+
capabilityOwnerId:
|
|
3421
|
+
type: string
|
|
3422
|
+
requirementOwnerId:
|
|
3423
|
+
type: string
|
|
3424
|
+
id:
|
|
3425
|
+
type: string
|
|
3426
|
+
relationship:
|
|
3427
|
+
$ref: '#/components/schemas/RelationshipImpl'
|
|
3428
|
+
capability:
|
|
3429
|
+
type: string
|
|
3430
|
+
capabilityUid:
|
|
3431
|
+
type: string
|
|
3432
|
+
requirementUid:
|
|
3433
|
+
type: string
|
|
3434
|
+
RequirementCapabilityRelDef:
|
|
3435
|
+
title: RequirementCapabilityRelDef
|
|
3436
|
+
type: object
|
|
3437
|
+
properties:
|
|
3438
|
+
uid:
|
|
3439
|
+
type: string
|
|
3440
|
+
toNode:
|
|
3441
|
+
type: string
|
|
3442
|
+
relationships:
|
|
3443
|
+
type: array
|
|
3444
|
+
items:
|
|
3445
|
+
$ref: '#/components/schemas/CapabilityRequirementRelationship'
|
|
3446
|
+
description: ''
|
|
3447
|
+
fromNode:
|
|
3448
|
+
type: string
|
|
3449
|
+
RequirementDataDefinition:
|
|
3450
|
+
title: RequirementDataDefinition
|
|
3451
|
+
type: object
|
|
3452
|
+
properties:
|
|
3453
|
+
name:
|
|
3454
|
+
type: string
|
|
3455
|
+
path:
|
|
3456
|
+
type: array
|
|
3457
|
+
items:
|
|
3458
|
+
type: string
|
|
3459
|
+
description: ''
|
|
3460
|
+
node:
|
|
3461
|
+
type: string
|
|
3462
|
+
parentName:
|
|
3463
|
+
type: string
|
|
3464
|
+
source:
|
|
3465
|
+
type: string
|
|
3466
|
+
minOccurrences:
|
|
3467
|
+
type: string
|
|
3468
|
+
maxOccurrences:
|
|
3469
|
+
type: string
|
|
3470
|
+
capability:
|
|
3471
|
+
type: string
|
|
3472
|
+
leftOccurrences:
|
|
3473
|
+
type: string
|
|
3474
|
+
ownerName:
|
|
3475
|
+
type: string
|
|
3476
|
+
ownerId:
|
|
3477
|
+
type: string
|
|
3478
|
+
relationship:
|
|
3479
|
+
type: string
|
|
3480
|
+
uniqueId:
|
|
3481
|
+
type: string
|
|
3482
|
+
empty:
|
|
3483
|
+
type: boolean
|
|
3484
|
+
RequirementDefinition:
|
|
3485
|
+
title: RequirementDefinition
|
|
3486
|
+
type: object
|
|
3487
|
+
properties:
|
|
3488
|
+
name:
|
|
3489
|
+
type: string
|
|
3490
|
+
path:
|
|
3491
|
+
type: array
|
|
3492
|
+
items:
|
|
3493
|
+
type: string
|
|
3494
|
+
description: ''
|
|
3495
|
+
node:
|
|
3496
|
+
type: string
|
|
3497
|
+
parentName:
|
|
3498
|
+
type: string
|
|
3499
|
+
source:
|
|
3500
|
+
type: string
|
|
3501
|
+
minOccurrences:
|
|
3502
|
+
type: string
|
|
3503
|
+
maxOccurrences:
|
|
3504
|
+
type: string
|
|
3505
|
+
capability:
|
|
3506
|
+
type: string
|
|
3507
|
+
leftOccurrences:
|
|
3508
|
+
type: string
|
|
3509
|
+
ownerName:
|
|
3510
|
+
type: string
|
|
3511
|
+
ownerId:
|
|
3512
|
+
type: string
|
|
3513
|
+
relationship:
|
|
3514
|
+
type: string
|
|
3515
|
+
uniqueId:
|
|
3516
|
+
type: string
|
|
3517
|
+
empty:
|
|
3518
|
+
type: boolean
|
|
3519
|
+
Resource:
|
|
3520
|
+
title: Resource
|
|
3521
|
+
type: object
|
|
3522
|
+
properties:
|
|
3523
|
+
artifacts:
|
|
3524
|
+
type: object
|
|
3525
|
+
additionalProperties:
|
|
3526
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
3527
|
+
deploymentArtifacts:
|
|
3528
|
+
type: object
|
|
3529
|
+
additionalProperties:
|
|
3530
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
3531
|
+
toscaArtifacts:
|
|
3532
|
+
type: object
|
|
3533
|
+
additionalProperties:
|
|
3534
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
3535
|
+
categories:
|
|
3536
|
+
type: array
|
|
3537
|
+
items:
|
|
3538
|
+
$ref: '#/components/schemas/CategoryDefinition'
|
|
3539
|
+
description: ''
|
|
3540
|
+
componentInstances:
|
|
3541
|
+
type: array
|
|
3542
|
+
items:
|
|
3543
|
+
$ref: '#/components/schemas/ComponentInstance'
|
|
3544
|
+
description: ''
|
|
3545
|
+
componentInstancesRelations:
|
|
3546
|
+
type: array
|
|
3547
|
+
items:
|
|
3548
|
+
$ref: '#/components/schemas/RequirementCapabilityRelDef'
|
|
3549
|
+
description: ''
|
|
3550
|
+
componentInstancesInputs:
|
|
3551
|
+
type: object
|
|
3552
|
+
additionalProperties:
|
|
3553
|
+
type: object
|
|
3554
|
+
componentInstancesProperties:
|
|
3555
|
+
type: object
|
|
3556
|
+
additionalProperties:
|
|
3557
|
+
type: object
|
|
3558
|
+
componentInstancesAttributes:
|
|
3559
|
+
type: object
|
|
3560
|
+
additionalProperties:
|
|
3561
|
+
type: object
|
|
3562
|
+
capabilities:
|
|
3563
|
+
type: object
|
|
3564
|
+
additionalProperties:
|
|
3565
|
+
type: object
|
|
3566
|
+
requirements:
|
|
3567
|
+
type: object
|
|
3568
|
+
additionalProperties:
|
|
3569
|
+
type: object
|
|
3570
|
+
inputs:
|
|
3571
|
+
type: array
|
|
3572
|
+
items:
|
|
3573
|
+
$ref: '#/components/schemas/InputDefinition'
|
|
3574
|
+
description: ''
|
|
3575
|
+
groups:
|
|
3576
|
+
type: array
|
|
3577
|
+
items:
|
|
3578
|
+
$ref: '#/components/schemas/GroupDefinition'
|
|
3579
|
+
description: ''
|
|
3580
|
+
policies:
|
|
3581
|
+
type: object
|
|
3582
|
+
additionalProperties:
|
|
3583
|
+
$ref: '#/components/schemas/PolicyDefinition'
|
|
3584
|
+
derivedFromGenericType:
|
|
3585
|
+
type: string
|
|
3586
|
+
derivedFromGenericVersion:
|
|
3587
|
+
type: string
|
|
3588
|
+
toscaType:
|
|
3589
|
+
type: string
|
|
3590
|
+
additionalInformation:
|
|
3591
|
+
type: array
|
|
3592
|
+
items:
|
|
3593
|
+
$ref: '#/components/schemas/AdditionalInformationDefinition'
|
|
3594
|
+
description: ''
|
|
3595
|
+
derivedFrom:
|
|
3596
|
+
type: array
|
|
3597
|
+
items:
|
|
3598
|
+
type: string
|
|
3599
|
+
description: ''
|
|
3600
|
+
derivedList:
|
|
3601
|
+
type: array
|
|
3602
|
+
items:
|
|
3603
|
+
type: string
|
|
3604
|
+
description: ''
|
|
3605
|
+
properties:
|
|
3606
|
+
type: array
|
|
3607
|
+
items:
|
|
3608
|
+
$ref: '#/components/schemas/PropertyDefinition'
|
|
3609
|
+
description: ''
|
|
3610
|
+
attributes:
|
|
3611
|
+
type: array
|
|
3612
|
+
items:
|
|
3613
|
+
$ref: '#/components/schemas/PropertyDefinition'
|
|
3614
|
+
description: ''
|
|
3615
|
+
interfaces:
|
|
3616
|
+
type: object
|
|
3617
|
+
additionalProperties:
|
|
3618
|
+
$ref: '#/components/schemas/InterfaceDefinition'
|
|
3619
|
+
defaultCapabilities:
|
|
3620
|
+
type: array
|
|
3621
|
+
items:
|
|
3622
|
+
type: string
|
|
3623
|
+
description: ''
|
|
3624
|
+
interfaceOperations:
|
|
3625
|
+
type: object
|
|
3626
|
+
additionalProperties:
|
|
3627
|
+
$ref: '#/components/schemas/InterfaceOperationDataDefinition'
|
|
3628
|
+
abstract:
|
|
3629
|
+
type: boolean
|
|
3630
|
+
vendorName:
|
|
3631
|
+
type: string
|
|
3632
|
+
vendorRelease:
|
|
3633
|
+
type: string
|
|
3634
|
+
resourceVendorModelNumber:
|
|
3635
|
+
type: string
|
|
3636
|
+
resourceType:
|
|
3637
|
+
$ref: '#/components/schemas/ResourceType'
|
|
3638
|
+
licenseType:
|
|
3639
|
+
type: string
|
|
3640
|
+
cost:
|
|
3641
|
+
type: string
|
|
3642
|
+
toscaResourceName:
|
|
3643
|
+
type: string
|
|
3644
|
+
componentType:
|
|
3645
|
+
$ref: '#/components/schemas/ComponentType'
|
|
3646
|
+
name:
|
|
3647
|
+
type: string
|
|
3648
|
+
version:
|
|
3649
|
+
type: string
|
|
3650
|
+
creationDate:
|
|
3651
|
+
type: integer
|
|
3652
|
+
format: int64
|
|
3653
|
+
tags:
|
|
3654
|
+
type: array
|
|
3655
|
+
items:
|
|
3656
|
+
type: string
|
|
3657
|
+
description: ''
|
|
3658
|
+
topologyTemplate:
|
|
3659
|
+
type: boolean
|
|
3660
|
+
invariantUUID:
|
|
3661
|
+
type: string
|
|
3662
|
+
description:
|
|
3663
|
+
type: string
|
|
3664
|
+
isDeleted:
|
|
3665
|
+
type: boolean
|
|
3666
|
+
csarVersion:
|
|
3667
|
+
type: string
|
|
3668
|
+
allVersions:
|
|
3669
|
+
type: object
|
|
3670
|
+
additionalProperties:
|
|
3671
|
+
type: string
|
|
3672
|
+
allArtifacts:
|
|
3673
|
+
type: object
|
|
3674
|
+
additionalProperties:
|
|
3675
|
+
$ref: '#/components/schemas/ArtifactDefinition'
|
|
3676
|
+
csarUUID:
|
|
3677
|
+
type: string
|
|
3678
|
+
importedToscaChecksum:
|
|
3679
|
+
type: string
|
|
3680
|
+
lastUpdaterUserId:
|
|
3681
|
+
type: string
|
|
3682
|
+
lastUpdaterFullName:
|
|
3683
|
+
type: string
|
|
3684
|
+
creatorUserId:
|
|
3685
|
+
type: string
|
|
3686
|
+
highestVersion:
|
|
3687
|
+
type: boolean
|
|
3688
|
+
creatorFullName:
|
|
3689
|
+
type: string
|
|
3690
|
+
normalizedName:
|
|
3691
|
+
type: string
|
|
3692
|
+
contactId:
|
|
3693
|
+
type: string
|
|
3694
|
+
conformanceLevel:
|
|
3695
|
+
type: string
|
|
3696
|
+
projectCode:
|
|
3697
|
+
type: string
|
|
3698
|
+
uniqueId:
|
|
3699
|
+
type: string
|
|
3700
|
+
lifecycleState:
|
|
3701
|
+
$ref: '#/components/schemas/LifecycleState'
|
|
3702
|
+
uuid:
|
|
3703
|
+
type: string
|
|
3704
|
+
systemName:
|
|
3705
|
+
type: string
|
|
3706
|
+
lastUpdateDate:
|
|
3707
|
+
type: integer
|
|
3708
|
+
format: int64
|
|
3709
|
+
icon:
|
|
3710
|
+
type: string
|
|
3711
|
+
SchemaDefinition:
|
|
3712
|
+
title: SchemaDefinition
|
|
3713
|
+
type: object
|
|
3714
|
+
properties:
|
|
3715
|
+
derivedFrom:
|
|
3716
|
+
type: string
|
|
3717
|
+
constraints:
|
|
3718
|
+
type: array
|
|
3719
|
+
items:
|
|
3720
|
+
type: string
|
|
3721
|
+
description: ''
|
|
3722
|
+
properties:
|
|
3723
|
+
type: object
|
|
3724
|
+
additionalProperties:
|
|
3725
|
+
$ref: '#/components/schemas/PropertyDataDefinition'
|
|
3726
|
+
property:
|
|
3727
|
+
$ref: '#/components/schemas/PropertyDataDefinition'
|
|
3728
|
+
empty:
|
|
3729
|
+
type: boolean
|
|
3730
|
+
ownerId:
|
|
3731
|
+
type: string
|
|
3732
|
+
SubCategoryDefinition:
|
|
3733
|
+
title: SubCategoryDefinition
|
|
3734
|
+
type: object
|
|
3735
|
+
properties:
|
|
3736
|
+
name:
|
|
3737
|
+
type: string
|
|
3738
|
+
normalizedName:
|
|
3739
|
+
type: string
|
|
3740
|
+
uniqueId:
|
|
3741
|
+
type: string
|
|
3742
|
+
icons:
|
|
3743
|
+
type: array
|
|
3744
|
+
items:
|
|
3745
|
+
type: string
|
|
3746
|
+
description: ''
|
|
3747
|
+
groupings:
|
|
3748
|
+
type: array
|
|
3749
|
+
items:
|
|
3750
|
+
$ref: '#/components/schemas/GroupingDefinition'
|
|
3751
|
+
description: ''
|
|
3752
|
+
empty:
|
|
3753
|
+
type: boolean
|
|
3754
|
+
ownerId:
|
|
3755
|
+
type: string
|
|
3756
|
+
ToscaDataDefinition:
|
|
3757
|
+
title: ToscaDataDefinition
|
|
3758
|
+
type: object
|
|
3759
|
+
properties:
|
|
3760
|
+
empty:
|
|
3761
|
+
type: boolean
|
|
3762
|
+
ownerId:
|
|
3763
|
+
type: string
|
|
3764
|
+
Action:
|
|
3765
|
+
title: Action
|
|
3766
|
+
enum:
|
|
3767
|
+
- CREATE_FROM_CSAR
|
|
3768
|
+
- UPDATE_FROM_EXTERNAL_API
|
|
3769
|
+
- UPGRADE_MIGRATION
|
|
3770
|
+
type: string
|
|
3771
|
+
ArtifactGroupType:
|
|
3772
|
+
title: ArtifactGroupType
|
|
3773
|
+
enum:
|
|
3774
|
+
- INFORMATIONAL
|
|
3775
|
+
- DEPLOYMENT
|
|
3776
|
+
- LIFE_CYCLE
|
|
3777
|
+
- SERVICE_API
|
|
3778
|
+
- TOSCA
|
|
3779
|
+
- OTHER
|
|
3780
|
+
type: string
|
|
3781
|
+
assetType:
|
|
3782
|
+
title: assetType
|
|
3783
|
+
enum:
|
|
3784
|
+
- resources
|
|
3785
|
+
- services
|
|
3786
|
+
type: string
|
|
3787
|
+
ComponentType:
|
|
3788
|
+
title: ComponentType
|
|
3789
|
+
enum:
|
|
3790
|
+
- RESOURCE
|
|
3791
|
+
- SERVICE
|
|
3792
|
+
- RESOURCE_INSTANCE
|
|
3793
|
+
- PRODUCT
|
|
3794
|
+
- SERVICE_INSTANCE
|
|
3795
|
+
type: string
|
|
3796
|
+
lifecycleOperation:
|
|
3797
|
+
title: lifecycleOperation
|
|
3798
|
+
enum:
|
|
3799
|
+
- checkout
|
|
3800
|
+
- checkin
|
|
3801
|
+
type: string
|
|
3802
|
+
LifecycleState:
|
|
3803
|
+
title: LifecycleState
|
|
3804
|
+
enum:
|
|
3805
|
+
- READY_FOR_CERTIFICATION
|
|
3806
|
+
- CERTIFICATION_IN_PROGRESS
|
|
3807
|
+
- CERTIFIED
|
|
3808
|
+
- NOT_CERTIFIED_CHECKIN
|
|
3809
|
+
- NOT_CERTIFIED_CHECKOUT
|
|
3810
|
+
type: string
|
|
3811
|
+
NotificationUnregisterResult:
|
|
3812
|
+
title: NotificationUnregisterResult
|
|
3813
|
+
enum:
|
|
3814
|
+
- OK
|
|
3815
|
+
- CONNNECTION_ERROR
|
|
3816
|
+
- NOT_FOUND
|
|
3817
|
+
- TOPIC_ALREADY_EXIST
|
|
3818
|
+
- OBJECT_NOT_FOUND
|
|
3819
|
+
- INTERNAL_SERVER_ERROR
|
|
3820
|
+
- AUTHENTICATION_ERROR
|
|
3821
|
+
- UNKNOWN_HOST_ERROR
|
|
3822
|
+
type: string
|
|
3823
|
+
OriginType:
|
|
3824
|
+
title: OriginType
|
|
3825
|
+
enum:
|
|
3826
|
+
- PRODUCT
|
|
3827
|
+
- SERVICE
|
|
3828
|
+
- VF
|
|
3829
|
+
- VFC
|
|
3830
|
+
- CP
|
|
3831
|
+
- VL
|
|
3832
|
+
- Configuration
|
|
3833
|
+
- VFCMT
|
|
3834
|
+
- CVFC
|
|
3835
|
+
- PNF
|
|
3836
|
+
- CR
|
|
3837
|
+
- ServiceProxy
|
|
3838
|
+
type: string
|
|
3839
|
+
ResourceType:
|
|
3840
|
+
title: ResourceType
|
|
3841
|
+
enum:
|
|
3842
|
+
- VFC
|
|
3843
|
+
- VF
|
|
3844
|
+
- CR
|
|
3845
|
+
- CP
|
|
3846
|
+
- PNF
|
|
3847
|
+
- CVFC
|
|
3848
|
+
- VL
|
|
3849
|
+
- VFCMT
|
|
3850
|
+
- Configuration
|
|
3851
|
+
- ServiceProxy
|
|
3852
|
+
- ABSTRACT
|
|
3853
|
+
type: string
|
|
3854
|
+
StatusUnregisterResult:
|
|
3855
|
+
title: StatusUnregisterResult
|
|
3856
|
+
enum:
|
|
3857
|
+
- OK
|
|
3858
|
+
- CONNNECTION_ERROR
|
|
3859
|
+
- NOT_FOUND
|
|
3860
|
+
- TOPIC_ALREADY_EXIST
|
|
3861
|
+
- OBJECT_NOT_FOUND
|
|
3862
|
+
- INTERNAL_SERVER_ERROR
|
|
3863
|
+
- AUTHENTICATION_ERROR
|
|
3864
|
+
- UNKNOWN_HOST_ERROR
|
|
3865
|
+
type: string
|
|
3866
|
+
tags:
|
|
3867
|
+
- name: Distribution Catalog Servlet
|
|
3868
|
+
- name: Distribution Servlet
|
|
3869
|
+
- name: Artifact External Servlet
|
|
3870
|
+
- name: Asset Metadata External Servlet
|
|
3871
|
+
- name: CRUD External Servlet
|
|
3872
|
+
- name: Service Activation External Servlet
|