@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,210 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "postNsDescriptors",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": "mockdatafiles/postNsDescriptors-default.json"
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "getNsDescriptors",
25
+ "protocol": "REST",
26
+ "method": "GET",
27
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "sendGetBody": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": "mockdatafiles/getNsDescriptors-default.json"
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "getNsDescriptorsNsdInfoId",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "sendGetBody": false,
54
+ "requestDatatype": "JSON",
55
+ "responseDatatype": "JSON",
56
+ "headers": {},
57
+ "responseObjects": [
58
+ {
59
+ "type": "default",
60
+ "key": "",
61
+ "mockFile": "mockdatafiles/getNsDescriptorsNsdInfoId-default.json"
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "patchNsDescriptorsNsdInfoId",
67
+ "protocol": "REST",
68
+ "method": "PATCH",
69
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": "mockdatafiles/patchNsDescriptorsNsdInfoId-default.json"
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "deleteNsDescriptorsNsdInfoId",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "getNsDescriptorsNsdInfoIdNsdContent",
107
+ "protocol": "REST",
108
+ "method": "GET",
109
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}/nsd_content?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "sendGetBody": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "putNsDescriptorsNsdInfoIdNsdContent",
128
+ "protocol": "REST",
129
+ "method": "PUT",
130
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}/nsd_content?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "requestDatatype": "JSON",
136
+ "responseDatatype": "JSON",
137
+ "headers": {},
138
+ "responseObjects": [
139
+ {
140
+ "type": "default",
141
+ "key": "",
142
+ "mockFile": ""
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "getNsDescriptorsNsdInfoIdNsd",
148
+ "protocol": "REST",
149
+ "method": "GET",
150
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}/nsd?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "sendGetBody": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "getNsDescriptorsNsdInfoIdManifest",
169
+ "protocol": "REST",
170
+ "method": "GET",
171
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}/manifest?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "sendGetBody": false,
177
+ "requestDatatype": "JSON",
178
+ "responseDatatype": "JSON",
179
+ "headers": {},
180
+ "responseObjects": [
181
+ {
182
+ "type": "default",
183
+ "key": "",
184
+ "mockFile": ""
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "getNsDescriptorsNsdInfoIdArtifactsArtifactPath",
190
+ "protocol": "REST",
191
+ "method": "GET",
192
+ "entitypath": "{base_path}/{version}/nsd/v2/ns_descriptors/{pathv1}/artifacts/{pathv2}?{query}",
193
+ "requestSchema": "schema.json",
194
+ "responseSchema": "schema.json",
195
+ "timeout": 0,
196
+ "sendEmpty": false,
197
+ "sendGetBody": false,
198
+ "requestDatatype": "JSON",
199
+ "responseDatatype": "JSON",
200
+ "headers": {},
201
+ "responseObjects": [
202
+ {
203
+ "type": "default",
204
+ "key": "",
205
+ "mockFile": ""
206
+ }
207
+ ]
208
+ }
209
+ ]
210
+ }
@@ -0,0 +1,354 @@
1
+ [
2
+ {
3
+ "id": "string",
4
+ "nsdId": "string",
5
+ "nsdName": "string",
6
+ "nsdVersion": "string",
7
+ "nsdDesigner": "string",
8
+ "nsdInvariantId": "string",
9
+ "vnfPkgIds": [
10
+ "string",
11
+ "string",
12
+ "string",
13
+ "string",
14
+ "string",
15
+ "string",
16
+ "string",
17
+ "string",
18
+ "string",
19
+ "string"
20
+ ],
21
+ "pnfdInfoIds": [
22
+ "string",
23
+ "string",
24
+ "string",
25
+ "string",
26
+ "string",
27
+ "string",
28
+ "string",
29
+ "string"
30
+ ],
31
+ "nestedNsdInfoIds": [
32
+ "string"
33
+ ],
34
+ "archiveSecurityOption": "OPTION_2",
35
+ "signingCertificate": "string",
36
+ "artifacts": [
37
+ {
38
+ "artifactPath": "string",
39
+ "checksum": {
40
+ "algorithm": "string",
41
+ "hash": "string"
42
+ },
43
+ "metadata": {}
44
+ },
45
+ {
46
+ "artifactPath": "string",
47
+ "checksum": {
48
+ "algorithm": "string",
49
+ "hash": "string"
50
+ },
51
+ "metadata": {}
52
+ },
53
+ {
54
+ "artifactPath": "string",
55
+ "checksum": {
56
+ "algorithm": "string",
57
+ "hash": "string"
58
+ },
59
+ "metadata": {}
60
+ },
61
+ {
62
+ "artifactPath": "string",
63
+ "checksum": {
64
+ "algorithm": "string",
65
+ "hash": "string"
66
+ },
67
+ "metadata": {}
68
+ },
69
+ {
70
+ "artifactPath": "string",
71
+ "checksum": {
72
+ "algorithm": "string",
73
+ "hash": "string"
74
+ },
75
+ "metadata": {}
76
+ },
77
+ {
78
+ "artifactPath": "string",
79
+ "checksum": {
80
+ "algorithm": "string",
81
+ "hash": "string"
82
+ },
83
+ "metadata": {}
84
+ },
85
+ {
86
+ "artifactPath": "string",
87
+ "checksum": {
88
+ "algorithm": "string",
89
+ "hash": "string"
90
+ },
91
+ "metadata": {}
92
+ },
93
+ {
94
+ "artifactPath": "string",
95
+ "checksum": {
96
+ "algorithm": "string",
97
+ "hash": "string"
98
+ },
99
+ "metadata": {}
100
+ },
101
+ {
102
+ "artifactPath": "string",
103
+ "checksum": {
104
+ "algorithm": "string",
105
+ "hash": "string"
106
+ },
107
+ "metadata": {}
108
+ }
109
+ ],
110
+ "nsdOnboardingState": "PROCESSING",
111
+ "onboardingFailureDetails": {
112
+ "type": "string",
113
+ "title": "string",
114
+ "status": 9,
115
+ "detail": "string",
116
+ "instance": "string"
117
+ },
118
+ "nsdOperationalState": "DISABLED",
119
+ "nsdUsageState": "NOT_IN_USE",
120
+ "userDefinedData": {},
121
+ "_links": {
122
+ "self": {
123
+ "href": "string"
124
+ },
125
+ "nsd_content": {
126
+ "href": "string"
127
+ }
128
+ }
129
+ },
130
+ {
131
+ "id": "string",
132
+ "nsdId": "string",
133
+ "nsdName": "string",
134
+ "nsdVersion": "string",
135
+ "nsdDesigner": "string",
136
+ "nsdInvariantId": "string",
137
+ "vnfPkgIds": [
138
+ "string",
139
+ "string",
140
+ "string",
141
+ "string",
142
+ "string",
143
+ "string",
144
+ "string"
145
+ ],
146
+ "pnfdInfoIds": [
147
+ "string",
148
+ "string",
149
+ "string",
150
+ "string",
151
+ "string",
152
+ "string",
153
+ "string",
154
+ "string"
155
+ ],
156
+ "nestedNsdInfoIds": [
157
+ "string",
158
+ "string",
159
+ "string"
160
+ ],
161
+ "archiveSecurityOption": "OPTION_2",
162
+ "signingCertificate": "string",
163
+ "artifacts": [
164
+ {
165
+ "artifactPath": "string",
166
+ "checksum": {
167
+ "algorithm": "string",
168
+ "hash": "string"
169
+ },
170
+ "metadata": {}
171
+ },
172
+ {
173
+ "artifactPath": "string",
174
+ "checksum": {
175
+ "algorithm": "string",
176
+ "hash": "string"
177
+ },
178
+ "metadata": {}
179
+ },
180
+ {
181
+ "artifactPath": "string",
182
+ "checksum": {
183
+ "algorithm": "string",
184
+ "hash": "string"
185
+ },
186
+ "metadata": {}
187
+ },
188
+ {
189
+ "artifactPath": "string",
190
+ "checksum": {
191
+ "algorithm": "string",
192
+ "hash": "string"
193
+ },
194
+ "metadata": {}
195
+ },
196
+ {
197
+ "artifactPath": "string",
198
+ "checksum": {
199
+ "algorithm": "string",
200
+ "hash": "string"
201
+ },
202
+ "metadata": {}
203
+ },
204
+ {
205
+ "artifactPath": "string",
206
+ "checksum": {
207
+ "algorithm": "string",
208
+ "hash": "string"
209
+ },
210
+ "metadata": {}
211
+ },
212
+ {
213
+ "artifactPath": "string",
214
+ "checksum": {
215
+ "algorithm": "string",
216
+ "hash": "string"
217
+ },
218
+ "metadata": {}
219
+ },
220
+ {
221
+ "artifactPath": "string",
222
+ "checksum": {
223
+ "algorithm": "string",
224
+ "hash": "string"
225
+ },
226
+ "metadata": {}
227
+ },
228
+ {
229
+ "artifactPath": "string",
230
+ "checksum": {
231
+ "algorithm": "string",
232
+ "hash": "string"
233
+ },
234
+ "metadata": {}
235
+ }
236
+ ],
237
+ "nsdOnboardingState": "ONBOARDED",
238
+ "onboardingFailureDetails": {
239
+ "type": "string",
240
+ "title": "string",
241
+ "status": 3,
242
+ "detail": "string",
243
+ "instance": "string"
244
+ },
245
+ "nsdOperationalState": "ENABLED",
246
+ "nsdUsageState": "IN_USE",
247
+ "userDefinedData": {},
248
+ "_links": {
249
+ "self": {
250
+ "href": "string"
251
+ },
252
+ "nsd_content": {
253
+ "href": "string"
254
+ }
255
+ }
256
+ },
257
+ {
258
+ "id": "string",
259
+ "nsdId": "string",
260
+ "nsdName": "string",
261
+ "nsdVersion": "string",
262
+ "nsdDesigner": "string",
263
+ "nsdInvariantId": "string",
264
+ "vnfPkgIds": [
265
+ "string",
266
+ "string",
267
+ "string",
268
+ "string"
269
+ ],
270
+ "pnfdInfoIds": [
271
+ "string",
272
+ "string",
273
+ "string",
274
+ "string",
275
+ "string",
276
+ "string",
277
+ "string",
278
+ "string",
279
+ "string"
280
+ ],
281
+ "nestedNsdInfoIds": [
282
+ "string",
283
+ "string",
284
+ "string",
285
+ "string",
286
+ "string",
287
+ "string",
288
+ "string"
289
+ ],
290
+ "archiveSecurityOption": "OPTION_2",
291
+ "signingCertificate": "string",
292
+ "artifacts": [
293
+ {
294
+ "artifactPath": "string",
295
+ "checksum": {
296
+ "algorithm": "string",
297
+ "hash": "string"
298
+ },
299
+ "metadata": {}
300
+ },
301
+ {
302
+ "artifactPath": "string",
303
+ "checksum": {
304
+ "algorithm": "string",
305
+ "hash": "string"
306
+ },
307
+ "metadata": {}
308
+ },
309
+ {
310
+ "artifactPath": "string",
311
+ "checksum": {
312
+ "algorithm": "string",
313
+ "hash": "string"
314
+ },
315
+ "metadata": {}
316
+ },
317
+ {
318
+ "artifactPath": "string",
319
+ "checksum": {
320
+ "algorithm": "string",
321
+ "hash": "string"
322
+ },
323
+ "metadata": {}
324
+ },
325
+ {
326
+ "artifactPath": "string",
327
+ "checksum": {
328
+ "algorithm": "string",
329
+ "hash": "string"
330
+ },
331
+ "metadata": {}
332
+ }
333
+ ],
334
+ "nsdOnboardingState": "PROCESSING",
335
+ "onboardingFailureDetails": {
336
+ "type": "string",
337
+ "title": "string",
338
+ "status": 5,
339
+ "detail": "string",
340
+ "instance": "string"
341
+ },
342
+ "nsdOperationalState": "DISABLED",
343
+ "nsdUsageState": "IN_USE",
344
+ "userDefinedData": {},
345
+ "_links": {
346
+ "self": {
347
+ "href": "string"
348
+ },
349
+ "nsd_content": {
350
+ "href": "string"
351
+ }
352
+ }
353
+ }
354
+ ]
@@ -0,0 +1,101 @@
1
+ {
2
+ "id": "string",
3
+ "nsdId": "string",
4
+ "nsdName": "string",
5
+ "nsdVersion": "string",
6
+ "nsdDesigner": "string",
7
+ "nsdInvariantId": "string",
8
+ "vnfPkgIds": [
9
+ "string",
10
+ "string",
11
+ "string",
12
+ "string"
13
+ ],
14
+ "pnfdInfoIds": [
15
+ "string",
16
+ "string",
17
+ "string",
18
+ "string",
19
+ "string",
20
+ "string",
21
+ "string",
22
+ "string"
23
+ ],
24
+ "nestedNsdInfoIds": [
25
+ "string",
26
+ "string",
27
+ "string",
28
+ "string"
29
+ ],
30
+ "archiveSecurityOption": "OPTION_2",
31
+ "signingCertificate": "string",
32
+ "artifacts": [
33
+ {
34
+ "artifactPath": "string",
35
+ "checksum": {
36
+ "algorithm": "string",
37
+ "hash": "string"
38
+ },
39
+ "metadata": {}
40
+ },
41
+ {
42
+ "artifactPath": "string",
43
+ "checksum": {
44
+ "algorithm": "string",
45
+ "hash": "string"
46
+ },
47
+ "metadata": {}
48
+ },
49
+ {
50
+ "artifactPath": "string",
51
+ "checksum": {
52
+ "algorithm": "string",
53
+ "hash": "string"
54
+ },
55
+ "metadata": {}
56
+ },
57
+ {
58
+ "artifactPath": "string",
59
+ "checksum": {
60
+ "algorithm": "string",
61
+ "hash": "string"
62
+ },
63
+ "metadata": {}
64
+ },
65
+ {
66
+ "artifactPath": "string",
67
+ "checksum": {
68
+ "algorithm": "string",
69
+ "hash": "string"
70
+ },
71
+ "metadata": {}
72
+ },
73
+ {
74
+ "artifactPath": "string",
75
+ "checksum": {
76
+ "algorithm": "string",
77
+ "hash": "string"
78
+ },
79
+ "metadata": {}
80
+ }
81
+ ],
82
+ "nsdOnboardingState": "CREATED",
83
+ "onboardingFailureDetails": {
84
+ "type": "string",
85
+ "title": "string",
86
+ "status": 2,
87
+ "detail": "string",
88
+ "instance": "string"
89
+ },
90
+ "nsdOperationalState": "DISABLED",
91
+ "nsdUsageState": "IN_USE",
92
+ "userDefinedData": {},
93
+ "_links": {
94
+ "self": {
95
+ "href": "string"
96
+ },
97
+ "nsd_content": {
98
+ "href": "string"
99
+ }
100
+ }
101
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "nsdOperationalState": "DISABLED",
3
+ "userDefinedData": [
4
+ {},
5
+ {},
6
+ {},
7
+ {},
8
+ {}
9
+ ]
10
+ }