@itentialopensource/adapter-onap_sdc 0.6.6 → 0.7.1

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