@itentialopensource/adapter-etsi_sol003 0.2.0 → 0.3.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.
- package/CALLS.md +538 -0
- package/CHANGELOG.md +16 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/adapter.js +157 -329
- package/adapterBase.js +549 -879
- package/changelogs/changelog.md +16 -0
- package/metadata.json +49 -0
- package/package.json +23 -25
- package/pronghorn.json +981 -642
- package/propertiesSchema.json +431 -31
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +7598 -0
- package/report/adapter-openapi.yaml +5267 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507408979.json +120 -0
- package/report/updateReport1692202442500.json +120 -0
- package/report/updateReport1694460725963.json +120 -0
- package/report/updateReport1698420524874.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -112
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
package/CALLS.md
CHANGED
|
@@ -165,5 +165,543 @@ Specific adapter calls are built based on the API of the ETSI Standard sol003. T
|
|
|
165
165
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
166
166
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
167
167
|
</tr>
|
|
168
|
+
<tr>
|
|
169
|
+
<td style="padding:15px">getApiVersions(callback)</td>
|
|
170
|
+
<td style="padding:15px">Retrieve API version information</td>
|
|
171
|
+
<td style="padding:15px">{base_path}/{version}/vrqan/v1/api_versions?{query}</td>
|
|
172
|
+
<td style="padding:15px">Yes</td>
|
|
173
|
+
</tr>
|
|
174
|
+
<tr>
|
|
175
|
+
<td style="padding:15px">postSubscriptions(body, callback)</td>
|
|
176
|
+
<td style="padding:15px">Subscribe.
|
|
177
|
+
The POST method creates a new subscription.
|
|
178
|
+
This method shall follow the provisions spec</td>
|
|
179
|
+
<td style="padding:15px">{base_path}/{version}/vrqan/v1/subscriptions?{query}</td>
|
|
180
|
+
<td style="padding:15px">Yes</td>
|
|
181
|
+
</tr>
|
|
182
|
+
<tr>
|
|
183
|
+
<td style="padding:15px">getSubscriptions(filter, nextpageOpaqueMarker, callback)</td>
|
|
184
|
+
<td style="padding:15px">Query Subscription Information.
|
|
185
|
+
The GET method queries the list of active subscriptions of the func</td>
|
|
186
|
+
<td style="padding:15px">{base_path}/{version}/vrqan/v1/subscriptions?{query}</td>
|
|
187
|
+
<td style="padding:15px">Yes</td>
|
|
188
|
+
</tr>
|
|
189
|
+
<tr>
|
|
190
|
+
<td style="padding:15px">getSubscriptionsSubscriptionId(subscriptionId, callback)</td>
|
|
191
|
+
<td style="padding:15px">Query Subscription Information.
|
|
192
|
+
The GET method reads an individual subscription.
|
|
193
|
+
This method shall</td>
|
|
194
|
+
<td style="padding:15px">{base_path}/{version}/vrqan/v1/subscriptions/{pathv1}?{query}</td>
|
|
195
|
+
<td style="padding:15px">Yes</td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td style="padding:15px">deleteSubscriptionsSubscriptionId(subscriptionId, callback)</td>
|
|
199
|
+
<td style="padding:15px">Terminate subscription.
|
|
200
|
+
The DELETE method terminates an individual subscription.
|
|
201
|
+
This method shall</td>
|
|
202
|
+
<td style="padding:15px">{base_path}/{version}/vrqan/v1/subscriptions/{pathv1}?{query}</td>
|
|
203
|
+
<td style="padding:15px">Yes</td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">getAlarms(filter, nextpageOpaqueMarker, callback)</td>
|
|
207
|
+
<td style="padding:15px">Get Alarm List.
|
|
208
|
+
The API consumer can use this method to retrieve information about the alarm list.
|
|
209
|
+
</td>
|
|
210
|
+
<td style="padding:15px">{base_path}/{version}/vnffm/v1/alarms?{query}</td>
|
|
211
|
+
<td style="padding:15px">Yes</td>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<td style="padding:15px">getAlarmsAlarmId(alarmId, callback)</td>
|
|
215
|
+
<td style="padding:15px">The API consumer can use this method to read an individual alarm.
|
|
216
|
+
This method shall follow the prov</td>
|
|
217
|
+
<td style="padding:15px">{base_path}/{version}/vnffm/v1/alarms/{pathv1}?{query}</td>
|
|
218
|
+
<td style="padding:15px">Yes</td>
|
|
219
|
+
</tr>
|
|
220
|
+
<tr>
|
|
221
|
+
<td style="padding:15px">patchAlarmsAlarmId(alarmId, body, callback)</td>
|
|
222
|
+
<td style="padding:15px">Acknowledge Alarm.
|
|
223
|
+
This method modifies an "Individual alarm" resource.
|
|
224
|
+
This method shall follow th</td>
|
|
225
|
+
<td style="padding:15px">{base_path}/{version}/vnffm/v1/alarms/{pathv1}?{query}</td>
|
|
226
|
+
<td style="padding:15px">Yes</td>
|
|
227
|
+
</tr>
|
|
228
|
+
<tr>
|
|
229
|
+
<td style="padding:15px">getIndicators(filter, nextpageOpaqueMarker, callback)</td>
|
|
230
|
+
<td style="padding:15px">Get Indicator Value.
|
|
231
|
+
The GET method queries multiple VNF indicators.
|
|
232
|
+
This method shall follow the p</td>
|
|
233
|
+
<td style="padding:15px">{base_path}/{version}/vnfind/v1/indicators?{query}</td>
|
|
234
|
+
<td style="padding:15px">Yes</td>
|
|
235
|
+
</tr>
|
|
236
|
+
<tr>
|
|
237
|
+
<td style="padding:15px">getIndicatorsVnfInstanceId(vnfInstanceId, filter, nextpageOpaqueMarker, callback)</td>
|
|
238
|
+
<td style="padding:15px">Get Indicator Value.
|
|
239
|
+
The GET method queries multiple VNF indicators related to a VNF instance.
|
|
240
|
+
This</td>
|
|
241
|
+
<td style="padding:15px">{base_path}/{version}/vnfind/v1/indicators/{pathv1}?{query}</td>
|
|
242
|
+
<td style="padding:15px">Yes</td>
|
|
243
|
+
</tr>
|
|
244
|
+
<tr>
|
|
245
|
+
<td style="padding:15px">getIndicatorsVnfInstanceIdIndicatorId(indicatorId, vnfInstanceId, callback)</td>
|
|
246
|
+
<td style="padding:15px">Get Indicator Value.
|
|
247
|
+
The GET method reads a VNF indicator.
|
|
248
|
+
This method shall follow the provisions</td>
|
|
249
|
+
<td style="padding:15px">{base_path}/{version}/vnfind/v1/indicators/{pathv1}/{pathv2}?{query}</td>
|
|
250
|
+
<td style="padding:15px">Yes</td>
|
|
251
|
+
</tr>
|
|
252
|
+
<tr>
|
|
253
|
+
<td style="padding:15px">getIndicatorsSubscriptionsSubscriptionId(subscriptionId, callback)</td>
|
|
254
|
+
<td style="padding:15px">Query Subscription Information.
|
|
255
|
+
The GET method reads an individual subscription.
|
|
256
|
+
This method shall</td>
|
|
257
|
+
<td style="padding:15px">{base_path}/{version}/vnfind/v1/indicators/subscriptions/{pathv1}?{query}</td>
|
|
258
|
+
<td style="padding:15px">Yes</td>
|
|
259
|
+
</tr>
|
|
260
|
+
<tr>
|
|
261
|
+
<td style="padding:15px">deleteIndicatorsSubscriptionsSubscriptionId(subscriptionId, callback)</td>
|
|
262
|
+
<td style="padding:15px">Terminate Subscription.
|
|
263
|
+
The DELETE method terminates an individual subscription.
|
|
264
|
+
This method shall</td>
|
|
265
|
+
<td style="padding:15px">{base_path}/{version}/vnfind/v1/indicators/subscriptions/{pathv1}?{query}</td>
|
|
266
|
+
<td style="padding:15px">Yes</td>
|
|
267
|
+
</tr>
|
|
268
|
+
<tr>
|
|
269
|
+
<td style="padding:15px">postVnfInstances(body, callback)</td>
|
|
270
|
+
<td style="padding:15px">The POST method creates a new VNF instance resource based on a VNF package that is onboarded and in</td>
|
|
271
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances?{query}</td>
|
|
272
|
+
<td style="padding:15px">Yes</td>
|
|
273
|
+
</tr>
|
|
274
|
+
<tr>
|
|
275
|
+
<td style="padding:15px">getVnfInstances(filter, allFields, fields, excludeFields, excludeDefault, nextpageOpaqueMarker, callback)</td>
|
|
276
|
+
<td style="padding:15px">Query VNF.
|
|
277
|
+
The GET method queries information about multiple VNF instances.
|
|
278
|
+
</td>
|
|
279
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances?{query}</td>
|
|
280
|
+
<td style="padding:15px">Yes</td>
|
|
281
|
+
</tr>
|
|
282
|
+
<tr>
|
|
283
|
+
<td style="padding:15px">getVnfInstancesVnfInstanceId(vnfInstanceId, callback)</td>
|
|
284
|
+
<td style="padding:15px">Query VNF.
|
|
285
|
+
|
|
286
|
+
The GET method retrieves information about a VNF instance by reading an "Individual VNF</td>
|
|
287
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}?{query}</td>
|
|
288
|
+
<td style="padding:15px">Yes</td>
|
|
289
|
+
</tr>
|
|
290
|
+
<tr>
|
|
291
|
+
<td style="padding:15px">patchVnfInstancesVnfInstanceId(vnfInstanceId, body, callback)</td>
|
|
292
|
+
<td style="padding:15px">Modify VNF Information.
|
|
293
|
+
This method modifies an "Individual VNF instance" resource.
|
|
294
|
+
Changes to the</td>
|
|
295
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}?{query}</td>
|
|
296
|
+
<td style="padding:15px">Yes</td>
|
|
297
|
+
</tr>
|
|
298
|
+
<tr>
|
|
299
|
+
<td style="padding:15px">deleteVnfInstancesVnfInstanceId(vnfInstanceId, callback)</td>
|
|
300
|
+
<td style="padding:15px">Delete VNF Identifier.
|
|
301
|
+
This method deletes an "Individual VNF instance" resource.
|
|
302
|
+
This method shall</td>
|
|
303
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}?{query}</td>
|
|
304
|
+
<td style="padding:15px">Yes</td>
|
|
305
|
+
</tr>
|
|
306
|
+
<tr>
|
|
307
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdInstantiate(vnfInstanceId, body, callback)</td>
|
|
308
|
+
<td style="padding:15px">Instantiate VNF.
|
|
309
|
+
The POST method instantiates a VNF instance.
|
|
310
|
+
This method shall follow the provisio</td>
|
|
311
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/instantiate?{query}</td>
|
|
312
|
+
<td style="padding:15px">Yes</td>
|
|
313
|
+
</tr>
|
|
314
|
+
<tr>
|
|
315
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdScale(vnfInstanceId, body, callback)</td>
|
|
316
|
+
<td style="padding:15px">Scale VNF.
|
|
317
|
+
The POST method requests to scale a VNF instance resource incrementally.
|
|
318
|
+
This method sha</td>
|
|
319
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/scale?{query}</td>
|
|
320
|
+
<td style="padding:15px">Yes</td>
|
|
321
|
+
</tr>
|
|
322
|
+
<tr>
|
|
323
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdScaleToLevel(vnfInstanceId, body, callback)</td>
|
|
324
|
+
<td style="padding:15px">Scale VNF to Level.
|
|
325
|
+
The POST method requests to scale a VNF instance resource to a target level.
|
|
326
|
+
Th</td>
|
|
327
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/scale_to_level?{query}</td>
|
|
328
|
+
<td style="padding:15px">Yes</td>
|
|
329
|
+
</tr>
|
|
330
|
+
<tr>
|
|
331
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdChangeFlavour(vnfInstanceId, body, callback)</td>
|
|
332
|
+
<td style="padding:15px">Change VNF Flavour.
|
|
333
|
+
This method shall follow the provisions specified in the tables 5.4.7.3.1-1 and</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/change_flavour?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdTerminate(vnfInstanceId, body, callback)</td>
|
|
339
|
+
<td style="padding:15px">Terminate VNF.
|
|
340
|
+
The POST method triggers the VNFM to terminate a VNF instance and to request to the</td>
|
|
341
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/terminate?{query}</td>
|
|
342
|
+
<td style="padding:15px">Yes</td>
|
|
343
|
+
</tr>
|
|
344
|
+
<tr>
|
|
345
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdHeal(vnfInstanceId, body, callback)</td>
|
|
346
|
+
<td style="padding:15px">Heal VNF.
|
|
347
|
+
The POST method requests to heal a VNF instance.
|
|
348
|
+
This method shall follow the provisions</td>
|
|
349
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/heal?{query}</td>
|
|
350
|
+
<td style="padding:15px">Yes</td>
|
|
351
|
+
</tr>
|
|
352
|
+
<tr>
|
|
353
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdOperate(vnfInstanceId, body, callback)</td>
|
|
354
|
+
<td style="padding:15px">Operate VNF.
|
|
355
|
+
The POST method changes the operational state of a VNF instance resource.
|
|
356
|
+
This method</td>
|
|
357
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/operate?{query}</td>
|
|
358
|
+
<td style="padding:15px">Yes</td>
|
|
359
|
+
</tr>
|
|
360
|
+
<tr>
|
|
361
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdChangeExtConn(vnfInstanceId, body, callback)</td>
|
|
362
|
+
<td style="padding:15px">Change External VNF Connectivity.
|
|
363
|
+
The POST method changes the external connectivity of a VNF instan</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/change_ext_conn?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdChangeVnfpkg(vnfInstanceId, body, callback)</td>
|
|
369
|
+
<td style="padding:15px">The POST method changes the current VNF package on which the VNF instance is based.
|
|
370
|
+
This method sha</td>
|
|
371
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/change_vnfpkg?{query}</td>
|
|
372
|
+
<td style="padding:15px">Yes</td>
|
|
373
|
+
</tr>
|
|
374
|
+
<tr>
|
|
375
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdCreateSnapshot(vnfInstanceId, body, callback)</td>
|
|
376
|
+
<td style="padding:15px">The POST method requests taking a snapshot a VNF instance and populating a
|
|
377
|
+
previously created VNF</td>
|
|
378
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/create_snapshot?{query}</td>
|
|
379
|
+
<td style="padding:15px">Yes</td>
|
|
380
|
+
</tr>
|
|
381
|
+
<tr>
|
|
382
|
+
<td style="padding:15px">postVnfInstancesVnfInstanceIdRevertToSnapshot(vnfInstanceId, body, callback)</td>
|
|
383
|
+
<td style="padding:15px">The POST method requests reverting a VNF instance to a VNF snapshot.
|
|
384
|
+
This method shall follow the p</td>
|
|
385
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_instances/{pathv1}/revert_to_snapshot?{query}</td>
|
|
386
|
+
<td style="padding:15px">Yes</td>
|
|
387
|
+
</tr>
|
|
388
|
+
<tr>
|
|
389
|
+
<td style="padding:15px">getVnfLcmOpOccs(filter, allFields, fields, excludeFields, excludeDefault, nextpageOpaqueMarker, callback)</td>
|
|
390
|
+
<td style="padding:15px">Get Operation Status.
|
|
391
|
+
The API consumer can use this method to query status information about multip</td>
|
|
392
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs?{query}</td>
|
|
393
|
+
<td style="padding:15px">Yes</td>
|
|
394
|
+
</tr>
|
|
395
|
+
<tr>
|
|
396
|
+
<td style="padding:15px">getVnfLcmOpOccsVnfLcmOpOccId(vnfLcmOpOccId, callback)</td>
|
|
397
|
+
<td style="padding:15px">Get Operation Status.
|
|
398
|
+
The API consumer can use this method to retrieve status information about a V</td>
|
|
399
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs/{pathv1}?{query}</td>
|
|
400
|
+
<td style="padding:15px">Yes</td>
|
|
401
|
+
</tr>
|
|
402
|
+
<tr>
|
|
403
|
+
<td style="padding:15px">postVnfLcmOpOccsVnfLcmOpOccIdRetry(vnfLcmOpOccId, callback)</td>
|
|
404
|
+
<td style="padding:15px">The POST method initiates retrying a VNF lifecycle operation if that operation
|
|
405
|
+
has experienced a te</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs/{pathv1}/retry?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">postVnfLcmOpOccsVnfLcmOpOccIdRollback(vnfLcmOpOccId, callback)</td>
|
|
411
|
+
<td style="padding:15px">The POST method initiates rolling back a VNF lifecycle operation if that operation
|
|
412
|
+
has experienced</td>
|
|
413
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs/{pathv1}/rollback?{query}</td>
|
|
414
|
+
<td style="padding:15px">Yes</td>
|
|
415
|
+
</tr>
|
|
416
|
+
<tr>
|
|
417
|
+
<td style="padding:15px">postVnfLcmOpOccsVnfLcmOpOccIdFail(vnfLcmOpOccId, callback)</td>
|
|
418
|
+
<td style="padding:15px">The POST method marks a VNF lifecycle management operation occurrence as "finally failed"
|
|
419
|
+
if that o</td>
|
|
420
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs/{pathv1}/fail?{query}</td>
|
|
421
|
+
<td style="padding:15px">Yes</td>
|
|
422
|
+
</tr>
|
|
423
|
+
<tr>
|
|
424
|
+
<td style="padding:15px">postVnfLcmOpOccsVnfLcmOpOccIdCancel(vnfLcmOpOccId, callback)</td>
|
|
425
|
+
<td style="padding:15px">The POST method initiates cancelling an ongoing VNF lifecycle operation while
|
|
426
|
+
it is being executed</td>
|
|
427
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_lcm_op_occs/{pathv1}/cancel?{query}</td>
|
|
428
|
+
<td style="padding:15px">Yes</td>
|
|
429
|
+
</tr>
|
|
430
|
+
<tr>
|
|
431
|
+
<td style="padding:15px">postVnfSnapshots(body, callback)</td>
|
|
432
|
+
<td style="padding:15px">The POST method creates a new "Individual VNF snapshot" resource.
|
|
433
|
+
|
|
434
|
+
As a result of successfully exec</td>
|
|
435
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots?{query}</td>
|
|
436
|
+
<td style="padding:15px">Yes</td>
|
|
437
|
+
</tr>
|
|
438
|
+
<tr>
|
|
439
|
+
<td style="padding:15px">getVnfSnapshots(filter, allFields, fields, excludeFields, excludeDefault, nextpageOpaqueMarker, callback)</td>
|
|
440
|
+
<td style="padding:15px">The GET method queries information about multiple VNF snapshots. This method shall follow the provi</td>
|
|
441
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots?{query}</td>
|
|
442
|
+
<td style="padding:15px">Yes</td>
|
|
443
|
+
</tr>
|
|
444
|
+
<tr>
|
|
445
|
+
<td style="padding:15px">getVnfSnapshotsVnfSnapshotInfoId(vnfSnapshotInfoId, callback)</td>
|
|
446
|
+
<td style="padding:15px">The GET method retrieves information about a VNF snapshot by reading an "Individual VNF snapshot"
|
|
447
|
+
</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots/{pathv1}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">patchVnfSnapshotsVnfSnapshotInfoId(vnfSnapshotInfoId, body, callback)</td>
|
|
453
|
+
<td style="padding:15px">This method modifies an "Individual VNF snapshot" resource.
|
|
454
|
+
|
|
455
|
+
Changes are applied to the VNF snapsho</td>
|
|
456
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots/{pathv1}?{query}</td>
|
|
457
|
+
<td style="padding:15px">Yes</td>
|
|
458
|
+
</tr>
|
|
459
|
+
<tr>
|
|
460
|
+
<td style="padding:15px">deleteVnfSnapshotsVnfSnapshotInfoId(vnfSnapshotInfoId, callback)</td>
|
|
461
|
+
<td style="padding:15px">This method deletes an "Individual VNF snapshot" resource and the associated VNF snapshot
|
|
462
|
+
informat</td>
|
|
463
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots/{pathv1}?{query}</td>
|
|
464
|
+
<td style="padding:15px">Yes</td>
|
|
465
|
+
</tr>
|
|
466
|
+
<tr>
|
|
467
|
+
<td style="padding:15px">getVnfSnapshotsVnfSnapshotInfoIdVnfStateSnapshot(vnfSnapshotInfoId, callback)</td>
|
|
468
|
+
<td style="padding:15px">The GET method fetches the content of the VNF state snapshot.
|
|
469
|
+
This method shall follow the provisi</td>
|
|
470
|
+
<td style="padding:15px">{base_path}/{version}/vnflcm/v1/vnf_snapshots/{pathv1}/vnf_state_snapshot?{query}</td>
|
|
471
|
+
<td style="padding:15px">Yes</td>
|
|
472
|
+
</tr>
|
|
473
|
+
<tr>
|
|
474
|
+
<td style="padding:15px">postGrants(body, callback)</td>
|
|
475
|
+
<td style="padding:15px">Grant Lifecycle Operation.
|
|
476
|
+
The POST method requests a grant for a particular VNF lifecycle operatio</td>
|
|
477
|
+
<td style="padding:15px">{base_path}/{version}/grant/v1/grants?{query}</td>
|
|
478
|
+
<td style="padding:15px">Yes</td>
|
|
479
|
+
</tr>
|
|
480
|
+
<tr>
|
|
481
|
+
<td style="padding:15px">getGrantsGrantId(grantId, callback)</td>
|
|
482
|
+
<td style="padding:15px">Grant Lifecycle Operation.
|
|
483
|
+
The GET method reads a grant.
|
|
484
|
+
This method shall follow the provisions sp</td>
|
|
485
|
+
<td style="padding:15px">{base_path}/{version}/grant/v1/grants/{pathv1}?{query}</td>
|
|
486
|
+
<td style="padding:15px">Yes</td>
|
|
487
|
+
</tr>
|
|
488
|
+
<tr>
|
|
489
|
+
<td style="padding:15px">getOnboardedVnfPackages(filter, allFields, fields, excludeFields, excludeDefault, nextpageOpaqueMarker, callback)</td>
|
|
490
|
+
<td style="padding:15px">Query VNF Package Info.
|
|
491
|
+
The GET method queries the information of the VNF packages matching the fil</td>
|
|
492
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages?{query}</td>
|
|
493
|
+
<td style="padding:15px">Yes</td>
|
|
494
|
+
</tr>
|
|
495
|
+
<tr>
|
|
496
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdId(vnfdId, callback)</td>
|
|
497
|
+
<td style="padding:15px">Query VNF Package Info.
|
|
498
|
+
The GET method reads the information of an individual VNF package.
|
|
499
|
+
This met</td>
|
|
500
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}?{query}</td>
|
|
501
|
+
<td style="padding:15px">Yes</td>
|
|
502
|
+
</tr>
|
|
503
|
+
<tr>
|
|
504
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdIdVnfd(vnfdId, includeSignature, callback)</td>
|
|
505
|
+
<td style="padding:15px">Query VNF Package Info
|
|
506
|
+
|
|
507
|
+
The GET method reads the content of the VNFD within a VNF package.
|
|
508
|
+
The VNFD</td>
|
|
509
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}/vnfd?{query}</td>
|
|
510
|
+
<td style="padding:15px">Yes</td>
|
|
511
|
+
</tr>
|
|
512
|
+
<tr>
|
|
513
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdIdManifest(vnfdId, includeSignature, callback)</td>
|
|
514
|
+
<td style="padding:15px">Query VNF Package Manifest
|
|
515
|
+
|
|
516
|
+
The GET method reads the content of the manifest within a VNF package.
|
|
517
|
+
</td>
|
|
518
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}/manifest?{query}</td>
|
|
519
|
+
<td style="padding:15px">Yes</td>
|
|
520
|
+
</tr>
|
|
521
|
+
<tr>
|
|
522
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdIdPackageContent(vnfdId, callback)</td>
|
|
523
|
+
<td style="padding:15px">Fetch VNF Package.
|
|
524
|
+
The GET method fetches the content of a VNF package identified by the
|
|
525
|
+
VNF packag</td>
|
|
526
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}/package_content?{query}</td>
|
|
527
|
+
<td style="padding:15px">Yes</td>
|
|
528
|
+
</tr>
|
|
529
|
+
<tr>
|
|
530
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdIdArtifacts(vnfdId, callback)</td>
|
|
531
|
+
<td style="padding:15px">Fetch VNF Package Artifacts.
|
|
532
|
+
|
|
533
|
+
The GET method shall return an archive that contains a set of artifac</td>
|
|
534
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}/artifacts?{query}</td>
|
|
535
|
+
<td style="padding:15px">Yes</td>
|
|
536
|
+
</tr>
|
|
537
|
+
<tr>
|
|
538
|
+
<td style="padding:15px">getOnboardedVnfPackagesVnfdIdArtifactsArtifactPath(artifactPath, vnfdId, includeSignature, callback)</td>
|
|
539
|
+
<td style="padding:15px">Fetch VNF Package Artifacts.
|
|
540
|
+
The GET method fetches the content of an artifact within a VNF package</td>
|
|
541
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/onboarded_vnf_packages/{pathv1}/artifacts/{pathv2}?{query}</td>
|
|
542
|
+
<td style="padding:15px">Yes</td>
|
|
543
|
+
</tr>
|
|
544
|
+
<tr>
|
|
545
|
+
<td style="padding:15px">getVnfPackagesVnfPkgId(vnfPkgId, includeSignature, callback)</td>
|
|
546
|
+
<td style="padding:15px">Query VNF Package Info.
|
|
547
|
+
The GET method reads the information of an individual VNF package.
|
|
548
|
+
This met</td>
|
|
549
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}?{query}</td>
|
|
550
|
+
<td style="padding:15px">Yes</td>
|
|
551
|
+
</tr>
|
|
552
|
+
<tr>
|
|
553
|
+
<td style="padding:15px">getVnfPackagesVnfPkgIdVnfd(vnfPkgId, includeSignature, callback)</td>
|
|
554
|
+
<td style="padding:15px">Query VNF Package Info
|
|
555
|
+
|
|
556
|
+
The GET method reads the content of the VNFD within a VNF package.
|
|
557
|
+
The VNFD</td>
|
|
558
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}/vnfd?{query}</td>
|
|
559
|
+
<td style="padding:15px">Yes</td>
|
|
560
|
+
</tr>
|
|
561
|
+
<tr>
|
|
562
|
+
<td style="padding:15px">getVnfPackagesVnfPkgIdManifest(vnfPkgId, includeSignature, callback)</td>
|
|
563
|
+
<td style="padding:15px">Query VNF Package Manifest
|
|
564
|
+
|
|
565
|
+
The GET method reads the content of the manifest within a VNF package.
|
|
566
|
+
</td>
|
|
567
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}/manifest?{query}</td>
|
|
568
|
+
<td style="padding:15px">Yes</td>
|
|
569
|
+
</tr>
|
|
570
|
+
<tr>
|
|
571
|
+
<td style="padding:15px">getVnfPackagesVnfPkgIdPackageContent(vnfPkgId, callback)</td>
|
|
572
|
+
<td style="padding:15px">Fetch VNF Package.
|
|
573
|
+
The GET method fetches the content of a VNF package identified by the
|
|
574
|
+
VNF packag</td>
|
|
575
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}/package_content?{query}</td>
|
|
576
|
+
<td style="padding:15px">Yes</td>
|
|
577
|
+
</tr>
|
|
578
|
+
<tr>
|
|
579
|
+
<td style="padding:15px">getVnfPackagesVnfPkgIdArtifacts(vnfPkgId, callback)</td>
|
|
580
|
+
<td style="padding:15px">Fetch VNF Package Artifacts.
|
|
581
|
+
|
|
582
|
+
The GET method shall return an archive that contains a set of artifac</td>
|
|
583
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}/artifacts?{query}</td>
|
|
584
|
+
<td style="padding:15px">Yes</td>
|
|
585
|
+
</tr>
|
|
586
|
+
<tr>
|
|
587
|
+
<td style="padding:15px">getVnfPackagesVnfPkgIdArtifactsArtifactPath(artifactPath, vnfPkgId, includeSignature, callback)</td>
|
|
588
|
+
<td style="padding:15px">Fetch VNF Package Artifacts.
|
|
589
|
+
The GET method fetches the content of an artifact within a VNF package</td>
|
|
590
|
+
<td style="padding:15px">{base_path}/{version}/vnfpkgm/v2/vnf_packages/{pathv1}/artifacts/{pathv2}?{query}</td>
|
|
591
|
+
<td style="padding:15px">Yes</td>
|
|
592
|
+
</tr>
|
|
593
|
+
<tr>
|
|
594
|
+
<td style="padding:15px">postPmJobs(body, callback)</td>
|
|
595
|
+
<td style="padding:15px">Create PM Job.
|
|
596
|
+
The POST method creates a PM job.
|
|
597
|
+
This method shall follow the provisions specified</td>
|
|
598
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs?{query}</td>
|
|
599
|
+
<td style="padding:15px">Yes</td>
|
|
600
|
+
</tr>
|
|
601
|
+
<tr>
|
|
602
|
+
<td style="padding:15px">getPmJobs(filter, allFields, fields, excludeFields, excludeDefault, nextpageOpaqueMarker, callback)</td>
|
|
603
|
+
<td style="padding:15px">Query PM Job.
|
|
604
|
+
The API consumer can use this method to retrieve information about PM jobs.
|
|
605
|
+
This meth</td>
|
|
606
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs?{query}</td>
|
|
607
|
+
<td style="padding:15px">Yes</td>
|
|
608
|
+
</tr>
|
|
609
|
+
<tr>
|
|
610
|
+
<td style="padding:15px">getPmJobsPmJobId(pmJobId, callback)</td>
|
|
611
|
+
<td style="padding:15px">Query PM Job.
|
|
612
|
+
The API consumer can use this method for reading an individual PM job.
|
|
613
|
+
This method sh</td>
|
|
614
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs/{pathv1}?{query}</td>
|
|
615
|
+
<td style="padding:15px">Yes</td>
|
|
616
|
+
</tr>
|
|
617
|
+
<tr>
|
|
618
|
+
<td style="padding:15px">patchPmJobsPmJobId(pmJobId, callback)</td>
|
|
619
|
+
<td style="padding:15px">This method allows to modify an "Individual PM job" resource.
|
|
620
|
+
This method shall follow the provisio</td>
|
|
621
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs/{pathv1}?{query}</td>
|
|
622
|
+
<td style="padding:15px">Yes</td>
|
|
623
|
+
</tr>
|
|
624
|
+
<tr>
|
|
625
|
+
<td style="padding:15px">deletePmJobsPmJobId(pmJobId, callback)</td>
|
|
626
|
+
<td style="padding:15px">Delete PM Job.
|
|
627
|
+
This method terminates an individual PM job.
|
|
628
|
+
This method shall follow the provisions</td>
|
|
629
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs/{pathv1}?{query}</td>
|
|
630
|
+
<td style="padding:15px">Yes</td>
|
|
631
|
+
</tr>
|
|
632
|
+
<tr>
|
|
633
|
+
<td style="padding:15px">getPmJobsPmJobIdReportsReportId(pmJobId, reportId, callback)</td>
|
|
634
|
+
<td style="padding:15px">The API consumer can use this method for reading an individual performance report.
|
|
635
|
+
This method shal</td>
|
|
636
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/pm_jobs/{pathv1}/reports/{pathv2}?{query}</td>
|
|
637
|
+
<td style="padding:15px">Yes</td>
|
|
638
|
+
</tr>
|
|
639
|
+
<tr>
|
|
640
|
+
<td style="padding:15px">postThresholds(body, callback)</td>
|
|
641
|
+
<td style="padding:15px">Create Threshold.
|
|
642
|
+
The POST method can be used by the API consumer to create a threshold.
|
|
643
|
+
This metho</td>
|
|
644
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/thresholds?{query}</td>
|
|
645
|
+
<td style="padding:15px">Yes</td>
|
|
646
|
+
</tr>
|
|
647
|
+
<tr>
|
|
648
|
+
<td style="padding:15px">getThresholds(filter, nextpageOpaqueMarker, callback)</td>
|
|
649
|
+
<td style="padding:15px">Query Threshold.
|
|
650
|
+
The API consumer can use this method to query information about thresholds.
|
|
651
|
+
This m</td>
|
|
652
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/thresholds?{query}</td>
|
|
653
|
+
<td style="padding:15px">Yes</td>
|
|
654
|
+
</tr>
|
|
655
|
+
<tr>
|
|
656
|
+
<td style="padding:15px">getThresholdsThresholdId(thresholdId, callback)</td>
|
|
657
|
+
<td style="padding:15px">Query Threshold.
|
|
658
|
+
The API consumer can use this method for reading an individual threshold
|
|
659
|
+
This meth</td>
|
|
660
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/thresholds/{pathv1}?{query}</td>
|
|
661
|
+
<td style="padding:15px">Yes</td>
|
|
662
|
+
</tr>
|
|
663
|
+
<tr>
|
|
664
|
+
<td style="padding:15px">patchThresholdsThresholdId(thresholdId, callback)</td>
|
|
665
|
+
<td style="padding:15px">This method allows to modify an "Individual threshold" resource.
|
|
666
|
+
This method shall follow the provi</td>
|
|
667
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/thresholds/{pathv1}?{query}</td>
|
|
668
|
+
<td style="padding:15px">Yes</td>
|
|
669
|
+
</tr>
|
|
670
|
+
<tr>
|
|
671
|
+
<td style="padding:15px">deleteThresholdsThresholdId(thresholdId, callback)</td>
|
|
672
|
+
<td style="padding:15px">Delete Threshold.
|
|
673
|
+
This method allows to delete a threshold.
|
|
674
|
+
This method shall follow the provisions</td>
|
|
675
|
+
<td style="padding:15px">{base_path}/{version}/vnfpm/v2/thresholds/{pathv1}?{query}</td>
|
|
676
|
+
<td style="padding:15px">Yes</td>
|
|
677
|
+
</tr>
|
|
678
|
+
<tr>
|
|
679
|
+
<td style="padding:15px">getVnfSnapshotPackages(filter, nextpageOpaqueMarker, callback)</td>
|
|
680
|
+
<td style="padding:15px">The GET method queries the information of the VNF packages matching the filter.
|
|
681
|
+
</td>
|
|
682
|
+
<td style="padding:15px">{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages?{query}</td>
|
|
683
|
+
<td style="padding:15px">Yes</td>
|
|
684
|
+
</tr>
|
|
685
|
+
<tr>
|
|
686
|
+
<td style="padding:15px">getVnfSnapshotPackagesVnfSnapshotPkgId(vnfSnapshotPkgId, filter, nextpageOpaqueMarker, callback)</td>
|
|
687
|
+
<td style="padding:15px">The GET method reads the information of an individual VNF snapshot package.
|
|
688
|
+
</td>
|
|
689
|
+
<td style="padding:15px">{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}?{query}</td>
|
|
690
|
+
<td style="padding:15px">Yes</td>
|
|
691
|
+
</tr>
|
|
692
|
+
<tr>
|
|
693
|
+
<td style="padding:15px">getVnfSnapshotPackagesVnfSnapshotPkgIdPackageContent(vnfSnapshotPkgId, callback)</td>
|
|
694
|
+
<td style="padding:15px">The GET method fetches the content of a VNF snapshot package.
|
|
695
|
+
</td>
|
|
696
|
+
<td style="padding:15px">{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/package_content?{query}</td>
|
|
697
|
+
<td style="padding:15px">Yes</td>
|
|
698
|
+
</tr>
|
|
699
|
+
<tr>
|
|
700
|
+
<td style="padding:15px">getVnfSnapshotPackagesVnfSnapshotPkgIdArtifactsArtifactPath(vnfSnapshotPkgId, artifactPath, callback)</td>
|
|
701
|
+
<td style="padding:15px">The GET method fetches the content of an artifact within the VNF snapshot package.
|
|
702
|
+
</td>
|
|
703
|
+
<td style="padding:15px">{base_path}/{version}/vnfsnapshotpkgm/v1/vnf_snapshot_packages/{pathv1}/artifacts/{pathv2}?{query}</td>
|
|
704
|
+
<td style="padding:15px">Yes</td>
|
|
705
|
+
</tr>
|
|
168
706
|
</table>
|
|
169
707
|
<br>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.3.1 [12-27-2023]
|
|
3
|
+
|
|
4
|
+
* fix meta
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/cloud/adapter-etsi_sol003!3
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.3.0 [12-27-2023]
|
|
11
|
+
|
|
12
|
+
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/cloud/adapter-etsi_sol003!2
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.2.0 [05-21-2022]
|
|
3
19
|
|
|
4
20
|
* Migration to the latest Adapter Foundation
|