@itentialopensource/adapter-etsi_sol005 0.1.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 (129) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/CHANGELOG.md +9 -0
  5. package/CODE_OF_CONDUCT.md +48 -0
  6. package/CONTRIBUTING.md +158 -0
  7. package/LICENSE +201 -0
  8. package/README.md +687 -0
  9. package/adapter.js +10403 -0
  10. package/adapterBase.js +1028 -0
  11. package/entities/.generic/action.json +109 -0
  12. package/entities/.generic/schema.json +23 -0
  13. package/entities/.system/action.json +50 -0
  14. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  15. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  16. package/entities/.system/schema.json +19 -0
  17. package/entities/.system/schemaTokenReq.json +53 -0
  18. package/entities/.system/schemaTokenResp.json +53 -0
  19. package/entities/Alarms/action.json +66 -0
  20. package/entities/Alarms/mockdatafiles/getAlarms-default.json +126 -0
  21. package/entities/Alarms/mockdatafiles/getAlarmsAlarmId-default.json +45 -0
  22. package/entities/Alarms/mockdatafiles/patchAlarmsAlarmId-default.json +3 -0
  23. package/entities/Alarms/schema.json +21 -0
  24. package/entities/ApiVersions/action.json +25 -0
  25. package/entities/ApiVersions/mockdatafiles/getApiVersions-default.json +55 -0
  26. package/entities/ApiVersions/schema.json +19 -0
  27. package/entities/CapacityThresholds/action.json +106 -0
  28. package/entities/CapacityThresholds/mockdatafiles/getCapacityThresholds-default.json +193 -0
  29. package/entities/CapacityThresholds/mockdatafiles/getCapacityThresholdsCapacityThresholdId-default.json +63 -0
  30. package/entities/CapacityThresholds/mockdatafiles/patchCapacityThresholdsCapacityThresholdId-default.json +26 -0
  31. package/entities/CapacityThresholds/mockdatafiles/postCapacityThresholds-default.json +50 -0
  32. package/entities/CapacityThresholds/schema.json +23 -0
  33. package/entities/NfviCapacityInfos/action.json +46 -0
  34. package/entities/NfviCapacityInfos/mockdatafiles/getNfviCapacityInfos-default.json +1457 -0
  35. package/entities/NfviCapacityInfos/mockdatafiles/getNfviCapacityInfosVimId-default.json +487 -0
  36. package/entities/NfviCapacityInfos/schema.json +20 -0
  37. package/entities/NsDescriptors/action.json +210 -0
  38. package/entities/NsDescriptors/mockdatafiles/getNsDescriptors-default.json +354 -0
  39. package/entities/NsDescriptors/mockdatafiles/getNsDescriptorsNsdInfoId-default.json +101 -0
  40. package/entities/NsDescriptors/mockdatafiles/patchNsDescriptorsNsdInfoId-default.json +10 -0
  41. package/entities/NsDescriptors/mockdatafiles/postNsDescriptors-default.json +136 -0
  42. package/entities/NsDescriptors/schema.json +83 -0
  43. package/entities/NsInstances/action.json +186 -0
  44. package/entities/NsInstances/mockdatafiles/querymultipleNSinstances-default.json +85311 -0
  45. package/entities/NsInstances/schema.json +27 -0
  46. package/entities/NsLcmOpOccs/action.json +106 -0
  47. package/entities/NsLcmOpOccs/mockdatafiles/querymultipleNSLCMoperationoccurrences-default.json +57603 -0
  48. package/entities/NsLcmOpOccs/schema.json +23 -0
  49. package/entities/Nslcm/action.json +44 -0
  50. package/entities/Nslcm/schema.json +20 -0
  51. package/entities/PmJobs/action.json +127 -0
  52. package/entities/PmJobs/mockdatafiles/getPmJobs-default.json +122 -0
  53. package/entities/PmJobs/mockdatafiles/getPmJobsPmJobId-default.json +60 -0
  54. package/entities/PmJobs/mockdatafiles/getPmJobsPmJobIdReportsReportId-default.json +148 -0
  55. package/entities/PmJobs/mockdatafiles/patchPmJobsPmJobId-default.json +22 -0
  56. package/entities/PmJobs/mockdatafiles/postPmJobs-default.json +52 -0
  57. package/entities/PmJobs/schema.json +24 -0
  58. package/entities/PnfDescriptors/action.json +210 -0
  59. package/entities/PnfDescriptors/mockdatafiles/getPnfDescriptors-default.json +113 -0
  60. package/entities/PnfDescriptors/mockdatafiles/getPnfDescriptorsPnfdInfoId-default.json +57 -0
  61. package/entities/PnfDescriptors/mockdatafiles/patchPnfDescriptorsPnfdInfoId-default.json +3 -0
  62. package/entities/PnfDescriptors/mockdatafiles/postPnfDescriptors-default.json +102 -0
  63. package/entities/PnfDescriptors/schema.json +83 -0
  64. package/entities/Subscriptions/action.json +86 -0
  65. package/entities/Subscriptions/mockdatafiles/getSubscriptions-default.json +482 -0
  66. package/entities/Subscriptions/mockdatafiles/getSubscriptionsSubscriptionId-default.json +152 -0
  67. package/entities/Subscriptions/mockdatafiles/postSubscriptions-default.json +151 -0
  68. package/entities/Subscriptions/schema.json +33 -0
  69. package/entities/Thresholds/action.json +106 -0
  70. package/entities/Thresholds/mockdatafiles/getThresholds-default.json +34 -0
  71. package/entities/Thresholds/mockdatafiles/getThresholdsThresholdId-default.json +30 -0
  72. package/entities/Thresholds/mockdatafiles/patchThresholdsThresholdId-default.json +18 -0
  73. package/entities/Thresholds/mockdatafiles/postThresholds-default.json +32 -0
  74. package/entities/Thresholds/schema.json +23 -0
  75. package/entities/VnfPackages/action.json +292 -0
  76. package/entities/VnfPackages/mockdatafiles/getVnfPackages-default.json +453 -0
  77. package/entities/VnfPackages/mockdatafiles/getVnfPackagesVnfPkgId-default.json +204 -0
  78. package/entities/VnfPackages/mockdatafiles/getVnfPackagesVnfPkgIdExtArtifactsAccess-default.json +14 -0
  79. package/entities/VnfPackages/mockdatafiles/patchVnfPackagesVnfPkgId-default.json +4 -0
  80. package/entities/VnfPackages/mockdatafiles/postVnfPackages-default.json +236 -0
  81. package/entities/VnfPackages/mockdatafiles/putVnfPackagesVnfPkgIdExtArtifactsAccess-default.json +14 -0
  82. package/entities/VnfPackages/schema.json +32 -0
  83. package/entities/VnfSnapshotPackages/action.json +289 -0
  84. package/entities/VnfSnapshotPackages/mockdatafiles/getVnfSnapshotPackages-default.json +227 -0
  85. package/entities/VnfSnapshotPackages/mockdatafiles/getVnfSnapshotPackagesVnfSnapshotPkgId-default.json +268 -0
  86. package/entities/VnfSnapshotPackages/mockdatafiles/patchVnfSnapshotPackagesVnfSnapshotPkgId-default.json +5 -0
  87. package/entities/VnfSnapshotPackages/mockdatafiles/postVnfSnapshotPackages-default.json +146 -0
  88. package/entities/VnfSnapshotPackages/schema.json +32 -0
  89. package/entities/VnfSnapshots/action.json +66 -0
  90. package/entities/VnfSnapshots/mockdatafiles/queryVNFsnapshots-default.json +1694 -0
  91. package/entities/VnfSnapshots/schema.json +21 -0
  92. package/error.json +184 -0
  93. package/package.json +85 -0
  94. package/pronghorn.json +18371 -0
  95. package/propertiesSchema.json +840 -0
  96. package/refs?service=git-upload-pack +0 -0
  97. package/report/creationReport.json +279 -0
  98. package/report/sol005_NSDmgmt_openapi.json +24207 -0
  99. package/report/sol005_capacity_openapi.json +14837 -0
  100. package/report/sol005_fault_openapi.json +8757 -0
  101. package/report/sol005_lifecycle_opneapi.json +61923 -0
  102. package/report/sol005_lifecycle_opneapi.json-OpenApi3Json.json +24758 -0
  103. package/report/sol005_package_openapi.json +19471 -0
  104. package/report/sol005_perf_openapi.json +11124 -0
  105. package/report/sol005_snapshot_openapi.json +16610 -0
  106. package/report/updateReport1646246505328.json +95 -0
  107. package/sampleProperties.json +106 -0
  108. package/test/integration/adapterTestBasicGet.js +85 -0
  109. package/test/integration/adapterTestConnectivity.js +93 -0
  110. package/test/integration/adapterTestIntegration.js +3685 -0
  111. package/test/unit/adapterBaseTestUnit.js +944 -0
  112. package/test/unit/adapterTestUnit.js +4287 -0
  113. package/utils/addAuth.js +94 -0
  114. package/utils/artifactize.js +146 -0
  115. package/utils/basicGet.js +50 -0
  116. package/utils/checkMigrate.js +63 -0
  117. package/utils/entitiesToDB.js +224 -0
  118. package/utils/findPath.js +74 -0
  119. package/utils/modify.js +154 -0
  120. package/utils/packModificationScript.js +35 -0
  121. package/utils/patches2bundledDeps.js +90 -0
  122. package/utils/pre-commit.sh +27 -0
  123. package/utils/removeHooks.js +20 -0
  124. package/utils/setup.js +33 -0
  125. package/utils/tbScript.js +169 -0
  126. package/utils/tbUtils.js +451 -0
  127. package/utils/testRunner.js +298 -0
  128. package/utils/troubleshootingAdapter.js +190 -0
  129. package/workflows/README.md +3 -0
@@ -0,0 +1,1694 @@
1
+ [
2
+ {
3
+ "id": "string",
4
+ "vnfSnapshotPkgId": "string",
5
+ "vnfSnapshot": {
6
+ "id": "string",
7
+ "vnfInstanceId": "string",
8
+ "creationStartedAt": null,
9
+ "creationFinishedAt": null,
10
+ "vnfdId": "string",
11
+ "vnfInstance": {
12
+ "id": "string",
13
+ "vnfInstanceName": "string",
14
+ "vnfInstanceDescription": "string",
15
+ "vnfdId": "string",
16
+ "vnfProvider": "string",
17
+ "vnfProductName": "string",
18
+ "vnfSoftwareVersion": "string",
19
+ "vnfdVersion": "string",
20
+ "vnfPkgId": "string",
21
+ "vnfConfigurableProperties": {},
22
+ "vimId": "string",
23
+ "instantiationState": "NOT_INSTANTIATED",
24
+ "instantiatedVnfInfo": {
25
+ "flavourId": "string",
26
+ "vnfState": "STARTED",
27
+ "scaleStatus": [
28
+ {
29
+ "aspectId": "string",
30
+ "vnfdId": "string",
31
+ "scaleLevel": 9
32
+ },
33
+ {
34
+ "aspectId": "string",
35
+ "vnfdId": "string",
36
+ "scaleLevel": 2
37
+ },
38
+ {
39
+ "aspectId": "string",
40
+ "vnfdId": "string",
41
+ "scaleLevel": 1
42
+ },
43
+ {
44
+ "aspectId": "string",
45
+ "vnfdId": "string",
46
+ "scaleLevel": 2
47
+ },
48
+ {
49
+ "aspectId": "string",
50
+ "vnfdId": "string",
51
+ "scaleLevel": 6
52
+ },
53
+ {
54
+ "aspectId": "string",
55
+ "vnfdId": "string",
56
+ "scaleLevel": 4
57
+ }
58
+ ],
59
+ "maxScaleLevels": [
60
+ {
61
+ "aspectId": "string",
62
+ "vnfdId": "string",
63
+ "scaleLevel": 5
64
+ }
65
+ ],
66
+ "extCpInfo": [
67
+ null,
68
+ null,
69
+ null,
70
+ null,
71
+ null
72
+ ],
73
+ "extVirtualLinkInfo": [
74
+ {
75
+ "id": "string",
76
+ "resourceHandle": {
77
+ "vimId": "string",
78
+ "resourceProviderId": "string",
79
+ "resourceId": "string",
80
+ "vimLevelResourceType": "string"
81
+ },
82
+ "extLinkPorts": [
83
+ {
84
+ "id": "string",
85
+ "resourceHandle": {
86
+ "vimId": "string",
87
+ "resourceProviderId": "string",
88
+ "resourceId": "string",
89
+ "vimLevelResourceType": "string"
90
+ },
91
+ "cpInstanceId": "string"
92
+ },
93
+ {
94
+ "id": "string",
95
+ "resourceHandle": {
96
+ "vimId": "string",
97
+ "resourceProviderId": "string",
98
+ "resourceId": "string",
99
+ "vimLevelResourceType": "string"
100
+ },
101
+ "cpInstanceId": "string"
102
+ },
103
+ {
104
+ "id": "string",
105
+ "resourceHandle": {
106
+ "vimId": "string",
107
+ "resourceProviderId": "string",
108
+ "resourceId": "string",
109
+ "vimLevelResourceType": "string"
110
+ },
111
+ "cpInstanceId": "string"
112
+ },
113
+ {
114
+ "id": "string",
115
+ "resourceHandle": {
116
+ "vimId": "string",
117
+ "resourceProviderId": "string",
118
+ "resourceId": "string",
119
+ "vimLevelResourceType": "string"
120
+ },
121
+ "cpInstanceId": "string"
122
+ },
123
+ {
124
+ "id": "string",
125
+ "resourceHandle": {
126
+ "vimId": "string",
127
+ "resourceProviderId": "string",
128
+ "resourceId": "string",
129
+ "vimLevelResourceType": "string"
130
+ },
131
+ "cpInstanceId": "string"
132
+ },
133
+ {
134
+ "id": "string",
135
+ "resourceHandle": {
136
+ "vimId": "string",
137
+ "resourceProviderId": "string",
138
+ "resourceId": "string",
139
+ "vimLevelResourceType": "string"
140
+ },
141
+ "cpInstanceId": "string"
142
+ },
143
+ {
144
+ "id": "string",
145
+ "resourceHandle": {
146
+ "vimId": "string",
147
+ "resourceProviderId": "string",
148
+ "resourceId": "string",
149
+ "vimLevelResourceType": "string"
150
+ },
151
+ "cpInstanceId": "string"
152
+ },
153
+ {
154
+ "id": "string",
155
+ "resourceHandle": {
156
+ "vimId": "string",
157
+ "resourceProviderId": "string",
158
+ "resourceId": "string",
159
+ "vimLevelResourceType": "string"
160
+ },
161
+ "cpInstanceId": "string"
162
+ }
163
+ ],
164
+ "currentVnfExtCpData": {
165
+ "cpdId": "string",
166
+ "cpConfig": {}
167
+ }
168
+ }
169
+ ],
170
+ "extManagedVirtualLinkInfo": [
171
+ {
172
+ "id": "string",
173
+ "vnfdId": "string",
174
+ "vnfVirtualLinkDescId": "string",
175
+ "networkResource": {
176
+ "vimId": "string",
177
+ "resourceProviderId": "string",
178
+ "resourceId": "string",
179
+ "vimLevelResourceType": "string"
180
+ },
181
+ "vnfLinkPorts": [
182
+ {
183
+ "id": "string",
184
+ "resourceHandle": {
185
+ "vimId": "string",
186
+ "resourceProviderId": "string",
187
+ "resourceId": "string",
188
+ "vimLevelResourceType": "string"
189
+ },
190
+ "cpInstanceId": "string",
191
+ "cpInstanceType": "VNFC_CP"
192
+ },
193
+ {
194
+ "id": "string",
195
+ "resourceHandle": {
196
+ "vimId": "string",
197
+ "resourceProviderId": "string",
198
+ "resourceId": "string",
199
+ "vimLevelResourceType": "string"
200
+ },
201
+ "cpInstanceId": "string",
202
+ "cpInstanceType": "VNFC_CP"
203
+ },
204
+ {
205
+ "id": "string",
206
+ "resourceHandle": {
207
+ "vimId": "string",
208
+ "resourceProviderId": "string",
209
+ "resourceId": "string",
210
+ "vimLevelResourceType": "string"
211
+ },
212
+ "cpInstanceId": "string",
213
+ "cpInstanceType": "VNFC_CP"
214
+ }
215
+ ],
216
+ "extManagedMultisiteVirtualLinkId": "string"
217
+ },
218
+ {
219
+ "id": "string",
220
+ "vnfdId": "string",
221
+ "vnfVirtualLinkDescId": "string",
222
+ "networkResource": {
223
+ "vimId": "string",
224
+ "resourceProviderId": "string",
225
+ "resourceId": "string",
226
+ "vimLevelResourceType": "string"
227
+ },
228
+ "vnfLinkPorts": [
229
+ {
230
+ "id": "string",
231
+ "resourceHandle": {
232
+ "vimId": "string",
233
+ "resourceProviderId": "string",
234
+ "resourceId": "string",
235
+ "vimLevelResourceType": "string"
236
+ },
237
+ "cpInstanceId": "string",
238
+ "cpInstanceType": "VNFC_CP"
239
+ },
240
+ {
241
+ "id": "string",
242
+ "resourceHandle": {
243
+ "vimId": "string",
244
+ "resourceProviderId": "string",
245
+ "resourceId": "string",
246
+ "vimLevelResourceType": "string"
247
+ },
248
+ "cpInstanceId": "string",
249
+ "cpInstanceType": "VNFC_CP"
250
+ },
251
+ {
252
+ "id": "string",
253
+ "resourceHandle": {
254
+ "vimId": "string",
255
+ "resourceProviderId": "string",
256
+ "resourceId": "string",
257
+ "vimLevelResourceType": "string"
258
+ },
259
+ "cpInstanceId": "string",
260
+ "cpInstanceType": "VNFC_CP"
261
+ },
262
+ {
263
+ "id": "string",
264
+ "resourceHandle": {
265
+ "vimId": "string",
266
+ "resourceProviderId": "string",
267
+ "resourceId": "string",
268
+ "vimLevelResourceType": "string"
269
+ },
270
+ "cpInstanceId": "string",
271
+ "cpInstanceType": "VNFC_CP"
272
+ }
273
+ ],
274
+ "extManagedMultisiteVirtualLinkId": "string"
275
+ },
276
+ {
277
+ "id": "string",
278
+ "vnfdId": "string",
279
+ "vnfVirtualLinkDescId": "string",
280
+ "networkResource": {
281
+ "vimId": "string",
282
+ "resourceProviderId": "string",
283
+ "resourceId": "string",
284
+ "vimLevelResourceType": "string"
285
+ },
286
+ "vnfLinkPorts": [
287
+ {
288
+ "id": "string",
289
+ "resourceHandle": {
290
+ "vimId": "string",
291
+ "resourceProviderId": "string",
292
+ "resourceId": "string",
293
+ "vimLevelResourceType": "string"
294
+ },
295
+ "cpInstanceId": "string",
296
+ "cpInstanceType": "VNFC_CP"
297
+ },
298
+ {
299
+ "id": "string",
300
+ "resourceHandle": {
301
+ "vimId": "string",
302
+ "resourceProviderId": "string",
303
+ "resourceId": "string",
304
+ "vimLevelResourceType": "string"
305
+ },
306
+ "cpInstanceId": "string",
307
+ "cpInstanceType": "VNFC_CP"
308
+ },
309
+ {
310
+ "id": "string",
311
+ "resourceHandle": {
312
+ "vimId": "string",
313
+ "resourceProviderId": "string",
314
+ "resourceId": "string",
315
+ "vimLevelResourceType": "string"
316
+ },
317
+ "cpInstanceId": "string",
318
+ "cpInstanceType": "VNFC_CP"
319
+ },
320
+ {
321
+ "id": "string",
322
+ "resourceHandle": {
323
+ "vimId": "string",
324
+ "resourceProviderId": "string",
325
+ "resourceId": "string",
326
+ "vimLevelResourceType": "string"
327
+ },
328
+ "cpInstanceId": "string",
329
+ "cpInstanceType": "VNFC_CP"
330
+ },
331
+ {
332
+ "id": "string",
333
+ "resourceHandle": {
334
+ "vimId": "string",
335
+ "resourceProviderId": "string",
336
+ "resourceId": "string",
337
+ "vimLevelResourceType": "string"
338
+ },
339
+ "cpInstanceId": "string",
340
+ "cpInstanceType": "VNFC_CP"
341
+ }
342
+ ],
343
+ "extManagedMultisiteVirtualLinkId": "string"
344
+ },
345
+ {
346
+ "id": "string",
347
+ "vnfdId": "string",
348
+ "vnfVirtualLinkDescId": "string",
349
+ "networkResource": {
350
+ "vimId": "string",
351
+ "resourceProviderId": "string",
352
+ "resourceId": "string",
353
+ "vimLevelResourceType": "string"
354
+ },
355
+ "vnfLinkPorts": [
356
+ {
357
+ "id": "string",
358
+ "resourceHandle": {
359
+ "vimId": "string",
360
+ "resourceProviderId": "string",
361
+ "resourceId": "string",
362
+ "vimLevelResourceType": "string"
363
+ },
364
+ "cpInstanceId": "string",
365
+ "cpInstanceType": "VNFC_CP"
366
+ },
367
+ {
368
+ "id": "string",
369
+ "resourceHandle": {
370
+ "vimId": "string",
371
+ "resourceProviderId": "string",
372
+ "resourceId": "string",
373
+ "vimLevelResourceType": "string"
374
+ },
375
+ "cpInstanceId": "string",
376
+ "cpInstanceType": "VNFC_CP"
377
+ },
378
+ {
379
+ "id": "string",
380
+ "resourceHandle": {
381
+ "vimId": "string",
382
+ "resourceProviderId": "string",
383
+ "resourceId": "string",
384
+ "vimLevelResourceType": "string"
385
+ },
386
+ "cpInstanceId": "string",
387
+ "cpInstanceType": "VNFC_CP"
388
+ },
389
+ {
390
+ "id": "string",
391
+ "resourceHandle": {
392
+ "vimId": "string",
393
+ "resourceProviderId": "string",
394
+ "resourceId": "string",
395
+ "vimLevelResourceType": "string"
396
+ },
397
+ "cpInstanceId": "string",
398
+ "cpInstanceType": "VNFC_CP"
399
+ },
400
+ {
401
+ "id": "string",
402
+ "resourceHandle": {
403
+ "vimId": "string",
404
+ "resourceProviderId": "string",
405
+ "resourceId": "string",
406
+ "vimLevelResourceType": "string"
407
+ },
408
+ "cpInstanceId": "string",
409
+ "cpInstanceType": "VNFC_CP"
410
+ }
411
+ ],
412
+ "extManagedMultisiteVirtualLinkId": "string"
413
+ },
414
+ {
415
+ "id": "string",
416
+ "vnfdId": "string",
417
+ "vnfVirtualLinkDescId": "string",
418
+ "networkResource": {
419
+ "vimId": "string",
420
+ "resourceProviderId": "string",
421
+ "resourceId": "string",
422
+ "vimLevelResourceType": "string"
423
+ },
424
+ "vnfLinkPorts": [
425
+ {
426
+ "id": "string",
427
+ "resourceHandle": {
428
+ "vimId": "string",
429
+ "resourceProviderId": "string",
430
+ "resourceId": "string",
431
+ "vimLevelResourceType": "string"
432
+ },
433
+ "cpInstanceId": "string",
434
+ "cpInstanceType": "VNFC_CP"
435
+ },
436
+ {
437
+ "id": "string",
438
+ "resourceHandle": {
439
+ "vimId": "string",
440
+ "resourceProviderId": "string",
441
+ "resourceId": "string",
442
+ "vimLevelResourceType": "string"
443
+ },
444
+ "cpInstanceId": "string",
445
+ "cpInstanceType": "VNFC_CP"
446
+ },
447
+ {
448
+ "id": "string",
449
+ "resourceHandle": {
450
+ "vimId": "string",
451
+ "resourceProviderId": "string",
452
+ "resourceId": "string",
453
+ "vimLevelResourceType": "string"
454
+ },
455
+ "cpInstanceId": "string",
456
+ "cpInstanceType": "VNFC_CP"
457
+ },
458
+ {
459
+ "id": "string",
460
+ "resourceHandle": {
461
+ "vimId": "string",
462
+ "resourceProviderId": "string",
463
+ "resourceId": "string",
464
+ "vimLevelResourceType": "string"
465
+ },
466
+ "cpInstanceId": "string",
467
+ "cpInstanceType": "VNFC_CP"
468
+ },
469
+ {
470
+ "id": "string",
471
+ "resourceHandle": {
472
+ "vimId": "string",
473
+ "resourceProviderId": "string",
474
+ "resourceId": "string",
475
+ "vimLevelResourceType": "string"
476
+ },
477
+ "cpInstanceId": "string",
478
+ "cpInstanceType": "VNFC_CP"
479
+ },
480
+ {
481
+ "id": "string",
482
+ "resourceHandle": {
483
+ "vimId": "string",
484
+ "resourceProviderId": "string",
485
+ "resourceId": "string",
486
+ "vimLevelResourceType": "string"
487
+ },
488
+ "cpInstanceId": "string",
489
+ "cpInstanceType": "VNFC_CP"
490
+ },
491
+ {
492
+ "id": "string",
493
+ "resourceHandle": {
494
+ "vimId": "string",
495
+ "resourceProviderId": "string",
496
+ "resourceId": "string",
497
+ "vimLevelResourceType": "string"
498
+ },
499
+ "cpInstanceId": "string",
500
+ "cpInstanceType": "VNFC_CP"
501
+ },
502
+ {
503
+ "id": "string",
504
+ "resourceHandle": {
505
+ "vimId": "string",
506
+ "resourceProviderId": "string",
507
+ "resourceId": "string",
508
+ "vimLevelResourceType": "string"
509
+ },
510
+ "cpInstanceId": "string",
511
+ "cpInstanceType": "VNFC_CP"
512
+ },
513
+ {
514
+ "id": "string",
515
+ "resourceHandle": {
516
+ "vimId": "string",
517
+ "resourceProviderId": "string",
518
+ "resourceId": "string",
519
+ "vimLevelResourceType": "string"
520
+ },
521
+ "cpInstanceId": "string",
522
+ "cpInstanceType": "VNFC_CP"
523
+ }
524
+ ],
525
+ "extManagedMultisiteVirtualLinkId": "string"
526
+ },
527
+ {
528
+ "id": "string",
529
+ "vnfdId": "string",
530
+ "vnfVirtualLinkDescId": "string",
531
+ "networkResource": {
532
+ "vimId": "string",
533
+ "resourceProviderId": "string",
534
+ "resourceId": "string",
535
+ "vimLevelResourceType": "string"
536
+ },
537
+ "vnfLinkPorts": [
538
+ {
539
+ "id": "string",
540
+ "resourceHandle": {
541
+ "vimId": "string",
542
+ "resourceProviderId": "string",
543
+ "resourceId": "string",
544
+ "vimLevelResourceType": "string"
545
+ },
546
+ "cpInstanceId": "string",
547
+ "cpInstanceType": "VNFC_CP"
548
+ },
549
+ {
550
+ "id": "string",
551
+ "resourceHandle": {
552
+ "vimId": "string",
553
+ "resourceProviderId": "string",
554
+ "resourceId": "string",
555
+ "vimLevelResourceType": "string"
556
+ },
557
+ "cpInstanceId": "string",
558
+ "cpInstanceType": "VNFC_CP"
559
+ },
560
+ {
561
+ "id": "string",
562
+ "resourceHandle": {
563
+ "vimId": "string",
564
+ "resourceProviderId": "string",
565
+ "resourceId": "string",
566
+ "vimLevelResourceType": "string"
567
+ },
568
+ "cpInstanceId": "string",
569
+ "cpInstanceType": "VNFC_CP"
570
+ },
571
+ {
572
+ "id": "string",
573
+ "resourceHandle": {
574
+ "vimId": "string",
575
+ "resourceProviderId": "string",
576
+ "resourceId": "string",
577
+ "vimLevelResourceType": "string"
578
+ },
579
+ "cpInstanceId": "string",
580
+ "cpInstanceType": "VNFC_CP"
581
+ }
582
+ ],
583
+ "extManagedMultisiteVirtualLinkId": "string"
584
+ },
585
+ {
586
+ "id": "string",
587
+ "vnfdId": "string",
588
+ "vnfVirtualLinkDescId": "string",
589
+ "networkResource": {
590
+ "vimId": "string",
591
+ "resourceProviderId": "string",
592
+ "resourceId": "string",
593
+ "vimLevelResourceType": "string"
594
+ },
595
+ "vnfLinkPorts": [
596
+ {
597
+ "id": "string",
598
+ "resourceHandle": {
599
+ "vimId": "string",
600
+ "resourceProviderId": "string",
601
+ "resourceId": "string",
602
+ "vimLevelResourceType": "string"
603
+ },
604
+ "cpInstanceId": "string",
605
+ "cpInstanceType": "VNFC_CP"
606
+ },
607
+ {
608
+ "id": "string",
609
+ "resourceHandle": {
610
+ "vimId": "string",
611
+ "resourceProviderId": "string",
612
+ "resourceId": "string",
613
+ "vimLevelResourceType": "string"
614
+ },
615
+ "cpInstanceId": "string",
616
+ "cpInstanceType": "VNFC_CP"
617
+ },
618
+ {
619
+ "id": "string",
620
+ "resourceHandle": {
621
+ "vimId": "string",
622
+ "resourceProviderId": "string",
623
+ "resourceId": "string",
624
+ "vimLevelResourceType": "string"
625
+ },
626
+ "cpInstanceId": "string",
627
+ "cpInstanceType": "VNFC_CP"
628
+ },
629
+ {
630
+ "id": "string",
631
+ "resourceHandle": {
632
+ "vimId": "string",
633
+ "resourceProviderId": "string",
634
+ "resourceId": "string",
635
+ "vimLevelResourceType": "string"
636
+ },
637
+ "cpInstanceId": "string",
638
+ "cpInstanceType": "VNFC_CP"
639
+ }
640
+ ],
641
+ "extManagedMultisiteVirtualLinkId": "string"
642
+ },
643
+ {
644
+ "id": "string",
645
+ "vnfdId": "string",
646
+ "vnfVirtualLinkDescId": "string",
647
+ "networkResource": {
648
+ "vimId": "string",
649
+ "resourceProviderId": "string",
650
+ "resourceId": "string",
651
+ "vimLevelResourceType": "string"
652
+ },
653
+ "vnfLinkPorts": [
654
+ {
655
+ "id": "string",
656
+ "resourceHandle": {
657
+ "vimId": "string",
658
+ "resourceProviderId": "string",
659
+ "resourceId": "string",
660
+ "vimLevelResourceType": "string"
661
+ },
662
+ "cpInstanceId": "string",
663
+ "cpInstanceType": "VNFC_CP"
664
+ },
665
+ {
666
+ "id": "string",
667
+ "resourceHandle": {
668
+ "vimId": "string",
669
+ "resourceProviderId": "string",
670
+ "resourceId": "string",
671
+ "vimLevelResourceType": "string"
672
+ },
673
+ "cpInstanceId": "string",
674
+ "cpInstanceType": "VNFC_CP"
675
+ },
676
+ {
677
+ "id": "string",
678
+ "resourceHandle": {
679
+ "vimId": "string",
680
+ "resourceProviderId": "string",
681
+ "resourceId": "string",
682
+ "vimLevelResourceType": "string"
683
+ },
684
+ "cpInstanceId": "string",
685
+ "cpInstanceType": "VNFC_CP"
686
+ },
687
+ {
688
+ "id": "string",
689
+ "resourceHandle": {
690
+ "vimId": "string",
691
+ "resourceProviderId": "string",
692
+ "resourceId": "string",
693
+ "vimLevelResourceType": "string"
694
+ },
695
+ "cpInstanceId": "string",
696
+ "cpInstanceType": "VNFC_CP"
697
+ },
698
+ {
699
+ "id": "string",
700
+ "resourceHandle": {
701
+ "vimId": "string",
702
+ "resourceProviderId": "string",
703
+ "resourceId": "string",
704
+ "vimLevelResourceType": "string"
705
+ },
706
+ "cpInstanceId": "string",
707
+ "cpInstanceType": "VNFC_CP"
708
+ },
709
+ {
710
+ "id": "string",
711
+ "resourceHandle": {
712
+ "vimId": "string",
713
+ "resourceProviderId": "string",
714
+ "resourceId": "string",
715
+ "vimLevelResourceType": "string"
716
+ },
717
+ "cpInstanceId": "string",
718
+ "cpInstanceType": "VNFC_CP"
719
+ },
720
+ {
721
+ "id": "string",
722
+ "resourceHandle": {
723
+ "vimId": "string",
724
+ "resourceProviderId": "string",
725
+ "resourceId": "string",
726
+ "vimLevelResourceType": "string"
727
+ },
728
+ "cpInstanceId": "string",
729
+ "cpInstanceType": "VNFC_CP"
730
+ },
731
+ {
732
+ "id": "string",
733
+ "resourceHandle": {
734
+ "vimId": "string",
735
+ "resourceProviderId": "string",
736
+ "resourceId": "string",
737
+ "vimLevelResourceType": "string"
738
+ },
739
+ "cpInstanceId": "string",
740
+ "cpInstanceType": "VNFC_CP"
741
+ },
742
+ {
743
+ "id": "string",
744
+ "resourceHandle": {
745
+ "vimId": "string",
746
+ "resourceProviderId": "string",
747
+ "resourceId": "string",
748
+ "vimLevelResourceType": "string"
749
+ },
750
+ "cpInstanceId": "string",
751
+ "cpInstanceType": "VNFC_CP"
752
+ },
753
+ {
754
+ "id": "string",
755
+ "resourceHandle": {
756
+ "vimId": "string",
757
+ "resourceProviderId": "string",
758
+ "resourceId": "string",
759
+ "vimLevelResourceType": "string"
760
+ },
761
+ "cpInstanceId": "string",
762
+ "cpInstanceType": "VNFC_CP"
763
+ }
764
+ ],
765
+ "extManagedMultisiteVirtualLinkId": "string"
766
+ }
767
+ ],
768
+ "monitoringParameters": [
769
+ {
770
+ "id": "string",
771
+ "vnfdId": "string",
772
+ "name": "string",
773
+ "performanceMetric": "string"
774
+ },
775
+ {
776
+ "id": "string",
777
+ "vnfdId": "string",
778
+ "name": "string",
779
+ "performanceMetric": "string"
780
+ },
781
+ {
782
+ "id": "string",
783
+ "vnfdId": "string",
784
+ "name": "string",
785
+ "performanceMetric": "string"
786
+ },
787
+ {
788
+ "id": "string",
789
+ "vnfdId": "string",
790
+ "name": "string",
791
+ "performanceMetric": "string"
792
+ },
793
+ {
794
+ "id": "string",
795
+ "vnfdId": "string",
796
+ "name": "string",
797
+ "performanceMetric": "string"
798
+ },
799
+ {
800
+ "id": "string",
801
+ "vnfdId": "string",
802
+ "name": "string",
803
+ "performanceMetric": "string"
804
+ },
805
+ {
806
+ "id": "string",
807
+ "vnfdId": "string",
808
+ "name": "string",
809
+ "performanceMetric": "string"
810
+ }
811
+ ],
812
+ "localizationLanguage": "string",
813
+ "vnfcResourceInfo": [
814
+ {
815
+ "id": "string",
816
+ "vnfdId": "string",
817
+ "vduId": "string",
818
+ "computeResource": {
819
+ "vimId": "string",
820
+ "resourceProviderId": "string",
821
+ "resourceId": "string",
822
+ "vimLevelResourceType": "string"
823
+ },
824
+ "storageResourceIds": [
825
+ "string",
826
+ "string"
827
+ ],
828
+ "reservationId": "string",
829
+ "vnfcCpInfo": [
830
+ {
831
+ "id": "string",
832
+ "cpdId": "string",
833
+ "vnfExtCpId": "string",
834
+ "cpProtocolInfo": [
835
+ {
836
+ "layerProtocol": "IP_OVER_ETHERNET",
837
+ "ipOverEthernet": null
838
+ },
839
+ {
840
+ "layerProtocol": "IP_OVER_ETHERNET",
841
+ "ipOverEthernet": null
842
+ },
843
+ {
844
+ "layerProtocol": "IP_OVER_ETHERNET",
845
+ "ipOverEthernet": null
846
+ },
847
+ {
848
+ "layerProtocol": "IP_OVER_ETHERNET",
849
+ "ipOverEthernet": null
850
+ },
851
+ {
852
+ "layerProtocol": "IP_OVER_ETHERNET",
853
+ "ipOverEthernet": null
854
+ },
855
+ {
856
+ "layerProtocol": "IP_OVER_ETHERNET",
857
+ "ipOverEthernet": null
858
+ },
859
+ {
860
+ "layerProtocol": "IP_OVER_ETHERNET",
861
+ "ipOverEthernet": null
862
+ },
863
+ {
864
+ "layerProtocol": "IP_OVER_ETHERNET",
865
+ "ipOverEthernet": null
866
+ },
867
+ {
868
+ "layerProtocol": "IP_OVER_ETHERNET",
869
+ "ipOverEthernet": null
870
+ },
871
+ {
872
+ "layerProtocol": "IP_OVER_ETHERNET",
873
+ "ipOverEthernet": null
874
+ }
875
+ ],
876
+ "vnfLinkPortId": "string",
877
+ "metadata": {}
878
+ },
879
+ {
880
+ "id": "string",
881
+ "cpdId": "string",
882
+ "vnfExtCpId": "string",
883
+ "cpProtocolInfo": [
884
+ {
885
+ "layerProtocol": "IP_OVER_ETHERNET",
886
+ "ipOverEthernet": null
887
+ },
888
+ {
889
+ "layerProtocol": "IP_OVER_ETHERNET",
890
+ "ipOverEthernet": null
891
+ },
892
+ {
893
+ "layerProtocol": "IP_OVER_ETHERNET",
894
+ "ipOverEthernet": null
895
+ },
896
+ {
897
+ "layerProtocol": "IP_OVER_ETHERNET",
898
+ "ipOverEthernet": null
899
+ }
900
+ ],
901
+ "vnfLinkPortId": "string",
902
+ "metadata": {}
903
+ },
904
+ {
905
+ "id": "string",
906
+ "cpdId": "string",
907
+ "vnfExtCpId": "string",
908
+ "cpProtocolInfo": [
909
+ {
910
+ "layerProtocol": "IP_OVER_ETHERNET",
911
+ "ipOverEthernet": null
912
+ },
913
+ {
914
+ "layerProtocol": "IP_OVER_ETHERNET",
915
+ "ipOverEthernet": null
916
+ },
917
+ {
918
+ "layerProtocol": "IP_OVER_ETHERNET",
919
+ "ipOverEthernet": null
920
+ },
921
+ {
922
+ "layerProtocol": "IP_OVER_ETHERNET",
923
+ "ipOverEthernet": null
924
+ },
925
+ {
926
+ "layerProtocol": "IP_OVER_ETHERNET",
927
+ "ipOverEthernet": null
928
+ },
929
+ {
930
+ "layerProtocol": "IP_OVER_ETHERNET",
931
+ "ipOverEthernet": null
932
+ }
933
+ ],
934
+ "vnfLinkPortId": "string",
935
+ "metadata": {}
936
+ },
937
+ {
938
+ "id": "string",
939
+ "cpdId": "string",
940
+ "vnfExtCpId": "string",
941
+ "cpProtocolInfo": [
942
+ {
943
+ "layerProtocol": "IP_OVER_ETHERNET",
944
+ "ipOverEthernet": null
945
+ },
946
+ {
947
+ "layerProtocol": "IP_OVER_ETHERNET",
948
+ "ipOverEthernet": null
949
+ },
950
+ {
951
+ "layerProtocol": "IP_OVER_ETHERNET",
952
+ "ipOverEthernet": null
953
+ },
954
+ {
955
+ "layerProtocol": "IP_OVER_ETHERNET",
956
+ "ipOverEthernet": null
957
+ }
958
+ ],
959
+ "vnfLinkPortId": "string",
960
+ "metadata": {}
961
+ }
962
+ ],
963
+ "metadata": {}
964
+ }
965
+ ],
966
+ "virtualLinkResourceInfo": [
967
+ {
968
+ "id": "string",
969
+ "vnfdId": "string",
970
+ "vnfVirtualLinkDescId": "string",
971
+ "networkResource": {
972
+ "vimId": "string",
973
+ "resourceProviderId": "string",
974
+ "resourceId": "string",
975
+ "vimLevelResourceType": "string"
976
+ },
977
+ "reservationId": "string",
978
+ "vnfLinkPorts": [
979
+ {
980
+ "id": "string",
981
+ "resourceHandle": {
982
+ "vimId": "string",
983
+ "resourceProviderId": "string",
984
+ "resourceId": "string",
985
+ "vimLevelResourceType": "string"
986
+ },
987
+ "cpInstanceId": "string",
988
+ "cpInstanceType": "VNFC_CP"
989
+ },
990
+ {
991
+ "id": "string",
992
+ "resourceHandle": {
993
+ "vimId": "string",
994
+ "resourceProviderId": "string",
995
+ "resourceId": "string",
996
+ "vimLevelResourceType": "string"
997
+ },
998
+ "cpInstanceId": "string",
999
+ "cpInstanceType": "VNFC_CP"
1000
+ },
1001
+ {
1002
+ "id": "string",
1003
+ "resourceHandle": {
1004
+ "vimId": "string",
1005
+ "resourceProviderId": "string",
1006
+ "resourceId": "string",
1007
+ "vimLevelResourceType": "string"
1008
+ },
1009
+ "cpInstanceId": "string",
1010
+ "cpInstanceType": "VNFC_CP"
1011
+ }
1012
+ ],
1013
+ "metadata": {}
1014
+ }
1015
+ ],
1016
+ "virtualStorageResourceInfo": [
1017
+ {
1018
+ "id": "string",
1019
+ "virtualStorageDescId": "string",
1020
+ "vnfdId": "string",
1021
+ "storageResource": {
1022
+ "vimId": "string",
1023
+ "resourceProviderId": "string",
1024
+ "resourceId": "string",
1025
+ "vimLevelResourceType": "string"
1026
+ },
1027
+ "reservationId": "string",
1028
+ "metadata": {}
1029
+ },
1030
+ {
1031
+ "id": "string",
1032
+ "virtualStorageDescId": "string",
1033
+ "vnfdId": "string",
1034
+ "storageResource": {
1035
+ "vimId": "string",
1036
+ "resourceProviderId": "string",
1037
+ "resourceId": "string",
1038
+ "vimLevelResourceType": "string"
1039
+ },
1040
+ "reservationId": "string",
1041
+ "metadata": {}
1042
+ },
1043
+ {
1044
+ "id": "string",
1045
+ "virtualStorageDescId": "string",
1046
+ "vnfdId": "string",
1047
+ "storageResource": {
1048
+ "vimId": "string",
1049
+ "resourceProviderId": "string",
1050
+ "resourceId": "string",
1051
+ "vimLevelResourceType": "string"
1052
+ },
1053
+ "reservationId": "string",
1054
+ "metadata": {}
1055
+ },
1056
+ {
1057
+ "id": "string",
1058
+ "virtualStorageDescId": "string",
1059
+ "vnfdId": "string",
1060
+ "storageResource": {
1061
+ "vimId": "string",
1062
+ "resourceProviderId": "string",
1063
+ "resourceId": "string",
1064
+ "vimLevelResourceType": "string"
1065
+ },
1066
+ "reservationId": "string",
1067
+ "metadata": {}
1068
+ },
1069
+ {
1070
+ "id": "string",
1071
+ "virtualStorageDescId": "string",
1072
+ "vnfdId": "string",
1073
+ "storageResource": {
1074
+ "vimId": "string",
1075
+ "resourceProviderId": "string",
1076
+ "resourceId": "string",
1077
+ "vimLevelResourceType": "string"
1078
+ },
1079
+ "reservationId": "string",
1080
+ "metadata": {}
1081
+ },
1082
+ {
1083
+ "id": "string",
1084
+ "virtualStorageDescId": "string",
1085
+ "vnfdId": "string",
1086
+ "storageResource": {
1087
+ "vimId": "string",
1088
+ "resourceProviderId": "string",
1089
+ "resourceId": "string",
1090
+ "vimLevelResourceType": "string"
1091
+ },
1092
+ "reservationId": "string",
1093
+ "metadata": {}
1094
+ },
1095
+ {
1096
+ "id": "string",
1097
+ "virtualStorageDescId": "string",
1098
+ "vnfdId": "string",
1099
+ "storageResource": {
1100
+ "vimId": "string",
1101
+ "resourceProviderId": "string",
1102
+ "resourceId": "string",
1103
+ "vimLevelResourceType": "string"
1104
+ },
1105
+ "reservationId": "string",
1106
+ "metadata": {}
1107
+ },
1108
+ {
1109
+ "id": "string",
1110
+ "virtualStorageDescId": "string",
1111
+ "vnfdId": "string",
1112
+ "storageResource": {
1113
+ "vimId": "string",
1114
+ "resourceProviderId": "string",
1115
+ "resourceId": "string",
1116
+ "vimLevelResourceType": "string"
1117
+ },
1118
+ "reservationId": "string",
1119
+ "metadata": {}
1120
+ }
1121
+ ]
1122
+ },
1123
+ "metadata": {},
1124
+ "extensions": {}
1125
+ },
1126
+ "vnfcSnapshots": [
1127
+ {
1128
+ "id": "string",
1129
+ "vnfcInstanceId": "string",
1130
+ "creationStartedAt": null,
1131
+ "creationFinishedAt": null,
1132
+ "vnfcResourceInfoId": "string",
1133
+ "computeSnapshotResource": {
1134
+ "vimId": "string",
1135
+ "resourceProviderId": "string",
1136
+ "resourceId": "string",
1137
+ "vimLevelResourceType": "string"
1138
+ },
1139
+ "storageSnapshotResources": [
1140
+ {
1141
+ "storageResourceId": "string",
1142
+ "storageSnapshotResources": {
1143
+ "vimId": "string",
1144
+ "resourceProviderId": "string",
1145
+ "resourceId": "string",
1146
+ "vimLevelResourceType": "string"
1147
+ }
1148
+ },
1149
+ {
1150
+ "storageResourceId": "string",
1151
+ "storageSnapshotResources": {
1152
+ "vimId": "string",
1153
+ "resourceProviderId": "string",
1154
+ "resourceId": "string",
1155
+ "vimLevelResourceType": "string"
1156
+ }
1157
+ }
1158
+ ],
1159
+ "userDefinedData": {}
1160
+ },
1161
+ {
1162
+ "id": "string",
1163
+ "vnfcInstanceId": "string",
1164
+ "creationStartedAt": null,
1165
+ "creationFinishedAt": null,
1166
+ "vnfcResourceInfoId": "string",
1167
+ "computeSnapshotResource": {
1168
+ "vimId": "string",
1169
+ "resourceProviderId": "string",
1170
+ "resourceId": "string",
1171
+ "vimLevelResourceType": "string"
1172
+ },
1173
+ "storageSnapshotResources": [
1174
+ {
1175
+ "storageResourceId": "string",
1176
+ "storageSnapshotResources": {
1177
+ "vimId": "string",
1178
+ "resourceProviderId": "string",
1179
+ "resourceId": "string",
1180
+ "vimLevelResourceType": "string"
1181
+ }
1182
+ },
1183
+ {
1184
+ "storageResourceId": "string",
1185
+ "storageSnapshotResources": {
1186
+ "vimId": "string",
1187
+ "resourceProviderId": "string",
1188
+ "resourceId": "string",
1189
+ "vimLevelResourceType": "string"
1190
+ }
1191
+ },
1192
+ {
1193
+ "storageResourceId": "string",
1194
+ "storageSnapshotResources": {
1195
+ "vimId": "string",
1196
+ "resourceProviderId": "string",
1197
+ "resourceId": "string",
1198
+ "vimLevelResourceType": "string"
1199
+ }
1200
+ },
1201
+ {
1202
+ "storageResourceId": "string",
1203
+ "storageSnapshotResources": {
1204
+ "vimId": "string",
1205
+ "resourceProviderId": "string",
1206
+ "resourceId": "string",
1207
+ "vimLevelResourceType": "string"
1208
+ }
1209
+ },
1210
+ {
1211
+ "storageResourceId": "string",
1212
+ "storageSnapshotResources": {
1213
+ "vimId": "string",
1214
+ "resourceProviderId": "string",
1215
+ "resourceId": "string",
1216
+ "vimLevelResourceType": "string"
1217
+ }
1218
+ },
1219
+ {
1220
+ "storageResourceId": "string",
1221
+ "storageSnapshotResources": {
1222
+ "vimId": "string",
1223
+ "resourceProviderId": "string",
1224
+ "resourceId": "string",
1225
+ "vimLevelResourceType": "string"
1226
+ }
1227
+ },
1228
+ {
1229
+ "storageResourceId": "string",
1230
+ "storageSnapshotResources": {
1231
+ "vimId": "string",
1232
+ "resourceProviderId": "string",
1233
+ "resourceId": "string",
1234
+ "vimLevelResourceType": "string"
1235
+ }
1236
+ },
1237
+ {
1238
+ "storageResourceId": "string",
1239
+ "storageSnapshotResources": {
1240
+ "vimId": "string",
1241
+ "resourceProviderId": "string",
1242
+ "resourceId": "string",
1243
+ "vimLevelResourceType": "string"
1244
+ }
1245
+ },
1246
+ {
1247
+ "storageResourceId": "string",
1248
+ "storageSnapshotResources": {
1249
+ "vimId": "string",
1250
+ "resourceProviderId": "string",
1251
+ "resourceId": "string",
1252
+ "vimLevelResourceType": "string"
1253
+ }
1254
+ },
1255
+ {
1256
+ "storageResourceId": "string",
1257
+ "storageSnapshotResources": {
1258
+ "vimId": "string",
1259
+ "resourceProviderId": "string",
1260
+ "resourceId": "string",
1261
+ "vimLevelResourceType": "string"
1262
+ }
1263
+ }
1264
+ ],
1265
+ "userDefinedData": {}
1266
+ },
1267
+ {
1268
+ "id": "string",
1269
+ "vnfcInstanceId": "string",
1270
+ "creationStartedAt": null,
1271
+ "creationFinishedAt": null,
1272
+ "vnfcResourceInfoId": "string",
1273
+ "computeSnapshotResource": {
1274
+ "vimId": "string",
1275
+ "resourceProviderId": "string",
1276
+ "resourceId": "string",
1277
+ "vimLevelResourceType": "string"
1278
+ },
1279
+ "storageSnapshotResources": [
1280
+ {
1281
+ "storageResourceId": "string",
1282
+ "storageSnapshotResources": {
1283
+ "vimId": "string",
1284
+ "resourceProviderId": "string",
1285
+ "resourceId": "string",
1286
+ "vimLevelResourceType": "string"
1287
+ }
1288
+ },
1289
+ {
1290
+ "storageResourceId": "string",
1291
+ "storageSnapshotResources": {
1292
+ "vimId": "string",
1293
+ "resourceProviderId": "string",
1294
+ "resourceId": "string",
1295
+ "vimLevelResourceType": "string"
1296
+ }
1297
+ },
1298
+ {
1299
+ "storageResourceId": "string",
1300
+ "storageSnapshotResources": {
1301
+ "vimId": "string",
1302
+ "resourceProviderId": "string",
1303
+ "resourceId": "string",
1304
+ "vimLevelResourceType": "string"
1305
+ }
1306
+ },
1307
+ {
1308
+ "storageResourceId": "string",
1309
+ "storageSnapshotResources": {
1310
+ "vimId": "string",
1311
+ "resourceProviderId": "string",
1312
+ "resourceId": "string",
1313
+ "vimLevelResourceType": "string"
1314
+ }
1315
+ },
1316
+ {
1317
+ "storageResourceId": "string",
1318
+ "storageSnapshotResources": {
1319
+ "vimId": "string",
1320
+ "resourceProviderId": "string",
1321
+ "resourceId": "string",
1322
+ "vimLevelResourceType": "string"
1323
+ }
1324
+ },
1325
+ {
1326
+ "storageResourceId": "string",
1327
+ "storageSnapshotResources": {
1328
+ "vimId": "string",
1329
+ "resourceProviderId": "string",
1330
+ "resourceId": "string",
1331
+ "vimLevelResourceType": "string"
1332
+ }
1333
+ },
1334
+ {
1335
+ "storageResourceId": "string",
1336
+ "storageSnapshotResources": {
1337
+ "vimId": "string",
1338
+ "resourceProviderId": "string",
1339
+ "resourceId": "string",
1340
+ "vimLevelResourceType": "string"
1341
+ }
1342
+ },
1343
+ {
1344
+ "storageResourceId": "string",
1345
+ "storageSnapshotResources": {
1346
+ "vimId": "string",
1347
+ "resourceProviderId": "string",
1348
+ "resourceId": "string",
1349
+ "vimLevelResourceType": "string"
1350
+ }
1351
+ },
1352
+ {
1353
+ "storageResourceId": "string",
1354
+ "storageSnapshotResources": {
1355
+ "vimId": "string",
1356
+ "resourceProviderId": "string",
1357
+ "resourceId": "string",
1358
+ "vimLevelResourceType": "string"
1359
+ }
1360
+ }
1361
+ ],
1362
+ "userDefinedData": {}
1363
+ },
1364
+ {
1365
+ "id": "string",
1366
+ "vnfcInstanceId": "string",
1367
+ "creationStartedAt": null,
1368
+ "creationFinishedAt": null,
1369
+ "vnfcResourceInfoId": "string",
1370
+ "computeSnapshotResource": {
1371
+ "vimId": "string",
1372
+ "resourceProviderId": "string",
1373
+ "resourceId": "string",
1374
+ "vimLevelResourceType": "string"
1375
+ },
1376
+ "storageSnapshotResources": [
1377
+ {
1378
+ "storageResourceId": "string",
1379
+ "storageSnapshotResources": {
1380
+ "vimId": "string",
1381
+ "resourceProviderId": "string",
1382
+ "resourceId": "string",
1383
+ "vimLevelResourceType": "string"
1384
+ }
1385
+ },
1386
+ {
1387
+ "storageResourceId": "string",
1388
+ "storageSnapshotResources": {
1389
+ "vimId": "string",
1390
+ "resourceProviderId": "string",
1391
+ "resourceId": "string",
1392
+ "vimLevelResourceType": "string"
1393
+ }
1394
+ },
1395
+ {
1396
+ "storageResourceId": "string",
1397
+ "storageSnapshotResources": {
1398
+ "vimId": "string",
1399
+ "resourceProviderId": "string",
1400
+ "resourceId": "string",
1401
+ "vimLevelResourceType": "string"
1402
+ }
1403
+ },
1404
+ {
1405
+ "storageResourceId": "string",
1406
+ "storageSnapshotResources": {
1407
+ "vimId": "string",
1408
+ "resourceProviderId": "string",
1409
+ "resourceId": "string",
1410
+ "vimLevelResourceType": "string"
1411
+ }
1412
+ }
1413
+ ],
1414
+ "userDefinedData": {}
1415
+ },
1416
+ {
1417
+ "id": "string",
1418
+ "vnfcInstanceId": "string",
1419
+ "creationStartedAt": null,
1420
+ "creationFinishedAt": null,
1421
+ "vnfcResourceInfoId": "string",
1422
+ "computeSnapshotResource": {
1423
+ "vimId": "string",
1424
+ "resourceProviderId": "string",
1425
+ "resourceId": "string",
1426
+ "vimLevelResourceType": "string"
1427
+ },
1428
+ "storageSnapshotResources": [
1429
+ {
1430
+ "storageResourceId": "string",
1431
+ "storageSnapshotResources": {
1432
+ "vimId": "string",
1433
+ "resourceProviderId": "string",
1434
+ "resourceId": "string",
1435
+ "vimLevelResourceType": "string"
1436
+ }
1437
+ },
1438
+ {
1439
+ "storageResourceId": "string",
1440
+ "storageSnapshotResources": {
1441
+ "vimId": "string",
1442
+ "resourceProviderId": "string",
1443
+ "resourceId": "string",
1444
+ "vimLevelResourceType": "string"
1445
+ }
1446
+ },
1447
+ {
1448
+ "storageResourceId": "string",
1449
+ "storageSnapshotResources": {
1450
+ "vimId": "string",
1451
+ "resourceProviderId": "string",
1452
+ "resourceId": "string",
1453
+ "vimLevelResourceType": "string"
1454
+ }
1455
+ },
1456
+ {
1457
+ "storageResourceId": "string",
1458
+ "storageSnapshotResources": {
1459
+ "vimId": "string",
1460
+ "resourceProviderId": "string",
1461
+ "resourceId": "string",
1462
+ "vimLevelResourceType": "string"
1463
+ }
1464
+ },
1465
+ {
1466
+ "storageResourceId": "string",
1467
+ "storageSnapshotResources": {
1468
+ "vimId": "string",
1469
+ "resourceProviderId": "string",
1470
+ "resourceId": "string",
1471
+ "vimLevelResourceType": "string"
1472
+ }
1473
+ }
1474
+ ],
1475
+ "userDefinedData": {}
1476
+ },
1477
+ {
1478
+ "id": "string",
1479
+ "vnfcInstanceId": "string",
1480
+ "creationStartedAt": null,
1481
+ "creationFinishedAt": null,
1482
+ "vnfcResourceInfoId": "string",
1483
+ "computeSnapshotResource": {
1484
+ "vimId": "string",
1485
+ "resourceProviderId": "string",
1486
+ "resourceId": "string",
1487
+ "vimLevelResourceType": "string"
1488
+ },
1489
+ "storageSnapshotResources": [
1490
+ {
1491
+ "storageResourceId": "string",
1492
+ "storageSnapshotResources": {
1493
+ "vimId": "string",
1494
+ "resourceProviderId": "string",
1495
+ "resourceId": "string",
1496
+ "vimLevelResourceType": "string"
1497
+ }
1498
+ },
1499
+ {
1500
+ "storageResourceId": "string",
1501
+ "storageSnapshotResources": {
1502
+ "vimId": "string",
1503
+ "resourceProviderId": "string",
1504
+ "resourceId": "string",
1505
+ "vimLevelResourceType": "string"
1506
+ }
1507
+ },
1508
+ {
1509
+ "storageResourceId": "string",
1510
+ "storageSnapshotResources": {
1511
+ "vimId": "string",
1512
+ "resourceProviderId": "string",
1513
+ "resourceId": "string",
1514
+ "vimLevelResourceType": "string"
1515
+ }
1516
+ },
1517
+ {
1518
+ "storageResourceId": "string",
1519
+ "storageSnapshotResources": {
1520
+ "vimId": "string",
1521
+ "resourceProviderId": "string",
1522
+ "resourceId": "string",
1523
+ "vimLevelResourceType": "string"
1524
+ }
1525
+ },
1526
+ {
1527
+ "storageResourceId": "string",
1528
+ "storageSnapshotResources": {
1529
+ "vimId": "string",
1530
+ "resourceProviderId": "string",
1531
+ "resourceId": "string",
1532
+ "vimLevelResourceType": "string"
1533
+ }
1534
+ },
1535
+ {
1536
+ "storageResourceId": "string",
1537
+ "storageSnapshotResources": {
1538
+ "vimId": "string",
1539
+ "resourceProviderId": "string",
1540
+ "resourceId": "string",
1541
+ "vimLevelResourceType": "string"
1542
+ }
1543
+ }
1544
+ ],
1545
+ "userDefinedData": {}
1546
+ },
1547
+ {
1548
+ "id": "string",
1549
+ "vnfcInstanceId": "string",
1550
+ "creationStartedAt": null,
1551
+ "creationFinishedAt": null,
1552
+ "vnfcResourceInfoId": "string",
1553
+ "computeSnapshotResource": {
1554
+ "vimId": "string",
1555
+ "resourceProviderId": "string",
1556
+ "resourceId": "string",
1557
+ "vimLevelResourceType": "string"
1558
+ },
1559
+ "storageSnapshotResources": [
1560
+ {
1561
+ "storageResourceId": "string",
1562
+ "storageSnapshotResources": {
1563
+ "vimId": "string",
1564
+ "resourceProviderId": "string",
1565
+ "resourceId": "string",
1566
+ "vimLevelResourceType": "string"
1567
+ }
1568
+ },
1569
+ {
1570
+ "storageResourceId": "string",
1571
+ "storageSnapshotResources": {
1572
+ "vimId": "string",
1573
+ "resourceProviderId": "string",
1574
+ "resourceId": "string",
1575
+ "vimLevelResourceType": "string"
1576
+ }
1577
+ },
1578
+ {
1579
+ "storageResourceId": "string",
1580
+ "storageSnapshotResources": {
1581
+ "vimId": "string",
1582
+ "resourceProviderId": "string",
1583
+ "resourceId": "string",
1584
+ "vimLevelResourceType": "string"
1585
+ }
1586
+ },
1587
+ {
1588
+ "storageResourceId": "string",
1589
+ "storageSnapshotResources": {
1590
+ "vimId": "string",
1591
+ "resourceProviderId": "string",
1592
+ "resourceId": "string",
1593
+ "vimLevelResourceType": "string"
1594
+ }
1595
+ },
1596
+ {
1597
+ "storageResourceId": "string",
1598
+ "storageSnapshotResources": {
1599
+ "vimId": "string",
1600
+ "resourceProviderId": "string",
1601
+ "resourceId": "string",
1602
+ "vimLevelResourceType": "string"
1603
+ }
1604
+ }
1605
+ ],
1606
+ "userDefinedData": {}
1607
+ },
1608
+ {
1609
+ "id": "string",
1610
+ "vnfcInstanceId": "string",
1611
+ "creationStartedAt": null,
1612
+ "creationFinishedAt": null,
1613
+ "vnfcResourceInfoId": "string",
1614
+ "computeSnapshotResource": {
1615
+ "vimId": "string",
1616
+ "resourceProviderId": "string",
1617
+ "resourceId": "string",
1618
+ "vimLevelResourceType": "string"
1619
+ },
1620
+ "storageSnapshotResources": [
1621
+ {
1622
+ "storageResourceId": "string",
1623
+ "storageSnapshotResources": {
1624
+ "vimId": "string",
1625
+ "resourceProviderId": "string",
1626
+ "resourceId": "string",
1627
+ "vimLevelResourceType": "string"
1628
+ }
1629
+ },
1630
+ {
1631
+ "storageResourceId": "string",
1632
+ "storageSnapshotResources": {
1633
+ "vimId": "string",
1634
+ "resourceProviderId": "string",
1635
+ "resourceId": "string",
1636
+ "vimLevelResourceType": "string"
1637
+ }
1638
+ },
1639
+ {
1640
+ "storageResourceId": "string",
1641
+ "storageSnapshotResources": {
1642
+ "vimId": "string",
1643
+ "resourceProviderId": "string",
1644
+ "resourceId": "string",
1645
+ "vimLevelResourceType": "string"
1646
+ }
1647
+ },
1648
+ {
1649
+ "storageResourceId": "string",
1650
+ "storageSnapshotResources": {
1651
+ "vimId": "string",
1652
+ "resourceProviderId": "string",
1653
+ "resourceId": "string",
1654
+ "vimLevelResourceType": "string"
1655
+ }
1656
+ }
1657
+ ],
1658
+ "userDefinedData": {}
1659
+ },
1660
+ {
1661
+ "id": "string",
1662
+ "vnfcInstanceId": "string",
1663
+ "creationStartedAt": null,
1664
+ "creationFinishedAt": null,
1665
+ "vnfcResourceInfoId": "string",
1666
+ "computeSnapshotResource": {
1667
+ "vimId": "string",
1668
+ "resourceProviderId": "string",
1669
+ "resourceId": "string",
1670
+ "vimLevelResourceType": "string"
1671
+ },
1672
+ "storageSnapshotResources": [
1673
+ {
1674
+ "storageResourceId": "string",
1675
+ "storageSnapshotResources": {
1676
+ "vimId": "string",
1677
+ "resourceProviderId": "string",
1678
+ "resourceId": "string",
1679
+ "vimLevelResourceType": "string"
1680
+ }
1681
+ }
1682
+ ],
1683
+ "userDefinedData": {}
1684
+ }
1685
+ ],
1686
+ "userDefinedData": {}
1687
+ },
1688
+ "_links": {
1689
+ "self": {
1690
+ "href": "string"
1691
+ }
1692
+ }
1693
+ }
1694
+ ]