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