@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,236 @@
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_1",
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": "DOCKER",
27
+ "diskFormat": "VHD",
28
+ "createdAt": null,
29
+ "minDisk": 2,
30
+ "minRam": 10,
31
+ "size": 1,
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": false,
46
+ "containerFormat": "OVF",
47
+ "diskFormat": "AKI",
48
+ "createdAt": null,
49
+ "minDisk": 4,
50
+ "minRam": 1,
51
+ "size": 3,
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": false,
66
+ "containerFormat": "OVF",
67
+ "diskFormat": "AKI",
68
+ "createdAt": null,
69
+ "minDisk": 2,
70
+ "minRam": 6,
71
+ "size": 9,
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": false,
86
+ "containerFormat": "ARI",
87
+ "diskFormat": "QCOW2",
88
+ "createdAt": null,
89
+ "minDisk": 9,
90
+ "minRam": 2,
91
+ "size": 1,
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": "BARE",
107
+ "diskFormat": "RAW",
108
+ "createdAt": null,
109
+ "minDisk": 9,
110
+ "minRam": 4,
111
+ "size": 7,
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": "OVF",
127
+ "diskFormat": "VMDK",
128
+ "createdAt": null,
129
+ "minDisk": 7,
130
+ "minRam": 9,
131
+ "size": 4,
132
+ "userMetadata": {},
133
+ "imagePath": "string",
134
+ "imageUri": "string"
135
+ },
136
+ {
137
+ "id": "string",
138
+ "name": "string",
139
+ "provider": "string",
140
+ "version": "string",
141
+ "checksum": {
142
+ "algorithm": "string",
143
+ "hash": "string"
144
+ },
145
+ "isEncrypted": true,
146
+ "containerFormat": "ARI",
147
+ "diskFormat": "QCOW2",
148
+ "createdAt": null,
149
+ "minDisk": 5,
150
+ "minRam": 7,
151
+ "size": 6,
152
+ "userMetadata": {},
153
+ "imagePath": "string",
154
+ "imageUri": "string"
155
+ },
156
+ {
157
+ "id": "string",
158
+ "name": "string",
159
+ "provider": "string",
160
+ "version": "string",
161
+ "checksum": {
162
+ "algorithm": "string",
163
+ "hash": "string"
164
+ },
165
+ "isEncrypted": false,
166
+ "containerFormat": "AKI",
167
+ "diskFormat": "QCOW2",
168
+ "createdAt": null,
169
+ "minDisk": 9,
170
+ "minRam": 1,
171
+ "size": 10,
172
+ "userMetadata": {},
173
+ "imagePath": "string",
174
+ "imageUri": "string"
175
+ },
176
+ {
177
+ "id": "string",
178
+ "name": "string",
179
+ "provider": "string",
180
+ "version": "string",
181
+ "checksum": {
182
+ "algorithm": "string",
183
+ "hash": "string"
184
+ },
185
+ "isEncrypted": true,
186
+ "containerFormat": "AMI",
187
+ "diskFormat": "RAW",
188
+ "createdAt": null,
189
+ "minDisk": 2,
190
+ "minRam": 9,
191
+ "size": 3,
192
+ "userMetadata": {},
193
+ "imagePath": "string",
194
+ "imageUri": "string"
195
+ }
196
+ ],
197
+ "additionalArtifacts": [
198
+ {
199
+ "artifactPath": "string",
200
+ "artifactURI": "string",
201
+ "checksum": {
202
+ "algorithm": "string",
203
+ "hash": "string"
204
+ },
205
+ "artifactClassification": "LICENSE",
206
+ "isEncrypted": false,
207
+ "nonManoArtifactSetId": "string",
208
+ "metadata": {}
209
+ }
210
+ ],
211
+ "onboardingState": "UPLOADING",
212
+ "operationalState": "ENABLED",
213
+ "usageState": "IN_USE",
214
+ "vnfmInfo": [
215
+ "string"
216
+ ],
217
+ "userDefinedData": {},
218
+ "onboardingFailureDetails": {
219
+ "type": "string",
220
+ "title": "string",
221
+ "status": 7,
222
+ "detail": "string",
223
+ "instance": "string"
224
+ },
225
+ "_links": {
226
+ "self": {
227
+ "href": "string"
228
+ },
229
+ "vnfd": {
230
+ "href": "string"
231
+ },
232
+ "packageContent": {
233
+ "href": "string"
234
+ }
235
+ }
236
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "artifact": {
3
+ "artifactUri": "string",
4
+ "overrideUri": "string",
5
+ "authType": "BASIC",
6
+ "username": "string",
7
+ "password": "string",
8
+ "paramsOauth2ClientCredentials": {
9
+ "clientId": "string",
10
+ "clientPassword": "string",
11
+ "tokenEndpoint": "string"
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "",
12
+ "enum": [
13
+ "getVnfPackages",
14
+ "postVnfPackages",
15
+ "getVnfPackagesVnfPkgId",
16
+ "deleteVnfPackagesVnfPkgId",
17
+ "patchVnfPackagesVnfPkgId",
18
+ "getVnfPackagesVnfPkgIdVnfd",
19
+ "getVnfPackagesVnfPkgIdExtArtifactsAccess",
20
+ "putVnfPackagesVnfPkgIdExtArtifactsAccess",
21
+ "getVnfPackagesVnfPkgIdManifest",
22
+ "getVnfPackagesVnfPkgIdPackageContent",
23
+ "putVnfPackagesVnfPkgIdPackageContent",
24
+ "getVnfPackagesVnfPkgIdArtifacts",
25
+ "postVnfPackagesVnfPkgIdPackageContentUploadFromUri",
26
+ "getVnfPackagesVnfPkgIdArtifactsArtifactPath"
27
+ ],
28
+ "external_name": "ph_request_type"
29
+ }
30
+ },
31
+ "definitions": {}
32
+ }
@@ -0,0 +1,289 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "postVnfSnapshotPackages",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages?{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/postVnfSnapshotPackages-default.json"
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "getVnfSnapshotPackages",
25
+ "protocol": "REST",
26
+ "method": "GET",
27
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages?{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/getVnfSnapshotPackages-default.json"
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "getVnfSnapshotPackagesVnfSnapshotPkgId",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{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/getVnfSnapshotPackagesVnfSnapshotPkgId-default.json"
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "patchVnfSnapshotPackagesVnfSnapshotPkgId",
67
+ "protocol": "REST",
68
+ "method": "PATCH",
69
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{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/patchVnfSnapshotPackagesVnfSnapshotPkgId-default.json"
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "deleteVnfSnapshotPackagesVnfSnapshotPkgId",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{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": "getVnfSnapshotPackagesVnfSnapshotPkgIdPackageContent",
107
+ "protocol": "REST",
108
+ "method": "GET",
109
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_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": "putVnfSnapshotPackagesVnfSnapshotPkgIdPackageContent",
128
+ "protocol": "REST",
129
+ "method": "PUT",
130
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_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": "postVnfSnapshotPackagesVnfSnapshotPkgIdPackageContentUploadFromUri",
148
+ "protocol": "REST",
149
+ "method": "POST",
150
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_content/upload_from_uri?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "requestDatatype": "JSON",
156
+ "responseDatatype": "JSON",
157
+ "headers": {},
158
+ "responseObjects": [
159
+ {
160
+ "type": "default",
161
+ "key": "",
162
+ "mockFile": ""
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "name": "postVnfSnapshotPackagesVnfSnapshotPkgIdPackageContentBuild",
168
+ "protocol": "REST",
169
+ "method": "POST",
170
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_content/build?{query}",
171
+ "requestSchema": "schema.json",
172
+ "responseSchema": "schema.json",
173
+ "timeout": 0,
174
+ "sendEmpty": false,
175
+ "requestDatatype": "JSON",
176
+ "responseDatatype": "JSON",
177
+ "headers": {},
178
+ "responseObjects": [
179
+ {
180
+ "type": "default",
181
+ "key": "",
182
+ "mockFile": ""
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ "name": "postVnfSnapshotPackagesVnfSnapshotPkgIdPackageContentExtract",
188
+ "protocol": "REST",
189
+ "method": "POST",
190
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_content/extract?{query}",
191
+ "requestSchema": "schema.json",
192
+ "responseSchema": "schema.json",
193
+ "timeout": 0,
194
+ "sendEmpty": false,
195
+ "requestDatatype": "JSON",
196
+ "responseDatatype": "JSON",
197
+ "headers": {},
198
+ "responseObjects": [
199
+ {
200
+ "type": "default",
201
+ "key": "",
202
+ "mockFile": ""
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "name": "postVnfSnapshotPackagesVnfSnapshotPkgIdPackageContentCancel",
208
+ "protocol": "REST",
209
+ "method": "POST",
210
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_content/cancel?{query}",
211
+ "requestSchema": "schema.json",
212
+ "responseSchema": "schema.json",
213
+ "timeout": 0,
214
+ "sendEmpty": false,
215
+ "requestDatatype": "JSON",
216
+ "responseDatatype": "JSON",
217
+ "headers": {},
218
+ "responseObjects": [
219
+ {
220
+ "type": "default",
221
+ "key": "",
222
+ "mockFile": ""
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "name": "getVnfSnapshotPackagesVnfSnapshotPkgIdExtArtifactsAccess",
228
+ "protocol": "REST",
229
+ "method": "GET",
230
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/ext_artifacts_access?{query}",
231
+ "requestSchema": "schema.json",
232
+ "responseSchema": "schema.json",
233
+ "timeout": 0,
234
+ "sendEmpty": false,
235
+ "sendGetBody": false,
236
+ "requestDatatype": "JSON",
237
+ "responseDatatype": "JSON",
238
+ "headers": {},
239
+ "responseObjects": [
240
+ {
241
+ "type": "default",
242
+ "key": "",
243
+ "mockFile": ""
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "name": "putVnfSnapshotPackagesVnfSnapshotPkgIdExtArtifactsAccess",
249
+ "protocol": "REST",
250
+ "method": "PUT",
251
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/ext_artifacts_access?{query}",
252
+ "requestSchema": "schema.json",
253
+ "responseSchema": "schema.json",
254
+ "timeout": 0,
255
+ "sendEmpty": false,
256
+ "requestDatatype": "JSON",
257
+ "responseDatatype": "JSON",
258
+ "headers": {},
259
+ "responseObjects": [
260
+ {
261
+ "type": "default",
262
+ "key": "",
263
+ "mockFile": ""
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "name": "getVnfSnapshotPackagesVnfSnapshotPkgIdArtifactsArtifactPath",
269
+ "protocol": "REST",
270
+ "method": "GET",
271
+ "entitypath": "{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/artifacts/{pathv2}?{query}",
272
+ "requestSchema": "schema.json",
273
+ "responseSchema": "schema.json",
274
+ "timeout": 0,
275
+ "sendEmpty": false,
276
+ "sendGetBody": false,
277
+ "requestDatatype": "JSON",
278
+ "responseDatatype": "JSON",
279
+ "headers": {},
280
+ "responseObjects": [
281
+ {
282
+ "type": "default",
283
+ "key": "",
284
+ "mockFile": ""
285
+ }
286
+ ]
287
+ }
288
+ ]
289
+ }