UNPKG

@itentialopensource/adapter-efficientip_solidserver

Version:

This adapter integrates with system described as: efficientip solidserver

1,022 lines (1,009 loc) 72.7 kB
## 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 Efficient iP SOLIDserver. 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 Efficient iP SOLIDserver.</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 Efficient iP SOLIDserver. 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">getIpamSpaceList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the spaces</td> <td style="padding:15px">{base_path}/{version}/ipam_space_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamSpaceCount(where, tags, callback)</td> <td style="padding:15px">Count the number of spaces</td> <td style="padding:15px">{base_path}/{version}/ipam_space_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamSpaceInfo(spaceId, callback)</td> <td style="padding:15px">Display the properties of a space</td> <td style="padding:15px">{base_path}/{version}/ipam_space_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamSpace(body, callback)</td> <td style="padding:15px">Add a space</td> <td style="padding:15px">{base_path}/{version}/ipam_space_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamSpace(body, callback)</td> <td style="padding:15px">Edit a space</td> <td style="padding:15px">{base_path}/{version}/ipam_space_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamSpace(spaceId, spaceName, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a space</td> <td style="padding:15px">{base_path}/{version}/ipam_space_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetworkList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv4 block/subnet-type networks</td> <td style="padding:15px">{base_path}/{version}/ipam_network_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetworkCount(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv4 block/subnet-type networks</td> <td style="padding:15px">{base_path}/{version}/ipam_network_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetworkInfo(networkId, callback)</td> <td style="padding:15px">Display the properties of an IPv4 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamNetwork(body, callback)</td> <td style="padding:15px">Add an IPv4 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamNetwork(body, callback)</td> <td style="padding:15px">Edit an IPv4 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamNetwork(parentNetworkId, spaceId, spaceName, networkAddr, networkEndAddr, networkId, networkMask, networkPrefix, networkSize, relativePosition, networkLevel, networkName, useReversedRelativePosition, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv4 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPoolList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv4 pools</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPoolCount(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv4 pools</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPoolInfo(poolId, callback)</td> <td style="padding:15px">Display the properties of an IPv4 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamPool(body, callback)</td> <td style="padding:15px">Add an IPv4 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamPool(body, callback)</td> <td style="padding:15px">Edit an IPv4 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamPool(poolEndIpAddr, poolId, poolSize, spaceId, spaceName, poolStartIpAddr, networkId, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv4 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddressList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv4 addresses</td> <td style="padding:15px">{base_path}/{version}/ipam_address_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddressCount(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv4 addresses</td> <td style="padding:15px">{base_path}/{version}/ipam_address_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddressInfo(addressId, callback)</td> <td style="padding:15px">Display the properties of an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamAddress(body, callback)</td> <td style="padding:15px">Add an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamAddress(body, callback)</td> <td style="padding:15px">Edit an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamAddress(addressHostaddr, addressId, spaceId, spaceName, addressName, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAliasList(orderby, where, limit, offset, addressId, tags, callback)</td> <td style="padding:15px">List the aliases of an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_alias_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAliasCount(where, addressId, tags, callback)</td> <td style="padding:15px">Count the number of aliases of an IPv4 address</td> <td style="padding:15px">{base_path}/{version}/ipam_alias_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamAlias(body, callback)</td> <td style="padding:15px">Add an IPv4 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamAlias(body, callback)</td> <td style="padding:15px">Edit an IPv4 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamAlias(aliasHostaddr, addressId, addressName, aliasId, spaceId, spaceName, aliasType, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv4 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetwork6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv6 block/subnet-type networks</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetwork6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv6 block/subnet-type networks</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamNetwork6Info(network6Id, callback)</td> <td style="padding:15px">Display the properties of an IPv6 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamNetwork6(body, callback)</td> <td style="padding:15px">Add an IPv6 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamNetwork6(body, callback)</td> <td style="padding:15px">Edit an IPv6 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamNetwork6(parentNetwork6Id, spaceId, spaceName, network6Addr, network6EndAddr, network6Id, network6Prefix, relativePosition, network6Name, networkLevel, useReversedRelativePosition, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv6 block/subnet-type network</td> <td style="padding:15px">{base_path}/{version}/ipam_network6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPool6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv6 pools</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPool6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv6 pools</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamPool6Info(pool6Id, callback)</td> <td style="padding:15px">Display the properties of an IPv6 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamPool6(body, callback)</td> <td style="padding:15px">Add an IPv6 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamPool6(body, callback)</td> <td style="padding:15px">Edit an IPv6 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamPool6(pool6EndIpAddr, pool6Id, spaceId, spaceName, pool6StartIpAddr, network6Id, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv6 pool</td> <td style="padding:15px">{base_path}/{version}/ipam_pool6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddress6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the IPv6 addresses</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddress6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of IPv6 addresses</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAddress6Info(address6Id, callback)</td> <td style="padding:15px">Display the properties of an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamAddress6(body, callback)</td> <td style="padding:15px">Add an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamAddress6(body, callback)</td> <td style="padding:15px">Edit an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamAddress6(address6Hostaddr, address6Id, spaceId, spaceName, address6Name, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_address6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAlias6List(orderby, where, limit, offset, address6Id, tags, callback)</td> <td style="padding:15px">List the aliases of an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_alias6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getIpamAlias6Count(where, address6Id, tags, callback)</td> <td style="padding:15px">Count the number of aliases of an IPv6 address</td> <td style="padding:15px">{base_path}/{version}/ipam_alias6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createIpamAlias6(body, callback)</td> <td style="padding:15px">Add an IPv6 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateIpamAlias6(body, callback)</td> <td style="padding:15px">Edit an IPv6 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteIpamAlias6(alias6Hostaddr, address6Id, address6Name, alias6Id, spaceId, spaceName, alias6Type, warnings = 'accept', callback)</td> <td style="padding:15px">Delete an IPv6 address alias</td> <td style="padding:15px">{base_path}/{version}/ipam_alias6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServerList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 servers</td> <td style="padding:15px">{base_path}/{version}/dhcp_server_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServerCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 servers</td> <td style="padding:15px">{base_path}/{version}/dhcp_server_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServerInfo(serverId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 server</td> <td style="padding:15px">{base_path}/{version}/dhcp_server_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpFailoverList(orderby, where, limit, offset, callback)</td> <td style="padding:15px">List the DHCPv4 failover channels</td> <td style="padding:15px">{base_path}/{version}/dhcp_failover_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpFailoverCount(where, callback)</td> <td style="padding:15px">Count the number of DHCPv4 failover channels</td> <td style="padding:15px">{base_path}/{version}/dhcp_failover_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpFailoverInfo(failoverId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 failover channel</td> <td style="padding:15px">{base_path}/{version}/dhcp_failover_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpGroupList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 groups</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpGroupCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 groups</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpGroupInfo(groupId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 group</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpGroup(body, callback)</td> <td style="padding:15px">Add a DHCPv4 group</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpGroup(body, callback)</td> <td style="padding:15px">Add a DHCPv4 group</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpGroup(serverId, serverName, groupId, groupName, serverHostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv4 group</td> <td style="padding:15px">{base_path}/{version}/dhcp_group_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpSharednetworkList(orderby, where, limit, offset, callback)</td> <td style="padding:15px">List the DHCPv4 shared networks</td> <td style="padding:15px">{base_path}/{version}/dhcp_sharednetwork_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpSharednetworkCount(where, callback)</td> <td style="padding:15px">Count the number of DHCPv4 shared networks</td> <td style="padding:15px">{base_path}/{version}/dhcp_sharednetwork_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpSharednetworkInfo(sharednetworkId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 shared network</td> <td style="padding:15px">{base_path}/{version}/dhcp_sharednetwork_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpSharednetwork(body, callback)</td> <td style="padding:15px">Add a DHCPv4 shared network</td> <td style="padding:15px">{base_path}/{version}/dhcp_sharednetwork_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpSharednetwork(body, callback)</td> <td style="padding:15px">Edit a DHCPv4 shared network</td> <td style="padding:15px">{base_path}/{version}/dhcp_sharednetwork_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScopeList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 scopes</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScopeCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 scopes</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScopeInfo(scopeId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpScope(body, callback)</td> <td style="padding:15px">Add a DHCPv4 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpScope(body, callback)</td> <td style="padding:15px">Edit a DHCPv4 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpScope(serverId, serverName, scopeId, scopeNetAddr, serverHostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv4 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRangeList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 ranges</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRangeCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 ranges</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRangeInfo(rangeId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpRange(body, callback)</td> <td style="padding:15px">Add a DHCPv4 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpRange(body, callback)</td> <td style="padding:15px">Edit a DHCPv4 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpRange(serverId, serverName, rangeEndAddr, rangeId, rangeName, rangeStartAddr, scopeId, serverHostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv4 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpLeaseList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 leases</td> <td style="padding:15px">{base_path}/{version}/dhcp_lease_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpLeaseCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 leases</td> <td style="padding:15px">{base_path}/{version}/dhcp_lease_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpLeaseInfo(leaseId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 lease</td> <td style="padding:15px">{base_path}/{version}/dhcp_lease_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStaticList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv4 statics</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStaticCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv4 statics</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStaticInfo(staticId, callback)</td> <td style="padding:15px">Display the properties of a DHCPv4 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpStatic(body, callback)</td> <td style="padding:15px">Add a DHCPv4 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpStatic(body, callback)</td> <td style="padding:15px">Edit a DHCPv4 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpStatic(serverId, serverName, staticAddr, staticId, scopeId, serverHostaddr, staticMacAddr, staticName, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv4 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclList(orderby, where, limit, offset, callback)</td> <td style="padding:15px">List the DHCP ACLs</td> <td style="padding:15px">{base_path}/{version}/dhcp_acl_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclCount(where, callback)</td> <td style="padding:15px">Count the number of DHCP ACLs</td> <td style="padding:15px">{base_path}/{version}/dhcp_acl_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclInfo(aclId, callback)</td> <td style="padding:15px">Display the properties of a DHCP ACL</td> <td style="padding:15px">{base_path}/{version}/dhcp_acl_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclentryList(orderby, where, limit, offset, callback)</td> <td style="padding:15px">List the DHCP ACL entries</td> <td style="padding:15px">{base_path}/{version}/dhcp_aclentry_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclentryCount(where, callback)</td> <td style="padding:15px">Count the number of DHCP ACL entries</td> <td style="padding:15px">{base_path}/{version}/dhcp_aclentry_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpAclentryInfo(aclentryId, callback)</td> <td style="padding:15px">Display the properties of a DHCP ACL entry</td> <td style="padding:15px">{base_path}/{version}/dhcp_aclentry_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServer6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 servers</td> <td style="padding:15px">{base_path}/{version}/dhcp_server6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServer6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv6 servers</td> <td style="padding:15px">{base_path}/{version}/dhcp_server6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpServer6Info(server6Id, callback)</td> <td style="padding:15px">Display the properties of a DHCPv6 server</td> <td style="padding:15px">{base_path}/{version}/dhcp_server6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpGroup6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 groups</td> <td style="padding:15px">{base_path}/{version}/dhcp_group6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScope6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 scopes</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScope6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv6 scopes</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpScope6Info(scope6Id, callback)</td> <td style="padding:15px">Display the properties of a DHCPv6 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpScope6(body, callback)</td> <td style="padding:15px">Add a DHCPv6 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpScope6(body, callback)</td> <td style="padding:15px">Edit a DHCPv6 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpScope6(server6Id, server6Name, scope6Id, scope6StartAddr, server6Hostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv6 scope</td> <td style="padding:15px">{base_path}/{version}/dhcp_scope6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRange6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 ranges</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRange6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv6 ranges</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpRange6Info(range6Id, callback)</td> <td style="padding:15px">Display the properties of a DHCPv6 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpRange6(body, callback)</td> <td style="padding:15px">Add a DHCPv6 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpRange6(body, callback)</td> <td style="padding:15px">Edit a DHCPv6 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpRange6(server6Id, server6Name, range6EndAddr, range6Id, range6StartAddr, scope6Id, server6Hostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv6 range</td> <td style="padding:15px">{base_path}/{version}/dhcp_range6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpLease6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 lesases</td> <td style="padding:15px">{base_path}/{version}/dhcp_lease6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpLease6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv6 leases</td> <td style="padding:15px">{base_path}/{version}/dhcp_lease6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStatic6List(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DHCPv6 statics</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStatic6Count(where, tags, callback)</td> <td style="padding:15px">Count the number of DHCPv6 statics</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDhcpStatic6Info(static6Id, callback)</td> <td style="padding:15px">Display the properties of a DHCPv6 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDhcpStatic6(body, callback)</td> <td style="padding:15px">Add a DHCPv6 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDhcpStatic6(body, callback)</td> <td style="padding:15px">Edit a DHCPv6 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDhcpStatic6(server6Id, server6Name, static6Addr, static6Id, static6Name, scope6Id, server6Hostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a DHCPv6 static</td> <td style="padding:15px">{base_path}/{version}/dhcp_static6_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsServerList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DNS servers</td> <td style="padding:15px">{base_path}/{version}/dns_server_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsServerCount(where, tags, callback)</td> <td style="padding:15px">Count the number of DNS servers</td> <td style="padding:15px">{base_path}/{version}/dns_server_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsServerInfo(serverId, callback)</td> <td style="padding:15px">Display the properties of a DNS server</td> <td style="padding:15px">{base_path}/{version}/dns_server_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsViewList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the views</td> <td style="padding:15px">{base_path}/{version}/dns_view_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsViewCount(where, tags, callback)</td> <td style="padding:15px">Count the number of views</td> <td style="padding:15px">{base_path}/{version}/dns_view_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsViewInfo(viewId, callback)</td> <td style="padding:15px">Display the properties of a view</td> <td style="padding:15px">{base_path}/{version}/dns_view_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDnsView(body, callback)</td> <td style="padding:15px">Add a view</td> <td style="padding:15px">{base_path}/{version}/dns_view_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDnsView(body, callback)</td> <td style="padding:15px">Edit a view</td> <td style="padding:15px">{base_path}/{version}/dns_view_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDnsView(serverId, serverName, viewId, viewName, serverHostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a view</td> <td style="padding:15px">{base_path}/{version}/dns_view_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsZoneList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the DNS options of a zone</td> <td style="padding:15px">{base_path}/{version}/dns_zone_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsZoneCount(where, tags, callback)</td> <td style="padding:15px">Count the number of zones</td> <td style="padding:15px">{base_path}/{version}/dns_zone_count?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsZoneInfo(zoneId, callback)</td> <td style="padding:15px">Display the properties of a zone</td> <td style="padding:15px">{base_path}/{version}/dns_zone_info?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createDnsZone(body, callback)</td> <td style="padding:15px">Add a zone</td> <td style="padding:15px">{base_path}/{version}/dns_zone_add?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">updateDnsZone(body, callback)</td> <td style="padding:15px">Edit a zone</td> <td style="padding:15px">{base_path}/{version}/dns_zone_edit?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteDnsZone(serverId, serverName, viewId, viewName, zoneId, zoneName, serverHostaddr, warnings = 'accept', callback)</td> <td style="padding:15px">Delete a zone</td> <td style="padding:15px">{base_path}/{version}/dns_zone_delete?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsRrList(orderby, where, limit, offset, tags, callback)</td> <td style="padding:15px">List the resource records</td> <td style="padding:15px">{base_path}/{version}/dns_rr_list?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getDnsRrCount(where, ta