@itentialopensource/adapter-versa_director
Version:
This adapter integrates with system described as: versaDirectorApi.
916 lines (903 loc) • 178 kB
Markdown
## Using this Adapter
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
### Generic Adapter Calls
These are adapter methods that Itential Platform or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">connect()</td>
<td style="padding:15px">This call is run when the Adapter is first loaded by the Itential Platform. It validates the properties have been provided correctly.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">healthCheck(callback)</td>
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Versa Director. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">refreshProperties(properties)</td>
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Versa Director.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
<td style="padding:15px">This call provides the ability to update the adapter configuration from Itential Platform - includes actions, schema, mockdata and other configurations.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapTroubleshootAdapter(props, adapter, callback)</td>
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
<td style="padding:15px">This call will return the results of a healthcheck.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
<td style="padding:15px">This call will return the results of a connectivity check.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterBasicGet(maxCalls, callback)</td>
<td style="padding:15px">This call will return the results of running basic get API calls. By default 5 get calls without parameters will be run. You can ask for more or less by setting maxCalls.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or Itential Platform Database.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterLint(callback)</td>
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterTests(callback)</td>
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
</table>
<br>
### Adapter Cache Calls
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
<td style="padding:15px">This call populates the adapter cache.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
<td style="padding:15px">Yes</td>
</tr>
</table>
<br>
### Adapter Broker Calls
These are adapter methods that are used to integrate to Itential Platform Brokers. This adapter currently supports the following broker calls.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
<td style="padding:15px">This call is utilized by the Itential Platform Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getDevice(deviceName, callback)</td>
<td style="padding:15px">This call returns the details of the requested device.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">isAlive(deviceName, callback)</td>
<td style="padding:15px">This call returns whether the device status is active</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
<td style="padding:15px">This call returns the configuration for the selected device.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">iapGetDeviceCount(callback)</td>
<td style="padding:15px">This call returns the count of devices.</td>
<td style="padding:15px">No</td>
</tr>
</table>
<br>
### Specific Adapter Calls
Specific adapter calls are built based on the API of the Versa Networks Director. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">assignAlarmObject(alarm, assignee, description, state, callback)</td>
<td style="padding:15px">Assign an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/assign?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateAlarmAssignee(assignee, description, deviceName, managedObject, org, specificProblem, state, type, callback)</td>
<td style="padding:15px">Assign an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/assign?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">clearAlarm(deviceName, managedObject, org, specificProblem, type, callback)</td>
<td style="padding:15px">Clear an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/clear?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">handleAlarmObject(alarmAlarmHandlings0AssignedBy, alarmAlarmHandlings0Description, alarmAlarmHandlings0State, alarmAlarmHandlings0Time, alarmAlarmHandlings0User, alarmDevice, alarmDeviceGroup, alarmDeviceName, alarmIsCleared, alarmLastAlarmText, alarmLastPerceivedSeverity, alarmLastStatusChangeTimeStamp, alarmObject, alarmOrg, alarmSerial, alarmSeverity, alarmStatusChanges0AlarmText, alarmStatusChanges0EventTime, alarmStatusChanges0ReceivedTime, alarmStatusChanges0Severity, alarmType, assignee, description, specificProblem, state, callback)</td>
<td style="padding:15px">Handle an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/handle?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateHandleAlarm(description, deviceName, managedObject, org, specificProblem, state, type, callback)</td>
<td style="padding:15px">Handle an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/handle?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmHandling(deviceName, managedObject, org, specificProblem, type, callback)</td>
<td style="padding:15px">Retrieve handlings associated with an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/handling?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmHandlingObject(alarmHandlings0AssignedBy, alarmHandlings0Description, alarmHandlings0State, alarmHandlings0Time, alarmHandlings0User, device, deviceGroup, deviceName, isCleared, lastAlarmText, lastPerceivedSeverity, lastStatusChangeTimeStamp, object, org, serial, severity, specificProblem, statusChanges0AlarmText, statusChanges0EventTime, statusChanges0ReceivedTime, statusChanges0Severity, type, callback)</td>
<td style="padding:15px">Retrieve handlings associated with an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/handling?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">purgeAlarmObject(alarmHandlings0AssignedBy, alarmHandlings0Description, alarmHandlings0State, alarmHandlings0Time, alarmHandlings0User, device, deviceGroup, deviceName, isCleared, lastAlarmText, lastPerceivedSeverity, lastStatusChangeTimeStamp, object, org, serial, severity, specificProblem, statusChanges0AlarmText, statusChanges0EventTime, statusChanges0ReceivedTime, statusChanges0Severity, type, callback)</td>
<td style="padding:15px">purgeAlarmObject</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/object/purge?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">purgeAlarm(deviceName, managedObject, org, specificProblem, type, callback)</td>
<td style="padding:15px">purgeAlarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/purge?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatusChange(deviceName, managedObject, org, specificProblem, type, callback)</td>
<td style="padding:15px">Retrieve status changes associated with an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatusChangeObject(alarmHandlings0AssignedBy, alarmHandlings0Description, alarmHandlings0State, alarmHandlings0Time, alarmHandlings0User, device, deviceGroup, deviceName, isCleared, lastAlarmText, lastPerceivedSeverity, lastStatusChangeTimeStamp, object, org, serial, severity, specificProblem, statusChanges0AlarmText, statusChanges0EventTime, statusChanges0ReceivedTime, statusChanges0Severity, type, callback)</td>
<td style="padding:15px">Retrieve status changes associated with an alarm</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarm/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllFilteredAlarms(deviceName, filtertype, isCleared, isDeep, lastAlarmText, lastPerceivedSeverity, lastStatusChange, org, type, callback)</td>
<td style="padding:15px">Retrieve alarms satisfying certain conditions</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">assignAllFilteredAlarms(assignee, description, deviceName, filtertype, isCleared, lastAlarmText, lastPerceivedSeverity, lastStatusChange, org, state, type, callback)</td>
<td style="padding:15px">Bulk assign alarms matching certain conditions</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/assign?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">assignAllAlarms(alarmData, callback)</td>
<td style="padding:15px">Bulk assign a list of specific alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/bulk/assign?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">clearAllAlarms(alarmData, callback)</td>
<td style="padding:15px">Bulk clear multiple alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/bulk/clear?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">purgeAllAlarms(alarmData, callback)</td>
<td style="padding:15px">purgeAllAlarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/bulk/delete?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">handleAllAlarms(alarmData, callback)</td>
<td style="padding:15px">Bulk handle a list of specific alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/bulk/handle?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">handleAllFilteredAlarms(description, deviceName, filtertype, isCleared, lastAlarmText, lastPerceivedSeverity, lastStatusChange, org, state, type, callback)</td>
<td style="padding:15px">Bulk handle all alarms satisfying certain parameters</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/handle?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">filterPaginateAlarm(deviceName, filtertype, forceRefresh, includeChildren, isCleared, isDeep, lastAlarmText, lastPerceivedSeverity, lastStatusChange, limit, offset, org, showSystemAlarm, sortColumn, sortOrder, type, callback)</td>
<td style="padding:15px">Retrieve alarms satisfying certain conditions</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/page?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">purgeAllFilteredAlarms(alarmHandlingState, alarmHandlingUser, deviceName, filtertype, isCleared, lastAlarmHandlingChange, lastAlarmHandlingState, lastAlarmText, lastPerceivedSeverity, lastStatusChange, org, type, callback)</td>
<td style="padding:15px">purgeAllFilteredAlarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/purge?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmSummary(callback)</td>
<td style="padding:15px">Retrieve alarm count by severity for all alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceAlarmSummary(deviceName, org, callback)</td>
<td style="padding:15px">Retrieve alarm count by severity for one device</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/summary/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmSummaryPerOrg(includeChildren, includeSystem, org, callback)</td>
<td style="padding:15px">Retrieve alarm count by severity for all alarms for a tenant</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/alarms/summary/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDirectorAlarms(searchString, severity, callback)</td>
<td style="padding:15px">Retrieve director-specific alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/alarms?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDirectorAlarmSummary(callback)</td>
<td style="padding:15px">Retrieve summary alarm counts for director-specific alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/alarms/summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDirectorFailOverAlarms(callback)</td>
<td style="padding:15px">Retrieve fail-over alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/fail-over-alarms?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDirectorHAAlarms(callback)</td>
<td style="padding:15px">Retrieve HA-related alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/ha-alarms?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getImpAlarms(callback)</td>
<td style="padding:15px">Retrieve license-related alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/pop-up?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getImpAlarmSummary(callback)</td>
<td style="padding:15px">Retrieve summary count of license-related alarms</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/director/pop-up-summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmTypes(callback)</td>
<td style="padding:15px">Retrieve alarm types</td>
<td style="padding:15px">{base_path}/{version}/vnms/fault/types?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmNotifications(filters, limit, offset, callback)</td>
<td style="padding:15px">Retrieve all alarm-based notification rules with filtering</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">saveAlarmNotification(rules, callback)</td>
<td style="padding:15px">Save new notification rule(s)</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editAlarmNotification(rules, callback)</td>
<td style="padding:15px">Edit alarm-based notification rule(s)</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteAlarmNotification(groupkey, key, callback)</td>
<td style="padding:15px">Delete the named notification rule</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">loadAllAlarmNotifications(callback)</td>
<td style="padding:15px">Retrieve all alarm-based notification rules</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification/all?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">bulkDeleteAlarmNotification(groupkey, key, callback)</td>
<td style="padding:15px">Delete multiple alarm-based notification rules</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification/bulk?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">refreshAlarmNotification(callback)</td>
<td style="padding:15px">Refresh and reload all alarm-based notification rules</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification/refresh?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmNotificationRule(key, callback)</td>
<td style="padding:15px">Retrieve a notification rule</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification/rule?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">searchAlarmNotification(searchString, callback)</td>
<td style="padding:15px">Retrieve all alarm-based notification rules matching a search string</td>
<td style="padding:15px">{base_path}/{version}/vnms/alarm/notification/search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAMQPEvents(limit, offset, callback)</td>
<td style="padding:15px">Get AMQP Events</td>
<td style="padding:15px">{base_path}/{version}/nextgen/amqp/amqpevents?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAMQPObjEvents(limit, offset, callback)</td>
<td style="padding:15px">Get AMQP Object Events</td>
<td style="padding:15px">{base_path}/{version}/nextgen/amqp/amqpobjevents?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllApplianceStatus(callback)</td>
<td style="padding:15px">Shows Appliance status for all Appliances</td>
<td style="padding:15px">{base_path}/{version}/nextgen/appliance/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getApplianceStatusById(byName, id, callback)</td>
<td style="padding:15px">Shows single Appliance status based on UUID</td>
<td style="padding:15px">{base_path}/{version}/nextgen/appliance/status/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getApplianceTemplateListing(deviceName, tenant, callback)</td>
<td style="padding:15px">Shows Templates linked with Device</td>
<td style="padding:15px">{base_path}/{version}/nextgen/appliance/template_listing/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliances(limit, offset, tags, type, callback)</td>
<td style="padding:15px">Get All Appliances By Type and Tags</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/appliance?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliances2(limit, offset, callback)</td>
<td style="padding:15px">Get All Appliances</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/appliance2?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesByTypeAndOrg(org, type, callback)</td>
<td style="padding:15px">Get Appliances By Type and Org</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/appliancesByOrgAndType/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesByType(type, callback)</td>
<td style="padding:15px">Get Appliances By Type</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/appliancesByType/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesForSecurityPackage(callback)</td>
<td style="padding:15px">getAppliancesForSecurityPackage</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/appliancesForSecurityPackage?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">exportApplianceConfiguration(applianceName, callback)</td>
<td style="padding:15px">Export Appliance Configuration</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/export?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">filterAppliances(filterString, limit, offset, callback)</td>
<td style="padding:15px">Search Appliance By Filter</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/filter?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesForOrganization(filterString, limit, offset, org, callback)</td>
<td style="padding:15px">Get Appliances For Given Org</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/filter/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTagsForAppliance(callback)</td>
<td style="padding:15px">Get Appliance Tags</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/getTags?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTagsForTenant(tenantName, callback)</td>
<td style="padding:15px">getTagsForTenant</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/getTags/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">importApplianceConfiguration(applianceName, file, callback)</td>
<td style="padding:15px">Import Appliance Configuration</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/import?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">setApplianceOwner(applianceNames, orgname, callback)</td>
<td style="padding:15px">Get Appliance Owner Status</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/owner/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesForTenantOrgs(callback)</td>
<td style="padding:15px">getAppliancesForTenantOrgs</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/ownerOrg?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">searchAppliances(limit, offset, sql, callback)</td>
<td style="padding:15px">Search Appliance By Filter</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAppliancesSummary(filters, callback)</td>
<td style="padding:15px">Get Appliances Summary</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">doSyncFromAppliance(device, callback)</td>
<td style="padding:15px">Sync Config From Appliance</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/syncfrom/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">doSyncToAppliance(device, callback)</td>
<td style="padding:15px">Sync Config To Appliance</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/syncto/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteTagsFromAppliance(applianceName, deleteTagList, callback)</td>
<td style="padding:15px">Delete Appliance Tags</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/{pathv1}/deleteTags?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getVendorForAppliance(applianceName, vmName, callback)</td>
<td style="padding:15px">Get Guest VNF Vendor</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/{pathv1}/guest-vnfs/vm/{pathv2}/vendor?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllApplianceRoutingInstanceInformation(applianceName, callback)</td>
<td style="padding:15px">Get Routing Instance Information</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/{pathv1}/routing-instances?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getApplianceRoutingInstanceInformationById(applianceName, routingInstanceName, callback)</td>
<td style="padding:15px">Get Routing Instance Information</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/{pathv1}/routing-instances/{pathv2}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">setTagsForAppliance(applianceName, setTagList, callback)</td>
<td style="padding:15px">Create Appliance Tags</td>
<td style="padding:15px">{base_path}/{version}/vnms/appliance/{pathv1}/setTags?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllApplicationServiceTemplates(limit, offset, organization, callback)</td>
<td style="padding:15px">Application Service Templates Fetch All</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createApplicationServiceTemplate(newApplicationServiceTemplate, callback)</td>
<td style="padding:15px">Create a specific Application Service Template</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllApplicationServiceTemplateSamples(callback)</td>
<td style="padding:15px">Application Service Template Fetch All Samples</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/allSamples?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">cloneApplicationServiceTemplate(newOrg, newTemplate, serviceTemplateName, callback)</td>
<td style="padding:15px">Clone a specific Application Service Template</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/clone/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployApplicationServiceTemplate(serviceTemplateName, callback)</td>
<td style="padding:15px">Deploy a specific appliation Specific Template</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateApplicationServiceTemplate(astName, newApplicationServiceTemplate, callback)</td>
<td style="padding:15px">Update a Application Service Template</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteApplicationServiceTemplate(serviceTemplateNames, callback)</td>
<td style="padding:15px">Delete a specific appliation Specific Template</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getApplicationServiceTemplateById(serviceTemplateName, callback)</td>
<td style="padding:15px">Get a Application Service Template given its name</td>
<td style="padding:15px">{base_path}/{version}/nextgen/applicationServiceTemplate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllCommunityStrings(organization, callback)</td>
<td style="padding:15px">Community Fetch All</td>
<td style="padding:15px">{base_path}/{version}/nextgen/community?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createCommunity(community, callback)</td>
<td style="padding:15px">Create a Community</td>
<td style="padding:15px">{base_path}/{version}/nextgen/community?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createBulkCommunities(communityBeanCeate, callback)</td>
<td style="padding:15px">Create a Set of Communities</td>
<td style="padding:15px">{base_path}/{version}/nextgen/community/bulkCommunityCreate?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getNextAvailableCommunityId(org, callback)</td>
<td style="padding:15px">Get the next available Community Id</td>
<td style="padding:15px">{base_path}/{version}/nextgen/community/id?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getControllerWorkflowList(requestParams, callback)</td>
<td style="padding:15px">Fetch all controller workflows</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createJsonControllerWorkflow(sdwanControllerWorkflowVO, callback)</td>
<td style="padding:15px">Create controller workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteControllerWorkflows(name, callback)</td>
<td style="padding:15px">Delete all controller workflows</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployControllerWorkflow(controllerworkflowname, requestParams, taskid, callback)</td>
<td style="padding:15px">Deploy a specific controller workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getJsonControllerWorkflow(controllerworkflowname, callback)</td>
<td style="padding:15px">Fetch a specific controller workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateJsonControllerWorkflow(controllerworkflowname, sdwanControllerWorkflowVO, callback)</td>
<td style="padding:15px">Update controller workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteControllerWorkflow(controllerworkflowname, callback)</td>
<td style="padding:15px">Delete a specific controller workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/controllers/controller/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllDeviceWorkflows(filters, limit, offset, orgname, callback)</td>
<td style="padding:15px">Device WorkFlow Fetch All</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createDevicefromJson(sdwanWorkflowWrapperData, callback)</td>
<td style="padding:15px">Create a specific Device work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deploybulkDevicesJson(deviceWorkflowNamesListWrapper, callback)</td>
<td style="padding:15px">Bulk Deploy Device WorkFlow given its names</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/bulkDeploy?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployDevice(deviceworkflowname, callback)</td>
<td style="padding:15px">Deploy Device WorkFlow given its name</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceWorkflowTemplateDataInJson(deviceWorkflowDatainJson, deviceworkflowname, callback)</td>
<td style="padding:15px">Get Device work flow template data </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/template/data/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getHaPairedSiteLocationIdMapByTemplate(org, templateName, callback)</td>
<td style="padding:15px">Get Ha Pair SiteLocation IdMap by Template </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/template/pairedsiteid/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceJsonWorkflow(deviceworkflowname, callback)</td>
<td style="padding:15px">Get a specific Device WorkFlow given its name</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateDevicefromJson(sdwanWorkflowWrapperData, deviceworkFlowName, callback)</td>
<td style="padding:15px">Update a specific Device work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deCommisionDeleteWorkflow(cleanConfig, deviceworkflowname, loadDeviceDefaults, resetConfig, callback)</td>
<td style="padding:15px">Decommision a specific Device WorkFlow given its name</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">exportDeviceWorkflow(deviceworkflowname, includeAutoGenData, callback)</td>
<td style="padding:15px">Export a specific Device work flow data</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/device/{pathv1}/export?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">importDeviceWorkflows(file, callback)</td>
<td style="padding:15px">Import one or more Device work flow data </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/import?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">importDeviceWorkflowProgressStatus(uuid, callback)</td>
<td style="padding:15px">Progress of import Device work flow data </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/import/progress/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">importDeviceWorkflowResult(uuid, callback)</td>
<td style="padding:15px">Result of import Device work flow data </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/import/result/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceOwnerStatusInJson(appliancesNames, orgname, callback)</td>
<td style="padding:15px">Get Device owner status </td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/owner/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteDeviceteWorkflows(cleanConfig, deviceWorkflowNames, loadDeviceDefaults, resetConfig, callback)</td>
<td style="padding:15px">Delete a specific Device WorkFlow given its name</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/devices/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">migrateSDWANWorkflow(callback)</td>
<td style="padding:15px">migrate</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/migrate?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOrgWorkflowList(limit, offset, searchKey, callback)</td>
<td style="padding:15px">Fetch all organization workflows</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createOrgWorkflowFromJson(content, callback)</td>
<td style="padding:15px">Create organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/org?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployOrgWorkflow(orgWorkflowName, taskid, callback)</td>
<td style="padding:15px">Deploy a specific organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/org/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOrgWorkflowFromJson(orgWorkflowName, callback)</td>
<td style="padding:15px">Fetch a specific organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/org/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateOrgWorkflowFromJson(orgWorkflowName, sdwanOrgWorkflowVOWrapper, callback)</td>
<td style="padding:15px">Update organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/org/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">decommissionOrgWorkflow(orgWorkflowName, taskid, callback)</td>
<td style="padding:15px">Decommission a specific organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/org/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteOrgWorkflows(orgWorkflowName, callback)</td>
<td style="padding:15px">Delete a specific organization workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/orgs/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUCPEServiceChains(requestParams, callback)</td>
<td style="padding:15px">Fetch all ServiceChain workflows</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createUCPEServiceChain(ucpeServiceChainWorkflowVO, callback)</td>
<td style="padding:15px">Create ServiceChain workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains/servicechain?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployUCPEServiceChain(taskid, uCPEServiceChainWorkflowName, callback)</td>
<td style="padding:15px">Deploy a specific ServiceChain workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains/servicechain/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUCPEServiceChainById(uCPEServiceChainWorkflowName, callback)</td>
<td style="padding:15px">Fetch a specific ServiceChain workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains/servicechain/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateUCPEServiceChain(uCPEServiceChainWorkflowName, ucpeServiceChainWorkflowVO, callback)</td>
<td style="padding:15px">Update ServiceChain workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains/servicechain/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteUCPEServiceChain(uCPEServiceChainWorkflowName, callback)</td>
<td style="padding:15px">Delete a specific ServiceChain workflow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/servicechains/servicechain/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAllTemplatesWorkflows(limit, offset, orgname, searchKeyword, callback)</td>
<td style="padding:15px">Template Fetch All</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/templates?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createTemplateWorkflow(content, callback)</td>
<td style="padding:15px">Create a specific template work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/templates/template?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deployTemplateWorkflow(templateworkflowname, verifyDiff, callback)</td>
<td style="padding:15px">Deploy a specific template work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/templates/template/deploy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTemplateWorkflowById(templateworkflowname, callback)</td>
<td style="padding:15px">Get a specific template work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workflow/templates/template/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateTemplateWorkflow(sdwanTemoplateWorkflowJsonWrapper, templateworkflowname, callback)</td>
<td style="padding:15px">Update a specific template work flow</td>
<td style="padding:15px">{base_path}/{version}/vnms/sdwan/workfl