@itentialopensource/adapter-nokia_nsp_network_management 0.1.1 → 0.1.3
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 +726 -0
- package/CHANGELOG.md +16 -1
- package/adapter.js +1069 -0
- package/compliance-report.json +9 -0
- package/compliance-report.txt +5 -0
- package/entities/NetworkInventoryRestconfAPI/action.json +277 -0
- package/entities/NetworkInventoryRestconfAPI/mockdatafiles/getRadio-default.json +3 -0
- package/entities/NetworkInventoryRestconfAPI/schema.json +31 -0
- package/metadata.json +3 -2
- package/package.json +9 -9
- package/previousVersion.zip +0 -0
- package/pronghorn.json +467 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/test/integration/adapterTestIntegration.js +325 -0
- package/test/unit/adapterTestUnit.js +383 -6
package/CALLS.md
CHANGED
|
@@ -202,5 +202,731 @@ Specific adapter calls are built based on the API of the nokia_nsp_network_manag
|
|
|
202
202
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
203
203
|
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
204
204
|
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">retrieveNetworkInterfaces(network, node, callback)</td>
|
|
207
|
+
<td style="padding:15px">retrieveNetworkInterfaces</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">retrieveNetworkInterfacesConfig(network, node, callback)</td>
|
|
213
|
+
<td style="padding:15px">retrieveNetworkInterfacesConfig</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/config?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">retrieveNetworkSubInterfaces(network, node, callback)</td>
|
|
219
|
+
<td style="padding:15px">retrieveNetworkSubInterfaces</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/subinterface?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesConfig(network, node, subinterface, callback)</td>
|
|
225
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesConfig</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/{pathv3}/config?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesState(network, node, subinterface, callback)</td>
|
|
231
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesState</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/{pathv3}/state?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesIPv4Addresses(network, node, interfaceParam, subinterface, callback)</td>
|
|
237
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesIPv4Addresses</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/{pathv3}/subinterfaces/{pathv4}/openconfig-if-ip:ipv4/addresses/address?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesIPv6Addresses(network, node, subinterface, callback)</td>
|
|
243
|
+
<td style="padding:15px">retrieveNetworkSubInterfacesIPv6Addresses</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/{pathv3}/openconfig-if-ip:ipv6/addresses/address?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">retrieveNetworkInterfacesUnnumbered(network, node, subinterface, callback)</td>
|
|
249
|
+
<td style="padding:15px">retrieveNetworkInterfacesUnnumbered</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/{pathv3}/openconfig-if-ip:ipv4/unnumbered?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">retrieveNetworkInterfacesUnnumberedIntf(network, node, subinterface, callback)</td>
|
|
255
|
+
<td style="padding:15px">retrieveNetworkInterfacesUnnumberedIntf</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/{pathv3}/openconfig-if-ip:ipv4/unnumbered/interface-ref?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">retrieveNetworkInstance(network, node, callback)</td>
|
|
261
|
+
<td style="padding:15px">retrieveNetworkInstance</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ne-management-nm:commissioning-configs/protocols-config/protocol-root/openconfig-network-instance:network-instances/network-instance?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">retrieveResyncPolicyNodeVersionEntity(resyncPolicy, node, version, callback)</td>
|
|
267
|
+
<td style="padding:15px">retrieveResyncPolicyNodeVersionEntity</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-admin-resync:resync-policies/mdm/{pathv1}/{pathv2}/{pathv3}/entity?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">createUsingIntent(body, callback)</td>
|
|
273
|
+
<td style="padding:15px">createUsingIntent</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ibn:ibn?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">synchronizeIntent(intent, callback)</td>
|
|
279
|
+
<td style="padding:15px">synchronizeIntent</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ibn:ibn/{pathv1}/synchronize?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">getIntent(intent, callback)</td>
|
|
285
|
+
<td style="padding:15px">getIntent</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ibn:ibn/{pathv1}?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">modifyIntent(intent, body, callback)</td>
|
|
291
|
+
<td style="padding:15px">modifyIntent</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ibn:ibn/{pathv1}?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">deleteIntent(intent, callback)</td>
|
|
297
|
+
<td style="padding:15px">deleteIntent</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ibn:ibn/{pathv1}?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">getZTPListFromDeviceAdministrator(callback)</td>
|
|
303
|
+
<td style="padding:15px">getZTPListFromDeviceAdministrator</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-ne-control:ne-control/autodiscovery-ne?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">devAdminCreateAutodiscoveryNe(body, callback)</td>
|
|
309
|
+
<td style="padding:15px">devAdmin-CreateAutodiscoveryNe</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/:8545/restconf/data/nsp-ne-control:ne-control?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">devAdminUpdateAutodiscoveryNe(autodiscoveryNe, body, callback)</td>
|
|
315
|
+
<td style="padding:15px">devAdmin-UpdateAutodiscovery-Ne</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-ne-control:ne-control/{pathv1}?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">devAdminDeleteAutodiscoverNe(autodiscoveryNe, callback)</td>
|
|
321
|
+
<td style="padding:15px">devAdmin-DeleteAutodiscover-Ne</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-ne-control:ne-control/{pathv1}?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">createIPv4AddressPool(body, callback)</td>
|
|
327
|
+
<td style="padding:15px">createIPv4AddressPool</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-resource-pool:resource-pools?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">getIPv4AddressPool(ipResourcePools, callback)</td>
|
|
333
|
+
<td style="padding:15px">getIPv4AddressPool</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-resource-pool:resource-pools/{pathv1}?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">obtainValueFromPool(ipResourcePools, body, callback)</td>
|
|
339
|
+
<td style="padding:15px">obtainValueFromPool</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-resource-pool:resource-pools/{pathv1}/obtain-value-from-pool?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">nspInventoryFindWithFilter(body, callback)</td>
|
|
345
|
+
<td style="padding:15px">nspInventoryFindWithFilter</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-inventory:find?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">retrieveResyncPolicy(callback)</td>
|
|
351
|
+
<td style="padding:15px">retrieveResyncPolicy</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-admin-resync:resync-policies/mdm/resync-policy?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">retrieveResyncPolicyNEAndVersionSpecific(resyncPolicy, node, version, callback)</td>
|
|
357
|
+
<td style="padding:15px">retrieveResyncPolicy-NEAndVersionSpecific</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-admin-resync:resync-policies/mdm/{pathv1}/{pathv2}/{pathv3}?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">retrieveResyncPollingPolicyNESpecific(resyncPolicy, node, callback)</td>
|
|
363
|
+
<td style="padding:15px">retrieveResync(Polling)Policy-NESpecific</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-admin-resync:resync-policies/mdm/{pathv1}/{pathv2}?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">enableResyncPollingPolicy(resyncPolicy, node, version, entity, body, callback)</td>
|
|
369
|
+
<td style="padding:15px">enableResync(Polling)Policy</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-admin-resync:resync-policies/mdm/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">getL2TopologyLinks(network, callback)</td>
|
|
375
|
+
<td style="padding:15px">gETL2TopologyLinks</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/ietf-network-topology:link?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">getL2TopologyAttributes(network, callback)</td>
|
|
381
|
+
<td style="padding:15px">gETL2TopologyAttributes</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/ietf-l2-topology:l2-topology-attributes?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">getL2TopologyNodeTerminationPoints(network, node, callback)</td>
|
|
387
|
+
<td style="padding:15px">gETL2TopologyNodeTerminationPoints</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ietf-network-topology:termination-point?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getSpecificNetwork(network, callback)</td>
|
|
393
|
+
<td style="padding:15px">gETSpecificNetwork</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">getSupportingNetwork(network, callback)</td>
|
|
399
|
+
<td style="padding:15px">gETSupportingNetwork</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/supporting-network?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">getNetworkType(network, callback)</td>
|
|
405
|
+
<td style="padding:15px">gETNetworkType</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/network-types?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">getNetwork(callback)</td>
|
|
411
|
+
<td style="padding:15px">gETNetwork</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/network?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">getL3TopologyAttribute(network, callback)</td>
|
|
417
|
+
<td style="padding:15px">gETL3TopologyAttribute</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/ietf-l3-unicast-topology:l3-topology-attributes?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">getAllNodesInANetwork(network, callback)</td>
|
|
423
|
+
<td style="padding:15px">gETAllNodesInANetwork</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/node?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">getSpecificNodeInANetwork(network, node, callback)</td>
|
|
429
|
+
<td style="padding:15px">getSpecificNodeInANetwork</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">getSpecificLinkInANetwork(network, link, callback)</td>
|
|
435
|
+
<td style="padding:15px">getSpecificLinkInANetwork</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">getSupportingLink(network, link, callback)</td>
|
|
441
|
+
<td style="padding:15px">getSupportingLink</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/supporting-link?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">getSpecificTerminationPointsOfANode(network, node, terminationPoint, callback)</td>
|
|
447
|
+
<td style="padding:15px">gETSpecificTerminationPointsOfANode</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/{pathv3}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">getSupportingTerminationPoint(network, node, terminationPoint, callback)</td>
|
|
453
|
+
<td style="padding:15px">gETSupportingTerminationPoint</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/{pathv3}/supporting-termination-point?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">l3GETSRTopologyNodeAttributes(network, node, callback)</td>
|
|
459
|
+
<td style="padding:15px">l3GETSRTopologyNodeAttributes</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ietf-l3-unicast-topology:l3-node-attributes/ietf-sr-mpls-topology:sr-mpls?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
463
|
+
<tr>
|
|
464
|
+
<td style="padding:15px">l3GETSRTopologyLinkAttributes(network, link, callback)</td>
|
|
465
|
+
<td style="padding:15px">l3GETSRTopologyLinkAttributes</td>
|
|
466
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/ietf-l3-unicast-topology:l3-link-attributes/ietf-sr-mpls-topology:sr-mpls?{query}</td>
|
|
467
|
+
<td style="padding:15px">Yes</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td style="padding:15px">getSAPNetwork(callback)</td>
|
|
471
|
+
<td style="padding:15px">gETSAPNetwork</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/network/network-types/ietf-sap-ntw:sap-network?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
<tr>
|
|
476
|
+
<td style="padding:15px">getIETFNetworkFromSpecificNode(node, callback)</td>
|
|
477
|
+
<td style="padding:15px">getIETFNetworkFromSpecificNode</td>
|
|
478
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/network/{pathv1}?{query}</td>
|
|
479
|
+
<td style="padding:15px">Yes</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td style="padding:15px">getSAPsOnASpecificNodeOfSpecificServiceType(network, node, service, callback)</td>
|
|
483
|
+
<td style="padding:15px">getSAPsOnASpecificNodeOfSpecificServiceType</td>
|
|
484
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/ietf-network:networks/{pathv1}/{pathv2}/{pathv3}?{query}</td>
|
|
485
|
+
<td style="padding:15px">Yes</td>
|
|
486
|
+
</tr>
|
|
487
|
+
<tr>
|
|
488
|
+
<td style="padding:15px">getIETFMappingFiles(callback)</td>
|
|
489
|
+
<td style="padding:15px">gETIETFMappingFiles</td>
|
|
490
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-yang-mapping-converter:nsp-yang-mapping-converter?{query}</td>
|
|
491
|
+
<td style="padding:15px">Yes</td>
|
|
492
|
+
</tr>
|
|
493
|
+
<tr>
|
|
494
|
+
<td style="padding:15px">loadIETFMappingFiles(nspPluginId, file, callback)</td>
|
|
495
|
+
<td style="padding:15px">loadIETFMappingFiles</td>
|
|
496
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-yang-mapping-converter:nsp-yang-mapping-converter/uploadFile?{query}</td>
|
|
497
|
+
<td style="padding:15px">Yes</td>
|
|
498
|
+
</tr>
|
|
499
|
+
<tr>
|
|
500
|
+
<td style="padding:15px">createMappingPolicy(body, callback)</td>
|
|
501
|
+
<td style="padding:15px">createMappingPolicy</td>
|
|
502
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy?{query}</td>
|
|
503
|
+
<td style="padding:15px">Yes</td>
|
|
504
|
+
</tr>
|
|
505
|
+
<tr>
|
|
506
|
+
<td style="padding:15px">getCorrelationPolicy(callback)</td>
|
|
507
|
+
<td style="padding:15px">getCorrelationPolicy</td>
|
|
508
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy?{query}</td>
|
|
509
|
+
<td style="padding:15px">Yes</td>
|
|
510
|
+
</tr>
|
|
511
|
+
<tr>
|
|
512
|
+
<td style="padding:15px">updateMappingPolicy(routerNeMapping, body, callback)</td>
|
|
513
|
+
<td style="padding:15px">updateMappingPolicy</td>
|
|
514
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy/{pathv1}?{query}</td>
|
|
515
|
+
<td style="padding:15px">Yes</td>
|
|
516
|
+
</tr>
|
|
517
|
+
<tr>
|
|
518
|
+
<td style="padding:15px">getSpecificMappingPolicy(routerNeMapping, callback)</td>
|
|
519
|
+
<td style="padding:15px">getSpecificMappingPolicy</td>
|
|
520
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy/{pathv1}?{query}</td>
|
|
521
|
+
<td style="padding:15px">Yes</td>
|
|
522
|
+
</tr>
|
|
523
|
+
<tr>
|
|
524
|
+
<td style="padding:15px">deleteAllPoliciesOnARouter(routerNeMapping, callback)</td>
|
|
525
|
+
<td style="padding:15px">deleteAllPoliciesOnARouter</td>
|
|
526
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy/{pathv1}?{query}</td>
|
|
527
|
+
<td style="padding:15px">Yes</td>
|
|
528
|
+
</tr>
|
|
529
|
+
<tr>
|
|
530
|
+
<td style="padding:15px">getRouterNeMapping(callback)</td>
|
|
531
|
+
<td style="padding:15px">getRouter-Ne-Mapping</td>
|
|
532
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy/router-ne-mapping?{query}</td>
|
|
533
|
+
<td style="padding:15px">Yes</td>
|
|
534
|
+
</tr>
|
|
535
|
+
<tr>
|
|
536
|
+
<td style="padding:15px">deleteOnePolicyOfRouter(routerNeMapping, routerInfos, callback)</td>
|
|
537
|
+
<td style="padding:15px">deleteOnePolicyOfRouter</td>
|
|
538
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment-templates:correlation-policy/{pathv1}/{pathv2}?{query}</td>
|
|
539
|
+
<td style="padding:15px">Yes</td>
|
|
540
|
+
</tr>
|
|
541
|
+
<tr>
|
|
542
|
+
<td style="padding:15px">getIndicatorAgeoutPolicySettings(callback)</td>
|
|
543
|
+
<td style="padding:15px">getIndicatorAgeout-PolicySettings</td>
|
|
544
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/indicators-admin:/ageout-policies/ageout-policy?{query}</td>
|
|
545
|
+
<td style="padding:15px">Yes</td>
|
|
546
|
+
</tr>
|
|
547
|
+
<tr>
|
|
548
|
+
<td style="padding:15px">updateTheRetentionTimeForIndicators(body, callback)</td>
|
|
549
|
+
<td style="padding:15px">updateTheRetentionTimeForIndicators</td>
|
|
550
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/indicators-admin:/ageout-policies/ageout-policy?{query}</td>
|
|
551
|
+
<td style="padding:15px">Yes</td>
|
|
552
|
+
</tr>
|
|
553
|
+
<tr>
|
|
554
|
+
<td style="padding:15px">getBaselineAgeoutPolicySettings(callback)</td>
|
|
555
|
+
<td style="padding:15px">getBaselineAgeout-PolicySettings</td>
|
|
556
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/rtanalytics-admin:/ageout-policies/ageout-policy?{query}</td>
|
|
557
|
+
<td style="padding:15px">Yes</td>
|
|
558
|
+
</tr>
|
|
559
|
+
<tr>
|
|
560
|
+
<td style="padding:15px">updateTheRetentionTimeForBaseline(body, callback)</td>
|
|
561
|
+
<td style="padding:15px">updateTheRetentionTimeForBaseline</td>
|
|
562
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/rtanalytics-admin:/ageout-policies?{query}</td>
|
|
563
|
+
<td style="padding:15px">Yes</td>
|
|
564
|
+
</tr>
|
|
565
|
+
<tr>
|
|
566
|
+
<td style="padding:15px">avgCPUAllNodesAllActions(body, callback)</td>
|
|
567
|
+
<td style="padding:15px">avgCPUAllNodes-AllActions</td>
|
|
568
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-templates?{query}</td>
|
|
569
|
+
<td style="padding:15px">Yes</td>
|
|
570
|
+
</tr>
|
|
571
|
+
<tr>
|
|
572
|
+
<td style="padding:15px">getAllIndicatorTemplates(callback)</td>
|
|
573
|
+
<td style="padding:15px">getAllIndicatorTemplates</td>
|
|
574
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-templates?{query}</td>
|
|
575
|
+
<td style="padding:15px">Yes</td>
|
|
576
|
+
</tr>
|
|
577
|
+
<tr>
|
|
578
|
+
<td style="padding:15px">uPDATEIndicatorTemplate(template, body, callback)</td>
|
|
579
|
+
<td style="padding:15px">uPDATEIndicatorTemplate</td>
|
|
580
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-templates/{pathv1}?{query}</td>
|
|
581
|
+
<td style="padding:15px">Yes</td>
|
|
582
|
+
</tr>
|
|
583
|
+
<tr>
|
|
584
|
+
<td style="padding:15px">deleteIndicatorTemplate(template, callback)</td>
|
|
585
|
+
<td style="padding:15px">deleteIndicatorTemplate</td>
|
|
586
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-templates/{pathv1}?{query}</td>
|
|
587
|
+
<td style="padding:15px">Yes</td>
|
|
588
|
+
</tr>
|
|
589
|
+
<tr>
|
|
590
|
+
<td style="padding:15px">getSpecificIndicatorTemplate(template, callback)</td>
|
|
591
|
+
<td style="padding:15px">getSpecificIndicatorTemplate</td>
|
|
592
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-templates/{pathv1}?{query}</td>
|
|
593
|
+
<td style="padding:15px">Yes</td>
|
|
594
|
+
</tr>
|
|
595
|
+
<tr>
|
|
596
|
+
<td style="padding:15px">postavgCPUAllNodesAllActions(body, callback)</td>
|
|
597
|
+
<td style="padding:15px">avgCPUAllNodes-AllActions</td>
|
|
598
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-rules?{query}</td>
|
|
599
|
+
<td style="padding:15px">Yes</td>
|
|
600
|
+
</tr>
|
|
601
|
+
<tr>
|
|
602
|
+
<td style="padding:15px">getAllIndicatorRules(callback)</td>
|
|
603
|
+
<td style="padding:15px">getAllIndicatorRules</td>
|
|
604
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-rules?{query}</td>
|
|
605
|
+
<td style="padding:15px">Yes</td>
|
|
606
|
+
</tr>
|
|
607
|
+
<tr>
|
|
608
|
+
<td style="padding:15px">updateIndicatorRule(rule, body, callback)</td>
|
|
609
|
+
<td style="padding:15px">updateIndicatorRule</td>
|
|
610
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-rules/{pathv1}?{query}</td>
|
|
611
|
+
<td style="padding:15px">Yes</td>
|
|
612
|
+
</tr>
|
|
613
|
+
<tr>
|
|
614
|
+
<td style="padding:15px">deleteIndicatorRule(rule, callback)</td>
|
|
615
|
+
<td style="padding:15px">deleteIndicatorRule</td>
|
|
616
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-rules/{pathv1}?{query}</td>
|
|
617
|
+
<td style="padding:15px">Yes</td>
|
|
618
|
+
</tr>
|
|
619
|
+
<tr>
|
|
620
|
+
<td style="padding:15px">getSpecificIndicatorRule(rule, callback)</td>
|
|
621
|
+
<td style="padding:15px">getSpecificIndicatorRule</td>
|
|
622
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-indicator:rta-indicator-rules/{pathv1}?{query}</td>
|
|
623
|
+
<td style="padding:15px">Yes</td>
|
|
624
|
+
</tr>
|
|
625
|
+
<tr>
|
|
626
|
+
<td style="padding:15px">createSubscription(body, callback)</td>
|
|
627
|
+
<td style="padding:15px">createSubscription</td>
|
|
628
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/md-subscription:/subscriptions/subscription?{query}</td>
|
|
629
|
+
<td style="padding:15px">Yes</td>
|
|
630
|
+
</tr>
|
|
631
|
+
<tr>
|
|
632
|
+
<td style="padding:15px">createBaseline(body, callback)</td>
|
|
633
|
+
<td style="padding:15px">createBaseline</td>
|
|
634
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines?{query}</td>
|
|
635
|
+
<td style="padding:15px">Yes</td>
|
|
636
|
+
</tr>
|
|
637
|
+
<tr>
|
|
638
|
+
<td style="padding:15px">getBaseline(baseline, callback)</td>
|
|
639
|
+
<td style="padding:15px">getBaseline</td>
|
|
640
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}?{query}</td>
|
|
641
|
+
<td style="padding:15px">Yes</td>
|
|
642
|
+
</tr>
|
|
643
|
+
<tr>
|
|
644
|
+
<td style="padding:15px">createBaselineDetector(baseline, body, callback)</td>
|
|
645
|
+
<td style="padding:15px">createBaselineDetector</td>
|
|
646
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}?{query}</td>
|
|
647
|
+
<td style="padding:15px">Yes</td>
|
|
648
|
+
</tr>
|
|
649
|
+
<tr>
|
|
650
|
+
<td style="padding:15px">deleteBaseline(baseline, callback)</td>
|
|
651
|
+
<td style="padding:15px">deleteBaseline</td>
|
|
652
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}?{query}</td>
|
|
653
|
+
<td style="padding:15px">Yes</td>
|
|
654
|
+
</tr>
|
|
655
|
+
<tr>
|
|
656
|
+
<td style="padding:15px">getBaselineDetector(baseline, baselineDetector, callback)</td>
|
|
657
|
+
<td style="padding:15px">getBaselineDetector</td>
|
|
658
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}/{pathv2}?{query}</td>
|
|
659
|
+
<td style="padding:15px">Yes</td>
|
|
660
|
+
</tr>
|
|
661
|
+
<tr>
|
|
662
|
+
<td style="padding:15px">patchBaselineDetector(baseline, baselineDetector, body, callback)</td>
|
|
663
|
+
<td style="padding:15px">patchBaselineDetector</td>
|
|
664
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}/{pathv2}?{query}</td>
|
|
665
|
+
<td style="padding:15px">Yes</td>
|
|
666
|
+
</tr>
|
|
667
|
+
<tr>
|
|
668
|
+
<td style="padding:15px">deleteBaselineDetector(baseline, baselineDetector, callback)</td>
|
|
669
|
+
<td style="padding:15px">deleteBaselineDetector</td>
|
|
670
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:baselines/{pathv1}/{pathv2}?{query}</td>
|
|
671
|
+
<td style="padding:15px">Yes</td>
|
|
672
|
+
</tr>
|
|
673
|
+
<tr>
|
|
674
|
+
<td style="padding:15px">deleteSubscription(subscription, callback)</td>
|
|
675
|
+
<td style="padding:15px">deleteSubscription</td>
|
|
676
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/md-subscription:/subscriptions/{pathv1}?{query}</td>
|
|
677
|
+
<td style="padding:15px">Yes</td>
|
|
678
|
+
</tr>
|
|
679
|
+
<tr>
|
|
680
|
+
<td style="padding:15px">getAllBaselines(callback)</td>
|
|
681
|
+
<td style="padding:15px">getAllBaselines</td>
|
|
682
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-rt-analytics:/baselines/baseline?{query}</td>
|
|
683
|
+
<td style="padding:15px">Yes</td>
|
|
684
|
+
</tr>
|
|
685
|
+
<tr>
|
|
686
|
+
<td style="padding:15px">importIntentTypeFromIntentManager(body, callback)</td>
|
|
687
|
+
<td style="padding:15px">importIntentTypeFromIntentManager</td>
|
|
688
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:import-intent-types?{query}</td>
|
|
689
|
+
<td style="padding:15px">Yes</td>
|
|
690
|
+
</tr>
|
|
691
|
+
<tr>
|
|
692
|
+
<td style="padding:15px">getIntentTypes(callback)</td>
|
|
693
|
+
<td style="padding:15px">getIntentTypes</td>
|
|
694
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/imported-intent-types?{query}</td>
|
|
695
|
+
<td style="padding:15px">Yes</td>
|
|
696
|
+
</tr>
|
|
697
|
+
<tr>
|
|
698
|
+
<td style="padding:15px">removeIntentType(body, callback)</td>
|
|
699
|
+
<td style="padding:15px">removeIntentType</td>
|
|
700
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:remove-intent-type?{query}</td>
|
|
701
|
+
<td style="padding:15px">Yes</td>
|
|
702
|
+
</tr>
|
|
703
|
+
<tr>
|
|
704
|
+
<td style="padding:15px">createTemplate(body, callback)</td>
|
|
705
|
+
<td style="padding:15px">createTemplate</td>
|
|
706
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates?{query}</td>
|
|
707
|
+
<td style="padding:15px">Yes</td>
|
|
708
|
+
</tr>
|
|
709
|
+
<tr>
|
|
710
|
+
<td style="padding:15px">getTemplates(callback)</td>
|
|
711
|
+
<td style="padding:15px">getTemplates</td>
|
|
712
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates?{query}</td>
|
|
713
|
+
<td style="padding:15px">Yes</td>
|
|
714
|
+
</tr>
|
|
715
|
+
<tr>
|
|
716
|
+
<td style="padding:15px">updateTemplateLifecycle(template, body, callback)</td>
|
|
717
|
+
<td style="padding:15px">updateTemplateLifecycle</td>
|
|
718
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}?{query}</td>
|
|
719
|
+
<td style="padding:15px">Yes</td>
|
|
720
|
+
</tr>
|
|
721
|
+
<tr>
|
|
722
|
+
<td style="padding:15px">deleteTemplate(template, callback)</td>
|
|
723
|
+
<td style="padding:15px">deleteTemplate</td>
|
|
724
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}?{query}</td>
|
|
725
|
+
<td style="padding:15px">Yes</td>
|
|
726
|
+
</tr>
|
|
727
|
+
<tr>
|
|
728
|
+
<td style="padding:15px">createPortGroupDirectory(category, body, callback)</td>
|
|
729
|
+
<td style="padding:15px">createPortGroupDirectory</td>
|
|
730
|
+
<td style="padding:15px">{base_path}/{version}/group-manager/rest/api/v1/groupDirectories?{query}</td>
|
|
731
|
+
<td style="padding:15px">Yes</td>
|
|
732
|
+
</tr>
|
|
733
|
+
<tr>
|
|
734
|
+
<td style="padding:15px">createPortGroup(category, body, callback)</td>
|
|
735
|
+
<td style="padding:15px">createPortGroup</td>
|
|
736
|
+
<td style="padding:15px">{base_path}/{version}/group-manager/rest/api/v1/groups?{query}</td>
|
|
737
|
+
<td style="padding:15px">Yes</td>
|
|
738
|
+
</tr>
|
|
739
|
+
<tr>
|
|
740
|
+
<td style="padding:15px">getPortGroupFDN(category, callback)</td>
|
|
741
|
+
<td style="padding:15px">getPortGroupFDN</td>
|
|
742
|
+
<td style="padding:15px">{base_path}/{version}/group-manager/rest/api/v1/groups/name/AccessPorts?{query}</td>
|
|
743
|
+
<td style="padding:15px">Yes</td>
|
|
744
|
+
</tr>
|
|
745
|
+
<tr>
|
|
746
|
+
<td style="padding:15px">createDeployment(body, callback)</td>
|
|
747
|
+
<td style="padding:15px">createDeployment</td>
|
|
748
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:create-deployments?{query}</td>
|
|
749
|
+
<td style="padding:15px">Yes</td>
|
|
750
|
+
</tr>
|
|
751
|
+
<tr>
|
|
752
|
+
<td style="padding:15px">updateDeploymentConfiguration(body, callback)</td>
|
|
753
|
+
<td style="padding:15px">updateDeploymentConfiguration</td>
|
|
754
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:update-deployments?{query}</td>
|
|
755
|
+
<td style="padding:15px">Yes</td>
|
|
756
|
+
</tr>
|
|
757
|
+
<tr>
|
|
758
|
+
<td style="padding:15px">replaceDeployment(body, callback)</td>
|
|
759
|
+
<td style="padding:15px">replaceDeployment</td>
|
|
760
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:replace-deployment?{query}</td>
|
|
761
|
+
<td style="padding:15px">Yes</td>
|
|
762
|
+
</tr>
|
|
763
|
+
<tr>
|
|
764
|
+
<td style="padding:15px">getDeployments(callback)</td>
|
|
765
|
+
<td style="padding:15px">getDeployments</td>
|
|
766
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments?{query}</td>
|
|
767
|
+
<td style="padding:15px">Yes</td>
|
|
768
|
+
</tr>
|
|
769
|
+
<tr>
|
|
770
|
+
<td style="padding:15px">getSpecificDeployment(deployment, callback)</td>
|
|
771
|
+
<td style="padding:15px">getSpecificDeployment</td>
|
|
772
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments/{pathv1}?{query}</td>
|
|
773
|
+
<td style="padding:15px">Yes</td>
|
|
774
|
+
</tr>
|
|
775
|
+
<tr>
|
|
776
|
+
<td style="padding:15px">deleteSingleDeployment(deployment, callback)</td>
|
|
777
|
+
<td style="padding:15px">deleteSingleDeployment</td>
|
|
778
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments/{pathv1}?{query}</td>
|
|
779
|
+
<td style="padding:15px">Yes</td>
|
|
780
|
+
</tr>
|
|
781
|
+
<tr>
|
|
782
|
+
<td style="padding:15px">deleteDeployments(body, callback)</td>
|
|
783
|
+
<td style="padding:15px">deleteDeployments</td>
|
|
784
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:delete-deployments?{query}</td>
|
|
785
|
+
<td style="padding:15px">Yes</td>
|
|
786
|
+
</tr>
|
|
787
|
+
<tr>
|
|
788
|
+
<td style="padding:15px">discoverDeployments(body, callback)</td>
|
|
789
|
+
<td style="padding:15px">discoverDeployments</td>
|
|
790
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:discover-deployments?{query}</td>
|
|
791
|
+
<td style="padding:15px">Yes</td>
|
|
792
|
+
</tr>
|
|
793
|
+
<tr>
|
|
794
|
+
<td style="padding:15px">auditDeployment(deployment, body, callback)</td>
|
|
795
|
+
<td style="padding:15px">auditDeployment</td>
|
|
796
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments/{pathv1}/audit?{query}</td>
|
|
797
|
+
<td style="padding:15px">Yes</td>
|
|
798
|
+
</tr>
|
|
799
|
+
<tr>
|
|
800
|
+
<td style="padding:15px">getAuditDetails(deployment, callback)</td>
|
|
801
|
+
<td style="padding:15px">getAuditDetails</td>
|
|
802
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments/{pathv1}/audit-details?{query}</td>
|
|
803
|
+
<td style="padding:15px">Yes</td>
|
|
804
|
+
</tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td style="padding:15px">alignConfigurationDeployment(deployment, body, callback)</td>
|
|
807
|
+
<td style="padding:15px">alignConfigurationDeployment</td>
|
|
808
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/deployments/{pathv1}/align-config?{query}</td>
|
|
809
|
+
<td style="padding:15px">Yes</td>
|
|
810
|
+
</tr>
|
|
811
|
+
<tr>
|
|
812
|
+
<td style="padding:15px">auditTemplate(template, body, callback)</td>
|
|
813
|
+
<td style="padding:15px">auditTemplate</td>
|
|
814
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}/audit?{query}</td>
|
|
815
|
+
<td style="padding:15px">Yes</td>
|
|
816
|
+
</tr>
|
|
817
|
+
<tr>
|
|
818
|
+
<td style="padding:15px">checkAuditStatusCount(template, body, callback)</td>
|
|
819
|
+
<td style="padding:15px">checkAuditStatusCount</td>
|
|
820
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}/deployment-count-by-status?{query}</td>
|
|
821
|
+
<td style="padding:15px">Yes</td>
|
|
822
|
+
</tr>
|
|
823
|
+
<tr>
|
|
824
|
+
<td style="padding:15px">alignConfigurationTemplateAllDeployments(template, body, callback)</td>
|
|
825
|
+
<td style="padding:15px">alignConfigurationTemplateAllDeployments</td>
|
|
826
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}/align-config?{query}</td>
|
|
827
|
+
<td style="padding:15px">Yes</td>
|
|
828
|
+
</tr>
|
|
829
|
+
<tr>
|
|
830
|
+
<td style="padding:15px">alignConfigurationTemplateMisalignedDeployments(template, body, callback)</td>
|
|
831
|
+
<td style="padding:15px">alignConfigurationTemplateMisalignedDeployments</td>
|
|
832
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-icm:icm/templates/{pathv1}/align-misaligned-config?{query}</td>
|
|
833
|
+
<td style="padding:15px">Yes</td>
|
|
834
|
+
</tr>
|
|
835
|
+
<tr>
|
|
836
|
+
<td style="padding:15px">auditNodeDeployments(body, callback)</td>
|
|
837
|
+
<td style="padding:15px">auditNodeDeployments</td>
|
|
838
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:ne-audit-align?{query}</td>
|
|
839
|
+
<td style="padding:15px">Yes</td>
|
|
840
|
+
</tr>
|
|
841
|
+
<tr>
|
|
842
|
+
<td style="padding:15px">cloneTemplate(body, callback)</td>
|
|
843
|
+
<td style="padding:15px">cloneTemplate</td>
|
|
844
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:clone-template?{query}</td>
|
|
845
|
+
<td style="padding:15px">Yes</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<td style="padding:15px">migrateDeployments(body, callback)</td>
|
|
849
|
+
<td style="padding:15px">migrateDeployments</td>
|
|
850
|
+
<td style="padding:15px">{base_path}/{version}/restconf/operations/nsp-icm:migrate-deployments?{query}</td>
|
|
851
|
+
<td style="padding:15px">Yes</td>
|
|
852
|
+
</tr>
|
|
853
|
+
<tr>
|
|
854
|
+
<td style="padding:15px">getNE(depth, fields, callback)</td>
|
|
855
|
+
<td style="padding:15px">getNE</td>
|
|
856
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/network-element?{query}</td>
|
|
857
|
+
<td style="padding:15px">Yes</td>
|
|
858
|
+
</tr>
|
|
859
|
+
<tr>
|
|
860
|
+
<td style="padding:15px">getSpecificNE(networkElement, depth, callback)</td>
|
|
861
|
+
<td style="padding:15px">getSpecificNE</td>
|
|
862
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}?{query}</td>
|
|
863
|
+
<td style="padding:15px">Yes</td>
|
|
864
|
+
</tr>
|
|
865
|
+
<tr>
|
|
866
|
+
<td style="padding:15px">getShelf(callback)</td>
|
|
867
|
+
<td style="padding:15px">getShelf</td>
|
|
868
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/network-element/hardware-component/shelf?{query}</td>
|
|
869
|
+
<td style="padding:15px">Yes</td>
|
|
870
|
+
</tr>
|
|
871
|
+
<tr>
|
|
872
|
+
<td style="padding:15px">getSpecificShelf(networkElement, shelf, callback)</td>
|
|
873
|
+
<td style="padding:15px">getSpecificShelf</td>
|
|
874
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/hardware-component/{pathv2}?{query}</td>
|
|
875
|
+
<td style="padding:15px">Yes</td>
|
|
876
|
+
</tr>
|
|
877
|
+
<tr>
|
|
878
|
+
<td style="padding:15px">getCard(callback)</td>
|
|
879
|
+
<td style="padding:15px">getCard</td>
|
|
880
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/network-element/hardware-component/card?{query}</td>
|
|
881
|
+
<td style="padding:15px">Yes</td>
|
|
882
|
+
</tr>
|
|
883
|
+
<tr>
|
|
884
|
+
<td style="padding:15px">getSpecificNECards(networkElement, card, callback)</td>
|
|
885
|
+
<td style="padding:15px">getSpecificNECards</td>
|
|
886
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/hardware-component/{pathv2}?{query}</td>
|
|
887
|
+
<td style="padding:15px">Yes</td>
|
|
888
|
+
</tr>
|
|
889
|
+
<tr>
|
|
890
|
+
<td style="padding:15px">getPort(callback)</td>
|
|
891
|
+
<td style="padding:15px">getPort</td>
|
|
892
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/network-element/hardware-component/port?{query}</td>
|
|
893
|
+
<td style="padding:15px">Yes</td>
|
|
894
|
+
</tr>
|
|
895
|
+
<tr>
|
|
896
|
+
<td style="padding:15px">getPortFromSpecificNE(networkElement, port, callback)</td>
|
|
897
|
+
<td style="padding:15px">getPortFromSpecificNE</td>
|
|
898
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/hardware-component/{pathv2}?{query}</td>
|
|
899
|
+
<td style="padding:15px">Yes</td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr>
|
|
902
|
+
<td style="padding:15px">getPortFromSpecificNETransceiverDetails(networkElement, port, callback)</td>
|
|
903
|
+
<td style="padding:15px">getPortFromSpecificNETransceiverDetails</td>
|
|
904
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/hardware-component/{pathv2}/transceiver-details?{query}</td>
|
|
905
|
+
<td style="padding:15px">Yes</td>
|
|
906
|
+
</tr>
|
|
907
|
+
<tr>
|
|
908
|
+
<td style="padding:15px">getLags(callback)</td>
|
|
909
|
+
<td style="padding:15px">getLags</td>
|
|
910
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:/network/network-element/lag?{query}</td>
|
|
911
|
+
<td style="padding:15px">Yes</td>
|
|
912
|
+
</tr>
|
|
913
|
+
<tr>
|
|
914
|
+
<td style="padding:15px">getSpecificNELag(networkElement, callback)</td>
|
|
915
|
+
<td style="padding:15px">getSpecificNELag</td>
|
|
916
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/lag?{query}</td>
|
|
917
|
+
<td style="padding:15px">Yes</td>
|
|
918
|
+
</tr>
|
|
919
|
+
<tr>
|
|
920
|
+
<td style="padding:15px">getSpecificNELagWithFields(fields, networkElement, lag, callback)</td>
|
|
921
|
+
<td style="padding:15px">getSpecificNELagWithFields</td>
|
|
922
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:network/{pathv1}/{pathv2}?{query}</td>
|
|
923
|
+
<td style="padding:15px">Yes</td>
|
|
924
|
+
</tr>
|
|
925
|
+
<tr>
|
|
926
|
+
<td style="padding:15px">getRadio(callback)</td>
|
|
927
|
+
<td style="padding:15px">getRadio</td>
|
|
928
|
+
<td style="padding:15px">{base_path}/{version}/restconf/data/nsp-equipment:/network/network-element/hardware-component/radio?{query}</td>
|
|
929
|
+
<td style="padding:15px">Yes</td>
|
|
930
|
+
</tr>
|
|
205
931
|
</table>
|
|
206
932
|
<br>
|