@itentialopensource/adapter-viptela
Version:
This adapter integrates with system Viptela
1,048 lines (1,035 loc) • 170 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 IAP 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 he 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 Cisco Viptela. 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 Cisco Viptela.</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 IAP - 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, persistFlag, 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(callback)</td>
<td style="padding:15px">This call will return the results of running basic get API calls.</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 IAP 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 IAP 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 IAP 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 Viptela. 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">getStatisticsinterface(query, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postStatisticsinterface(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfaceaggregation(query, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/aggregation?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postStatisticsinterfaceaggregation(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/aggregation?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfacecsv(query, callback)</td>
<td style="padding:15px">Get raw data as CSV</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/csv?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfacedoccount(query, callback)</td>
<td style="padding:15px">Get response count of a query</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/doccount?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postStatisticsinterfacedoccount(body, callback)</td>
<td style="padding:15px">Get response count of a query</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/doccount?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfacefields(callback)</td>
<td style="padding:15px">Get fields and type</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/fields?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfacepage(query, scrollId, count, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/page?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postStatisticsinterfacepage(body, scrollId, count, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/page?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getStatisticsinterfacequeryfields(callback)</td>
<td style="padding:15px">Get query fields</td>
<td style="padding:15px">{base_path}/{version}/statistics/interface/query/fields?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDatadevicestatestateDataType(stateDataType, startId, count, callback)</td>
<td style="padding:15px">Retrieve device state data</td>
<td style="padding:15px">{base_path}/{version}/data/device/state/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDatadevicestatestateDataTypefields(stateDataType, callback)</td>
<td style="padding:15px">Retrieve device state data fileds</td>
<td style="padding:15px">{base_path}/{version}/data/device/state/{pathv1}/fields?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDatadevicestatestateDataTypequery(stateDataType, callback)</td>
<td style="padding:15px">Retrieve device state data fileds</td>
<td style="padding:15px">{base_path}/{version}/data/device/state/{pathv1}/query?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevices(callback)</td>
<td style="padding:15px">Retrieve list of all devices</td>
<td style="padding:15px">{base_path}/{version}/device?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceconfig(deviceId, callback)</td>
<td style="padding:15px">Retrieve device running configuration</td>
<td style="padding:15px">{base_path}/{version}/device/config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceconfightml(deviceId, callback)</td>
<td style="padding:15px">Retrieve device running configuration in HTML</td>
<td style="padding:15px">{base_path}/{version}/device/config/html?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicecounters(callback)</td>
<td style="padding:15px">Retrieve device counters</td>
<td style="padding:15px">{base_path}/{version}/device/counters?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicedevicestatus(callback)</td>
<td style="padding:15px">Retrieve device status</td>
<td style="padding:15px">{base_path}/{version}/device/devicestatus?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicehardwarehealthdetail(callback)</td>
<td style="padding:15px">Retrieve detailed hardware health</td>
<td style="padding:15px">{base_path}/{version}/device/hardwarehealth/detail?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicehardwarehealthsummary(isCached, callback)</td>
<td style="padding:15px">Retrieve hardware health summary</td>
<td style="padding:15px">{base_path}/{version}/device/hardwarehealth/summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicekeyvalue(callback)</td>
<td style="padding:15px">Retrieve device list as key/value pairs</td>
<td style="padding:15px">{base_path}/{version}/device/keyvalue?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicemodels(list, callback)</td>
<td style="padding:15px">Retrieve all device models</td>
<td style="padding:15px">{base_path}/{version}/device/models?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicemodelsuuid(uuid, callback)</td>
<td style="padding:15px">Retrieve the device model for the device</td>
<td style="padding:15px">{base_path}/{version}/device/models/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicemonitor(callback)</td>
<td style="padding:15px">Retrieve all device monitoring details</td>
<td style="padding:15px">{base_path}/{version}/device/monitor?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicequeues(callback)</td>
<td style="padding:15px">Retrieve synchronized queue information</td>
<td style="padding:15px">{base_path}/{version}/device/queues?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicereachable(callback)</td>
<td style="padding:15px">Retrieve list of reachable devices</td>
<td style="padding:15px">{base_path}/{version}/device/reachable?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicestats(callback)</td>
<td style="padding:15px">Retrieve synchronized queue information</td>
<td style="padding:15px">{base_path}/{version}/device/stats?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicestatus(callback)</td>
<td style="padding:15px">Retrieve device status</td>
<td style="padding:15px">{base_path}/{version}/device/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicesyncStatus(groupId, callback)</td>
<td style="padding:15px">Retrieve list of currently syncing devices</td>
<td style="padding:15px">{base_path}/{version}/device/sync_status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDevicesyncallmemorydb(callback)</td>
<td style="padding:15px">Synchronize memory database for all devices</td>
<td style="padding:15px">{base_path}/{version}/device/syncall/memorydb?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicetloc(callback)</td>
<td style="padding:15px">Retrieve TLOC status</td>
<td style="padding:15px">{base_path}/{version}/device/tloc?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicetlocutil(callback)</td>
<td style="padding:15px">Retrieve TLOC list</td>
<td style="padding:15px">{base_path}/{version}/device/tlocutil?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicetlocutildetail(callback)</td>
<td style="padding:15px">Retrieve detailed TLOC list</td>
<td style="padding:15px">{base_path}/{version}/device/tlocutil/detail?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceunreachable(callback)</td>
<td style="padding:15px">Retrieve list of unreachable devices</td>
<td style="padding:15px">{base_path}/{version}/device/unreachable?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteDeviceunreachabledeviceIP(deviceIP, callback)</td>
<td style="padding:15px">Delete unreachable device</td>
<td style="padding:15px">{base_path}/{version}/device/unreachable/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicevedgeinventorydetail(callback)</td>
<td style="padding:15px">Retrieve detailed vEdge inventory</td>
<td style="padding:15px">{base_path}/{version}/device/vedgeinventory/detail?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicevedgeinventorysummary(callback)</td>
<td style="padding:15px">Retrieve vEdge inventory</td>
<td style="padding:15px">{base_path}/{version}/device/vedgeinventory/summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicevmanage(callback)</td>
<td style="padding:15px">Retrieve vManage configuration</td>
<td style="padding:15px">{base_path}/{version}/device/vmanage?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionchangepartition(deviceId, callback)</td>
<td style="padding:15px">Retrieve change partition information</td>
<td style="padding:15px">{base_path}/{version}/device/action/changepartition?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionchangepartition(body, callback)</td>
<td style="padding:15px">Process change partition operation</td>
<td style="padding:15px">{base_path}/{version}/device/action/changepartition?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactiondefaultpartition(body, callback)</td>
<td style="padding:15px">Process marking default partition operation</td>
<td style="padding:15px">{base_path}/{version}/device/action/defaultpartition?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionfiltervpn(callback)</td>
<td style="padding:15px">Create VPN list</td>
<td style="padding:15px">{base_path}/{version}/device/action/filter/vpn?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactioninstall(deviceId, callback)</td>
<td style="padding:15px">Generate install info</td>
<td style="padding:15px">{base_path}/{version}/device/action/install?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactioninstall(body, callback)</td>
<td style="padding:15px">Process an installation operation</td>
<td style="padding:15px">{base_path}/{version}/device/action/install?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactioninstalldevicesdeviceType(deviceType, groupId, callback)</td>
<td style="padding:15px">Retrieve list of installed devices</td>
<td style="padding:15px">{base_path}/{version}/device/action/install/devices/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionlist(callback)</td>
<td style="padding:15px">Retrieve list of device actions</td>
<td style="padding:15px">{base_path}/{version}/device/action/list?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionreboot(deviceId, callback)</td>
<td style="padding:15px">Retrieve reboot information</td>
<td style="padding:15px">{base_path}/{version}/device/action/reboot?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionreboot(body, callback)</td>
<td style="padding:15px">Process a reboot operation</td>
<td style="padding:15px">{base_path}/{version}/device/action/reboot?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionrebootdevicesdeviceType(deviceType, groupId, callback)</td>
<td style="padding:15px">Retrieve list of rebooted devices</td>
<td style="padding:15px">{base_path}/{version}/device/action/reboot/devices/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionrediscover(callback)</td>
<td style="padding:15px">Retrieve rediscover operation information</td>
<td style="padding:15px">{base_path}/{version}/device/action/rediscover?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionrediscover(body, callback)</td>
<td style="padding:15px">Rediscover device</td>
<td style="padding:15px">{base_path}/{version}/device/action/rediscover?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionrediscoverall(callback)</td>
<td style="padding:15px">Rediscover device</td>
<td style="padding:15px">{base_path}/{version}/device/action/rediscoverall?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionremovepartition(deviceId, callback)</td>
<td style="padding:15px">Retrieve remove partition information</td>
<td style="padding:15px">{base_path}/{version}/device/action/removepartition?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionremovepartition(body, callback)</td>
<td style="padding:15px">Process remove partition operation</td>
<td style="padding:15px">{base_path}/{version}/device/action/removepartition?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionstartmonitor(callback)</td>
<td style="padding:15px">Triggers global monitoring thread</td>
<td style="padding:15px">{base_path}/{version}/device/action/startmonitor?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionuniquevpnlist(body, callback)</td>
<td style="padding:15px">Create VPN list</td>
<td style="padding:15px">{base_path}/{version}/device/action/uniquevpnlist?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionvpn(callback)</td>
<td style="padding:15px">Create VPN list</td>
<td style="padding:15px">{base_path}/{version}/device/action/vpn?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionztpupgrade(body, callback)</td>
<td style="padding:15px">Process ZTP upgrade configuration.</td>
<td style="padding:15px">{base_path}/{version}/device/action/ztp/upgrade?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionztpupgrade(body, callback)</td>
<td style="padding:15px">Process ZTP upgrade configuration.</td>
<td style="padding:15px">{base_path}/{version}/device/action/ztp/upgrade?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceactionztpupgradesetting(body, callback)</td>
<td style="padding:15px">Process ZTP upgrade configuration.</td>
<td style="padding:15px">{base_path}/{version}/device/action/ztp/upgrade/setting?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">postDeviceactionztpupgradesetting(body, callback)</td>
<td style="padding:15px">Process ZTP upgrade configuration.</td>
<td style="padding:15px">{base_path}/{version}/device/action/ztp/upgrade/setting?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">activateVsmartPolicy(policyId, body, callback)</td>
<td style="padding:15px">Activate a vSmart controller policy by policy ID</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/activate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deactivateVsmartPolicy(policyId, callback)</td>
<td style="padding:15px">Deactivate a vSmart controller policy by policy ID</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/deactivate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceVsmartStatus(policyId, callback)</td>
<td style="padding:15px">Display the status of device vSmart policy</td>
<td style="padding:15px">{base_path}/{version}/device/action/status/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getVsmartPolicyList(callback)</td>
<td style="padding:15px">Display the vSmart policy list</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateDeviceTemplateInput(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/input?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">previewDeviceTemplateConfiguration(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">attachDeviceTemplateCli(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachcli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">attachDeviceTemplateFeature(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachfeature?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">detachDeviceTemplateCli(body, callback)</td>
<td style="padding:15px">Get raw data</td>
<td style="padding:15px">{base_path}/{version}/template/config/device/mode/cli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceList(masterTemplateId, callback)</td>
<td style="padding:15px">getDeviceList</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/available/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">pushMixTemplate(body, callback)</td>
<td style="padding:15px">pushMixTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachment?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAttachedConfigToDevice(deviceId, callback)</td>
<td style="padding:15px">getAttachedConfigToDevice</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachedconfig?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">pushMasterTemplate(body, callback)</td>
<td style="padding:15px">pushMasterTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachfeature?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAttachedDeviceList(masterTemplateId, callback)</td>
<td style="padding:15px">getAttachedDeviceList</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attached/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createInputWithoutDevice(body, callback)</td>
<td style="padding:15px">createInputWithoutDevice</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/exportcsv?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceConfigurationPreview(body, callback)</td>
<td style="padding:15px">getDeviceConfigurationPreview</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">processInputCommaSepFile(callback)</td>
<td style="padding:15px">processInputCommaSepFile</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/process/input/file?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">validateTemplate(body, callback)</td>
<td style="padding:15px">validateTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/verify?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">pushCloudxConfig(body, callback)</td>
<td style="padding:15px">pushCloudxConfig</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachcloudx?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editCloudxConfig(body, callback)</td>
<td style="padding:15px">editCloudxConfig</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachcloudx?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">detachSites(body, callback)</td>
<td style="padding:15px">detachSites</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/detachcloudx?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicesWithDuplicateIP(body, callback)</td>
<td style="padding:15px">getDevicesWithDuplicateIP</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/duplicateip?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">pushCLITemplate(body, callback)</td>
<td style="padding:15px">pushCLITemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/attachcli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">detachDeviceTemplate(body, callback)</td>
<td style="padding:15px">detachDeviceTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/detach?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createDeviceInput(body, callback)</td>
<td style="padding:15px">createDeviceInput</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/input?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">checkVbond(callback)</td>
<td style="padding:15px">checkVbond</td>
<td style="padding:15px">{base_path}/{version}/template/device/config/vbond?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateTemplateList(summary, callback)</td>
<td style="padding:15px">generateTemplateList</td>
<td style="padding:15px">{base_path}/{version}/template/feature?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createTemplate(body, callback)</td>
<td style="padding:15px">createTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTemplate(templateId, callback)</td>
<td style="padding:15px">getTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editTemplate(templateId, body, callback)</td>
<td style="padding:15px">editTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteTemplate(templateId, callback)</td>
<td style="padding:15px">deleteTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editLITemplate(templateId, body, callback)</td>
<td style="padding:15px">editLITemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/li/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createLITemplate(body, callback)</td>
<td style="padding:15px">createLITemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/li?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">listLITemplate(callback)</td>
<td style="padding:15px">listLITemplate</td>
<td style="padding:15px">{base_path}/{version}/template/feature/li?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateTemplateByDeviceType(deviceType, callback)</td>
<td style="padding:15px">generateTemplateByDeviceType</td>
<td style="padding:15px">{base_path}/{version}/template/feature/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTemplateDefinition(templateId, callback)</td>
<td style="padding:15px">getTemplateDefinition</td>
<td style="padding:15px">{base_path}/{version}/template/feature/definition/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateTemplateTypes(callback)</td>
<td style="padding:15px">generateTemplateTypes</td>
<td style="padding:15px">{base_path}/{version}/template/feature/types?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateTemplateTypeDefinition(typeName, version, callback)</td>
<td style="padding:15px">generateTemplateTypeDefinition</td>
<td style="padding:15px">{base_path}/{version}/template/feature/types/definition/{pathv1}/{pathv2}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateMasterTemplateDefinition(typeName, callback)</td>
<td style="padding:15px">generateMasterTemplateDefinition</td>
<td style="padding:15px">{base_path}/{version}/template/feature/master/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDeviceTemplatesAttachedToFeature(templateId, callback)</td>
<td style="padding:15px">getDeviceTemplatesAttachedToFeature</td>
<td style="padding:15px">{base_path}/{version}/template/feature/devicetemplates/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateMasterTemplateList(feature, callback)</td>
<td style="padding:15px">generateMasterTemplateList</td>
<td style="padding:15px">{base_path}/{version}/template/device?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editMasterTemplate(templateId, body, callback)</td>
<td style="padding:15px">editMasterTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createVSmartTemplate(body, callback)</td>
<td style="padding:15px">createVSmartTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getTemplateByPolicyId(policyId, callback)</td>
<td style="padding:15px">getTemplateByPolicyId</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/definition/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editVSmartTemplate(policyId, body, callback)</td>
<td style="padding:15px">editVSmartTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteVSmartTemplate(policyId, callback)</td>
<td style="padding:15px">deleteVSmartTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">resetVedgeCloud(uuid, callback)</td>
<td style="padding:15px">resetVedgeCloud</td>
<td style="padding:15px">{base_path}/{version}/system/device/reset/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateBootstrapConfigForVedges(body, callback)</td>
<td style="padding:15px">generateBootstrapConfigForVedges</td>
<td style="padding:15px">{base_path}/{version}/system/device/bootstrap/devices?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">decommissionVedgeCloud(uuid, callback)</td>
<td style="padding:15px">decommissionVedgeCloud</td>
<td style="padding:15px">{base_path}/{version}/system/device/decommission/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateBootstrapConfigForVedge(uuid, configtype = 'cloudinit', callback)</td>
<td style="padding:15px">generateBootstrapConfigForVedge</td>
<td style="padding:15px">{base_path}/{version}/system/device/bootstrap/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getBootstrapConfigZip(id, callback)</td>
<td style="padding:15px">getBootstrapConfigZip</td>
<td style="padding:15px">{base_path}/{version}/system/device/bootstrap/download/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">formPost(callback)</td>
<td style="padding:15px">formPost</td>
<td style="padding:15px">{base_path}/{version}/system/device/fileupload?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDevicesDetails(deviceCategory = 'vedges', model, state = 'tokengenerated', uuid, deviceIP, validity = 'valid', callback)</td>
<td style="padding:15px">getDevicesDetails</td>
<td style="padding:15px">{base_path}/{version}/system/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createDevice(body, callback)</td>
<td style="padding:15px">createDevice</td>
<td style="padding:15px">{base_path}/{version}/system/device?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getManagementSystemIPInfo(callback)</td>
<td style="padding:15px">getManagementSystemIPInfo</td>
<td style="padding:15px">{base_path}/{version}/system/device/management/systemip?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteDevice(uuid, callback)</td>
<td style="padding:15px">deleteDevice</td>
<td style="padding:15px">{base_path}/{version}/system/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editDevice(uuid, body, callback)</td>
<td style="padding:15px">editDevice</td>
<td style="padding:15px">{base_path}/{version}/system/device/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getControllerVEdgeSyncStatus(callback)</td>
<td style="padding:15px">getControllerVEdgeSyncStatus</td>
<td style="padding:15px">{base_path}/{version}/system/device/controllers/vedge/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getRootCertStatusAll(state = 'pending', callback)</td>
<td style="padding:15px">getRootCertStatusAll</td>
<td style="padding:15px">{base_path}/{version}/system/device/rootcertchain/status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">syncDevices(body, callback)</td>
<td style="padding:15px">syncDevices</td>
<td style="padding:15px">{base_path}/{version}/system/device/smartaccount/sync?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getCloudDockDataBasedOnDeviceType(deviceCategory = 'vedges', callback)</td>
<td style="padding:15px">getCloudDockDataBasedOnDeviceType</td>
<td style="padding:15px">{base_path}/{version}/system/device/type/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOutOfSyncTemplates(callback)</td>
<td style="padding:15px">getOutOfSyncTemplates</td>
<td style="padding:15px">{base_path}/{version}/template/device/syncstatus?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOutOfSyncDevices(templateId, callback)</td>
<td style="padding:15px">getOutOfSyncDevices</td>
<td style="padding:15px">{base_path}/{version}/template/device/syncstatus/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMasterTemplate(body, callback)</td>
<td style="padding:15px">createMasterTemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/feature?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createCLITemplate(body, callback)</td>
<td style="padding:15px">createCLITemplate</td>
<td style="padding:15px">{base_path}/{version}/template/device/cli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMasterTemplateDefinition(templateId, callback)</td>
<td style="padding:15px">getMasterTemplateDefinition</td>
<td style="padding:15px">{base_path}/{version}/template/device/object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getRunningConfig(deviceUUID, callback)</td>
<td style="padding:15px">getRunningConfig</td>
<td style="padding:15px">{base_path}/{version}/template/config/running/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">uploadConfig(deviceUUID, body, callback)</td>
<td style="padding:15px">uploadConfig</td>
<td style="padding:15px">{base_path}/{version}/template/config/attach/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAttachedConfig(deviceUUID, type, callback)</td>
<td style="padding:15px">getAttachedConfig</td>
<td style="padding:15px">{base_path}/{version}/template/config/attached/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getConfigDiff(deviceUUID, callback)</td>
<td style="padding:15px">getConfigDiff</td>
<td style="padding:15px">{base_path}/{version}/template/config/diff/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generateCLIModeDevices(type = 'vedge', callback)</td>
<td style="padding:15px">generateCLIModeDevices</td>
<td style="padding:15px">{base_path}/{version}/template/config/device/mode/cli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateDeviceToCLIMode(body, callback)</td>
<td style="padding:15px">updateDeviceToCLIMode</td>
<td style="padding:15px">{base_path}/{version}/template/config/device/mode/cli?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">generatevManageModeDevices(type = 'vedge', callback)</td>
<td style="padding:15px">generatevManageModeDevices</td>
<td style="padding:15px">{base_path}/{version}/template/config/device/mode/vmanage?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getCompatibleDevices(oldDeviceUUID, callback)</td>
<td style="padding:15px">getCompatibleDevices</td>
<td style="padding:15px">{base_path}/{version}/template/config/rmalist/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getVpnForDevice(uuid, callback)</td>
<td style="padding:15px">getVpnForDevice</td>
<td style="padding:15px">{base_path}/{version}/template/config/vpn/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">rmaUpdate(body, callback)</td>
<td style="padding:15px">rmaUpdate</td>
<td style="padding:15px">{base_path}/{version}/template/config/rmaupdate?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deActivatePolicy(policyId, callback)</td>
<td style="padding:15px">deActivatePolicy</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/deactivate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">activatePolicy(policyId, body, callback)</td>
<td style="padding:15px">activatePolicy</td>
<td style="padding:15px">{base_path}/{version}/template/policy/vsmart/activate/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">checkVSmartConnectivityStatus(callback)</td>
<td style="padding:15px">checkVSmartConnectivityStatus</td>
<td style="padding:15px">{base_path}/{version}/template