@itentialopensource/adapter-onap_so 0.4.0 → 0.5.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 (42) hide show
  1. package/CALLS.md +300 -0
  2. package/CHANGELOG.md +16 -0
  3. package/CONTRIBUTING.md +1 -160
  4. package/ENHANCE.md +2 -2
  5. package/README.md +32 -23
  6. package/adapter.js +157 -329
  7. package/adapterBase.js +549 -879
  8. package/changelogs/changelog.md +79 -0
  9. package/metadata.json +47 -0
  10. package/package.json +24 -25
  11. package/pronghorn.json +981 -642
  12. package/propertiesSchema.json +431 -31
  13. package/refs?service=git-upload-pack +0 -0
  14. package/report/adapter-openapi.json +2911 -0
  15. package/report/adapter-openapi.yaml +2156 -0
  16. package/report/adapterInfo.json +8 -8
  17. package/report/updateReport1691507681629.json +120 -0
  18. package/report/updateReport1692202679983.json +120 -0
  19. package/report/updateReport1694462568487.json +120 -0
  20. package/report/updateReport1698421207722.json +120 -0
  21. package/sampleProperties.json +63 -2
  22. package/test/integration/adapterTestBasicGet.js +2 -4
  23. package/test/integration/adapterTestConnectivity.js +91 -42
  24. package/test/integration/adapterTestIntegration.js +130 -2
  25. package/test/unit/adapterBaseTestUnit.js +388 -313
  26. package/test/unit/adapterTestUnit.js +338 -112
  27. package/utils/adapterInfo.js +1 -1
  28. package/utils/addAuth.js +1 -1
  29. package/utils/artifactize.js +1 -1
  30. package/utils/checkMigrate.js +1 -1
  31. package/utils/entitiesToDB.js +2 -2
  32. package/utils/findPath.js +1 -1
  33. package/utils/methodDocumentor.js +273 -0
  34. package/utils/modify.js +13 -15
  35. package/utils/packModificationScript.js +1 -1
  36. package/utils/pre-commit.sh +2 -0
  37. package/utils/taskMover.js +309 -0
  38. package/utils/tbScript.js +89 -34
  39. package/utils/tbUtils.js +41 -21
  40. package/utils/testRunner.js +1 -1
  41. package/utils/troubleshootingAdapter.js +9 -6
  42. package/workflows/README.md +0 -3
@@ -0,0 +1,2156 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: onap_so
4
+ contact: {}
5
+ version: '3.1.2'
6
+ servers:
7
+ - url: http://{defaultHost}
8
+ variables:
9
+ defaultHost:
10
+ default: www.example.com
11
+ paths:
12
+ /onap/so/infra/e2eServiceInstances/{version}:
13
+ post:
14
+ tags:
15
+ - e2eServiceInstances
16
+ summary: createE2EServiceInstance
17
+ description: Create an E2E Service Instance on a version provided
18
+ operationId: createE2EServiceInstance
19
+ parameters:
20
+ - name: version
21
+ in: path
22
+ description: ''
23
+ required: true
24
+ style: simple
25
+ schema:
26
+ pattern: '[vV][3-5]'
27
+ type: string
28
+ requestBody:
29
+ description: ''
30
+ content:
31
+ text/plain:
32
+ schema:
33
+ type: string
34
+ required: false
35
+ responses:
36
+ '200':
37
+ description: ''
38
+ headers: {}
39
+ content: {}
40
+ default:
41
+ description: successful operation
42
+ headers: {}
43
+ content: {}
44
+ deprecated: false
45
+ /onap/so/infra/e2eServiceInstances/{version}/{serviceId}:
46
+ put:
47
+ tags:
48
+ - e2eServiceInstances
49
+ summary: updateE2EServiceInstance
50
+ description: Update an E2E Service Instance on a version provided and serviceId
51
+ operationId: updateE2EServiceInstance
52
+ parameters:
53
+ - name: version
54
+ in: path
55
+ description: ''
56
+ required: true
57
+ style: simple
58
+ schema:
59
+ pattern: '[vV][3-5]'
60
+ type: string
61
+ - name: serviceId
62
+ in: path
63
+ description: ''
64
+ required: true
65
+ style: simple
66
+ schema:
67
+ type: string
68
+ requestBody:
69
+ description: ''
70
+ content:
71
+ text/plain:
72
+ schema:
73
+ type: string
74
+ required: false
75
+ responses:
76
+ '200':
77
+ description: ''
78
+ headers: {}
79
+ content: {}
80
+ default:
81
+ description: successful operation
82
+ headers: {}
83
+ content: {}
84
+ deprecated: false
85
+ delete:
86
+ tags:
87
+ - e2eServiceInstances
88
+ summary: deleteE2EServiceInstance
89
+ description: Delete E2E Service Instance on a specified version and serviceId
90
+ operationId: deleteE2EServiceInstance
91
+ parameters:
92
+ - name: version
93
+ in: path
94
+ description: ''
95
+ required: true
96
+ style: simple
97
+ schema:
98
+ pattern: '[vV][3-5]'
99
+ type: string
100
+ - name: serviceId
101
+ in: path
102
+ description: ''
103
+ required: true
104
+ style: simple
105
+ schema:
106
+ type: string
107
+ - name: Content-Type
108
+ in: header
109
+ description: ''
110
+ required: true
111
+ style: simple
112
+ schema:
113
+ enum:
114
+ - text/plain
115
+ type: string
116
+ responses:
117
+ '200':
118
+ description: ''
119
+ headers: {}
120
+ content: {}
121
+ default:
122
+ description: successful operation
123
+ headers: {}
124
+ content: {}
125
+ deprecated: false
126
+ /onap/so/infra/e2eServiceInstances/{version}/{serviceId}/operations/{operationId}:
127
+ get:
128
+ tags:
129
+ - e2eServiceInstances
130
+ summary: getE2EServiceInstances
131
+ description: Find e2eServiceInstances Requests for a given serviceId and operationId
132
+ operationId: getE2EServiceInstances
133
+ parameters:
134
+ - name: serviceId
135
+ in: path
136
+ description: ''
137
+ required: true
138
+ style: simple
139
+ schema:
140
+ type: string
141
+ - name: version
142
+ in: path
143
+ description: ''
144
+ required: true
145
+ style: simple
146
+ schema:
147
+ pattern: '[vV][3-5]'
148
+ type: string
149
+ - name: operationId
150
+ in: path
151
+ description: ''
152
+ required: true
153
+ style: simple
154
+ schema:
155
+ type: string
156
+ responses:
157
+ '200':
158
+ description: ''
159
+ headers: {}
160
+ content: {}
161
+ default:
162
+ description: successful operation
163
+ headers: {}
164
+ content: {}
165
+ deprecated: false
166
+ /onap/so/infra/e2eServiceInstances/{version}/{serviceId}/scale:
167
+ post:
168
+ tags:
169
+ - e2eServiceInstances
170
+ summary: scaleE2EServiceInstance
171
+ description: Scale E2E Service Instance on a specified version
172
+ operationId: scaleE2EServiceInstance
173
+ parameters:
174
+ - name: version
175
+ in: path
176
+ description: ''
177
+ required: true
178
+ style: simple
179
+ schema:
180
+ pattern: '[vV][3-5]'
181
+ type: string
182
+ - name: serviceId
183
+ in: path
184
+ description: ''
185
+ required: true
186
+ style: simple
187
+ schema:
188
+ type: string
189
+ requestBody:
190
+ description: ''
191
+ content:
192
+ text/plain:
193
+ schema:
194
+ type: string
195
+ required: false
196
+ responses:
197
+ '200':
198
+ description: ''
199
+ headers: {}
200
+ content: {}
201
+ default:
202
+ description: successful operation
203
+ headers: {}
204
+ content: {}
205
+ deprecated: false
206
+ /onap/so/infra/e2eServiceInstances/{version}/{serviceId}/modeldifferences:
207
+ post:
208
+ tags:
209
+ - e2eServiceInstances
210
+ summary: compareModelwithTargetVersion
211
+ description: 'Find added and deleted resources of target model for the e2eserviceInstance on a given serviceId '
212
+ operationId: compareModelwithTargetVersion
213
+ parameters:
214
+ - name: serviceId
215
+ in: path
216
+ description: ''
217
+ required: true
218
+ style: simple
219
+ schema:
220
+ type: string
221
+ - name: version
222
+ in: path
223
+ description: ''
224
+ required: true
225
+ style: simple
226
+ schema:
227
+ pattern: '[vV][3-5]'
228
+ type: string
229
+ requestBody:
230
+ description: ''
231
+ content:
232
+ text/plain:
233
+ schema:
234
+ type: string
235
+ required: false
236
+ responses:
237
+ '200':
238
+ description: ''
239
+ headers: {}
240
+ content: {}
241
+ default:
242
+ description: successful operation
243
+ headers: {}
244
+ content: {}
245
+ deprecated: false
246
+ /globalhealthcheck:
247
+ get:
248
+ tags:
249
+ - globalhealthcheck
250
+ summary: globalHealthcheck
251
+ description: Performing global health check
252
+ operationId: globalHealthcheck
253
+ parameters:
254
+ - name: enableBpmn
255
+ in: query
256
+ description: ''
257
+ style: form
258
+ explode: true
259
+ schema:
260
+ type: boolean
261
+ default: true
262
+ example: true
263
+ responses:
264
+ '200':
265
+ description: ''
266
+ headers: {}
267
+ content: {}
268
+ default:
269
+ description: successful operation
270
+ headers: {}
271
+ content: {}
272
+ deprecated: false
273
+ /nodehealthcheck:
274
+ get:
275
+ tags:
276
+ - nodehealthcheck
277
+ summary: nodeHealthcheck
278
+ description: Performing node health check
279
+ operationId: nodeHealthcheck
280
+ parameters: []
281
+ responses:
282
+ '200':
283
+ description: ''
284
+ headers: {}
285
+ content: {}
286
+ default:
287
+ description: successful operation
288
+ headers: {}
289
+ content: {}
290
+ deprecated: false
291
+ /onap/so/infra/orchestrationRequests/{version}:
292
+ get:
293
+ tags:
294
+ - onapsoinfraorchestrationRequests
295
+ summary: getOrchestrationRequest
296
+ description: Find Orchestrated Requests for a URI Information
297
+ operationId: getOrchestrationRequest
298
+ parameters:
299
+ - name: version
300
+ in: path
301
+ description: ''
302
+ required: true
303
+ style: simple
304
+ schema:
305
+ pattern: '[vV][4-7]'
306
+ type: string
307
+ responses:
308
+ '200':
309
+ description: ''
310
+ headers: {}
311
+ content: {}
312
+ default:
313
+ description: successful operation
314
+ headers: {}
315
+ content: {}
316
+ deprecated: false
317
+ /onap/so/infra/orchestrationRequests/{version}/{requestId}:
318
+ get:
319
+ tags:
320
+ - onapsoinfraorchestrationRequests
321
+ summary: getOrchestrationRequestForReqId
322
+ description: Find Orchestrated Requests for a given requestId
323
+ operationId: getOrchestrationRequestForReqId
324
+ parameters:
325
+ - name: requestId
326
+ in: path
327
+ description: ''
328
+ required: true
329
+ style: simple
330
+ schema:
331
+ type: string
332
+ - name: version
333
+ in: path
334
+ description: ''
335
+ required: true
336
+ style: simple
337
+ schema:
338
+ pattern: '[vV][4-7]'
339
+ type: string
340
+ responses:
341
+ '200':
342
+ description: ''
343
+ headers: {}
344
+ content: {}
345
+ default:
346
+ description: successful operation
347
+ headers: {}
348
+ content: {}
349
+ deprecated: false
350
+ /onap/so/infra/orchestrationRequests/{version}/{requestId}/unlock:
351
+ post:
352
+ tags:
353
+ - onapsoinfraorchestrationRequests
354
+ summary: unlockOrchestrationRequest
355
+ description: Unlock Orchestrated Requests for a given requestId
356
+ operationId: unlockOrchestrationRequest
357
+ parameters:
358
+ - name: requestId
359
+ in: path
360
+ description: ''
361
+ required: true
362
+ style: simple
363
+ schema:
364
+ type: string
365
+ - name: version
366
+ in: path
367
+ description: ''
368
+ required: true
369
+ style: simple
370
+ schema:
371
+ pattern: '[vV][4-7]'
372
+ type: string
373
+ requestBody:
374
+ description: ''
375
+ content:
376
+ text/plain:
377
+ schema:
378
+ type: string
379
+ required: false
380
+ responses:
381
+ '200':
382
+ description: ''
383
+ headers: {}
384
+ content: {}
385
+ default:
386
+ description: successful operation
387
+ headers: {}
388
+ content: {}
389
+ deprecated: false
390
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/deactivateAndCloudDelete
391
+ : post:
392
+ tags:
393
+ - onapsoinfraserviceInstantiation
394
+ summary: deactivateAndCloudDeleteVfModuleInstance
395
+ description: Deactivate and Cloud Delete VfModule instance
396
+ operationId: deactivateAndCloudDeleteVfModuleInstance
397
+ parameters:
398
+ - name: version
399
+ in: path
400
+ description: ''
401
+ required: true
402
+ style: simple
403
+ schema:
404
+ pattern: '[vV][7]'
405
+ type: string
406
+ - name: serviceInstanceId
407
+ in: path
408
+ description: ''
409
+ required: true
410
+ style: simple
411
+ schema:
412
+ type: string
413
+ - name: vnfInstanceId
414
+ in: path
415
+ description: ''
416
+ required: true
417
+ style: simple
418
+ schema:
419
+ type: string
420
+ - name: vfmoduleInstanceId
421
+ in: path
422
+ description: ''
423
+ required: true
424
+ style: simple
425
+ schema:
426
+ type: string
427
+ requestBody:
428
+ description: ''
429
+ content:
430
+ text/plain:
431
+ schema:
432
+ type: string
433
+ required: false
434
+ responses:
435
+ '200':
436
+ description: ''
437
+ headers: {}
438
+ content: {}
439
+ default:
440
+ description: successful operation
441
+ headers: {}
442
+ content: {}
443
+ deprecated: false
444
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/enablePort
445
+ : post:
446
+ tags:
447
+ - onapsoinfraserviceInstantiation
448
+ summary: enablePort
449
+ description: Enable Port Mirroring
450
+ operationId: enablePort
451
+ parameters:
452
+ - name: version
453
+ in: path
454
+ description: ''
455
+ required: true
456
+ style: simple
457
+ schema:
458
+ pattern: '[vV][5-7]'
459
+ type: string
460
+ - name: serviceInstanceId
461
+ in: path
462
+ description: ''
463
+ required: true
464
+ style: simple
465
+ schema:
466
+ type: string
467
+ - name: configurationInstanceId
468
+ in: path
469
+ description: ''
470
+ required: true
471
+ style: simple
472
+ schema:
473
+ type: string
474
+ requestBody:
475
+ description: ''
476
+ content:
477
+ text/plain:
478
+ schema:
479
+ type: string
480
+ required: false
481
+ responses:
482
+ '200':
483
+ description: ''
484
+ headers: {}
485
+ content: {}
486
+ default:
487
+ description: successful operation
488
+ headers: {}
489
+ content: {}
490
+ deprecated: false
491
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/disablePort
492
+ : post:
493
+ tags:
494
+ - onapsoinfraserviceInstantiation
495
+ summary: disablePort
496
+ description: Disable Port Mirroring
497
+ operationId: disablePort
498
+ parameters:
499
+ - name: version
500
+ in: path
501
+ description: ''
502
+ required: true
503
+ style: simple
504
+ schema:
505
+ pattern: '[vV][5-7]'
506
+ type: string
507
+ - name: serviceInstanceId
508
+ in: path
509
+ description: ''
510
+ required: true
511
+ style: simple
512
+ schema:
513
+ type: string
514
+ - name: configurationInstanceId
515
+ in: path
516
+ description: ''
517
+ required: true
518
+ style: simple
519
+ schema:
520
+ type: string
521
+ requestBody:
522
+ description: ''
523
+ content:
524
+ text/plain:
525
+ schema:
526
+ type: string
527
+ required: false
528
+ responses:
529
+ '200':
530
+ description: ''
531
+ headers: {}
532
+ content: {}
533
+ default:
534
+ description: successful operation
535
+ headers: {}
536
+ content: {}
537
+ deprecated: false
538
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/activate
539
+ : post:
540
+ tags:
541
+ - onapsoinfraserviceInstantiation
542
+ summary: activatePort
543
+ description: Activate Port Mirroring
544
+ operationId: activatePort
545
+ parameters:
546
+ - name: version
547
+ in: path
548
+ description: ''
549
+ required: true
550
+ style: simple
551
+ schema:
552
+ pattern: '[vV][5-7]'
553
+ type: string
554
+ - name: serviceInstanceId
555
+ in: path
556
+ description: ''
557
+ required: true
558
+ style: simple
559
+ schema:
560
+ type: string
561
+ - name: configurationInstanceId
562
+ in: path
563
+ description: ''
564
+ required: true
565
+ style: simple
566
+ schema:
567
+ type: string
568
+ requestBody:
569
+ description: ''
570
+ content:
571
+ text/plain:
572
+ schema:
573
+ type: string
574
+ required: false
575
+ responses:
576
+ '200':
577
+ description: ''
578
+ headers: {}
579
+ content: {}
580
+ default:
581
+ description: successful operation
582
+ headers: {}
583
+ content: {}
584
+ deprecated: false
585
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}/deactivate
586
+ : post:
587
+ tags:
588
+ - onapsoinfraserviceInstantiation
589
+ summary: deactivatePort
590
+ description: Deactivate Port Mirroring
591
+ operationId: deactivatePort
592
+ parameters:
593
+ - name: version
594
+ in: path
595
+ description: ''
596
+ required: true
597
+ style: simple
598
+ schema:
599
+ pattern: '[vV][5-7]'
600
+ type: string
601
+ - name: serviceInstanceId
602
+ in: path
603
+ description: ''
604
+ required: true
605
+ style: simple
606
+ schema:
607
+ type: string
608
+ - name: configurationInstanceId
609
+ in: path
610
+ description: ''
611
+ required: true
612
+ style: simple
613
+ schema:
614
+ type: string
615
+ requestBody:
616
+ description: ''
617
+ content:
618
+ text/plain:
619
+ schema:
620
+ type: string
621
+ required: false
622
+ responses:
623
+ '200':
624
+ description: ''
625
+ headers: {}
626
+ content: {}
627
+ default:
628
+ description: successful operation
629
+ headers: {}
630
+ content: {}
631
+ deprecated: false
632
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/addRelationships:
633
+ post:
634
+ tags:
635
+ - onapsoinfraserviceInstantiation
636
+ summary: addRelationships
637
+ description: Add Relationships to a Service Instance
638
+ operationId: addRelationships
639
+ parameters:
640
+ - name: version
641
+ in: path
642
+ description: ''
643
+ required: true
644
+ style: simple
645
+ schema:
646
+ pattern: '[vV][6-7]'
647
+ type: string
648
+ - name: serviceInstanceId
649
+ in: path
650
+ description: ''
651
+ required: true
652
+ style: simple
653
+ schema:
654
+ type: string
655
+ requestBody:
656
+ description: ''
657
+ content:
658
+ text/plain:
659
+ schema:
660
+ type: string
661
+ required: false
662
+ responses:
663
+ '200':
664
+ description: ''
665
+ headers: {}
666
+ content: {}
667
+ default:
668
+ description: successful operation
669
+ headers: {}
670
+ content: {}
671
+ deprecated: false
672
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/scaleOut:
673
+ post:
674
+ tags:
675
+ - onapsoinfraserviceInstantiation
676
+ summary: scaleOutVfModule
677
+ description: VF Auto Scale Out
678
+ operationId: scaleOutVfModule
679
+ parameters:
680
+ - name: version
681
+ in: path
682
+ description: ''
683
+ required: true
684
+ style: simple
685
+ schema:
686
+ pattern: '[vV][7]'
687
+ type: string
688
+ - name: serviceInstanceId
689
+ in: path
690
+ description: ''
691
+ required: true
692
+ style: simple
693
+ schema:
694
+ type: string
695
+ - name: vnfInstanceId
696
+ in: path
697
+ description: ''
698
+ required: true
699
+ style: simple
700
+ schema:
701
+ type: string
702
+ requestBody:
703
+ description: ''
704
+ content:
705
+ text/plain:
706
+ schema:
707
+ type: string
708
+ required: false
709
+ responses:
710
+ '200':
711
+ description: ''
712
+ headers: {}
713
+ content: {}
714
+ default:
715
+ description: successful operation
716
+ headers: {}
717
+ content: {}
718
+ deprecated: false
719
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/inPlaceSoftwareUpdate:
720
+ post:
721
+ tags:
722
+ - onapsoinfraserviceInstantiation
723
+ summary: inPlaceSoftwareUpdate
724
+ description: Perform VNF software update
725
+ operationId: inPlaceSoftwareUpdate
726
+ parameters:
727
+ - name: version
728
+ in: path
729
+ description: ''
730
+ required: true
731
+ style: simple
732
+ schema:
733
+ pattern: '[vV][6-7]'
734
+ type: string
735
+ - name: serviceInstanceId
736
+ in: path
737
+ description: ''
738
+ required: true
739
+ style: simple
740
+ schema:
741
+ type: string
742
+ - name: vnfInstanceId
743
+ in: path
744
+ description: ''
745
+ required: true
746
+ style: simple
747
+ schema:
748
+ type: string
749
+ requestBody:
750
+ description: ''
751
+ content:
752
+ text/plain:
753
+ schema:
754
+ type: string
755
+ required: false
756
+ responses:
757
+ '200':
758
+ description: ''
759
+ headers: {}
760
+ content: {}
761
+ default:
762
+ description: successful operation
763
+ headers: {}
764
+ content: {}
765
+ deprecated: false
766
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/applyUpdatedConfig:
767
+ post:
768
+ tags:
769
+ - onapsoinfraserviceInstantiation
770
+ summary: applyUpdatedConfig
771
+ description: Apply updated configuration
772
+ operationId: applyUpdatedConfig
773
+ parameters:
774
+ - name: version
775
+ in: path
776
+ description: ''
777
+ required: true
778
+ style: simple
779
+ schema:
780
+ pattern: '[vV][6-7]'
781
+ type: string
782
+ - name: serviceInstanceId
783
+ in: path
784
+ description: ''
785
+ required: true
786
+ style: simple
787
+ schema:
788
+ type: string
789
+ - name: vnfInstanceId
790
+ in: path
791
+ description: ''
792
+ required: true
793
+ style: simple
794
+ schema:
795
+ type: string
796
+ requestBody:
797
+ description: ''
798
+ content:
799
+ text/plain:
800
+ schema:
801
+ type: string
802
+ required: false
803
+ responses:
804
+ '200':
805
+ description: ''
806
+ headers: {}
807
+ content: {}
808
+ default:
809
+ description: successful operation
810
+ headers: {}
811
+ content: {}
812
+ deprecated: false
813
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances:
814
+ post:
815
+ tags:
816
+ - onapsoinfraserviceInstantiation
817
+ summary: createServiceInstance
818
+ description: Create a Service Instance on a version provided
819
+ operationId: createServiceInstance
820
+ parameters:
821
+ - name: version
822
+ in: path
823
+ description: ''
824
+ required: true
825
+ style: simple
826
+ schema:
827
+ pattern: '[vV][5-7]'
828
+ type: string
829
+ requestBody:
830
+ description: ''
831
+ content:
832
+ text/plain:
833
+ schema:
834
+ type: string
835
+ required: false
836
+ responses:
837
+ '200':
838
+ description: ''
839
+ headers: {}
840
+ content: {}
841
+ default:
842
+ description: successful operation
843
+ headers: {}
844
+ content: {}
845
+ deprecated: false
846
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/activate:
847
+ post:
848
+ tags:
849
+ - onapsoinfraserviceInstantiation
850
+ summary: activateServiceInstance
851
+ description: Activate provided Service Instance
852
+ operationId: activateServiceInstance
853
+ parameters:
854
+ - name: version
855
+ in: path
856
+ description: ''
857
+ required: true
858
+ style: simple
859
+ schema:
860
+ pattern: '[vV][5-7]'
861
+ type: string
862
+ - name: serviceInstanceId
863
+ in: path
864
+ description: ''
865
+ required: true
866
+ style: simple
867
+ schema:
868
+ type: string
869
+ requestBody:
870
+ description: ''
871
+ content:
872
+ text/plain:
873
+ schema:
874
+ type: string
875
+ required: false
876
+ responses:
877
+ '200':
878
+ description: ''
879
+ headers: {}
880
+ content: {}
881
+ default:
882
+ description: successful operation
883
+ headers: {}
884
+ content: {}
885
+ deprecated: false
886
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/deactivate:
887
+ post:
888
+ tags:
889
+ - onapsoinfraserviceInstantiation
890
+ summary: deactivateServiceInstance
891
+ description: Deactivate provided Service Instance
892
+ operationId: deactivateServiceInstance
893
+ parameters:
894
+ - name: version
895
+ in: path
896
+ description: ''
897
+ required: true
898
+ style: simple
899
+ schema:
900
+ pattern: '[vV][5-7]'
901
+ type: string
902
+ - name: serviceInstanceId
903
+ in: path
904
+ description: ''
905
+ required: true
906
+ style: simple
907
+ schema:
908
+ type: string
909
+ requestBody:
910
+ description: ''
911
+ content:
912
+ text/plain:
913
+ schema:
914
+ type: string
915
+ required: false
916
+ responses:
917
+ '200':
918
+ description: ''
919
+ headers: {}
920
+ content: {}
921
+ default:
922
+ description: successful operation
923
+ headers: {}
924
+ content: {}
925
+ deprecated: false
926
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}:
927
+ delete:
928
+ tags:
929
+ - onapsoinfraserviceInstantiation
930
+ summary: deleteServiceInstance
931
+ description: Delete provided Service Instance
932
+ operationId: deleteServiceInstance
933
+ parameters:
934
+ - name: version
935
+ in: path
936
+ description: ''
937
+ required: true
938
+ style: simple
939
+ schema:
940
+ pattern: '[vV][5-7]'
941
+ type: string
942
+ - name: serviceInstanceId
943
+ in: path
944
+ description: ''
945
+ required: true
946
+ style: simple
947
+ schema:
948
+ type: string
949
+ - name: Content-Type
950
+ in: header
951
+ description: ''
952
+ required: true
953
+ style: simple
954
+ schema:
955
+ enum:
956
+ - text/plain
957
+ type: string
958
+ responses:
959
+ '200':
960
+ description: ''
961
+ headers: {}
962
+ content: {}
963
+ default:
964
+ description: successful operation
965
+ headers: {}
966
+ content: {}
967
+ deprecated: false
968
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/assign:
969
+ post:
970
+ tags:
971
+ - onapsoinfraserviceInstantiation
972
+ summary: assignServiceInstance
973
+ description: Assign Service Instance
974
+ operationId: assignServiceInstance
975
+ parameters:
976
+ - name: version
977
+ in: path
978
+ description: ''
979
+ required: true
980
+ style: simple
981
+ schema:
982
+ pattern: '[vV][7]'
983
+ type: string
984
+ requestBody:
985
+ description: ''
986
+ content:
987
+ text/plain:
988
+ schema:
989
+ type: string
990
+ required: false
991
+ responses:
992
+ '200':
993
+ description: ''
994
+ headers: {}
995
+ content: {}
996
+ default:
997
+ description: successful operation
998
+ headers: {}
999
+ content: {}
1000
+ deprecated: false
1001
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/unassign:
1002
+ post:
1003
+ tags:
1004
+ - onapsoinfraserviceInstantiation
1005
+ summary: unassignServiceInstance
1006
+ description: Unassign Service Instance
1007
+ operationId: unassignServiceInstance
1008
+ parameters:
1009
+ - name: version
1010
+ in: path
1011
+ description: ''
1012
+ required: true
1013
+ style: simple
1014
+ schema:
1015
+ pattern: '[vV][7]'
1016
+ type: string
1017
+ - name: serviceInstanceId
1018
+ in: path
1019
+ description: ''
1020
+ required: true
1021
+ style: simple
1022
+ schema:
1023
+ type: string
1024
+ requestBody:
1025
+ description: ''
1026
+ content:
1027
+ text/plain:
1028
+ schema:
1029
+ type: string
1030
+ required: false
1031
+ responses:
1032
+ '200':
1033
+ description: ''
1034
+ headers: {}
1035
+ content: {}
1036
+ default:
1037
+ description: successful operation
1038
+ headers: {}
1039
+ content: {}
1040
+ deprecated: false
1041
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations:
1042
+ post:
1043
+ tags:
1044
+ - onapsoinfraserviceInstantiation
1045
+ summary: createPortConfiguration
1046
+ description: Create Port Mirroring Configuration
1047
+ operationId: createPortConfiguration
1048
+ parameters:
1049
+ - name: version
1050
+ in: path
1051
+ description: ''
1052
+ required: true
1053
+ style: simple
1054
+ schema:
1055
+ pattern: '[vV][5-7]'
1056
+ type: string
1057
+ - name: serviceInstanceId
1058
+ in: path
1059
+ description: ''
1060
+ required: true
1061
+ style: simple
1062
+ schema:
1063
+ type: string
1064
+ requestBody:
1065
+ description: ''
1066
+ content:
1067
+ text/plain:
1068
+ schema:
1069
+ type: string
1070
+ required: false
1071
+ responses:
1072
+ '200':
1073
+ description: ''
1074
+ headers: {}
1075
+ content: {}
1076
+ default:
1077
+ description: successful operation
1078
+ headers: {}
1079
+ content: {}
1080
+ deprecated: false
1081
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/configurations/{configurationInstanceId}:
1082
+ delete:
1083
+ tags:
1084
+ - onapsoinfraserviceInstantiation
1085
+ summary: deletePortConfiguration
1086
+ description: Delete provided Port
1087
+ operationId: deletePortConfiguration
1088
+ parameters:
1089
+ - name: version
1090
+ in: path
1091
+ description: ''
1092
+ required: true
1093
+ style: simple
1094
+ schema:
1095
+ pattern: '[vV][5-7]'
1096
+ type: string
1097
+ - name: serviceInstanceId
1098
+ in: path
1099
+ description: ''
1100
+ required: true
1101
+ style: simple
1102
+ schema:
1103
+ type: string
1104
+ - name: configurationInstanceId
1105
+ in: path
1106
+ description: ''
1107
+ required: true
1108
+ style: simple
1109
+ schema:
1110
+ type: string
1111
+ - name: Content-Type
1112
+ in: header
1113
+ description: ''
1114
+ required: true
1115
+ style: simple
1116
+ schema:
1117
+ enum:
1118
+ - text/plain
1119
+ type: string
1120
+ responses:
1121
+ '200':
1122
+ description: ''
1123
+ headers: {}
1124
+ content: {}
1125
+ default:
1126
+ description: successful operation
1127
+ headers: {}
1128
+ content: {}
1129
+ deprecated: false
1130
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/removeRelationships:
1131
+ post:
1132
+ tags:
1133
+ - onapsoinfraserviceInstantiation
1134
+ summary: removeRelationships
1135
+ description: Remove Relationships from Service Instance
1136
+ operationId: removeRelationships
1137
+ parameters:
1138
+ - name: version
1139
+ in: path
1140
+ description: ''
1141
+ required: true
1142
+ style: simple
1143
+ schema:
1144
+ pattern: '[vV][6-7]'
1145
+ type: string
1146
+ - name: serviceInstanceId
1147
+ in: path
1148
+ description: ''
1149
+ required: true
1150
+ style: simple
1151
+ schema:
1152
+ type: string
1153
+ requestBody:
1154
+ description: ''
1155
+ content:
1156
+ text/plain:
1157
+ schema:
1158
+ type: string
1159
+ required: false
1160
+ responses:
1161
+ '200':
1162
+ description: ''
1163
+ headers: {}
1164
+ content: {}
1165
+ default:
1166
+ description: successful operation
1167
+ headers: {}
1168
+ content: {}
1169
+ deprecated: false
1170
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs:
1171
+ post:
1172
+ tags:
1173
+ - onapsoinfraserviceInstantiation
1174
+ summary: createVnfInstance
1175
+ description: Create VNF on a specified version and serviceInstance
1176
+ operationId: createVnfInstance
1177
+ parameters:
1178
+ - name: version
1179
+ in: path
1180
+ description: ''
1181
+ required: true
1182
+ style: simple
1183
+ schema:
1184
+ pattern: '[vV][5-7]'
1185
+ type: string
1186
+ - name: serviceInstanceId
1187
+ in: path
1188
+ description: ''
1189
+ required: true
1190
+ style: simple
1191
+ schema:
1192
+ type: string
1193
+ requestBody:
1194
+ description: ''
1195
+ content:
1196
+ text/plain:
1197
+ schema:
1198
+ type: string
1199
+ required: false
1200
+ responses:
1201
+ '200':
1202
+ description: ''
1203
+ headers: {}
1204
+ content: {}
1205
+ default:
1206
+ description: successful operation
1207
+ headers: {}
1208
+ content: {}
1209
+ deprecated: false
1210
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/replace:
1211
+ post:
1212
+ tags:
1213
+ - onapsoinfraserviceInstantiation
1214
+ summary: replaceVnfInstance
1215
+ description: Replace provided VNF instance
1216
+ operationId: replaceVnfInstance
1217
+ parameters:
1218
+ - name: version
1219
+ in: path
1220
+ description: ''
1221
+ required: true
1222
+ style: simple
1223
+ schema:
1224
+ pattern: '[vV][5-7]'
1225
+ type: string
1226
+ - name: serviceInstanceId
1227
+ in: path
1228
+ description: ''
1229
+ required: true
1230
+ style: simple
1231
+ schema:
1232
+ type: string
1233
+ - name: vnfInstanceId
1234
+ in: path
1235
+ description: ''
1236
+ required: true
1237
+ style: simple
1238
+ schema:
1239
+ type: string
1240
+ requestBody:
1241
+ description: ''
1242
+ content:
1243
+ text/plain:
1244
+ schema:
1245
+ type: string
1246
+ required: false
1247
+ responses:
1248
+ '200':
1249
+ description: ''
1250
+ headers: {}
1251
+ content: {}
1252
+ default:
1253
+ description: successful operation
1254
+ headers: {}
1255
+ content: {}
1256
+ deprecated: false
1257
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}:
1258
+ put:
1259
+ tags:
1260
+ - onapsoinfraserviceInstantiation
1261
+ summary: updateVnfInstance
1262
+ description: Update VNF on a specified version, serviceInstance and vnfInstance
1263
+ operationId: updateVnfInstance
1264
+ parameters:
1265
+ - name: version
1266
+ in: path
1267
+ description: ''
1268
+ required: true
1269
+ style: simple
1270
+ schema:
1271
+ pattern: '[vV][5-7]'
1272
+ type: string
1273
+ - name: serviceInstanceId
1274
+ in: path
1275
+ description: ''
1276
+ required: true
1277
+ style: simple
1278
+ schema:
1279
+ type: string
1280
+ - name: vnfInstanceId
1281
+ in: path
1282
+ description: ''
1283
+ required: true
1284
+ style: simple
1285
+ schema:
1286
+ type: string
1287
+ requestBody:
1288
+ description: ''
1289
+ content:
1290
+ text/plain:
1291
+ schema:
1292
+ type: string
1293
+ required: false
1294
+ responses:
1295
+ '200':
1296
+ description: ''
1297
+ headers: {}
1298
+ content: {}
1299
+ default:
1300
+ description: successful operation
1301
+ headers: {}
1302
+ content: {}
1303
+ deprecated: false
1304
+ delete:
1305
+ tags:
1306
+ - onapsoinfraserviceInstantiation
1307
+ summary: deleteVnfInstance
1308
+ description: Delete provided VNF instance
1309
+ operationId: deleteVnfInstance
1310
+ parameters:
1311
+ - name: version
1312
+ in: path
1313
+ description: ''
1314
+ required: true
1315
+ style: simple
1316
+ schema:
1317
+ pattern: '[vV][5-7]'
1318
+ type: string
1319
+ - name: serviceInstanceId
1320
+ in: path
1321
+ description: ''
1322
+ required: true
1323
+ style: simple
1324
+ schema:
1325
+ type: string
1326
+ - name: vnfInstanceId
1327
+ in: path
1328
+ description: ''
1329
+ required: true
1330
+ style: simple
1331
+ schema:
1332
+ type: string
1333
+ - name: Content-Type
1334
+ in: header
1335
+ description: ''
1336
+ required: true
1337
+ style: simple
1338
+ schema:
1339
+ enum:
1340
+ - text/plain
1341
+ type: string
1342
+ responses:
1343
+ '200':
1344
+ description: ''
1345
+ headers: {}
1346
+ content: {}
1347
+ default:
1348
+ description: successful operation
1349
+ headers: {}
1350
+ content: {}
1351
+ deprecated: false
1352
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules:
1353
+ post:
1354
+ tags:
1355
+ - onapsoinfraserviceInstantiation
1356
+ summary: createVfModuleInstance
1357
+ description: Create VfModule on a specified version, serviceInstance and vnfInstance
1358
+ operationId: createVfModuleInstance
1359
+ parameters:
1360
+ - name: version
1361
+ in: path
1362
+ description: ''
1363
+ required: true
1364
+ style: simple
1365
+ schema:
1366
+ pattern: '[vV][5-7]'
1367
+ type: string
1368
+ - name: serviceInstanceId
1369
+ in: path
1370
+ description: ''
1371
+ required: true
1372
+ style: simple
1373
+ schema:
1374
+ type: string
1375
+ - name: vnfInstanceId
1376
+ in: path
1377
+ description: ''
1378
+ required: true
1379
+ style: simple
1380
+ schema:
1381
+ type: string
1382
+ requestBody:
1383
+ description: ''
1384
+ content:
1385
+ text/plain:
1386
+ schema:
1387
+ type: string
1388
+ required: false
1389
+ responses:
1390
+ '200':
1391
+ description: ''
1392
+ headers: {}
1393
+ content: {}
1394
+ default:
1395
+ description: successful operation
1396
+ headers: {}
1397
+ content: {}
1398
+ deprecated: false
1399
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}/replace
1400
+ : post:
1401
+ tags:
1402
+ - onapsoinfraserviceInstantiation
1403
+ summary: replaceVfModuleInstance
1404
+ description: Create VfModule on a specified version, serviceInstance and vnfInstance
1405
+ operationId: replaceVfModuleInstance
1406
+ parameters:
1407
+ - name: version
1408
+ in: path
1409
+ description: ''
1410
+ required: true
1411
+ style: simple
1412
+ schema:
1413
+ pattern: '[vV][5-7]'
1414
+ type: string
1415
+ - name: serviceInstanceId
1416
+ in: path
1417
+ description: ''
1418
+ required: true
1419
+ style: simple
1420
+ schema:
1421
+ type: string
1422
+ - name: vnfInstanceId
1423
+ in: path
1424
+ description: ''
1425
+ required: true
1426
+ style: simple
1427
+ schema:
1428
+ type: string
1429
+ - name: vfmoduleInstanceId
1430
+ in: path
1431
+ description: ''
1432
+ required: true
1433
+ style: simple
1434
+ schema:
1435
+ type: string
1436
+ requestBody:
1437
+ description: ''
1438
+ content:
1439
+ text/plain:
1440
+ schema:
1441
+ type: string
1442
+ required: false
1443
+ responses:
1444
+ '200':
1445
+ description: ''
1446
+ headers: {}
1447
+ content: {}
1448
+ default:
1449
+ description: successful operation
1450
+ headers: {}
1451
+ content: {}
1452
+ deprecated: false
1453
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModules/{vfmoduleInstanceId}
1454
+ : put:
1455
+ tags:
1456
+ - onapsoinfraserviceInstantiation
1457
+ summary: updateVfModuleInstance
1458
+ description: Update VfModule on a specified version, serviceInstance, vnfInstance and vfModule
1459
+ operationId: updateVfModuleInstance
1460
+ parameters:
1461
+ - name: version
1462
+ in: path
1463
+ description: ''
1464
+ required: true
1465
+ style: simple
1466
+ schema:
1467
+ pattern: '[vV][5-7]'
1468
+ type: string
1469
+ - name: serviceInstanceId
1470
+ in: path
1471
+ description: ''
1472
+ required: true
1473
+ style: simple
1474
+ schema:
1475
+ type: string
1476
+ - name: vnfInstanceId
1477
+ in: path
1478
+ description: ''
1479
+ required: true
1480
+ style: simple
1481
+ schema:
1482
+ type: string
1483
+ - name: vfmoduleInstanceId
1484
+ in: path
1485
+ description: ''
1486
+ required: true
1487
+ style: simple
1488
+ schema:
1489
+ type: string
1490
+ requestBody:
1491
+ description: ''
1492
+ content:
1493
+ text/plain:
1494
+ schema:
1495
+ type: string
1496
+ required: false
1497
+ responses:
1498
+ '200':
1499
+ description: ''
1500
+ headers: {}
1501
+ content: {}
1502
+ default:
1503
+ description: successful operation
1504
+ headers: {}
1505
+ content: {}
1506
+ deprecated: false
1507
+ delete:
1508
+ tags:
1509
+ - onapsoinfraserviceInstantiation
1510
+ summary: deleteVfModuleInstance
1511
+ description: Delete provided VfModule instance
1512
+ operationId: deleteVfModuleInstance
1513
+ parameters:
1514
+ - name: version
1515
+ in: path
1516
+ description: ''
1517
+ required: true
1518
+ style: simple
1519
+ schema:
1520
+ pattern: '[vV][5-7]'
1521
+ type: string
1522
+ - name: serviceInstanceId
1523
+ in: path
1524
+ description: ''
1525
+ required: true
1526
+ style: simple
1527
+ schema:
1528
+ type: string
1529
+ - name: vnfInstanceId
1530
+ in: path
1531
+ description: ''
1532
+ required: true
1533
+ style: simple
1534
+ schema:
1535
+ type: string
1536
+ - name: vfmoduleInstanceId
1537
+ in: path
1538
+ description: ''
1539
+ required: true
1540
+ style: simple
1541
+ schema:
1542
+ type: string
1543
+ - name: Content-Type
1544
+ in: header
1545
+ description: ''
1546
+ required: true
1547
+ style: simple
1548
+ schema:
1549
+ enum:
1550
+ - text/plain
1551
+ type: string
1552
+ responses:
1553
+ '200':
1554
+ description: ''
1555
+ headers: {}
1556
+ content: {}
1557
+ default:
1558
+ description: successful operation
1559
+ headers: {}
1560
+ content: {}
1561
+ deprecated: false
1562
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/volumeGroups:
1563
+ post:
1564
+ tags:
1565
+ - onapsoinfraserviceInstantiation
1566
+ summary: createVolumeGroupInstance
1567
+ description: Create VolumeGroup on a specified version, serviceInstance, vnfInstance
1568
+ operationId: createVolumeGroupInstance
1569
+ parameters:
1570
+ - name: version
1571
+ in: path
1572
+ description: ''
1573
+ required: true
1574
+ style: simple
1575
+ schema:
1576
+ pattern: '[vV][5-7]'
1577
+ type: string
1578
+ - name: serviceInstanceId
1579
+ in: path
1580
+ description: ''
1581
+ required: true
1582
+ style: simple
1583
+ schema:
1584
+ type: string
1585
+ - name: vnfInstanceId
1586
+ in: path
1587
+ description: ''
1588
+ required: true
1589
+ style: simple
1590
+ schema:
1591
+ type: string
1592
+ requestBody:
1593
+ description: ''
1594
+ content:
1595
+ text/plain:
1596
+ schema:
1597
+ type: string
1598
+ required: false
1599
+ responses:
1600
+ '200':
1601
+ description: ''
1602
+ headers: {}
1603
+ content: {}
1604
+ default:
1605
+ description: successful operation
1606
+ headers: {}
1607
+ content: {}
1608
+ deprecated: false
1609
+ ? /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/vnfs/{vnfInstanceId}/volumeGroups/{volumeGroupInstanceId}
1610
+ : put:
1611
+ tags:
1612
+ - onapsoinfraserviceInstantiation
1613
+ summary: updateVolumeGroupInstance
1614
+ description: Update VolumeGroup on a specified version, serviceInstance, vnfInstance and volumeGroup
1615
+ operationId: updateVolumeGroupInstance
1616
+ parameters:
1617
+ - name: version
1618
+ in: path
1619
+ description: ''
1620
+ required: true
1621
+ style: simple
1622
+ schema:
1623
+ pattern: '[vV][5-7]'
1624
+ type: string
1625
+ - name: serviceInstanceId
1626
+ in: path
1627
+ description: ''
1628
+ required: true
1629
+ style: simple
1630
+ schema:
1631
+ type: string
1632
+ - name: vnfInstanceId
1633
+ in: path
1634
+ description: ''
1635
+ required: true
1636
+ style: simple
1637
+ schema:
1638
+ type: string
1639
+ - name: volumeGroupInstanceId
1640
+ in: path
1641
+ description: ''
1642
+ required: true
1643
+ style: simple
1644
+ schema:
1645
+ type: string
1646
+ requestBody:
1647
+ description: ''
1648
+ content:
1649
+ text/plain:
1650
+ schema:
1651
+ type: string
1652
+ required: false
1653
+ responses:
1654
+ '200':
1655
+ description: ''
1656
+ headers: {}
1657
+ content: {}
1658
+ default:
1659
+ description: successful operation
1660
+ headers: {}
1661
+ content: {}
1662
+ deprecated: false
1663
+ delete:
1664
+ tags:
1665
+ - onapsoinfraserviceInstantiation
1666
+ summary: deleteVolumeGroupInstance
1667
+ description: Delete provided VolumeGroup instance
1668
+ operationId: deleteVolumeGroupInstance
1669
+ parameters:
1670
+ - name: version
1671
+ in: path
1672
+ description: ''
1673
+ required: true
1674
+ style: simple
1675
+ schema:
1676
+ pattern: '[vV][5-7]'
1677
+ type: string
1678
+ - name: serviceInstanceId
1679
+ in: path
1680
+ description: ''
1681
+ required: true
1682
+ style: simple
1683
+ schema:
1684
+ type: string
1685
+ - name: vnfInstanceId
1686
+ in: path
1687
+ description: ''
1688
+ required: true
1689
+ style: simple
1690
+ schema:
1691
+ type: string
1692
+ - name: volumeGroupInstanceId
1693
+ in: path
1694
+ description: ''
1695
+ required: true
1696
+ style: simple
1697
+ schema:
1698
+ type: string
1699
+ - name: Content-Type
1700
+ in: header
1701
+ description: ''
1702
+ required: true
1703
+ style: simple
1704
+ schema:
1705
+ enum:
1706
+ - text/plain
1707
+ type: string
1708
+ responses:
1709
+ '200':
1710
+ description: ''
1711
+ headers: {}
1712
+ content: {}
1713
+ default:
1714
+ description: successful operation
1715
+ headers: {}
1716
+ content: {}
1717
+ deprecated: false
1718
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/networks:
1719
+ post:
1720
+ tags:
1721
+ - onapsoinfraserviceInstantiation
1722
+ summary: createNetworkInstance
1723
+ description: 'Create NetworkInstance on a specified version and serviceInstance '
1724
+ operationId: createNetworkInstance
1725
+ parameters:
1726
+ - name: version
1727
+ in: path
1728
+ description: ''
1729
+ required: true
1730
+ style: simple
1731
+ schema:
1732
+ pattern: '[vV][5-7]'
1733
+ type: string
1734
+ - name: serviceInstanceId
1735
+ in: path
1736
+ description: ''
1737
+ required: true
1738
+ style: simple
1739
+ schema:
1740
+ type: string
1741
+ requestBody:
1742
+ description: ''
1743
+ content:
1744
+ text/plain:
1745
+ schema:
1746
+ type: string
1747
+ required: false
1748
+ responses:
1749
+ '200':
1750
+ description: ''
1751
+ headers: {}
1752
+ content: {}
1753
+ default:
1754
+ description: successful operation
1755
+ headers: {}
1756
+ content: {}
1757
+ deprecated: false
1758
+ /onap/so/infra/serviceInstantiation/{version}/serviceInstances/{serviceInstanceId}/networks/{networkInstanceId}:
1759
+ put:
1760
+ tags:
1761
+ - onapsoinfraserviceInstantiation
1762
+ summary: updateNetworkInstance
1763
+ description: Update VolumeGroup on a specified version, serviceInstance, networkInstance
1764
+ operationId: updateNetworkInstance
1765
+ parameters:
1766
+ - name: version
1767
+ in: path
1768
+ description: ''
1769
+ required: true
1770
+ style: simple
1771
+ schema:
1772
+ pattern: '[vV][5-7]'
1773
+ type: string
1774
+ - name: serviceInstanceId
1775
+ in: path
1776
+ description: ''
1777
+ required: true
1778
+ style: simple
1779
+ schema:
1780
+ type: string
1781
+ - name: networkInstanceId
1782
+ in: path
1783
+ description: ''
1784
+ required: true
1785
+ style: simple
1786
+ schema:
1787
+ type: string
1788
+ requestBody:
1789
+ description: ''
1790
+ content:
1791
+ text/plain:
1792
+ schema:
1793
+ type: string
1794
+ required: false
1795
+ responses:
1796
+ '200':
1797
+ description: ''
1798
+ headers: {}
1799
+ content: {}
1800
+ default:
1801
+ description: successful operation
1802
+ headers: {}
1803
+ content: {}
1804
+ deprecated: false
1805
+ delete:
1806
+ tags:
1807
+ - onapsoinfraserviceInstantiation
1808
+ summary: deleteNetworkInstance
1809
+ description: Delete provided Network instance
1810
+ operationId: deleteNetworkInstance
1811
+ parameters:
1812
+ - name: version
1813
+ in: path
1814
+ description: ''
1815
+ required: true
1816
+ style: simple
1817
+ schema:
1818
+ pattern: '[vV][5-7]'
1819
+ type: string
1820
+ - name: serviceInstanceId
1821
+ in: path
1822
+ description: ''
1823
+ required: true
1824
+ style: simple
1825
+ schema:
1826
+ type: string
1827
+ - name: networkInstanceId
1828
+ in: path
1829
+ description: ''
1830
+ required: true
1831
+ style: simple
1832
+ schema:
1833
+ type: string
1834
+ - name: Content-Type
1835
+ in: header
1836
+ description: ''
1837
+ required: true
1838
+ style: simple
1839
+ schema:
1840
+ enum:
1841
+ - text/plain
1842
+ type: string
1843
+ responses:
1844
+ '200':
1845
+ description: ''
1846
+ headers: {}
1847
+ content: {}
1848
+ default:
1849
+ description: successful operation
1850
+ headers: {}
1851
+ content: {}
1852
+ deprecated: false
1853
+ /onap/so/infra/tasks/{version}:
1854
+ get:
1855
+ tags:
1856
+ - onapsoinfratasks
1857
+ summary: queryFilters
1858
+ description: Finds Manual Tasks
1859
+ operationId: queryFilters
1860
+ parameters:
1861
+ - name: taskId
1862
+ in: query
1863
+ description: ''
1864
+ style: form
1865
+ explode: true
1866
+ schema:
1867
+ type: string
1868
+ - name: originalRequestId
1869
+ in: query
1870
+ description: ''
1871
+ style: form
1872
+ explode: true
1873
+ schema:
1874
+ type: string
1875
+ - name: subscriptionServiceType
1876
+ in: query
1877
+ description: ''
1878
+ style: form
1879
+ explode: true
1880
+ schema:
1881
+ type: string
1882
+ - name: nfRole
1883
+ in: query
1884
+ description: ''
1885
+ style: form
1886
+ explode: true
1887
+ schema:
1888
+ type: string
1889
+ - name: buildingBlockName
1890
+ in: query
1891
+ description: ''
1892
+ style: form
1893
+ explode: true
1894
+ schema:
1895
+ type: string
1896
+ - name: originalRequestDate
1897
+ in: query
1898
+ description: ''
1899
+ style: form
1900
+ explode: true
1901
+ schema:
1902
+ type: string
1903
+ - name: originalRequestorId
1904
+ in: query
1905
+ description: ''
1906
+ style: form
1907
+ explode: true
1908
+ schema:
1909
+ type: string
1910
+ - name: version
1911
+ in: path
1912
+ description: ''
1913
+ required: true
1914
+ style: simple
1915
+ schema:
1916
+ pattern: '[vV]1'
1917
+ type: string
1918
+ responses:
1919
+ '200':
1920
+ description: ''
1921
+ headers: {}
1922
+ content: {}
1923
+ default:
1924
+ description: successful operation
1925
+ headers: {}
1926
+ content: {}
1927
+ deprecated: false
1928
+ /onap/so/infra/cloudResources/{version}/operationalEnvironments:
1929
+ post:
1930
+ tags:
1931
+ - onapsoinfracloudResources
1932
+ summary: createOperationEnvironment
1933
+ description: Create an Operational Environment
1934
+ operationId: createOperationEnvironment
1935
+ parameters:
1936
+ - name: version
1937
+ in: path
1938
+ description: ''
1939
+ required: true
1940
+ style: simple
1941
+ schema:
1942
+ pattern: '[vV][1]'
1943
+ type: string
1944
+ requestBody:
1945
+ description: ''
1946
+ content:
1947
+ text/plain:
1948
+ schema:
1949
+ type: string
1950
+ required: false
1951
+ responses:
1952
+ '200':
1953
+ description: ''
1954
+ headers: {}
1955
+ content: {}
1956
+ default:
1957
+ description: successful operation
1958
+ headers: {}
1959
+ content: {}
1960
+ deprecated: false
1961
+ /onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/activate:
1962
+ post:
1963
+ tags:
1964
+ - onapsoinfracloudResources
1965
+ summary: activateOperationEnvironment
1966
+ description: Activate an Operational Environment
1967
+ operationId: activateOperationEnvironment
1968
+ parameters:
1969
+ - name: version
1970
+ in: path
1971
+ description: ''
1972
+ required: true
1973
+ style: simple
1974
+ schema:
1975
+ pattern: '[vV][1]'
1976
+ type: string
1977
+ - name: operationalEnvironmentId
1978
+ in: path
1979
+ description: ''
1980
+ required: true
1981
+ style: simple
1982
+ schema:
1983
+ type: string
1984
+ requestBody:
1985
+ description: ''
1986
+ content:
1987
+ text/plain:
1988
+ schema:
1989
+ type: string
1990
+ required: false
1991
+ responses:
1992
+ '200':
1993
+ description: ''
1994
+ headers: {}
1995
+ content: {}
1996
+ default:
1997
+ description: successful operation
1998
+ headers: {}
1999
+ content: {}
2000
+ deprecated: false
2001
+ /onap/so/infra/cloudResources/{version}/operationalEnvironments/{operationalEnvironmentId}/deactivate:
2002
+ post:
2003
+ tags:
2004
+ - onapsoinfracloudResources
2005
+ summary: deactivateOperationEnvironment
2006
+ description: Deactivate an Operational Environment
2007
+ operationId: deactivateOperationEnvironment
2008
+ parameters:
2009
+ - name: version
2010
+ in: path
2011
+ description: ''
2012
+ required: true
2013
+ style: simple
2014
+ schema:
2015
+ pattern: '[vV][1]'
2016
+ type: string
2017
+ - name: operationalEnvironmentId
2018
+ in: path
2019
+ description: ''
2020
+ required: true
2021
+ style: simple
2022
+ schema:
2023
+ type: string
2024
+ requestBody:
2025
+ description: ''
2026
+ content:
2027
+ text/plain:
2028
+ schema:
2029
+ type: string
2030
+ required: false
2031
+ responses:
2032
+ '200':
2033
+ description: ''
2034
+ headers: {}
2035
+ content: {}
2036
+ default:
2037
+ description: successful operation
2038
+ headers: {}
2039
+ content: {}
2040
+ deprecated: false
2041
+ /onap/so/infra/cloudResourcesRequests/{version}/{requestId}/unlock:
2042
+ post:
2043
+ tags:
2044
+ - onapsoinfracloudResourcesRequests
2045
+ summary: unlockOrchestrationRequestForReqId
2046
+ description: Unlock CloudOrchestration requests for a specified requestId
2047
+ operationId: unlockOrchestrationRequestForReqId
2048
+ parameters:
2049
+ - name: requestId
2050
+ in: path
2051
+ description: ''
2052
+ required: true
2053
+ style: simple
2054
+ schema:
2055
+ type: string
2056
+ - name: version
2057
+ in: path
2058
+ description: ''
2059
+ required: true
2060
+ style: simple
2061
+ schema:
2062
+ pattern: '[vV][1]'
2063
+ type: string
2064
+ requestBody:
2065
+ description: ''
2066
+ content:
2067
+ text/plain:
2068
+ schema:
2069
+ type: string
2070
+ required: false
2071
+ responses:
2072
+ '200':
2073
+ description: ''
2074
+ headers: {}
2075
+ content: {}
2076
+ default:
2077
+ description: successful operation
2078
+ headers: {}
2079
+ content: {}
2080
+ deprecated: false
2081
+ /onap/so/infra/cloudResourcesRequests/{version}:
2082
+ get:
2083
+ tags:
2084
+ - onapsoinfracloudResourcesRequests
2085
+ summary: getOperationEnvironmentStatusFilter
2086
+ description: Get status of an Operational Environment based on filter criteria
2087
+ operationId: getOperationEnvironmentStatusFilter
2088
+ parameters:
2089
+ - name: version
2090
+ in: path
2091
+ description: ''
2092
+ required: true
2093
+ style: simple
2094
+ schema:
2095
+ pattern: '[vV][1]'
2096
+ type: string
2097
+ responses:
2098
+ '200':
2099
+ description: ''
2100
+ headers: {}
2101
+ content: {}
2102
+ default:
2103
+ description: successful operation
2104
+ headers: {}
2105
+ content: {}
2106
+ deprecated: false
2107
+ /onap/so/infra/modelDistributions/{version}/distributions/{distributionId}:
2108
+ post:
2109
+ tags:
2110
+ - onapsoinframodelDistributions
2111
+ summary: updateModelDistributionStatus
2112
+ description: Update model distribution status
2113
+ operationId: updateModelDistributionStatus
2114
+ parameters:
2115
+ - name: version
2116
+ in: path
2117
+ description: ''
2118
+ required: true
2119
+ style: simple
2120
+ schema:
2121
+ pattern: '[vV][1]'
2122
+ type: string
2123
+ - name: distributionId
2124
+ in: path
2125
+ description: ''
2126
+ required: true
2127
+ style: simple
2128
+ schema:
2129
+ type: string
2130
+ requestBody:
2131
+ description: ''
2132
+ content:
2133
+ text/plain:
2134
+ schema:
2135
+ type: string
2136
+ required: false
2137
+ responses:
2138
+ '200':
2139
+ description: ''
2140
+ headers: {}
2141
+ content: {}
2142
+ default:
2143
+ description: successful operation
2144
+ headers: {}
2145
+ content: {}
2146
+ deprecated: false
2147
+ tags:
2148
+ - name: e2eServiceInstances
2149
+ - name: globalhealthcheck
2150
+ - name: nodehealthcheck
2151
+ - name: onapsoinfraorchestrationRequests
2152
+ - name: onapsoinfraserviceInstantiation
2153
+ - name: onapsoinfratasks
2154
+ - name: onapsoinfracloudResources
2155
+ - name: onapsoinfracloudResourcesRequests
2156
+ - name: onapsoinframodelDistributions