@itentialopensource/adapter-onap_so 0.3.3 → 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.
Files changed (57) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +469 -0
  4. package/CHANGELOG.md +45 -6
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +239 -507
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +381 -262
  14. package/adapterBase.js +855 -409
  15. package/changelogs/changelog.md +79 -0
  16. package/entities/.generic/action.json +110 -5
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +12 -0
  19. package/metadata.json +47 -0
  20. package/package.json +28 -22
  21. package/pronghorn.json +691 -88
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +842 -6
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapter-openapi.json +2911 -0
  26. package/report/adapter-openapi.yaml +2156 -0
  27. package/report/adapterInfo.json +10 -0
  28. package/report/updateReport1653173659556.json +120 -0
  29. package/report/updateReport1691507681629.json +120 -0
  30. package/report/updateReport1692202679983.json +120 -0
  31. package/report/updateReport1694462568487.json +120 -0
  32. package/report/updateReport1698421207722.json +120 -0
  33. package/sampleProperties.json +156 -3
  34. package/test/integration/adapterTestBasicGet.js +4 -6
  35. package/test/integration/adapterTestConnectivity.js +91 -42
  36. package/test/integration/adapterTestIntegration.js +158 -104
  37. package/test/unit/adapterBaseTestUnit.js +393 -310
  38. package/test/unit/adapterTestUnit.js +918 -164
  39. package/utils/adapterInfo.js +206 -0
  40. package/utils/addAuth.js +94 -0
  41. package/utils/artifactize.js +1 -1
  42. package/utils/basicGet.js +1 -14
  43. package/utils/checkMigrate.js +1 -1
  44. package/utils/entitiesToDB.js +179 -0
  45. package/utils/findPath.js +1 -1
  46. package/utils/methodDocumentor.js +273 -0
  47. package/utils/modify.js +14 -16
  48. package/utils/packModificationScript.js +2 -2
  49. package/utils/patches2bundledDeps.js +90 -0
  50. package/utils/pre-commit.sh +5 -0
  51. package/utils/removeHooks.js +20 -0
  52. package/utils/taskMover.js +309 -0
  53. package/utils/tbScript.js +129 -53
  54. package/utils/tbUtils.js +152 -35
  55. package/utils/testRunner.js +17 -17
  56. package/utils/troubleshootingAdapter.js +10 -31
  57. package/workflows/README.md +0 -3
@@ -0,0 +1,2911 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "onap_so",
5
+ "contact": {},
6
+ "version": "3.1.2"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "http://{defaultHost}",
11
+ "variables": {
12
+ "defaultHost": {
13
+ "default": "www.example.com"
14
+ }
15
+ }
16
+ }
17
+ ],
18
+ "paths": {
19
+ "/onap/so/infra/e2eServiceInstances/{version}": {
20
+ "post": {
21
+ "tags": [
22
+ "e2eServiceInstances"
23
+ ],
24
+ "summary": "createE2EServiceInstance",
25
+ "description": "Create an E2E Service Instance on a version provided",
26
+ "operationId": "createE2EServiceInstance",
27
+ "parameters": [
28
+ {
29
+ "name": "version",
30
+ "in": "path",
31
+ "description": "",
32
+ "required": true,
33
+ "style": "simple",
34
+ "schema": {
35
+ "pattern": "[vV][3-5]",
36
+ "type": "string"
37
+ }
38
+ }
39
+ ],
40
+ "requestBody": {
41
+ "description": "",
42
+ "content": {
43
+ "text/plain": {
44
+ "schema": {
45
+ "type": "string"
46
+ }
47
+ }
48
+ },
49
+ "required": false
50
+ },
51
+ "responses": {
52
+ "200": {
53
+ "description": "",
54
+ "headers": {}
55
+ },
56
+ "default": {
57
+ "description": "successful operation"
58
+ }
59
+ },
60
+ "deprecated": false
61
+ }
62
+ },
63
+ "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}": {
64
+ "put": {
65
+ "tags": [
66
+ "e2eServiceInstances"
67
+ ],
68
+ "summary": "updateE2EServiceInstance",
69
+ "description": "Update an E2E Service Instance on a version provided and serviceId",
70
+ "operationId": "updateE2EServiceInstance",
71
+ "parameters": [
72
+ {
73
+ "name": "version",
74
+ "in": "path",
75
+ "description": "",
76
+ "required": true,
77
+ "style": "simple",
78
+ "schema": {
79
+ "pattern": "[vV][3-5]",
80
+ "type": "string"
81
+ }
82
+ },
83
+ {
84
+ "name": "serviceId",
85
+ "in": "path",
86
+ "description": "",
87
+ "required": true,
88
+ "style": "simple",
89
+ "schema": {
90
+ "type": "string"
91
+ }
92
+ }
93
+ ],
94
+ "requestBody": {
95
+ "description": "",
96
+ "content": {
97
+ "text/plain": {
98
+ "schema": {
99
+ "type": "string"
100
+ }
101
+ }
102
+ },
103
+ "required": false
104
+ },
105
+ "responses": {
106
+ "200": {
107
+ "description": "",
108
+ "headers": {}
109
+ },
110
+ "default": {
111
+ "description": "successful operation"
112
+ }
113
+ },
114
+ "deprecated": false
115
+ },
116
+ "delete": {
117
+ "tags": [
118
+ "e2eServiceInstances"
119
+ ],
120
+ "summary": "deleteE2EServiceInstance",
121
+ "description": "Delete E2E Service Instance on a specified version and serviceId",
122
+ "operationId": "deleteE2EServiceInstance",
123
+ "parameters": [
124
+ {
125
+ "name": "version",
126
+ "in": "path",
127
+ "description": "",
128
+ "required": true,
129
+ "style": "simple",
130
+ "schema": {
131
+ "pattern": "[vV][3-5]",
132
+ "type": "string"
133
+ }
134
+ },
135
+ {
136
+ "name": "serviceId",
137
+ "in": "path",
138
+ "description": "",
139
+ "required": true,
140
+ "style": "simple",
141
+ "schema": {
142
+ "type": "string"
143
+ }
144
+ }
145
+ ],
146
+ "requestBody": {
147
+ "description": "",
148
+ "content": {
149
+ "text/plain": {
150
+ "schema": {
151
+ "type": "string"
152
+ }
153
+ }
154
+ },
155
+ "required": false
156
+ },
157
+ "responses": {
158
+ "200": {
159
+ "description": "",
160
+ "headers": {}
161
+ },
162
+ "default": {
163
+ "description": "successful operation"
164
+ }
165
+ },
166
+ "deprecated": false
167
+ }
168
+ },
169
+ "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}": {
170
+ "get": {
171
+ "tags": [
172
+ "e2eServiceInstances"
173
+ ],
174
+ "summary": "getE2EServiceInstances",
175
+ "description": "Find e2eServiceInstances Requests for a given serviceId and operationId",
176
+ "operationId": "getE2EServiceInstances",
177
+ "parameters": [
178
+ {
179
+ "name": "serviceId",
180
+ "in": "path",
181
+ "description": "",
182
+ "required": true,
183
+ "style": "simple",
184
+ "schema": {
185
+ "type": "string"
186
+ }
187
+ },
188
+ {
189
+ "name": "version",
190
+ "in": "path",
191
+ "description": "",
192
+ "required": true,
193
+ "style": "simple",
194
+ "schema": {
195
+ "pattern": "[vV][3-5]",
196
+ "type": "string"
197
+ }
198
+ },
199
+ {
200
+ "name": "operationId",
201
+ "in": "path",
202
+ "description": "",
203
+ "required": true,
204
+ "style": "simple",
205
+ "schema": {
206
+ "type": "string"
207
+ }
208
+ }
209
+ ],
210
+ "responses": {
211
+ "200": {
212
+ "description": "",
213
+ "headers": {}
214
+ },
215
+ "default": {
216
+ "description": "successful operation"
217
+ }
218
+ },
219
+ "deprecated": false
220
+ }
221
+ },
222
+ "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale": {
223
+ "post": {
224
+ "tags": [
225
+ "e2eServiceInstances"
226
+ ],
227
+ "summary": "scaleE2EServiceInstance",
228
+ "description": "Scale E2E Service Instance on a specified version",
229
+ "operationId": "scaleE2EServiceInstance",
230
+ "parameters": [
231
+ {
232
+ "name": "version",
233
+ "in": "path",
234
+ "description": "",
235
+ "required": true,
236
+ "style": "simple",
237
+ "schema": {
238
+ "pattern": "[vV][3-5]",
239
+ "type": "string"
240
+ }
241
+ },
242
+ {
243
+ "name": "serviceId",
244
+ "in": "path",
245
+ "description": "",
246
+ "required": true,
247
+ "style": "simple",
248
+ "schema": {
249
+ "type": "string"
250
+ }
251
+ }
252
+ ],
253
+ "requestBody": {
254
+ "description": "",
255
+ "content": {
256
+ "text/plain": {
257
+ "schema": {
258
+ "type": "string"
259
+ }
260
+ }
261
+ },
262
+ "required": false
263
+ },
264
+ "responses": {
265
+ "200": {
266
+ "description": "",
267
+ "headers": {}
268
+ },
269
+ "default": {
270
+ "description": "successful operation"
271
+ }
272
+ },
273
+ "deprecated": false
274
+ }
275
+ },
276
+ "/onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences": {
277
+ "post": {
278
+ "tags": [
279
+ "e2eServiceInstances"
280
+ ],
281
+ "summary": "compareModelwithTargetVersion",
282
+ "description": "Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId ",
283
+ "operationId": "compareModelwithTargetVersion",
284
+ "parameters": [
285
+ {
286
+ "name": "serviceId",
287
+ "in": "path",
288
+ "description": "",
289
+ "required": true,
290
+ "style": "simple",
291
+ "schema": {
292
+ "type": "string"
293
+ }
294
+ },
295
+ {
296
+ "name": "version",
297
+ "in": "path",
298
+ "description": "",
299
+ "required": true,
300
+ "style": "simple",
301
+ "schema": {
302
+ "pattern": "[vV][3-5]",
303
+ "type": "string"
304
+ }
305
+ }
306
+ ],
307
+ "requestBody": {
308
+ "description": "",
309
+ "content": {
310
+ "text/plain": {
311
+ "schema": {
312
+ "type": "string"
313
+ }
314
+ }
315
+ },
316
+ "required": false
317
+ },
318
+ "responses": {
319
+ "200": {
320
+ "description": "",
321
+ "headers": {}
322
+ },
323
+ "default": {
324
+ "description": "successful operation"
325
+ }
326
+ },
327
+ "deprecated": false
328
+ }
329
+ },
330
+ "/globalhealthcheck": {
331
+ "get": {
332
+ "tags": [
333
+ "globalhealthcheck"
334
+ ],
335
+ "summary": "globalHealthcheck",
336
+ "description": "Performing global health check",
337
+ "operationId": "globalHealthcheck",
338
+ "parameters": [
339
+ {
340
+ "name": "enableBpmn",
341
+ "in": "query",
342
+ "description": "",
343
+ "style": "form",
344
+ "explode": true,
345
+ "schema": {
346
+ "type": "boolean",
347
+ "default": true,
348
+ "example": true
349
+ }
350
+ }
351
+ ],
352
+ "responses": {
353
+ "200": {
354
+ "description": "",
355
+ "headers": {}
356
+ },
357
+ "default": {
358
+ "description": "successful operation"
359
+ }
360
+ },
361
+ "deprecated": false
362
+ }
363
+ },
364
+ "/nodehealthcheck": {
365
+ "get": {
366
+ "tags": [
367
+ "nodehealthcheck"
368
+ ],
369
+ "summary": "nodeHealthcheck",
370
+ "description": "Performing node health check",
371
+ "operationId": "nodeHealthcheck",
372
+ "parameters": [],
373
+ "responses": {
374
+ "200": {
375
+ "description": "",
376
+ "headers": {}
377
+ },
378
+ "default": {
379
+ "description": "successful operation"
380
+ }
381
+ },
382
+ "deprecated": false
383
+ }
384
+ },
385
+ "/onap/so/infra/orchestrationRequests/{version}": {
386
+ "get": {
387
+ "tags": [
388
+ "onapsoinfraorchestrationRequests"
389
+ ],
390
+ "summary": "getOrchestrationRequest",
391
+ "description": "Find Orchestrated Requests for a URI Information",
392
+ "operationId": "getOrchestrationRequest",
393
+ "parameters": [
394
+ {
395
+ "name": "version",
396
+ "in": "path",
397
+ "description": "",
398
+ "required": true,
399
+ "style": "simple",
400
+ "schema": {
401
+ "pattern": "[vV][4-7]",
402
+ "type": "string"
403
+ }
404
+ }
405
+ ],
406
+ "responses": {
407
+ "200": {
408
+ "description": "",
409
+ "headers": {}
410
+ },
411
+ "default": {
412
+ "description": "successful operation"
413
+ }
414
+ },
415
+ "deprecated": false
416
+ }
417
+ },
418
+ "/onap/so/infra/orchestrationRequests/{version}/{requestId}": {
419
+ "get": {
420
+ "tags": [
421
+ "onapsoinfraorchestrationRequests"
422
+ ],
423
+ "summary": "getOrchestrationRequestForReqId",
424
+ "description": "Find Orchestrated Requests for a given requestId",
425
+ "operationId": "getOrchestrationRequestForReqId",
426
+ "parameters": [
427
+ {
428
+ "name": "requestId",
429
+ "in": "path",
430
+ "description": "",
431
+ "required": true,
432
+ "style": "simple",
433
+ "schema": {
434
+ "type": "string"
435
+ }
436
+ },
437
+ {
438
+ "name": "version",
439
+ "in": "path",
440
+ "description": "",
441
+ "required": true,
442
+ "style": "simple",
443
+ "schema": {
444
+ "pattern": "[vV][4-7]",
445
+ "type": "string"
446
+ }
447
+ }
448
+ ],
449
+ "responses": {
450
+ "200": {
451
+ "description": "",
452
+ "headers": {}
453
+ },
454
+ "default": {
455
+ "description": "successful operation"
456
+ }
457
+ },
458
+ "deprecated": false
459
+ }
460
+ },
461
+ "/onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock": {
462
+ "post": {
463
+ "tags": [
464
+ "onapsoinfraorchestrationRequests"
465
+ ],
466
+ "summary": "unlockOrchestrationRequest",
467
+ "description": "Unlock Orchestrated Requests for a given requestId",
468
+ "operationId": "unlockOrchestrationRequest",
469
+ "parameters": [
470
+ {
471
+ "name": "requestId",
472
+ "in": "path",
473
+ "description": "",
474
+ "required": true,
475
+ "style": "simple",
476
+ "schema": {
477
+ "type": "string"
478
+ }
479
+ },
480
+ {
481
+ "name": "version",
482
+ "in": "path",
483
+ "description": "",
484
+ "required": true,
485
+ "style": "simple",
486
+ "schema": {
487
+ "pattern": "[vV][4-7]",
488
+ "type": "string"
489
+ }
490
+ }
491
+ ],
492
+ "requestBody": {
493
+ "description": "",
494
+ "content": {
495
+ "text/plain": {
496
+ "schema": {
497
+ "type": "string"
498
+ }
499
+ }
500
+ },
501
+ "required": false
502
+ },
503
+ "responses": {
504
+ "200": {
505
+ "description": "",
506
+ "headers": {}
507
+ },
508
+ "default": {
509
+ "description": "successful operation"
510
+ }
511
+ },
512
+ "deprecated": false
513
+ }
514
+ },
515
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/deactivateAndCloudDelete": {
516
+ "post": {
517
+ "tags": [
518
+ "onapsoinfraserviceInstantiation"
519
+ ],
520
+ "summary": "deactivateAndCloudDeleteVfModuleInstance",
521
+ "description": "Deactivate and Cloud Delete VfModule instance",
522
+ "operationId": "deactivateAndCloudDeleteVfModuleInstance",
523
+ "parameters": [
524
+ {
525
+ "name": "version",
526
+ "in": "path",
527
+ "description": "",
528
+ "required": true,
529
+ "style": "simple",
530
+ "schema": {
531
+ "pattern": "[vV][7]",
532
+ "type": "string"
533
+ }
534
+ },
535
+ {
536
+ "name": "serviceInstanceId",
537
+ "in": "path",
538
+ "description": "",
539
+ "required": true,
540
+ "style": "simple",
541
+ "schema": {
542
+ "type": "string"
543
+ }
544
+ },
545
+ {
546
+ "name": "vnfInstanceId",
547
+ "in": "path",
548
+ "description": "",
549
+ "required": true,
550
+ "style": "simple",
551
+ "schema": {
552
+ "type": "string"
553
+ }
554
+ },
555
+ {
556
+ "name": "vfmoduleInstanceId",
557
+ "in": "path",
558
+ "description": "",
559
+ "required": true,
560
+ "style": "simple",
561
+ "schema": {
562
+ "type": "string"
563
+ }
564
+ }
565
+ ],
566
+ "requestBody": {
567
+ "description": "",
568
+ "content": {
569
+ "text/plain": {
570
+ "schema": {
571
+ "type": "string"
572
+ }
573
+ }
574
+ },
575
+ "required": false
576
+ },
577
+ "responses": {
578
+ "200": {
579
+ "description": "",
580
+ "headers": {}
581
+ },
582
+ "default": {
583
+ "description": "successful operation"
584
+ }
585
+ },
586
+ "deprecated": false
587
+ }
588
+ },
589
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/enablePort": {
590
+ "post": {
591
+ "tags": [
592
+ "onapsoinfraserviceInstantiation"
593
+ ],
594
+ "summary": "enablePort",
595
+ "description": "Enable Port Mirroring",
596
+ "operationId": "enablePort",
597
+ "parameters": [
598
+ {
599
+ "name": "version",
600
+ "in": "path",
601
+ "description": "",
602
+ "required": true,
603
+ "style": "simple",
604
+ "schema": {
605
+ "pattern": "[vV][5-7]",
606
+ "type": "string"
607
+ }
608
+ },
609
+ {
610
+ "name": "serviceInstanceId",
611
+ "in": "path",
612
+ "description": "",
613
+ "required": true,
614
+ "style": "simple",
615
+ "schema": {
616
+ "type": "string"
617
+ }
618
+ },
619
+ {
620
+ "name": "configurationInstanceId",
621
+ "in": "path",
622
+ "description": "",
623
+ "required": true,
624
+ "style": "simple",
625
+ "schema": {
626
+ "type": "string"
627
+ }
628
+ }
629
+ ],
630
+ "requestBody": {
631
+ "description": "",
632
+ "content": {
633
+ "text/plain": {
634
+ "schema": {
635
+ "type": "string"
636
+ }
637
+ }
638
+ },
639
+ "required": false
640
+ },
641
+ "responses": {
642
+ "200": {
643
+ "description": "",
644
+ "headers": {}
645
+ },
646
+ "default": {
647
+ "description": "successful operation"
648
+ }
649
+ },
650
+ "deprecated": false
651
+ }
652
+ },
653
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/disablePort": {
654
+ "post": {
655
+ "tags": [
656
+ "onapsoinfraserviceInstantiation"
657
+ ],
658
+ "summary": "disablePort",
659
+ "description": "Disable Port Mirroring",
660
+ "operationId": "disablePort",
661
+ "parameters": [
662
+ {
663
+ "name": "version",
664
+ "in": "path",
665
+ "description": "",
666
+ "required": true,
667
+ "style": "simple",
668
+ "schema": {
669
+ "pattern": "[vV][5-7]",
670
+ "type": "string"
671
+ }
672
+ },
673
+ {
674
+ "name": "serviceInstanceId",
675
+ "in": "path",
676
+ "description": "",
677
+ "required": true,
678
+ "style": "simple",
679
+ "schema": {
680
+ "type": "string"
681
+ }
682
+ },
683
+ {
684
+ "name": "configurationInstanceId",
685
+ "in": "path",
686
+ "description": "",
687
+ "required": true,
688
+ "style": "simple",
689
+ "schema": {
690
+ "type": "string"
691
+ }
692
+ }
693
+ ],
694
+ "requestBody": {
695
+ "description": "",
696
+ "content": {
697
+ "text/plain": {
698
+ "schema": {
699
+ "type": "string"
700
+ }
701
+ }
702
+ },
703
+ "required": false
704
+ },
705
+ "responses": {
706
+ "200": {
707
+ "description": "",
708
+ "headers": {}
709
+ },
710
+ "default": {
711
+ "description": "successful operation"
712
+ }
713
+ },
714
+ "deprecated": false
715
+ }
716
+ },
717
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/activate": {
718
+ "post": {
719
+ "tags": [
720
+ "onapsoinfraserviceInstantiation"
721
+ ],
722
+ "summary": "activatePort",
723
+ "description": "Activate Port Mirroring",
724
+ "operationId": "activatePort",
725
+ "parameters": [
726
+ {
727
+ "name": "version",
728
+ "in": "path",
729
+ "description": "",
730
+ "required": true,
731
+ "style": "simple",
732
+ "schema": {
733
+ "pattern": "[vV][5-7]",
734
+ "type": "string"
735
+ }
736
+ },
737
+ {
738
+ "name": "serviceInstanceId",
739
+ "in": "path",
740
+ "description": "",
741
+ "required": true,
742
+ "style": "simple",
743
+ "schema": {
744
+ "type": "string"
745
+ }
746
+ },
747
+ {
748
+ "name": "configurationInstanceId",
749
+ "in": "path",
750
+ "description": "",
751
+ "required": true,
752
+ "style": "simple",
753
+ "schema": {
754
+ "type": "string"
755
+ }
756
+ }
757
+ ],
758
+ "requestBody": {
759
+ "description": "",
760
+ "content": {
761
+ "text/plain": {
762
+ "schema": {
763
+ "type": "string"
764
+ }
765
+ }
766
+ },
767
+ "required": false
768
+ },
769
+ "responses": {
770
+ "200": {
771
+ "description": "",
772
+ "headers": {}
773
+ },
774
+ "default": {
775
+ "description": "successful operation"
776
+ }
777
+ },
778
+ "deprecated": false
779
+ }
780
+ },
781
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/deactivate": {
782
+ "post": {
783
+ "tags": [
784
+ "onapsoinfraserviceInstantiation"
785
+ ],
786
+ "summary": "deactivatePort",
787
+ "description": "Deactivate Port Mirroring",
788
+ "operationId": "deactivatePort",
789
+ "parameters": [
790
+ {
791
+ "name": "version",
792
+ "in": "path",
793
+ "description": "",
794
+ "required": true,
795
+ "style": "simple",
796
+ "schema": {
797
+ "pattern": "[vV][5-7]",
798
+ "type": "string"
799
+ }
800
+ },
801
+ {
802
+ "name": "serviceInstanceId",
803
+ "in": "path",
804
+ "description": "",
805
+ "required": true,
806
+ "style": "simple",
807
+ "schema": {
808
+ "type": "string"
809
+ }
810
+ },
811
+ {
812
+ "name": "configurationInstanceId",
813
+ "in": "path",
814
+ "description": "",
815
+ "required": true,
816
+ "style": "simple",
817
+ "schema": {
818
+ "type": "string"
819
+ }
820
+ }
821
+ ],
822
+ "requestBody": {
823
+ "description": "",
824
+ "content": {
825
+ "text/plain": {
826
+ "schema": {
827
+ "type": "string"
828
+ }
829
+ }
830
+ },
831
+ "required": false
832
+ },
833
+ "responses": {
834
+ "200": {
835
+ "description": "",
836
+ "headers": {}
837
+ },
838
+ "default": {
839
+ "description": "successful operation"
840
+ }
841
+ },
842
+ "deprecated": false
843
+ }
844
+ },
845
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/addRelationships": {
846
+ "post": {
847
+ "tags": [
848
+ "onapsoinfraserviceInstantiation"
849
+ ],
850
+ "summary": "addRelationships",
851
+ "description": "Add Relationships to a Service Instance",
852
+ "operationId": "addRelationships",
853
+ "parameters": [
854
+ {
855
+ "name": "version",
856
+ "in": "path",
857
+ "description": "",
858
+ "required": true,
859
+ "style": "simple",
860
+ "schema": {
861
+ "pattern": "[vV][6-7]",
862
+ "type": "string"
863
+ }
864
+ },
865
+ {
866
+ "name": "serviceInstanceId",
867
+ "in": "path",
868
+ "description": "",
869
+ "required": true,
870
+ "style": "simple",
871
+ "schema": {
872
+ "type": "string"
873
+ }
874
+ }
875
+ ],
876
+ "requestBody": {
877
+ "description": "",
878
+ "content": {
879
+ "text/plain": {
880
+ "schema": {
881
+ "type": "string"
882
+ }
883
+ }
884
+ },
885
+ "required": false
886
+ },
887
+ "responses": {
888
+ "200": {
889
+ "description": "",
890
+ "headers": {}
891
+ },
892
+ "default": {
893
+ "description": "successful operation"
894
+ }
895
+ },
896
+ "deprecated": false
897
+ }
898
+ },
899
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/scaleOut": {
900
+ "post": {
901
+ "tags": [
902
+ "onapsoinfraserviceInstantiation"
903
+ ],
904
+ "summary": "scaleOutVfModule",
905
+ "description": "VF Auto Scale Out",
906
+ "operationId": "scaleOutVfModule",
907
+ "parameters": [
908
+ {
909
+ "name": "version",
910
+ "in": "path",
911
+ "description": "",
912
+ "required": true,
913
+ "style": "simple",
914
+ "schema": {
915
+ "pattern": "[vV][7]",
916
+ "type": "string"
917
+ }
918
+ },
919
+ {
920
+ "name": "serviceInstanceId",
921
+ "in": "path",
922
+ "description": "",
923
+ "required": true,
924
+ "style": "simple",
925
+ "schema": {
926
+ "type": "string"
927
+ }
928
+ },
929
+ {
930
+ "name": "vnfInstanceId",
931
+ "in": "path",
932
+ "description": "",
933
+ "required": true,
934
+ "style": "simple",
935
+ "schema": {
936
+ "type": "string"
937
+ }
938
+ }
939
+ ],
940
+ "requestBody": {
941
+ "description": "",
942
+ "content": {
943
+ "text/plain": {
944
+ "schema": {
945
+ "type": "string"
946
+ }
947
+ }
948
+ },
949
+ "required": false
950
+ },
951
+ "responses": {
952
+ "200": {
953
+ "description": "",
954
+ "headers": {}
955
+ },
956
+ "default": {
957
+ "description": "successful operation"
958
+ }
959
+ },
960
+ "deprecated": false
961
+ }
962
+ },
963
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/inPlaceSoftwareUpdate": {
964
+ "post": {
965
+ "tags": [
966
+ "onapsoinfraserviceInstantiation"
967
+ ],
968
+ "summary": "inPlaceSoftwareUpdate",
969
+ "description": "Perform VNF software update",
970
+ "operationId": "inPlaceSoftwareUpdate",
971
+ "parameters": [
972
+ {
973
+ "name": "version",
974
+ "in": "path",
975
+ "description": "",
976
+ "required": true,
977
+ "style": "simple",
978
+ "schema": {
979
+ "pattern": "[vV][6-7]",
980
+ "type": "string"
981
+ }
982
+ },
983
+ {
984
+ "name": "serviceInstanceId",
985
+ "in": "path",
986
+ "description": "",
987
+ "required": true,
988
+ "style": "simple",
989
+ "schema": {
990
+ "type": "string"
991
+ }
992
+ },
993
+ {
994
+ "name": "vnfInstanceId",
995
+ "in": "path",
996
+ "description": "",
997
+ "required": true,
998
+ "style": "simple",
999
+ "schema": {
1000
+ "type": "string"
1001
+ }
1002
+ }
1003
+ ],
1004
+ "requestBody": {
1005
+ "description": "",
1006
+ "content": {
1007
+ "text/plain": {
1008
+ "schema": {
1009
+ "type": "string"
1010
+ }
1011
+ }
1012
+ },
1013
+ "required": false
1014
+ },
1015
+ "responses": {
1016
+ "200": {
1017
+ "description": "",
1018
+ "headers": {}
1019
+ },
1020
+ "default": {
1021
+ "description": "successful operation"
1022
+ }
1023
+ },
1024
+ "deprecated": false
1025
+ }
1026
+ },
1027
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/applyUpdatedConfig": {
1028
+ "post": {
1029
+ "tags": [
1030
+ "onapsoinfraserviceInstantiation"
1031
+ ],
1032
+ "summary": "applyUpdatedConfig",
1033
+ "description": "Apply updated configuration",
1034
+ "operationId": "applyUpdatedConfig",
1035
+ "parameters": [
1036
+ {
1037
+ "name": "version",
1038
+ "in": "path",
1039
+ "description": "",
1040
+ "required": true,
1041
+ "style": "simple",
1042
+ "schema": {
1043
+ "pattern": "[vV][6-7]",
1044
+ "type": "string"
1045
+ }
1046
+ },
1047
+ {
1048
+ "name": "serviceInstanceId",
1049
+ "in": "path",
1050
+ "description": "",
1051
+ "required": true,
1052
+ "style": "simple",
1053
+ "schema": {
1054
+ "type": "string"
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "vnfInstanceId",
1059
+ "in": "path",
1060
+ "description": "",
1061
+ "required": true,
1062
+ "style": "simple",
1063
+ "schema": {
1064
+ "type": "string"
1065
+ }
1066
+ }
1067
+ ],
1068
+ "requestBody": {
1069
+ "description": "",
1070
+ "content": {
1071
+ "text/plain": {
1072
+ "schema": {
1073
+ "type": "string"
1074
+ }
1075
+ }
1076
+ },
1077
+ "required": false
1078
+ },
1079
+ "responses": {
1080
+ "200": {
1081
+ "description": "",
1082
+ "headers": {}
1083
+ },
1084
+ "default": {
1085
+ "description": "successful operation"
1086
+ }
1087
+ },
1088
+ "deprecated": false
1089
+ }
1090
+ },
1091
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances": {
1092
+ "post": {
1093
+ "tags": [
1094
+ "onapsoinfraserviceInstantiation"
1095
+ ],
1096
+ "summary": "createServiceInstance",
1097
+ "description": "Create a Service Instance on a version provided",
1098
+ "operationId": "createServiceInstance",
1099
+ "parameters": [
1100
+ {
1101
+ "name": "version",
1102
+ "in": "path",
1103
+ "description": "",
1104
+ "required": true,
1105
+ "style": "simple",
1106
+ "schema": {
1107
+ "pattern": "[vV][5-7]",
1108
+ "type": "string"
1109
+ }
1110
+ }
1111
+ ],
1112
+ "requestBody": {
1113
+ "description": "",
1114
+ "content": {
1115
+ "text/plain": {
1116
+ "schema": {
1117
+ "type": "string"
1118
+ }
1119
+ }
1120
+ },
1121
+ "required": false
1122
+ },
1123
+ "responses": {
1124
+ "200": {
1125
+ "description": "",
1126
+ "headers": {}
1127
+ },
1128
+ "default": {
1129
+ "description": "successful operation"
1130
+ }
1131
+ },
1132
+ "deprecated": false
1133
+ }
1134
+ },
1135
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/activate": {
1136
+ "post": {
1137
+ "tags": [
1138
+ "onapsoinfraserviceInstantiation"
1139
+ ],
1140
+ "summary": "activateServiceInstance",
1141
+ "description": "Activate provided Service Instance",
1142
+ "operationId": "activateServiceInstance",
1143
+ "parameters": [
1144
+ {
1145
+ "name": "version",
1146
+ "in": "path",
1147
+ "description": "",
1148
+ "required": true,
1149
+ "style": "simple",
1150
+ "schema": {
1151
+ "pattern": "[vV][5-7]",
1152
+ "type": "string"
1153
+ }
1154
+ },
1155
+ {
1156
+ "name": "serviceInstanceId",
1157
+ "in": "path",
1158
+ "description": "",
1159
+ "required": true,
1160
+ "style": "simple",
1161
+ "schema": {
1162
+ "type": "string"
1163
+ }
1164
+ }
1165
+ ],
1166
+ "requestBody": {
1167
+ "description": "",
1168
+ "content": {
1169
+ "text/plain": {
1170
+ "schema": {
1171
+ "type": "string"
1172
+ }
1173
+ }
1174
+ },
1175
+ "required": false
1176
+ },
1177
+ "responses": {
1178
+ "200": {
1179
+ "description": "",
1180
+ "headers": {}
1181
+ },
1182
+ "default": {
1183
+ "description": "successful operation"
1184
+ }
1185
+ },
1186
+ "deprecated": false
1187
+ }
1188
+ },
1189
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/deactivate": {
1190
+ "post": {
1191
+ "tags": [
1192
+ "onapsoinfraserviceInstantiation"
1193
+ ],
1194
+ "summary": "deactivateServiceInstance",
1195
+ "description": "Deactivate provided Service Instance",
1196
+ "operationId": "deactivateServiceInstance",
1197
+ "parameters": [
1198
+ {
1199
+ "name": "version",
1200
+ "in": "path",
1201
+ "description": "",
1202
+ "required": true,
1203
+ "style": "simple",
1204
+ "schema": {
1205
+ "pattern": "[vV][5-7]",
1206
+ "type": "string"
1207
+ }
1208
+ },
1209
+ {
1210
+ "name": "serviceInstanceId",
1211
+ "in": "path",
1212
+ "description": "",
1213
+ "required": true,
1214
+ "style": "simple",
1215
+ "schema": {
1216
+ "type": "string"
1217
+ }
1218
+ }
1219
+ ],
1220
+ "requestBody": {
1221
+ "description": "",
1222
+ "content": {
1223
+ "text/plain": {
1224
+ "schema": {
1225
+ "type": "string"
1226
+ }
1227
+ }
1228
+ },
1229
+ "required": false
1230
+ },
1231
+ "responses": {
1232
+ "200": {
1233
+ "description": "",
1234
+ "headers": {}
1235
+ },
1236
+ "default": {
1237
+ "description": "successful operation"
1238
+ }
1239
+ },
1240
+ "deprecated": false
1241
+ }
1242
+ },
1243
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}": {
1244
+ "delete": {
1245
+ "tags": [
1246
+ "onapsoinfraserviceInstantiation"
1247
+ ],
1248
+ "summary": "deleteServiceInstance",
1249
+ "description": "Delete provided Service Instance",
1250
+ "operationId": "deleteServiceInstance",
1251
+ "parameters": [
1252
+ {
1253
+ "name": "version",
1254
+ "in": "path",
1255
+ "description": "",
1256
+ "required": true,
1257
+ "style": "simple",
1258
+ "schema": {
1259
+ "pattern": "[vV][5-7]",
1260
+ "type": "string"
1261
+ }
1262
+ },
1263
+ {
1264
+ "name": "serviceInstanceId",
1265
+ "in": "path",
1266
+ "description": "",
1267
+ "required": true,
1268
+ "style": "simple",
1269
+ "schema": {
1270
+ "type": "string"
1271
+ }
1272
+ }
1273
+ ],
1274
+ "requestBody": {
1275
+ "description": "",
1276
+ "content": {
1277
+ "text/plain": {
1278
+ "schema": {
1279
+ "type": "string"
1280
+ }
1281
+ }
1282
+ },
1283
+ "required": false
1284
+ },
1285
+ "responses": {
1286
+ "200": {
1287
+ "description": "",
1288
+ "headers": {}
1289
+ },
1290
+ "default": {
1291
+ "description": "successful operation"
1292
+ }
1293
+ },
1294
+ "deprecated": false
1295
+ }
1296
+ },
1297
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/assign": {
1298
+ "post": {
1299
+ "tags": [
1300
+ "onapsoinfraserviceInstantiation"
1301
+ ],
1302
+ "summary": "assignServiceInstance",
1303
+ "description": "Assign Service Instance",
1304
+ "operationId": "assignServiceInstance",
1305
+ "parameters": [
1306
+ {
1307
+ "name": "version",
1308
+ "in": "path",
1309
+ "description": "",
1310
+ "required": true,
1311
+ "style": "simple",
1312
+ "schema": {
1313
+ "pattern": "[vV][7]",
1314
+ "type": "string"
1315
+ }
1316
+ }
1317
+ ],
1318
+ "requestBody": {
1319
+ "description": "",
1320
+ "content": {
1321
+ "text/plain": {
1322
+ "schema": {
1323
+ "type": "string"
1324
+ }
1325
+ }
1326
+ },
1327
+ "required": false
1328
+ },
1329
+ "responses": {
1330
+ "200": {
1331
+ "description": "",
1332
+ "headers": {}
1333
+ },
1334
+ "default": {
1335
+ "description": "successful operation"
1336
+ }
1337
+ },
1338
+ "deprecated": false
1339
+ }
1340
+ },
1341
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/unassign": {
1342
+ "post": {
1343
+ "tags": [
1344
+ "onapsoinfraserviceInstantiation"
1345
+ ],
1346
+ "summary": "unassignServiceInstance",
1347
+ "description": "Unassign Service Instance",
1348
+ "operationId": "unassignServiceInstance",
1349
+ "parameters": [
1350
+ {
1351
+ "name": "version",
1352
+ "in": "path",
1353
+ "description": "",
1354
+ "required": true,
1355
+ "style": "simple",
1356
+ "schema": {
1357
+ "pattern": "[vV][7]",
1358
+ "type": "string"
1359
+ }
1360
+ },
1361
+ {
1362
+ "name": "serviceInstanceId",
1363
+ "in": "path",
1364
+ "description": "",
1365
+ "required": true,
1366
+ "style": "simple",
1367
+ "schema": {
1368
+ "type": "string"
1369
+ }
1370
+ }
1371
+ ],
1372
+ "requestBody": {
1373
+ "description": "",
1374
+ "content": {
1375
+ "text/plain": {
1376
+ "schema": {
1377
+ "type": "string"
1378
+ }
1379
+ }
1380
+ },
1381
+ "required": false
1382
+ },
1383
+ "responses": {
1384
+ "200": {
1385
+ "description": "",
1386
+ "headers": {}
1387
+ },
1388
+ "default": {
1389
+ "description": "successful operation"
1390
+ }
1391
+ },
1392
+ "deprecated": false
1393
+ }
1394
+ },
1395
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations": {
1396
+ "post": {
1397
+ "tags": [
1398
+ "onapsoinfraserviceInstantiation"
1399
+ ],
1400
+ "summary": "createPortConfiguration",
1401
+ "description": "Create Port Mirroring Configuration",
1402
+ "operationId": "createPortConfiguration",
1403
+ "parameters": [
1404
+ {
1405
+ "name": "version",
1406
+ "in": "path",
1407
+ "description": "",
1408
+ "required": true,
1409
+ "style": "simple",
1410
+ "schema": {
1411
+ "pattern": "[vV][5-7]",
1412
+ "type": "string"
1413
+ }
1414
+ },
1415
+ {
1416
+ "name": "serviceInstanceId",
1417
+ "in": "path",
1418
+ "description": "",
1419
+ "required": true,
1420
+ "style": "simple",
1421
+ "schema": {
1422
+ "type": "string"
1423
+ }
1424
+ }
1425
+ ],
1426
+ "requestBody": {
1427
+ "description": "",
1428
+ "content": {
1429
+ "text/plain": {
1430
+ "schema": {
1431
+ "type": "string"
1432
+ }
1433
+ }
1434
+ },
1435
+ "required": false
1436
+ },
1437
+ "responses": {
1438
+ "200": {
1439
+ "description": "",
1440
+ "headers": {}
1441
+ },
1442
+ "default": {
1443
+ "description": "successful operation"
1444
+ }
1445
+ },
1446
+ "deprecated": false
1447
+ }
1448
+ },
1449
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}": {
1450
+ "delete": {
1451
+ "tags": [
1452
+ "onapsoinfraserviceInstantiation"
1453
+ ],
1454
+ "summary": "deletePortConfiguration",
1455
+ "description": "Delete provided Port",
1456
+ "operationId": "deletePortConfiguration",
1457
+ "parameters": [
1458
+ {
1459
+ "name": "version",
1460
+ "in": "path",
1461
+ "description": "",
1462
+ "required": true,
1463
+ "style": "simple",
1464
+ "schema": {
1465
+ "pattern": "[vV][5-7]",
1466
+ "type": "string"
1467
+ }
1468
+ },
1469
+ {
1470
+ "name": "serviceInstanceId",
1471
+ "in": "path",
1472
+ "description": "",
1473
+ "required": true,
1474
+ "style": "simple",
1475
+ "schema": {
1476
+ "type": "string"
1477
+ }
1478
+ },
1479
+ {
1480
+ "name": "configurationInstanceId",
1481
+ "in": "path",
1482
+ "description": "",
1483
+ "required": true,
1484
+ "style": "simple",
1485
+ "schema": {
1486
+ "type": "string"
1487
+ }
1488
+ }
1489
+ ],
1490
+ "requestBody": {
1491
+ "description": "",
1492
+ "content": {
1493
+ "text/plain": {
1494
+ "schema": {
1495
+ "type": "string"
1496
+ }
1497
+ }
1498
+ },
1499
+ "required": false
1500
+ },
1501
+ "responses": {
1502
+ "200": {
1503
+ "description": "",
1504
+ "headers": {}
1505
+ },
1506
+ "default": {
1507
+ "description": "successful operation"
1508
+ }
1509
+ },
1510
+ "deprecated": false
1511
+ }
1512
+ },
1513
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/removeRelationships": {
1514
+ "post": {
1515
+ "tags": [
1516
+ "onapsoinfraserviceInstantiation"
1517
+ ],
1518
+ "summary": "removeRelationships",
1519
+ "description": "Remove Relationships from Service Instance",
1520
+ "operationId": "removeRelationships",
1521
+ "parameters": [
1522
+ {
1523
+ "name": "version",
1524
+ "in": "path",
1525
+ "description": "",
1526
+ "required": true,
1527
+ "style": "simple",
1528
+ "schema": {
1529
+ "pattern": "[vV][6-7]",
1530
+ "type": "string"
1531
+ }
1532
+ },
1533
+ {
1534
+ "name": "serviceInstanceId",
1535
+ "in": "path",
1536
+ "description": "",
1537
+ "required": true,
1538
+ "style": "simple",
1539
+ "schema": {
1540
+ "type": "string"
1541
+ }
1542
+ }
1543
+ ],
1544
+ "requestBody": {
1545
+ "description": "",
1546
+ "content": {
1547
+ "text/plain": {
1548
+ "schema": {
1549
+ "type": "string"
1550
+ }
1551
+ }
1552
+ },
1553
+ "required": false
1554
+ },
1555
+ "responses": {
1556
+ "200": {
1557
+ "description": "",
1558
+ "headers": {}
1559
+ },
1560
+ "default": {
1561
+ "description": "successful operation"
1562
+ }
1563
+ },
1564
+ "deprecated": false
1565
+ }
1566
+ },
1567
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs": {
1568
+ "post": {
1569
+ "tags": [
1570
+ "onapsoinfraserviceInstantiation"
1571
+ ],
1572
+ "summary": "createVnfInstance",
1573
+ "description": "Create VNF on a specified version and serviceInstance",
1574
+ "operationId": "createVnfInstance",
1575
+ "parameters": [
1576
+ {
1577
+ "name": "version",
1578
+ "in": "path",
1579
+ "description": "",
1580
+ "required": true,
1581
+ "style": "simple",
1582
+ "schema": {
1583
+ "pattern": "[vV][5-7]",
1584
+ "type": "string"
1585
+ }
1586
+ },
1587
+ {
1588
+ "name": "serviceInstanceId",
1589
+ "in": "path",
1590
+ "description": "",
1591
+ "required": true,
1592
+ "style": "simple",
1593
+ "schema": {
1594
+ "type": "string"
1595
+ }
1596
+ }
1597
+ ],
1598
+ "requestBody": {
1599
+ "description": "",
1600
+ "content": {
1601
+ "text/plain": {
1602
+ "schema": {
1603
+ "type": "string"
1604
+ }
1605
+ }
1606
+ },
1607
+ "required": false
1608
+ },
1609
+ "responses": {
1610
+ "200": {
1611
+ "description": "",
1612
+ "headers": {}
1613
+ },
1614
+ "default": {
1615
+ "description": "successful operation"
1616
+ }
1617
+ },
1618
+ "deprecated": false
1619
+ }
1620
+ },
1621
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/replace": {
1622
+ "post": {
1623
+ "tags": [
1624
+ "onapsoinfraserviceInstantiation"
1625
+ ],
1626
+ "summary": "replaceVnfInstance",
1627
+ "description": "Replace provided VNF instance",
1628
+ "operationId": "replaceVnfInstance",
1629
+ "parameters": [
1630
+ {
1631
+ "name": "version",
1632
+ "in": "path",
1633
+ "description": "",
1634
+ "required": true,
1635
+ "style": "simple",
1636
+ "schema": {
1637
+ "pattern": "[vV][5-7]",
1638
+ "type": "string"
1639
+ }
1640
+ },
1641
+ {
1642
+ "name": "serviceInstanceId",
1643
+ "in": "path",
1644
+ "description": "",
1645
+ "required": true,
1646
+ "style": "simple",
1647
+ "schema": {
1648
+ "type": "string"
1649
+ }
1650
+ },
1651
+ {
1652
+ "name": "vnfInstanceId",
1653
+ "in": "path",
1654
+ "description": "",
1655
+ "required": true,
1656
+ "style": "simple",
1657
+ "schema": {
1658
+ "type": "string"
1659
+ }
1660
+ }
1661
+ ],
1662
+ "requestBody": {
1663
+ "description": "",
1664
+ "content": {
1665
+ "text/plain": {
1666
+ "schema": {
1667
+ "type": "string"
1668
+ }
1669
+ }
1670
+ },
1671
+ "required": false
1672
+ },
1673
+ "responses": {
1674
+ "200": {
1675
+ "description": "",
1676
+ "headers": {}
1677
+ },
1678
+ "default": {
1679
+ "description": "successful operation"
1680
+ }
1681
+ },
1682
+ "deprecated": false
1683
+ }
1684
+ },
1685
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}": {
1686
+ "put": {
1687
+ "tags": [
1688
+ "onapsoinfraserviceInstantiation"
1689
+ ],
1690
+ "summary": "updateVnfInstance",
1691
+ "description": "Update VNF on a specified version, serviceInstance and vnfInstance",
1692
+ "operationId": "updateVnfInstance",
1693
+ "parameters": [
1694
+ {
1695
+ "name": "version",
1696
+ "in": "path",
1697
+ "description": "",
1698
+ "required": true,
1699
+ "style": "simple",
1700
+ "schema": {
1701
+ "pattern": "[vV][5-7]",
1702
+ "type": "string"
1703
+ }
1704
+ },
1705
+ {
1706
+ "name": "serviceInstanceId",
1707
+ "in": "path",
1708
+ "description": "",
1709
+ "required": true,
1710
+ "style": "simple",
1711
+ "schema": {
1712
+ "type": "string"
1713
+ }
1714
+ },
1715
+ {
1716
+ "name": "vnfInstanceId",
1717
+ "in": "path",
1718
+ "description": "",
1719
+ "required": true,
1720
+ "style": "simple",
1721
+ "schema": {
1722
+ "type": "string"
1723
+ }
1724
+ }
1725
+ ],
1726
+ "requestBody": {
1727
+ "description": "",
1728
+ "content": {
1729
+ "text/plain": {
1730
+ "schema": {
1731
+ "type": "string"
1732
+ }
1733
+ }
1734
+ },
1735
+ "required": false
1736
+ },
1737
+ "responses": {
1738
+ "200": {
1739
+ "description": "",
1740
+ "headers": {}
1741
+ },
1742
+ "default": {
1743
+ "description": "successful operation"
1744
+ }
1745
+ },
1746
+ "deprecated": false
1747
+ },
1748
+ "delete": {
1749
+ "tags": [
1750
+ "onapsoinfraserviceInstantiation"
1751
+ ],
1752
+ "summary": "deleteVnfInstance",
1753
+ "description": "Delete provided VNF instance",
1754
+ "operationId": "deleteVnfInstance",
1755
+ "parameters": [
1756
+ {
1757
+ "name": "version",
1758
+ "in": "path",
1759
+ "description": "",
1760
+ "required": true,
1761
+ "style": "simple",
1762
+ "schema": {
1763
+ "pattern": "[vV][5-7]",
1764
+ "type": "string"
1765
+ }
1766
+ },
1767
+ {
1768
+ "name": "serviceInstanceId",
1769
+ "in": "path",
1770
+ "description": "",
1771
+ "required": true,
1772
+ "style": "simple",
1773
+ "schema": {
1774
+ "type": "string"
1775
+ }
1776
+ },
1777
+ {
1778
+ "name": "vnfInstanceId",
1779
+ "in": "path",
1780
+ "description": "",
1781
+ "required": true,
1782
+ "style": "simple",
1783
+ "schema": {
1784
+ "type": "string"
1785
+ }
1786
+ }
1787
+ ],
1788
+ "requestBody": {
1789
+ "description": "",
1790
+ "content": {
1791
+ "text/plain": {
1792
+ "schema": {
1793
+ "type": "string"
1794
+ }
1795
+ }
1796
+ },
1797
+ "required": false
1798
+ },
1799
+ "responses": {
1800
+ "200": {
1801
+ "description": "",
1802
+ "headers": {}
1803
+ },
1804
+ "default": {
1805
+ "description": "successful operation"
1806
+ }
1807
+ },
1808
+ "deprecated": false
1809
+ }
1810
+ },
1811
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules": {
1812
+ "post": {
1813
+ "tags": [
1814
+ "onapsoinfraserviceInstantiation"
1815
+ ],
1816
+ "summary": "createVfModuleInstance",
1817
+ "description": "Create VfModule on a specified version, serviceInstance and vnfInstance",
1818
+ "operationId": "createVfModuleInstance",
1819
+ "parameters": [
1820
+ {
1821
+ "name": "version",
1822
+ "in": "path",
1823
+ "description": "",
1824
+ "required": true,
1825
+ "style": "simple",
1826
+ "schema": {
1827
+ "pattern": "[vV][5-7]",
1828
+ "type": "string"
1829
+ }
1830
+ },
1831
+ {
1832
+ "name": "serviceInstanceId",
1833
+ "in": "path",
1834
+ "description": "",
1835
+ "required": true,
1836
+ "style": "simple",
1837
+ "schema": {
1838
+ "type": "string"
1839
+ }
1840
+ },
1841
+ {
1842
+ "name": "vnfInstanceId",
1843
+ "in": "path",
1844
+ "description": "",
1845
+ "required": true,
1846
+ "style": "simple",
1847
+ "schema": {
1848
+ "type": "string"
1849
+ }
1850
+ }
1851
+ ],
1852
+ "requestBody": {
1853
+ "description": "",
1854
+ "content": {
1855
+ "text/plain": {
1856
+ "schema": {
1857
+ "type": "string"
1858
+ }
1859
+ }
1860
+ },
1861
+ "required": false
1862
+ },
1863
+ "responses": {
1864
+ "200": {
1865
+ "description": "",
1866
+ "headers": {}
1867
+ },
1868
+ "default": {
1869
+ "description": "successful operation"
1870
+ }
1871
+ },
1872
+ "deprecated": false
1873
+ }
1874
+ },
1875
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/replace": {
1876
+ "post": {
1877
+ "tags": [
1878
+ "onapsoinfraserviceInstantiation"
1879
+ ],
1880
+ "summary": "replaceVfModuleInstance",
1881
+ "description": "Create VfModule on a specified version, serviceInstance and vnfInstance",
1882
+ "operationId": "replaceVfModuleInstance",
1883
+ "parameters": [
1884
+ {
1885
+ "name": "version",
1886
+ "in": "path",
1887
+ "description": "",
1888
+ "required": true,
1889
+ "style": "simple",
1890
+ "schema": {
1891
+ "pattern": "[vV][5-7]",
1892
+ "type": "string"
1893
+ }
1894
+ },
1895
+ {
1896
+ "name": "serviceInstanceId",
1897
+ "in": "path",
1898
+ "description": "",
1899
+ "required": true,
1900
+ "style": "simple",
1901
+ "schema": {
1902
+ "type": "string"
1903
+ }
1904
+ },
1905
+ {
1906
+ "name": "vnfInstanceId",
1907
+ "in": "path",
1908
+ "description": "",
1909
+ "required": true,
1910
+ "style": "simple",
1911
+ "schema": {
1912
+ "type": "string"
1913
+ }
1914
+ },
1915
+ {
1916
+ "name": "vfmoduleInstanceId",
1917
+ "in": "path",
1918
+ "description": "",
1919
+ "required": true,
1920
+ "style": "simple",
1921
+ "schema": {
1922
+ "type": "string"
1923
+ }
1924
+ }
1925
+ ],
1926
+ "requestBody": {
1927
+ "description": "",
1928
+ "content": {
1929
+ "text/plain": {
1930
+ "schema": {
1931
+ "type": "string"
1932
+ }
1933
+ }
1934
+ },
1935
+ "required": false
1936
+ },
1937
+ "responses": {
1938
+ "200": {
1939
+ "description": "",
1940
+ "headers": {}
1941
+ },
1942
+ "default": {
1943
+ "description": "successful operation"
1944
+ }
1945
+ },
1946
+ "deprecated": false
1947
+ }
1948
+ },
1949
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}": {
1950
+ "put": {
1951
+ "tags": [
1952
+ "onapsoinfraserviceInstantiation"
1953
+ ],
1954
+ "summary": "updateVfModuleInstance",
1955
+ "description": "Update VfModule on a specified version, serviceInstance, vnfInstance and vfModule",
1956
+ "operationId": "updateVfModuleInstance",
1957
+ "parameters": [
1958
+ {
1959
+ "name": "version",
1960
+ "in": "path",
1961
+ "description": "",
1962
+ "required": true,
1963
+ "style": "simple",
1964
+ "schema": {
1965
+ "pattern": "[vV][5-7]",
1966
+ "type": "string"
1967
+ }
1968
+ },
1969
+ {
1970
+ "name": "serviceInstanceId",
1971
+ "in": "path",
1972
+ "description": "",
1973
+ "required": true,
1974
+ "style": "simple",
1975
+ "schema": {
1976
+ "type": "string"
1977
+ }
1978
+ },
1979
+ {
1980
+ "name": "vnfInstanceId",
1981
+ "in": "path",
1982
+ "description": "",
1983
+ "required": true,
1984
+ "style": "simple",
1985
+ "schema": {
1986
+ "type": "string"
1987
+ }
1988
+ },
1989
+ {
1990
+ "name": "vfmoduleInstanceId",
1991
+ "in": "path",
1992
+ "description": "",
1993
+ "required": true,
1994
+ "style": "simple",
1995
+ "schema": {
1996
+ "type": "string"
1997
+ }
1998
+ }
1999
+ ],
2000
+ "requestBody": {
2001
+ "description": "",
2002
+ "content": {
2003
+ "text/plain": {
2004
+ "schema": {
2005
+ "type": "string"
2006
+ }
2007
+ }
2008
+ },
2009
+ "required": false
2010
+ },
2011
+ "responses": {
2012
+ "200": {
2013
+ "description": "",
2014
+ "headers": {}
2015
+ },
2016
+ "default": {
2017
+ "description": "successful operation"
2018
+ }
2019
+ },
2020
+ "deprecated": false
2021
+ },
2022
+ "delete": {
2023
+ "tags": [
2024
+ "onapsoinfraserviceInstantiation"
2025
+ ],
2026
+ "summary": "deleteVfModuleInstance",
2027
+ "description": "Delete provided VfModule instance",
2028
+ "operationId": "deleteVfModuleInstance",
2029
+ "parameters": [
2030
+ {
2031
+ "name": "version",
2032
+ "in": "path",
2033
+ "description": "",
2034
+ "required": true,
2035
+ "style": "simple",
2036
+ "schema": {
2037
+ "pattern": "[vV][5-7]",
2038
+ "type": "string"
2039
+ }
2040
+ },
2041
+ {
2042
+ "name": "serviceInstanceId",
2043
+ "in": "path",
2044
+ "description": "",
2045
+ "required": true,
2046
+ "style": "simple",
2047
+ "schema": {
2048
+ "type": "string"
2049
+ }
2050
+ },
2051
+ {
2052
+ "name": "vnfInstanceId",
2053
+ "in": "path",
2054
+ "description": "",
2055
+ "required": true,
2056
+ "style": "simple",
2057
+ "schema": {
2058
+ "type": "string"
2059
+ }
2060
+ },
2061
+ {
2062
+ "name": "vfmoduleInstanceId",
2063
+ "in": "path",
2064
+ "description": "",
2065
+ "required": true,
2066
+ "style": "simple",
2067
+ "schema": {
2068
+ "type": "string"
2069
+ }
2070
+ }
2071
+ ],
2072
+ "requestBody": {
2073
+ "description": "",
2074
+ "content": {
2075
+ "text/plain": {
2076
+ "schema": {
2077
+ "type": "string"
2078
+ }
2079
+ }
2080
+ },
2081
+ "required": false
2082
+ },
2083
+ "responses": {
2084
+ "200": {
2085
+ "description": "",
2086
+ "headers": {}
2087
+ },
2088
+ "default": {
2089
+ "description": "successful operation"
2090
+ }
2091
+ },
2092
+ "deprecated": false
2093
+ }
2094
+ },
2095
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/volumeGroups": {
2096
+ "post": {
2097
+ "tags": [
2098
+ "onapsoinfraserviceInstantiation"
2099
+ ],
2100
+ "summary": "createVolumeGroupInstance",
2101
+ "description": "Create VolumeGroup on a specified version, serviceInstance, vnfInstance",
2102
+ "operationId": "createVolumeGroupInstance",
2103
+ "parameters": [
2104
+ {
2105
+ "name": "version",
2106
+ "in": "path",
2107
+ "description": "",
2108
+ "required": true,
2109
+ "style": "simple",
2110
+ "schema": {
2111
+ "pattern": "[vV][5-7]",
2112
+ "type": "string"
2113
+ }
2114
+ },
2115
+ {
2116
+ "name": "serviceInstanceId",
2117
+ "in": "path",
2118
+ "description": "",
2119
+ "required": true,
2120
+ "style": "simple",
2121
+ "schema": {
2122
+ "type": "string"
2123
+ }
2124
+ },
2125
+ {
2126
+ "name": "vnfInstanceId",
2127
+ "in": "path",
2128
+ "description": "",
2129
+ "required": true,
2130
+ "style": "simple",
2131
+ "schema": {
2132
+ "type": "string"
2133
+ }
2134
+ }
2135
+ ],
2136
+ "requestBody": {
2137
+ "description": "",
2138
+ "content": {
2139
+ "text/plain": {
2140
+ "schema": {
2141
+ "type": "string"
2142
+ }
2143
+ }
2144
+ },
2145
+ "required": false
2146
+ },
2147
+ "responses": {
2148
+ "200": {
2149
+ "description": "",
2150
+ "headers": {}
2151
+ },
2152
+ "default": {
2153
+ "description": "successful operation"
2154
+ }
2155
+ },
2156
+ "deprecated": false
2157
+ }
2158
+ },
2159
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/volumeGroups/{volumeGroupInstanceId}": {
2160
+ "put": {
2161
+ "tags": [
2162
+ "onapsoinfraserviceInstantiation"
2163
+ ],
2164
+ "summary": "updateVolumeGroupInstance",
2165
+ "description": "Update VolumeGroup on a specified version, serviceInstance, vnfInstance and volumeGroup",
2166
+ "operationId": "updateVolumeGroupInstance",
2167
+ "parameters": [
2168
+ {
2169
+ "name": "version",
2170
+ "in": "path",
2171
+ "description": "",
2172
+ "required": true,
2173
+ "style": "simple",
2174
+ "schema": {
2175
+ "pattern": "[vV][5-7]",
2176
+ "type": "string"
2177
+ }
2178
+ },
2179
+ {
2180
+ "name": "serviceInstanceId",
2181
+ "in": "path",
2182
+ "description": "",
2183
+ "required": true,
2184
+ "style": "simple",
2185
+ "schema": {
2186
+ "type": "string"
2187
+ }
2188
+ },
2189
+ {
2190
+ "name": "vnfInstanceId",
2191
+ "in": "path",
2192
+ "description": "",
2193
+ "required": true,
2194
+ "style": "simple",
2195
+ "schema": {
2196
+ "type": "string"
2197
+ }
2198
+ },
2199
+ {
2200
+ "name": "volumeGroupInstanceId",
2201
+ "in": "path",
2202
+ "description": "",
2203
+ "required": true,
2204
+ "style": "simple",
2205
+ "schema": {
2206
+ "type": "string"
2207
+ }
2208
+ }
2209
+ ],
2210
+ "requestBody": {
2211
+ "description": "",
2212
+ "content": {
2213
+ "text/plain": {
2214
+ "schema": {
2215
+ "type": "string"
2216
+ }
2217
+ }
2218
+ },
2219
+ "required": false
2220
+ },
2221
+ "responses": {
2222
+ "200": {
2223
+ "description": "",
2224
+ "headers": {}
2225
+ },
2226
+ "default": {
2227
+ "description": "successful operation"
2228
+ }
2229
+ },
2230
+ "deprecated": false
2231
+ },
2232
+ "delete": {
2233
+ "tags": [
2234
+ "onapsoinfraserviceInstantiation"
2235
+ ],
2236
+ "summary": "deleteVolumeGroupInstance",
2237
+ "description": "Delete provided VolumeGroup instance",
2238
+ "operationId": "deleteVolumeGroupInstance",
2239
+ "parameters": [
2240
+ {
2241
+ "name": "version",
2242
+ "in": "path",
2243
+ "description": "",
2244
+ "required": true,
2245
+ "style": "simple",
2246
+ "schema": {
2247
+ "pattern": "[vV][5-7]",
2248
+ "type": "string"
2249
+ }
2250
+ },
2251
+ {
2252
+ "name": "serviceInstanceId",
2253
+ "in": "path",
2254
+ "description": "",
2255
+ "required": true,
2256
+ "style": "simple",
2257
+ "schema": {
2258
+ "type": "string"
2259
+ }
2260
+ },
2261
+ {
2262
+ "name": "vnfInstanceId",
2263
+ "in": "path",
2264
+ "description": "",
2265
+ "required": true,
2266
+ "style": "simple",
2267
+ "schema": {
2268
+ "type": "string"
2269
+ }
2270
+ },
2271
+ {
2272
+ "name": "volumeGroupInstanceId",
2273
+ "in": "path",
2274
+ "description": "",
2275
+ "required": true,
2276
+ "style": "simple",
2277
+ "schema": {
2278
+ "type": "string"
2279
+ }
2280
+ }
2281
+ ],
2282
+ "requestBody": {
2283
+ "description": "",
2284
+ "content": {
2285
+ "text/plain": {
2286
+ "schema": {
2287
+ "type": "string"
2288
+ }
2289
+ }
2290
+ },
2291
+ "required": false
2292
+ },
2293
+ "responses": {
2294
+ "200": {
2295
+ "description": "",
2296
+ "headers": {}
2297
+ },
2298
+ "default": {
2299
+ "description": "successful operation"
2300
+ }
2301
+ },
2302
+ "deprecated": false
2303
+ }
2304
+ },
2305
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/networks": {
2306
+ "post": {
2307
+ "tags": [
2308
+ "onapsoinfraserviceInstantiation"
2309
+ ],
2310
+ "summary": "createNetworkInstance",
2311
+ "description": "Create NetworkInstance on a specified version and serviceInstance ",
2312
+ "operationId": "createNetworkInstance",
2313
+ "parameters": [
2314
+ {
2315
+ "name": "version",
2316
+ "in": "path",
2317
+ "description": "",
2318
+ "required": true,
2319
+ "style": "simple",
2320
+ "schema": {
2321
+ "pattern": "[vV][5-7]",
2322
+ "type": "string"
2323
+ }
2324
+ },
2325
+ {
2326
+ "name": "serviceInstanceId",
2327
+ "in": "path",
2328
+ "description": "",
2329
+ "required": true,
2330
+ "style": "simple",
2331
+ "schema": {
2332
+ "type": "string"
2333
+ }
2334
+ }
2335
+ ],
2336
+ "requestBody": {
2337
+ "description": "",
2338
+ "content": {
2339
+ "text/plain": {
2340
+ "schema": {
2341
+ "type": "string"
2342
+ }
2343
+ }
2344
+ },
2345
+ "required": false
2346
+ },
2347
+ "responses": {
2348
+ "200": {
2349
+ "description": "",
2350
+ "headers": {}
2351
+ },
2352
+ "default": {
2353
+ "description": "successful operation"
2354
+ }
2355
+ },
2356
+ "deprecated": false
2357
+ }
2358
+ },
2359
+ "/onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/networks/{networkInstanceId}": {
2360
+ "put": {
2361
+ "tags": [
2362
+ "onapsoinfraserviceInstantiation"
2363
+ ],
2364
+ "summary": "updateNetworkInstance",
2365
+ "description": "Update VolumeGroup on a specified version, serviceInstance, networkInstance",
2366
+ "operationId": "updateNetworkInstance",
2367
+ "parameters": [
2368
+ {
2369
+ "name": "version",
2370
+ "in": "path",
2371
+ "description": "",
2372
+ "required": true,
2373
+ "style": "simple",
2374
+ "schema": {
2375
+ "pattern": "[vV][5-7]",
2376
+ "type": "string"
2377
+ }
2378
+ },
2379
+ {
2380
+ "name": "serviceInstanceId",
2381
+ "in": "path",
2382
+ "description": "",
2383
+ "required": true,
2384
+ "style": "simple",
2385
+ "schema": {
2386
+ "type": "string"
2387
+ }
2388
+ },
2389
+ {
2390
+ "name": "networkInstanceId",
2391
+ "in": "path",
2392
+ "description": "",
2393
+ "required": true,
2394
+ "style": "simple",
2395
+ "schema": {
2396
+ "type": "string"
2397
+ }
2398
+ }
2399
+ ],
2400
+ "requestBody": {
2401
+ "description": "",
2402
+ "content": {
2403
+ "text/plain": {
2404
+ "schema": {
2405
+ "type": "string"
2406
+ }
2407
+ }
2408
+ },
2409
+ "required": false
2410
+ },
2411
+ "responses": {
2412
+ "200": {
2413
+ "description": "",
2414
+ "headers": {}
2415
+ },
2416
+ "default": {
2417
+ "description": "successful operation"
2418
+ }
2419
+ },
2420
+ "deprecated": false
2421
+ },
2422
+ "delete": {
2423
+ "tags": [
2424
+ "onapsoinfraserviceInstantiation"
2425
+ ],
2426
+ "summary": "deleteNetworkInstance",
2427
+ "description": "Delete provided Network instance",
2428
+ "operationId": "deleteNetworkInstance",
2429
+ "parameters": [
2430
+ {
2431
+ "name": "version",
2432
+ "in": "path",
2433
+ "description": "",
2434
+ "required": true,
2435
+ "style": "simple",
2436
+ "schema": {
2437
+ "pattern": "[vV][5-7]",
2438
+ "type": "string"
2439
+ }
2440
+ },
2441
+ {
2442
+ "name": "serviceInstanceId",
2443
+ "in": "path",
2444
+ "description": "",
2445
+ "required": true,
2446
+ "style": "simple",
2447
+ "schema": {
2448
+ "type": "string"
2449
+ }
2450
+ },
2451
+ {
2452
+ "name": "networkInstanceId",
2453
+ "in": "path",
2454
+ "description": "",
2455
+ "required": true,
2456
+ "style": "simple",
2457
+ "schema": {
2458
+ "type": "string"
2459
+ }
2460
+ }
2461
+ ],
2462
+ "requestBody": {
2463
+ "description": "",
2464
+ "content": {
2465
+ "text/plain": {
2466
+ "schema": {
2467
+ "type": "string"
2468
+ }
2469
+ }
2470
+ },
2471
+ "required": false
2472
+ },
2473
+ "responses": {
2474
+ "200": {
2475
+ "description": "",
2476
+ "headers": {}
2477
+ },
2478
+ "default": {
2479
+ "description": "successful operation"
2480
+ }
2481
+ },
2482
+ "deprecated": false
2483
+ }
2484
+ },
2485
+ "/onap/so/infra/tasks/{version}": {
2486
+ "get": {
2487
+ "tags": [
2488
+ "onapsoinfratasks"
2489
+ ],
2490
+ "summary": "queryFilters",
2491
+ "description": "Finds Manual Tasks",
2492
+ "operationId": "queryFilters",
2493
+ "parameters": [
2494
+ {
2495
+ "name": "taskId",
2496
+ "in": "query",
2497
+ "description": "",
2498
+ "style": "form",
2499
+ "explode": true,
2500
+ "schema": {
2501
+ "type": "string"
2502
+ }
2503
+ },
2504
+ {
2505
+ "name": "originalRequestId",
2506
+ "in": "query",
2507
+ "description": "",
2508
+ "style": "form",
2509
+ "explode": true,
2510
+ "schema": {
2511
+ "type": "string"
2512
+ }
2513
+ },
2514
+ {
2515
+ "name": "subscriptionServiceType",
2516
+ "in": "query",
2517
+ "description": "",
2518
+ "style": "form",
2519
+ "explode": true,
2520
+ "schema": {
2521
+ "type": "string"
2522
+ }
2523
+ },
2524
+ {
2525
+ "name": "nfRole",
2526
+ "in": "query",
2527
+ "description": "",
2528
+ "style": "form",
2529
+ "explode": true,
2530
+ "schema": {
2531
+ "type": "string"
2532
+ }
2533
+ },
2534
+ {
2535
+ "name": "buildingBlockName",
2536
+ "in": "query",
2537
+ "description": "",
2538
+ "style": "form",
2539
+ "explode": true,
2540
+ "schema": {
2541
+ "type": "string"
2542
+ }
2543
+ },
2544
+ {
2545
+ "name": "originalRequestDate",
2546
+ "in": "query",
2547
+ "description": "",
2548
+ "style": "form",
2549
+ "explode": true,
2550
+ "schema": {
2551
+ "type": "string"
2552
+ }
2553
+ },
2554
+ {
2555
+ "name": "originalRequestorId",
2556
+ "in": "query",
2557
+ "description": "",
2558
+ "style": "form",
2559
+ "explode": true,
2560
+ "schema": {
2561
+ "type": "string"
2562
+ }
2563
+ },
2564
+ {
2565
+ "name": "version",
2566
+ "in": "path",
2567
+ "description": "",
2568
+ "required": true,
2569
+ "style": "simple",
2570
+ "schema": {
2571
+ "pattern": "[vV]1",
2572
+ "type": "string"
2573
+ }
2574
+ }
2575
+ ],
2576
+ "responses": {
2577
+ "200": {
2578
+ "description": "",
2579
+ "headers": {}
2580
+ },
2581
+ "default": {
2582
+ "description": "successful operation"
2583
+ }
2584
+ },
2585
+ "deprecated": false
2586
+ }
2587
+ },
2588
+ "/onap/so/infra/cloudResources/{version}/operationalEnvironments": {
2589
+ "post": {
2590
+ "tags": [
2591
+ "onapsoinfracloudResources"
2592
+ ],
2593
+ "summary": "createOperationEnvironment",
2594
+ "description": "Create an Operational Environment",
2595
+ "operationId": "createOperationEnvironment",
2596
+ "parameters": [
2597
+ {
2598
+ "name": "version",
2599
+ "in": "path",
2600
+ "description": "",
2601
+ "required": true,
2602
+ "style": "simple",
2603
+ "schema": {
2604
+ "pattern": "[vV][1]",
2605
+ "type": "string"
2606
+ }
2607
+ }
2608
+ ],
2609
+ "requestBody": {
2610
+ "description": "",
2611
+ "content": {
2612
+ "text/plain": {
2613
+ "schema": {
2614
+ "type": "string"
2615
+ }
2616
+ }
2617
+ },
2618
+ "required": false
2619
+ },
2620
+ "responses": {
2621
+ "200": {
2622
+ "description": "",
2623
+ "headers": {}
2624
+ },
2625
+ "default": {
2626
+ "description": "successful operation"
2627
+ }
2628
+ },
2629
+ "deprecated": false
2630
+ }
2631
+ },
2632
+ "/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate": {
2633
+ "post": {
2634
+ "tags": [
2635
+ "onapsoinfracloudResources"
2636
+ ],
2637
+ "summary": "activateOperationEnvironment",
2638
+ "description": "Activate an Operational Environment",
2639
+ "operationId": "activateOperationEnvironment",
2640
+ "parameters": [
2641
+ {
2642
+ "name": "version",
2643
+ "in": "path",
2644
+ "description": "",
2645
+ "required": true,
2646
+ "style": "simple",
2647
+ "schema": {
2648
+ "pattern": "[vV][1]",
2649
+ "type": "string"
2650
+ }
2651
+ },
2652
+ {
2653
+ "name": "operationalEnvironmentId",
2654
+ "in": "path",
2655
+ "description": "",
2656
+ "required": true,
2657
+ "style": "simple",
2658
+ "schema": {
2659
+ "type": "string"
2660
+ }
2661
+ }
2662
+ ],
2663
+ "requestBody": {
2664
+ "description": "",
2665
+ "content": {
2666
+ "text/plain": {
2667
+ "schema": {
2668
+ "type": "string"
2669
+ }
2670
+ }
2671
+ },
2672
+ "required": false
2673
+ },
2674
+ "responses": {
2675
+ "200": {
2676
+ "description": "",
2677
+ "headers": {}
2678
+ },
2679
+ "default": {
2680
+ "description": "successful operation"
2681
+ }
2682
+ },
2683
+ "deprecated": false
2684
+ }
2685
+ },
2686
+ "/onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate": {
2687
+ "post": {
2688
+ "tags": [
2689
+ "onapsoinfracloudResources"
2690
+ ],
2691
+ "summary": "deactivateOperationEnvironment",
2692
+ "description": "Deactivate an Operational Environment",
2693
+ "operationId": "deactivateOperationEnvironment",
2694
+ "parameters": [
2695
+ {
2696
+ "name": "version",
2697
+ "in": "path",
2698
+ "description": "",
2699
+ "required": true,
2700
+ "style": "simple",
2701
+ "schema": {
2702
+ "pattern": "[vV][1]",
2703
+ "type": "string"
2704
+ }
2705
+ },
2706
+ {
2707
+ "name": "operationalEnvironmentId",
2708
+ "in": "path",
2709
+ "description": "",
2710
+ "required": true,
2711
+ "style": "simple",
2712
+ "schema": {
2713
+ "type": "string"
2714
+ }
2715
+ }
2716
+ ],
2717
+ "requestBody": {
2718
+ "description": "",
2719
+ "content": {
2720
+ "text/plain": {
2721
+ "schema": {
2722
+ "type": "string"
2723
+ }
2724
+ }
2725
+ },
2726
+ "required": false
2727
+ },
2728
+ "responses": {
2729
+ "200": {
2730
+ "description": "",
2731
+ "headers": {}
2732
+ },
2733
+ "default": {
2734
+ "description": "successful operation"
2735
+ }
2736
+ },
2737
+ "deprecated": false
2738
+ }
2739
+ },
2740
+ "/onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock": {
2741
+ "post": {
2742
+ "tags": [
2743
+ "onapsoinfracloudResourcesRequests"
2744
+ ],
2745
+ "summary": "unlockOrchestrationRequestForReqId",
2746
+ "description": "Unlock CloudOrchestration requests for a specified requestId",
2747
+ "operationId": "unlockOrchestrationRequestForReqId",
2748
+ "parameters": [
2749
+ {
2750
+ "name": "requestId",
2751
+ "in": "path",
2752
+ "description": "",
2753
+ "required": true,
2754
+ "style": "simple",
2755
+ "schema": {
2756
+ "type": "string"
2757
+ }
2758
+ },
2759
+ {
2760
+ "name": "version",
2761
+ "in": "path",
2762
+ "description": "",
2763
+ "required": true,
2764
+ "style": "simple",
2765
+ "schema": {
2766
+ "pattern": "[vV][1]",
2767
+ "type": "string"
2768
+ }
2769
+ }
2770
+ ],
2771
+ "requestBody": {
2772
+ "description": "",
2773
+ "content": {
2774
+ "text/plain": {
2775
+ "schema": {
2776
+ "type": "string"
2777
+ }
2778
+ }
2779
+ },
2780
+ "required": false
2781
+ },
2782
+ "responses": {
2783
+ "200": {
2784
+ "description": "",
2785
+ "headers": {}
2786
+ },
2787
+ "default": {
2788
+ "description": "successful operation"
2789
+ }
2790
+ },
2791
+ "deprecated": false
2792
+ }
2793
+ },
2794
+ "/onap/so/infra/cloudResourcesRequests/{version}": {
2795
+ "get": {
2796
+ "tags": [
2797
+ "onapsoinfracloudResourcesRequests"
2798
+ ],
2799
+ "summary": "getOperationEnvironmentStatusFilter",
2800
+ "description": "Get status of an Operational Environment based on filter criteria",
2801
+ "operationId": "getOperationEnvironmentStatusFilter",
2802
+ "parameters": [
2803
+ {
2804
+ "name": "version",
2805
+ "in": "path",
2806
+ "description": "",
2807
+ "required": true,
2808
+ "style": "simple",
2809
+ "schema": {
2810
+ "pattern": "[vV][1]",
2811
+ "type": "string"
2812
+ }
2813
+ }
2814
+ ],
2815
+ "responses": {
2816
+ "200": {
2817
+ "description": "",
2818
+ "headers": {}
2819
+ },
2820
+ "default": {
2821
+ "description": "successful operation"
2822
+ }
2823
+ },
2824
+ "deprecated": false
2825
+ }
2826
+ },
2827
+ "/onap/so/infra/modelDistributions/{version}/distributions/{distributionId}": {
2828
+ "post": {
2829
+ "tags": [
2830
+ "onapsoinframodelDistributions"
2831
+ ],
2832
+ "summary": "updateModelDistributionStatus",
2833
+ "description": "Update model distribution status",
2834
+ "operationId": "updateModelDistributionStatus",
2835
+ "parameters": [
2836
+ {
2837
+ "name": "version",
2838
+ "in": "path",
2839
+ "description": "",
2840
+ "required": true,
2841
+ "style": "simple",
2842
+ "schema": {
2843
+ "pattern": "[vV][1]",
2844
+ "type": "string"
2845
+ }
2846
+ },
2847
+ {
2848
+ "name": "distributionId",
2849
+ "in": "path",
2850
+ "description": "",
2851
+ "required": true,
2852
+ "style": "simple",
2853
+ "schema": {
2854
+ "type": "string"
2855
+ }
2856
+ }
2857
+ ],
2858
+ "requestBody": {
2859
+ "description": "",
2860
+ "content": {
2861
+ "text/plain": {
2862
+ "schema": {
2863
+ "type": "string"
2864
+ }
2865
+ }
2866
+ },
2867
+ "required": false
2868
+ },
2869
+ "responses": {
2870
+ "200": {
2871
+ "description": "",
2872
+ "headers": {}
2873
+ },
2874
+ "default": {
2875
+ "description": "successful operation"
2876
+ }
2877
+ },
2878
+ "deprecated": false
2879
+ }
2880
+ }
2881
+ },
2882
+ "tags": [
2883
+ {
2884
+ "name": "e2eServiceInstances"
2885
+ },
2886
+ {
2887
+ "name": "globalhealthcheck"
2888
+ },
2889
+ {
2890
+ "name": "nodehealthcheck"
2891
+ },
2892
+ {
2893
+ "name": "onapsoinfraorchestrationRequests"
2894
+ },
2895
+ {
2896
+ "name": "onapsoinfraserviceInstantiation"
2897
+ },
2898
+ {
2899
+ "name": "onapsoinfratasks"
2900
+ },
2901
+ {
2902
+ "name": "onapsoinfracloudResources"
2903
+ },
2904
+ {
2905
+ "name": "onapsoinfracloudResourcesRequests"
2906
+ },
2907
+ {
2908
+ "name": "onapsoinframodelDistributions"
2909
+ }
2910
+ ]
2911
+ }