@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,453 @@
1
+ [
2
+ {
3
+ "id": "string",
4
+ "vnfdId": "string",
5
+ "vnfProvider": "string",
6
+ "vnfProductName": "string",
7
+ "vnfSoftwareVersion": "string",
8
+ "vnfdVersion": "string",
9
+ "compatibleSpecificationVersions": "string",
10
+ "checksum": {
11
+ "algorithm": "string",
12
+ "hash": "string"
13
+ },
14
+ "packageSecurityOption": "OPTION_1",
15
+ "signingCertificate": "string",
16
+ "softwareImages": [
17
+ {
18
+ "id": "string",
19
+ "name": "string",
20
+ "provider": "string",
21
+ "version": "string",
22
+ "checksum": {
23
+ "algorithm": "string",
24
+ "hash": "string"
25
+ },
26
+ "isEncrypted": true,
27
+ "containerFormat": "BARE",
28
+ "diskFormat": "ISO",
29
+ "createdAt": null,
30
+ "minDisk": 8,
31
+ "minRam": 6,
32
+ "size": 9,
33
+ "userMetadata": {},
34
+ "imagePath": "string",
35
+ "imageUri": "string"
36
+ },
37
+ {
38
+ "id": "string",
39
+ "name": "string",
40
+ "provider": "string",
41
+ "version": "string",
42
+ "checksum": {
43
+ "algorithm": "string",
44
+ "hash": "string"
45
+ },
46
+ "isEncrypted": false,
47
+ "containerFormat": "OVF",
48
+ "diskFormat": "VMDK",
49
+ "createdAt": null,
50
+ "minDisk": 2,
51
+ "minRam": 3,
52
+ "size": 3,
53
+ "userMetadata": {},
54
+ "imagePath": "string",
55
+ "imageUri": "string"
56
+ }
57
+ ],
58
+ "additionalArtifacts": [
59
+ {
60
+ "artifactPath": "string",
61
+ "artifactURI": "string",
62
+ "checksum": {
63
+ "algorithm": "string",
64
+ "hash": "string"
65
+ },
66
+ "artifactClassification": "TESTING",
67
+ "isEncrypted": true,
68
+ "nonManoArtifactSetId": "string",
69
+ "metadata": {}
70
+ },
71
+ {
72
+ "artifactPath": "string",
73
+ "artifactURI": "string",
74
+ "checksum": {
75
+ "algorithm": "string",
76
+ "hash": "string"
77
+ },
78
+ "artifactClassification": "TESTING",
79
+ "isEncrypted": true,
80
+ "nonManoArtifactSetId": "string",
81
+ "metadata": {}
82
+ }
83
+ ],
84
+ "onboardingState": "ERROR",
85
+ "operationalState": "ENABLED",
86
+ "usageState": "IN_USE",
87
+ "vnfmInfo": [
88
+ "string",
89
+ "string"
90
+ ],
91
+ "userDefinedData": {},
92
+ "onboardingFailureDetails": {
93
+ "type": "string",
94
+ "title": "string",
95
+ "status": 6,
96
+ "detail": "string",
97
+ "instance": "string"
98
+ },
99
+ "_links": {
100
+ "self": {
101
+ "href": "string"
102
+ },
103
+ "vnfd": {
104
+ "href": "string"
105
+ },
106
+ "packageContent": {
107
+ "href": "string"
108
+ }
109
+ }
110
+ },
111
+ {
112
+ "id": "string",
113
+ "vnfdId": "string",
114
+ "vnfProvider": "string",
115
+ "vnfProductName": "string",
116
+ "vnfSoftwareVersion": "string",
117
+ "vnfdVersion": "string",
118
+ "compatibleSpecificationVersions": "string",
119
+ "checksum": {
120
+ "algorithm": "string",
121
+ "hash": "string"
122
+ },
123
+ "packageSecurityOption": "OPTION_1",
124
+ "signingCertificate": "string",
125
+ "softwareImages": [
126
+ {
127
+ "id": "string",
128
+ "name": "string",
129
+ "provider": "string",
130
+ "version": "string",
131
+ "checksum": {
132
+ "algorithm": "string",
133
+ "hash": "string"
134
+ },
135
+ "isEncrypted": true,
136
+ "containerFormat": "OVF",
137
+ "diskFormat": "VMDK",
138
+ "createdAt": null,
139
+ "minDisk": 8,
140
+ "minRam": 7,
141
+ "size": 4,
142
+ "userMetadata": {},
143
+ "imagePath": "string",
144
+ "imageUri": "string"
145
+ },
146
+ {
147
+ "id": "string",
148
+ "name": "string",
149
+ "provider": "string",
150
+ "version": "string",
151
+ "checksum": {
152
+ "algorithm": "string",
153
+ "hash": "string"
154
+ },
155
+ "isEncrypted": false,
156
+ "containerFormat": "OVF",
157
+ "diskFormat": "ISO",
158
+ "createdAt": null,
159
+ "minDisk": 1,
160
+ "minRam": 4,
161
+ "size": 8,
162
+ "userMetadata": {},
163
+ "imagePath": "string",
164
+ "imageUri": "string"
165
+ },
166
+ {
167
+ "id": "string",
168
+ "name": "string",
169
+ "provider": "string",
170
+ "version": "string",
171
+ "checksum": {
172
+ "algorithm": "string",
173
+ "hash": "string"
174
+ },
175
+ "isEncrypted": false,
176
+ "containerFormat": "AKI",
177
+ "diskFormat": "VMDK",
178
+ "createdAt": null,
179
+ "minDisk": 4,
180
+ "minRam": 4,
181
+ "size": 9,
182
+ "userMetadata": {},
183
+ "imagePath": "string",
184
+ "imageUri": "string"
185
+ }
186
+ ],
187
+ "additionalArtifacts": [
188
+ {
189
+ "artifactPath": "string",
190
+ "artifactURI": "string",
191
+ "checksum": {
192
+ "algorithm": "string",
193
+ "hash": "string"
194
+ },
195
+ "artifactClassification": "HISTORY",
196
+ "isEncrypted": true,
197
+ "nonManoArtifactSetId": "string",
198
+ "metadata": {}
199
+ },
200
+ {
201
+ "artifactPath": "string",
202
+ "artifactURI": "string",
203
+ "checksum": {
204
+ "algorithm": "string",
205
+ "hash": "string"
206
+ },
207
+ "artifactClassification": "HISTORY",
208
+ "isEncrypted": true,
209
+ "nonManoArtifactSetId": "string",
210
+ "metadata": {}
211
+ }
212
+ ],
213
+ "onboardingState": "ERROR",
214
+ "operationalState": "DISABLED",
215
+ "usageState": "IN_USE",
216
+ "vnfmInfo": [
217
+ "string",
218
+ "string",
219
+ "string",
220
+ "string"
221
+ ],
222
+ "userDefinedData": {},
223
+ "onboardingFailureDetails": {
224
+ "type": "string",
225
+ "title": "string",
226
+ "status": 8,
227
+ "detail": "string",
228
+ "instance": "string"
229
+ },
230
+ "_links": {
231
+ "self": {
232
+ "href": "string"
233
+ },
234
+ "vnfd": {
235
+ "href": "string"
236
+ },
237
+ "packageContent": {
238
+ "href": "string"
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "id": "string",
244
+ "vnfdId": "string",
245
+ "vnfProvider": "string",
246
+ "vnfProductName": "string",
247
+ "vnfSoftwareVersion": "string",
248
+ "vnfdVersion": "string",
249
+ "compatibleSpecificationVersions": "string",
250
+ "checksum": {
251
+ "algorithm": "string",
252
+ "hash": "string"
253
+ },
254
+ "packageSecurityOption": "OPTION_2",
255
+ "signingCertificate": "string",
256
+ "softwareImages": [
257
+ {
258
+ "id": "string",
259
+ "name": "string",
260
+ "provider": "string",
261
+ "version": "string",
262
+ "checksum": {
263
+ "algorithm": "string",
264
+ "hash": "string"
265
+ },
266
+ "isEncrypted": false,
267
+ "containerFormat": "AKI",
268
+ "diskFormat": "ISO",
269
+ "createdAt": null,
270
+ "minDisk": 2,
271
+ "minRam": 2,
272
+ "size": 4,
273
+ "userMetadata": {},
274
+ "imagePath": "string",
275
+ "imageUri": "string"
276
+ },
277
+ {
278
+ "id": "string",
279
+ "name": "string",
280
+ "provider": "string",
281
+ "version": "string",
282
+ "checksum": {
283
+ "algorithm": "string",
284
+ "hash": "string"
285
+ },
286
+ "isEncrypted": false,
287
+ "containerFormat": "DOCKER",
288
+ "diskFormat": "RAW",
289
+ "createdAt": null,
290
+ "minDisk": 7,
291
+ "minRam": 5,
292
+ "size": 9,
293
+ "userMetadata": {},
294
+ "imagePath": "string",
295
+ "imageUri": "string"
296
+ },
297
+ {
298
+ "id": "string",
299
+ "name": "string",
300
+ "provider": "string",
301
+ "version": "string",
302
+ "checksum": {
303
+ "algorithm": "string",
304
+ "hash": "string"
305
+ },
306
+ "isEncrypted": true,
307
+ "containerFormat": "DOCKER",
308
+ "diskFormat": "AMI",
309
+ "createdAt": null,
310
+ "minDisk": 6,
311
+ "minRam": 9,
312
+ "size": 6,
313
+ "userMetadata": {},
314
+ "imagePath": "string",
315
+ "imageUri": "string"
316
+ },
317
+ {
318
+ "id": "string",
319
+ "name": "string",
320
+ "provider": "string",
321
+ "version": "string",
322
+ "checksum": {
323
+ "algorithm": "string",
324
+ "hash": "string"
325
+ },
326
+ "isEncrypted": true,
327
+ "containerFormat": "OVF",
328
+ "diskFormat": "ARI",
329
+ "createdAt": null,
330
+ "minDisk": 6,
331
+ "minRam": 4,
332
+ "size": 1,
333
+ "userMetadata": {},
334
+ "imagePath": "string",
335
+ "imageUri": "string"
336
+ },
337
+ {
338
+ "id": "string",
339
+ "name": "string",
340
+ "provider": "string",
341
+ "version": "string",
342
+ "checksum": {
343
+ "algorithm": "string",
344
+ "hash": "string"
345
+ },
346
+ "isEncrypted": false,
347
+ "containerFormat": "OVA",
348
+ "diskFormat": "VHDX",
349
+ "createdAt": null,
350
+ "minDisk": 3,
351
+ "minRam": 3,
352
+ "size": 3,
353
+ "userMetadata": {},
354
+ "imagePath": "string",
355
+ "imageUri": "string"
356
+ }
357
+ ],
358
+ "additionalArtifacts": [
359
+ {
360
+ "artifactPath": "string",
361
+ "artifactURI": "string",
362
+ "checksum": {
363
+ "algorithm": "string",
364
+ "hash": "string"
365
+ },
366
+ "artifactClassification": "TESTING",
367
+ "isEncrypted": true,
368
+ "nonManoArtifactSetId": "string",
369
+ "metadata": {}
370
+ },
371
+ {
372
+ "artifactPath": "string",
373
+ "artifactURI": "string",
374
+ "checksum": {
375
+ "algorithm": "string",
376
+ "hash": "string"
377
+ },
378
+ "artifactClassification": "HISTORY",
379
+ "isEncrypted": false,
380
+ "nonManoArtifactSetId": "string",
381
+ "metadata": {}
382
+ },
383
+ {
384
+ "artifactPath": "string",
385
+ "artifactURI": "string",
386
+ "checksum": {
387
+ "algorithm": "string",
388
+ "hash": "string"
389
+ },
390
+ "artifactClassification": "TESTING",
391
+ "isEncrypted": true,
392
+ "nonManoArtifactSetId": "string",
393
+ "metadata": {}
394
+ },
395
+ {
396
+ "artifactPath": "string",
397
+ "artifactURI": "string",
398
+ "checksum": {
399
+ "algorithm": "string",
400
+ "hash": "string"
401
+ },
402
+ "artifactClassification": "TESTING",
403
+ "isEncrypted": true,
404
+ "nonManoArtifactSetId": "string",
405
+ "metadata": {}
406
+ },
407
+ {
408
+ "artifactPath": "string",
409
+ "artifactURI": "string",
410
+ "checksum": {
411
+ "algorithm": "string",
412
+ "hash": "string"
413
+ },
414
+ "artifactClassification": "HISTORY",
415
+ "isEncrypted": true,
416
+ "nonManoArtifactSetId": "string",
417
+ "metadata": {}
418
+ }
419
+ ],
420
+ "onboardingState": "CREATED",
421
+ "operationalState": "ENABLED",
422
+ "usageState": "NOT_IN_USE",
423
+ "vnfmInfo": [
424
+ "string",
425
+ "string",
426
+ "string",
427
+ "string",
428
+ "string",
429
+ "string",
430
+ "string",
431
+ "string"
432
+ ],
433
+ "userDefinedData": {},
434
+ "onboardingFailureDetails": {
435
+ "type": "string",
436
+ "title": "string",
437
+ "status": 3,
438
+ "detail": "string",
439
+ "instance": "string"
440
+ },
441
+ "_links": {
442
+ "self": {
443
+ "href": "string"
444
+ },
445
+ "vnfd": {
446
+ "href": "string"
447
+ },
448
+ "packageContent": {
449
+ "href": "string"
450
+ }
451
+ }
452
+ }
453
+ ]
@@ -0,0 +1,204 @@
1
+ {
2
+ "id": "string",
3
+ "vnfdId": "string",
4
+ "vnfProvider": "string",
5
+ "vnfProductName": "string",
6
+ "vnfSoftwareVersion": "string",
7
+ "vnfdVersion": "string",
8
+ "compatibleSpecificationVersions": "string",
9
+ "checksum": {
10
+ "algorithm": "string",
11
+ "hash": "string"
12
+ },
13
+ "packageSecurityOption": "OPTION_2",
14
+ "signingCertificate": "string",
15
+ "softwareImages": [
16
+ {
17
+ "id": "string",
18
+ "name": "string",
19
+ "provider": "string",
20
+ "version": "string",
21
+ "checksum": {
22
+ "algorithm": "string",
23
+ "hash": "string"
24
+ },
25
+ "isEncrypted": true,
26
+ "containerFormat": "AKI",
27
+ "diskFormat": "VHDX",
28
+ "createdAt": null,
29
+ "minDisk": 9,
30
+ "minRam": 1,
31
+ "size": 3,
32
+ "userMetadata": {},
33
+ "imagePath": "string",
34
+ "imageUri": "string"
35
+ },
36
+ {
37
+ "id": "string",
38
+ "name": "string",
39
+ "provider": "string",
40
+ "version": "string",
41
+ "checksum": {
42
+ "algorithm": "string",
43
+ "hash": "string"
44
+ },
45
+ "isEncrypted": true,
46
+ "containerFormat": "OVF",
47
+ "diskFormat": "VDI",
48
+ "createdAt": null,
49
+ "minDisk": 5,
50
+ "minRam": 1,
51
+ "size": 4,
52
+ "userMetadata": {},
53
+ "imagePath": "string",
54
+ "imageUri": "string"
55
+ },
56
+ {
57
+ "id": "string",
58
+ "name": "string",
59
+ "provider": "string",
60
+ "version": "string",
61
+ "checksum": {
62
+ "algorithm": "string",
63
+ "hash": "string"
64
+ },
65
+ "isEncrypted": true,
66
+ "containerFormat": "OVF",
67
+ "diskFormat": "AKI",
68
+ "createdAt": null,
69
+ "minDisk": 8,
70
+ "minRam": 5,
71
+ "size": 5,
72
+ "userMetadata": {},
73
+ "imagePath": "string",
74
+ "imageUri": "string"
75
+ },
76
+ {
77
+ "id": "string",
78
+ "name": "string",
79
+ "provider": "string",
80
+ "version": "string",
81
+ "checksum": {
82
+ "algorithm": "string",
83
+ "hash": "string"
84
+ },
85
+ "isEncrypted": true,
86
+ "containerFormat": "BARE",
87
+ "diskFormat": "VHD",
88
+ "createdAt": null,
89
+ "minDisk": 3,
90
+ "minRam": 5,
91
+ "size": 5,
92
+ "userMetadata": {},
93
+ "imagePath": "string",
94
+ "imageUri": "string"
95
+ },
96
+ {
97
+ "id": "string",
98
+ "name": "string",
99
+ "provider": "string",
100
+ "version": "string",
101
+ "checksum": {
102
+ "algorithm": "string",
103
+ "hash": "string"
104
+ },
105
+ "isEncrypted": true,
106
+ "containerFormat": "DOCKER",
107
+ "diskFormat": "QCOW2",
108
+ "createdAt": null,
109
+ "minDisk": 8,
110
+ "minRam": 6,
111
+ "size": 4,
112
+ "userMetadata": {},
113
+ "imagePath": "string",
114
+ "imageUri": "string"
115
+ },
116
+ {
117
+ "id": "string",
118
+ "name": "string",
119
+ "provider": "string",
120
+ "version": "string",
121
+ "checksum": {
122
+ "algorithm": "string",
123
+ "hash": "string"
124
+ },
125
+ "isEncrypted": false,
126
+ "containerFormat": "ARI",
127
+ "diskFormat": "VHD",
128
+ "createdAt": null,
129
+ "minDisk": 2,
130
+ "minRam": 6,
131
+ "size": 6,
132
+ "userMetadata": {},
133
+ "imagePath": "string",
134
+ "imageUri": "string"
135
+ }
136
+ ],
137
+ "additionalArtifacts": [
138
+ {
139
+ "artifactPath": "string",
140
+ "artifactURI": "string",
141
+ "checksum": {
142
+ "algorithm": "string",
143
+ "hash": "string"
144
+ },
145
+ "artifactClassification": "TESTING",
146
+ "isEncrypted": false,
147
+ "nonManoArtifactSetId": "string",
148
+ "metadata": {}
149
+ },
150
+ {
151
+ "artifactPath": "string",
152
+ "artifactURI": "string",
153
+ "checksum": {
154
+ "algorithm": "string",
155
+ "hash": "string"
156
+ },
157
+ "artifactClassification": "TESTING",
158
+ "isEncrypted": true,
159
+ "nonManoArtifactSetId": "string",
160
+ "metadata": {}
161
+ },
162
+ {
163
+ "artifactPath": "string",
164
+ "artifactURI": "string",
165
+ "checksum": {
166
+ "algorithm": "string",
167
+ "hash": "string"
168
+ },
169
+ "artifactClassification": "LICENSE",
170
+ "isEncrypted": true,
171
+ "nonManoArtifactSetId": "string",
172
+ "metadata": {}
173
+ }
174
+ ],
175
+ "onboardingState": "ONBOARDED",
176
+ "operationalState": "ENABLED",
177
+ "usageState": "NOT_IN_USE",
178
+ "vnfmInfo": [
179
+ "string",
180
+ "string",
181
+ "string",
182
+ "string",
183
+ "string"
184
+ ],
185
+ "userDefinedData": {},
186
+ "onboardingFailureDetails": {
187
+ "type": "string",
188
+ "title": "string",
189
+ "status": 10,
190
+ "detail": "string",
191
+ "instance": "string"
192
+ },
193
+ "_links": {
194
+ "self": {
195
+ "href": "string"
196
+ },
197
+ "vnfd": {
198
+ "href": "string"
199
+ },
200
+ "packageContent": {
201
+ "href": "string"
202
+ }
203
+ }
204
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "artifact": {
3
+ "artifactUri": "string",
4
+ "overrideUri": "string",
5
+ "authType": "OAUTH2_CLIENT_CREDENTIALS",
6
+ "username": "string",
7
+ "password": "string",
8
+ "paramsOauth2ClientCredentials": {
9
+ "clientId": "string",
10
+ "clientPassword": "string",
11
+ "tokenEndpoint": "string"
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "operationalState": "DISABLED",
3
+ "userDefinedData": {}
4
+ }