## 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 Virtual Infrastructure. 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 VMware Virtual Infrastructure.</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 Vmware_virtual_infrastructure. 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">postAlarmMoIdReconfigureAlarm(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures the alarm properties.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/ReconfigureAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmMoIdRemoveAlarm(moId, callback)</td>
    <td style="padding:15px">Removes the alarm.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/RemoveAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAlarmMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAlarmMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about this alarm.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAlarmMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Alarm/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdAcknowledgeAlarm(moId, body, callback)</td>
    <td style="padding:15px">Acknowledge the alarm on a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/AcknowledgeAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdClearTriggeredAlarms(moId, body, callback)</td>
    <td style="padding:15px">Resets all triggered alarms to green.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/ClearTriggeredAlarms?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdCreateAlarm(moId, body, callback)</td>
    <td style="padding:15px">Creates an alarm.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/CreateAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdDisableAlarm(moId, body, callback)</td>
    <td style="padding:15px">Disables alarm for a specific entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/DisableAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdEnableAlarm(moId, body, callback)</td>
    <td style="padding:15px">Enables alarm for a specific entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/EnableAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdGetAlarm(moId, body, callback)</td>
    <td style="padding:15px">Available alarms defined on the entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/GetAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdAreAlarmActionsEnabled(moId, body, callback)</td>
    <td style="padding:15px">Returns true if alarm actions are enabled on the specified managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/AreAlarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdGetAlarmState(moId, body, callback)</td>
    <td style="padding:15px">The state of instantiated alarms on the entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/GetAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAlarmManagerMoIdEnableAlarmActions(moId, body, callback)</td>
    <td style="padding:15px">Enables or disables alarms on the specified managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/EnableAlarmActions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAlarmManagerMoIdDefaultExpression(moId, callback)</td>
    <td style="padding:15px">The default setting for each alarm expression, used to populate the
initial client wizard screen.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/defaultExpression?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAlarmManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">The static descriptive strings used in alarms.</td>
    <td style="padding:15px">{base_path}/{version}/AlarmManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdAddAuthorizationRole(moId, body, callback)</td>
    <td style="padding:15px">Adds a new role.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/AddAuthorizationRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdFetchUserPrivilegeOnEntities(moId, body, callback)</td>
    <td style="padding:15px">Get the list of effective privileges for a user,
either granted explicitly, or through group member</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/FetchUserPrivilegeOnEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdHasPrivilegeOnEntities(moId, body, callback)</td>
    <td style="padding:15px">Check whether a session holds a set of privileges on a set of managed entities.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/HasPrivilegeOnEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdHasPrivilegeOnEntity(moId, body, callback)</td>
    <td style="padding:15px">Check whether a session holds a set of privileges on a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/HasPrivilegeOnEntity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdHasUserPrivilegeOnEntities(moId, body, callback)</td>
    <td style="padding:15px">Checks if a user holds a certain set of privileges on a number of
managed entities.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/HasUserPrivilegeOnEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdMergePermissions(moId, body, callback)</td>
    <td style="padding:15px">Reassigns all permissions of a role to another role.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/MergePermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdRemoveEntityPermission(moId, body, callback)</td>
    <td style="padding:15px">Removes a permission rule from an entity.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/RemoveEntityPermission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdRemoveAuthorizationRole(moId, body, callback)</td>
    <td style="padding:15px">Removes a role.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/RemoveAuthorizationRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdResetEntityPermissions(moId, body, callback)</td>
    <td style="padding:15px">Update the entire set of permissions defined on an entity.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/ResetEntityPermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdRetrieveAllPermissions(moId, callback)</td>
    <td style="padding:15px">Finds all permissions defined in the system.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/RetrieveAllPermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdRetrieveEntityPermissions(moId, body, callback)</td>
    <td style="padding:15px">Gets permissions defined on or effective on a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/RetrieveEntityPermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdRetrieveRolePermissions(moId, body, callback)</td>
    <td style="padding:15px">Finds all the permissions that use a particular role.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/RetrieveRolePermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdSetEntityPermissions(moId, body, callback)</td>
    <td style="padding:15px">Defines one or more permission rules on an entity or updates rules if already
present for the given</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/SetEntityPermissions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postAuthorizationManagerMoIdUpdateAuthorizationRole(moId, body, callback)</td>
    <td style="padding:15px">Updates a role's name or privileges.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/UpdateAuthorizationRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAuthorizationManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Static, descriptive strings for system roles and privileges.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAuthorizationManagerMoIdPrivilegeList(moId, callback)</td>
    <td style="padding:15px">The list of system-defined privileges.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/privilegeList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getAuthorizationManagerMoIdRoleList(moId, callback)</td>
    <td style="padding:15px">The currently defined roles in the system, including
static system-defined roles.</td>
    <td style="padding:15px">{base_path}/{version}/AuthorizationManager/{pathv1}/roleList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCertificateManagerMoIdCertMgrRefreshCACertificatesAndCRLsTask(moId, body, callback)</td>
    <td style="padding:15px">Re-fetches certificates of trusted CAs and the Certificate Revocation
Lists (CRL) from the appropri</td>
    <td style="padding:15px">{base_path}/{version}/CertificateManager/{pathv1}/CertMgrRefreshCACertificatesAndCRLs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCertificateManagerMoIdCertMgrRefreshCertificatesTask(moId, body, callback)</td>
    <td style="padding:15px">Gets CSRs from the hosts and then gets these certificates signed by the
VMware Certificate Service</td>
    <td style="padding:15px">{base_path}/{version}/CertificateManager/{pathv1}/CertMgrRefreshCertificates_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCertificateManagerMoIdCertMgrRevokeCertificatesTask(moId, body, callback)</td>
    <td style="padding:15px">Revokes the certificates of some hosts.</td>
    <td style="padding:15px">{base_path}/{version}/CertificateManager/{pathv1}/CertMgrRevokeCertificates_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdAbandonHciWorkflow(moId, callback)</td>
    <td style="padding:15px">Opt out of the HCI workflow.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/AbandonHciWorkflow?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdAddHostTask(moId, body, callback)</td>
    <td style="padding:15px">Adds a host to the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/AddHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdApplyRecommendation(moId, body, callback)</td>
    <td style="padding:15px">Applies a recommendation from the drsRecommendation or the
recommendation list.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ApplyRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdCancelRecommendation(moId, body, callback)</td>
    <td style="padding:15px">Cancels a recommendation.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/CancelRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdConfigureHCITask(moId, body, callback)</td>
    <td style="padding:15px">Configures the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ConfigureHCI_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdClusterEnterMaintenanceMode(moId, body, callback)</td>
    <td style="padding:15px">The API takes a list of hosts in the cluster as input, and
returns a list of hosts in "ClusterMaint</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ClusterEnterMaintenanceMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdEvcManager(moId, callback)</td>
    <td style="padding:15px">A managed object that controls Enhanced vMotion Compatibility mode for
this cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/EvcManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdExtendHCITask(moId, body, callback)</td>
    <td style="padding:15px">Extend an existing HCI cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ExtendHCI_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdFindRulesForVm(moId, body, callback)</td>
    <td style="padding:15px">Finds all enabled and disabled VM-VM Affinity and Anti-Affinity rules,
involving the given Virtual</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/FindRulesForVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdGetResourceUsage(moId, callback)</td>
    <td style="padding:15px">This API can be invoked to get the current CPU, memory and storage usage
in the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/GetResourceUsage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdGetSystemVMsRestrictedDatastores(moId, callback)</td>
    <td style="padding:15px">Retrieve all the datastores that are either listed in
*ClusterSystemVMsConfigInfo.notAllowedDatasto</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/GetSystemVMsRestrictedDatastores?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdMoveHostIntoTask(moId, body, callback)</td>
    <td style="padding:15px">Moves an existing host into a cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/MoveHostInto_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdMoveIntoTask(moId, body, callback)</td>
    <td style="padding:15px">Moves an existing host into a cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/MoveInto_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdPlaceVm(moId, body, callback)</td>
    <td style="padding:15px">This method returns a *PlacementResult* object.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/PlaceVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdRecommendHostsForVm(moId, body, callback)</td>
    <td style="padding:15px">Gets a recommendation for where to power on, resume, revert
from powered-off state to powered on st</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/RecommendHostsForVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdReconfigureClusterTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures a cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ReconfigureCluster_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdReconfigureComputeResourceTask(moId, body, callback)</td>
    <td style="padding:15px">Change the compute resource configuration.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ReconfigureComputeResource_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdRefreshRecommendation(moId, callback)</td>
    <td style="padding:15px">Make DRS invoke again and return a new list of recommendations.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/RefreshRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdRetrieveDasAdvancedRuntimeInfo(moId, callback)</td>
    <td style="padding:15px">Retrieve DAS advanced runtime info for this cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/RetrieveDasAdvancedRuntimeInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdSetCryptoMode(moId, body, callback)</td>
    <td style="padding:15px">Set the desired encryption mode and host key for the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/SetCryptoMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdStampAllRulesWithUuidTask(moId, callback)</td>
    <td style="padding:15px">Stamp all rules in the cluster with ruleUuid.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/StampAllRulesWithUuid_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterComputeResourceMoIdValidateHCIConfiguration(moId, body, callback)</td>
    <td style="padding:15px">Validate HCI configuration in pre-configure and post-configure use-cases.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/ValidateHCIConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdActionHistory(moId, callback)</td>
    <td style="padding:15px">The set of actions that have been performed recently.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/actionHistory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdConfigManagerEnabled(moId, callback)</td>
    <td style="padding:15px">Flag indicating whether or not desired configuration
management platform is enabled on the compute</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/configManagerEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdConfiguration(moId, callback)</td>
    <td style="padding:15px">Configuration of the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/configuration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdConfigurationEx(moId, callback)</td>
    <td style="padding:15px">Configuration of the compute resource; applies to both standalone hosts
and clusters.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/configurationEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">The datastore property is the subset of datastore objects in the datacenter
available in this Compu</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdDrsFault(moId, callback)</td>
    <td style="padding:15px">A collection of the DRS faults generated in the last DRS invocation.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/drsFault?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdDrsRecommendation(moId, callback)</td>
    <td style="padding:15px">If DRS is enabled, this returns the set of recommended
migrations from the DRS module.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/drsRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdEnvironmentBrowser(moId, callback)</td>
    <td style="padding:15px">The environment browser object that identifies the environments that are supported
on this compute</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/environmentBrowser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdHciConfig(moId, callback)</td>
    <td style="padding:15px">This is applicable to clusters which are configured using the HCI
workflow and contains data relate</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/hciConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdHost(moId, callback)</td>
    <td style="padding:15px">List of hosts that are part of this compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdLifecycleManaged(moId, callback)</td>
    <td style="padding:15px">Flag indicating whether or not the lifecycle of the compute resource is
managed.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/lifecycleManaged?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdMigrationHistory(moId, callback)</td>
    <td style="padding:15px">The set of migration decisions that have recently been performed.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/migrationHistory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">The subset of network objects available in the datacenter that is available in
this ComputeResource.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdRecommendation(moId, callback)</td>
    <td style="padding:15px">List of recommended actions for the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/recommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdResourcePool(moId, callback)</td>
    <td style="padding:15px">Reference to root resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/resourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic runtime information about a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdSummaryEx(moId, callback)</td>
    <td style="padding:15px">The cluster summary.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/summaryEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterComputeResourceMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterComputeResource/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterEVCManagerMoIdCheckAddHostEvcTask(moId, body, callback)</td>
    <td style="padding:15px">Test the validity of adding a host into the managed cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/CheckAddHostEvc_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterEVCManagerMoIdCheckConfigureEvcModeTask(moId, body, callback)</td>
    <td style="padding:15px">Test the validity of configuring an EVC mode on the managed cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/CheckConfigureEvcMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterEVCManagerMoIdConfigureEvcModeTask(moId, body, callback)</td>
    <td style="padding:15px">Set the EVC mode.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/ConfigureEvcMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterEVCManagerMoIdDisableEvcModeTask(moId, callback)</td>
    <td style="padding:15px">Disable EVC.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/DisableEvcMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterEVCManagerMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterEVCManagerMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterEVCManagerMoIdEvcState(moId, callback)</td>
    <td style="padding:15px">EVC-related state of the managed cluster.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/evcState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterEVCManagerMoIdManagedCluster(moId, callback)</td>
    <td style="padding:15px">Cluster associated with this manager object.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/managedCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterEVCManagerMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterEVCManager/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdAssociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Associate a profile with a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/AssociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdCheckProfileComplianceTask(moId, body, callback)</td>
    <td style="padding:15px">Check compliance of an entity against a Profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/CheckProfileCompliance_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdDestroyProfile(moId, callback)</td>
    <td style="padding:15px">Destroy the profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/DestroyProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdDissociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Remove the association between a profile and a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/DissociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdExportProfile(moId, callback)</td>
    <td style="padding:15px">Export the profile in a serialized form.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/ExportProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdRetrieveDescription(moId, callback)</td>
    <td style="padding:15px">Returns the localizable description for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/RetrieveDescription?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileMoIdUpdateClusterProfile(moId, body, callback)</td>
    <td style="padding:15px">Update the ClusterProfile with the specified config.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/UpdateClusterProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdComplianceStatus(moId, callback)</td>
    <td style="padding:15px">Overall compliance of entities associated with this profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/complianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration data for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdCreatedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was created.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/createdTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Localizable description of the profile</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdEntity(moId, callback)</td>
    <td style="padding:15px">List of managed entities associated with the profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/entity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdModifiedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was last modified.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/modifiedTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of the profile.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfile/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileManagerMoIdCreateProfile(moId, body, callback)</td>
    <td style="padding:15px">Create a profile from the specified CreateSpec.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfileManager/{pathv1}/CreateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileManagerMoIdFindAssociatedProfile(moId, body, callback)</td>
    <td style="padding:15px">Get the profile(s) to which this entity is associated.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfileManager/{pathv1}/FindAssociatedProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postClusterProfileManagerMoIdQueryPolicyMetadata(moId, body, callback)</td>
    <td style="padding:15px">Get the Metadata information for the policyNames.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfileManager/{pathv1}/QueryPolicyMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getClusterProfileManagerMoIdProfile(moId, callback)</td>
    <td style="padding:15px">A list of profiles known to this ProfileManager.</td>
    <td style="padding:15px">{base_path}/{version}/ClusterProfileManager/{pathv1}/profile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postComputeResourceMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postComputeResourceMoIdReconfigureComputeResourceTask(moId, body, callback)</td>
    <td style="padding:15px">Change the compute resource configuration.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/ReconfigureComputeResource_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postComputeResourceMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postComputeResourceMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postComputeResourceMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdConfigManagerEnabled(moId, callback)</td>
    <td style="padding:15px">Flag indicating whether or not desired configuration
management platform is enabled on the compute</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/configManagerEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdConfigurationEx(moId, callback)</td>
    <td style="padding:15px">Configuration of the compute resource; applies to both standalone hosts
and clusters.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/configurationEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">The datastore property is the subset of datastore objects in the datacenter
available in this Compu</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdEnvironmentBrowser(moId, callback)</td>
    <td style="padding:15px">The environment browser object that identifies the environments that are supported
on this compute</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/environmentBrowser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdHost(moId, callback)</td>
    <td style="padding:15px">List of hosts that are part of this compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdLifecycleManaged(moId, callback)</td>
    <td style="padding:15px">Flag indicating whether or not the lifecycle of the compute resource is
managed.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/lifecycleManaged?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">The subset of network objects available in the datacenter that is available in
this ComputeResource.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdResourcePool(moId, callback)</td>
    <td style="padding:15px">Reference to root resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/resourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic runtime information about a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getComputeResourceMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ComputeResource/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postContainerViewMoIdDestroyView(moId, callback)</td>
    <td style="padding:15px">Destroy this view.</td>
    <td style="padding:15px">{base_path}/{version}/ContainerView/{pathv1}/DestroyView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getContainerViewMoIdContainer(moId, callback)</td>
    <td style="padding:15px">The Folder, Datacenter, ComputeResource, ResourcePool, or HostSystem instance
that provides the obj</td>
    <td style="padding:15px">{base_path}/{version}/ContainerView/{pathv1}/container?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getContainerViewMoIdRecursive(moId, callback)</td>
    <td style="padding:15px">Whether to include only the immediate children of the container instance,
or to include additional</td>
    <td style="padding:15px">{base_path}/{version}/ContainerView/{pathv1}/recursive?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getContainerViewMoIdType(moId, callback)</td>
    <td style="padding:15px">An optional list of types to be applied to the set of objects in the view.</td>
    <td style="padding:15px">{base_path}/{version}/ContainerView/{pathv1}/type?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getContainerViewMoIdView(moId, callback)</td>
    <td style="padding:15px">The list of references to objects mapped by this view.</td>
    <td style="padding:15px">{base_path}/{version}/ContainerView/{pathv1}/view?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerMoIdAddKey(moId, body, callback)</td>
    <td style="padding:15px">Add an existing key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/AddKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerMoIdAddKeys(moId, body, callback)</td>
    <td style="padding:15px">Add multiple existing keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/AddKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerMoIdListKeys(moId, body, callback)</td>
    <td style="padding:15px">List keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/ListKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerMoIdRemoveKey(moId, body, callback)</td>
    <td style="padding:15px">Remove a key (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/RemoveKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerMoIdRemoveKeys(moId, body, callback)</td>
    <td style="padding:15px">Remove multiple keys (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/RemoveKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCryptoManagerMoIdEnabled(moId, callback)</td>
    <td style="padding:15px">Indicate if the encryption feature is enabled.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManager/{pathv1}/enabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdAddKey(moId, body, callback)</td>
    <td style="padding:15px">Add an existing key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/AddKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdAddKeys(moId, body, callback)</td>
    <td style="padding:15px">Add multiple existing keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/AddKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdChangeKeyTask(moId, body, callback)</td>
    <td style="padding:15px">Change the key used for core dump encryption
Note: *CryptoManagerHost.CryptoManagerHostEnable* must</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/ChangeKey_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdCryptoManagerHostDisable(moId, callback)</td>
    <td style="padding:15px">Disable encryption on host, if host was in crypto safe mode, put it in
pendingIncapable state and h</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/CryptoManagerHostDisable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdCryptoManagerHostEnable(moId, body, callback)</td>
    <td style="padding:15px">Begin core dump encryption by specifying the encryption key and put
the host in *safe* state
Note:</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/CryptoManagerHostEnable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdGetCryptoKeyStatus(moId, body, callback)</td>
    <td style="padding:15px">Get the key status on the host.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/GetCryptoKeyStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdListKeys(moId, body, callback)</td>
    <td style="padding:15px">List keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/ListKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdCryptoManagerHostPrepare(moId, callback)</td>
    <td style="padding:15px">Prime the host to receive sensitive information and put the host
in *prepared* state</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/CryptoManagerHostPrepare?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdRemoveKey(moId, body, callback)</td>
    <td style="padding:15px">Remove a key (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/RemoveKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostMoIdRemoveKeys(moId, body, callback)</td>
    <td style="padding:15px">Remove multiple keys (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/RemoveKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCryptoManagerHostMoIdEnabled(moId, callback)</td>
    <td style="padding:15px">Indicate if the encryption feature is enabled.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHost/{pathv1}/enabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdAddKey(moId, body, callback)</td>
    <td style="padding:15px">Add an existing key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/AddKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdAddKeys(moId, body, callback)</td>
    <td style="padding:15px">Add multiple existing keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/AddKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdChangeKeyTask(moId, body, callback)</td>
    <td style="padding:15px">Change the key used for core dump encryption
Note: *CryptoManagerHost.CryptoManagerHostEnable* must</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/ChangeKey_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdCryptoManagerHostDisable(moId, callback)</td>
    <td style="padding:15px">Disable encryption on host, if host was in crypto safe mode, put it in
pendingIncapable state and h</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/CryptoManagerHostDisable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdCryptoManagerHostEnable(moId, body, callback)</td>
    <td style="padding:15px">Begin core dump encryption by specifying the encryption key and put
the host in *safe* state
Note:</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/CryptoManagerHostEnable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdGetCryptoKeyStatus(moId, body, callback)</td>
    <td style="padding:15px">Get the key status on the host.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/GetCryptoKeyStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdListKeys(moId, body, callback)</td>
    <td style="padding:15px">List keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/ListKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdCryptoManagerHostPrepare(moId, callback)</td>
    <td style="padding:15px">Prime the host to receive sensitive information and put the host
in *prepared* state</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/CryptoManagerHostPrepare?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdRemoveKey(moId, body, callback)</td>
    <td style="padding:15px">Remove a key (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/RemoveKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerHostKMSMoIdRemoveKeys(moId, body, callback)</td>
    <td style="padding:15px">Remove multiple keys (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/RemoveKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCryptoManagerHostKMSMoIdEnabled(moId, callback)</td>
    <td style="padding:15px">Indicate if the encryption feature is enabled.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerHostKMS/{pathv1}/enabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdIsKmsClusterActive(moId, body, callback)</td>
    <td style="padding:15px">Check whether an active KMS exists in cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/IsKmsClusterActive?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdAddKey(moId, body, callback)</td>
    <td style="padding:15px">Add an existing key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/AddKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdAddKeys(moId, body, callback)</td>
    <td style="padding:15px">Add multiple existing keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/AddKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdGenerateClientCsr(moId, body, callback)</td>
    <td style="padding:15px">Generate a certificate signing request with its private key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/GenerateClientCsr?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdGenerateKey(moId, body, callback)</td>
    <td style="padding:15px">Generate new encryption key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/GenerateKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdGenerateSelfSignedClientCert(moId, body, callback)</td>
    <td style="padding:15px">Generate a self-signed client certificate with its private key.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/GenerateSelfSignedClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdGetDefaultKmsCluster(moId, body, callback)</td>
    <td style="padding:15px">Get the default KMS cluster of the specified managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/GetDefaultKmsCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdListKeys(moId, body, callback)</td>
    <td style="padding:15px">List keys.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/ListKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdListKmipServers(moId, body, callback)</td>
    <td style="padding:15px">List the registered KMIP servers.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/ListKmipServers?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdListKmsClusters(moId, body, callback)</td>
    <td style="padding:15px">List the KMS clusters information.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/ListKmsClusters?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdMarkDefault(moId, body, callback)</td>
    <td style="padding:15px">Set the default KMIP cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/MarkDefault?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdQueryCryptoKeyStatus(moId, body, callback)</td>
    <td style="padding:15px">Check CryptoKey status, such as if VC can access the key, if the key is
used by some VMs or as host</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/QueryCryptoKeyStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRegisterKmipServer(moId, body, callback)</td>
    <td style="padding:15px">Register a KMIP server.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RegisterKmipServer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRegisterKmsCluster(moId, body, callback)</td>
    <td style="padding:15px">Register the specified KMS cluster to the CryptoManager.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RegisterKmsCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRemoveKey(moId, body, callback)</td>
    <td style="padding:15px">Remove a key (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RemoveKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRemoveKeys(moId, body, callback)</td>
    <td style="padding:15px">Remove multiple keys (only the UUID is needed to remove).</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RemoveKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRemoveKmipServer(moId, body, callback)</td>
    <td style="padding:15px">Remove a KMIP server, even if in use.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RemoveKmipServer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRetrieveClientCert(moId, body, callback)</td>
    <td style="padding:15px">Get the client certificate of the KMIP cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RetrieveClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRetrieveClientCsr(moId, body, callback)</td>
    <td style="padding:15px">Get the generated client certificate signing request.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RetrieveClientCsr?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRetrieveKmipServerCert(moId, body, callback)</td>
    <td style="padding:15px">Get the server certficate.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RetrieveKmipServerCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRetrieveKmipServersStatusTask(moId, body, callback)</td>
    <td style="padding:15px">Get the status of the KMIP servers.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RetrieveKmipServersStatus_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdRetrieveSelfSignedClientCert(moId, body, callback)</td>
    <td style="padding:15px">Get the generated self signed client certificate.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/RetrieveSelfSignedClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdSetDefaultKmsCluster(moId, body, callback)</td>
    <td style="padding:15px">Set the default KMS cluster for the specified managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/SetDefaultKmsCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdSetKeyCustomAttributes(moId, body, callback)</td>
    <td style="padding:15px">Set crypto key's custom attributes.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/SetKeyCustomAttributes?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUnregisterKmsCluster(moId, body, callback)</td>
    <td style="padding:15px">Unregister the specified KMS cluster from the CryptoManager.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UnregisterKmsCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUpdateKmipServer(moId, body, callback)</td>
    <td style="padding:15px">Update a KMIP server.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UpdateKmipServer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUpdateKmsSignedCsrClientCert(moId, body, callback)</td>
    <td style="padding:15px">Set KMS server signed certificate as KMIP client certificate for the KMS
cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UpdateKmsSignedCsrClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUpdateSelfSignedClientCert(moId, body, callback)</td>
    <td style="padding:15px">Set a self-signed certificate as KMIP client certificate for the KMS
cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UpdateSelfSignedClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUploadClientCert(moId, body, callback)</td>
    <td style="padding:15px">Set a client certificate with private key for the KMIP cluster.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UploadClientCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCryptoManagerKmipMoIdUploadKmipServerCert(moId, body, callback)</td>
    <td style="padding:15px">Upload a server certficate.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/UploadKmipServerCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCryptoManagerKmipMoIdEnabled(moId, callback)</td>
    <td style="padding:15px">Indicate if the encryption feature is enabled.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/enabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCryptoManagerKmipMoIdKmipServers(moId, callback)</td>
    <td style="padding:15px">A list of registered KMIP servers, grouped by clusters.</td>
    <td style="padding:15px">{base_path}/{version}/CryptoManagerKmip/{pathv1}/kmipServers?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomFieldsManagerMoIdAddCustomFieldDef(moId, body, callback)</td>
    <td style="padding:15px">Creates a new custom field.</td>
    <td style="padding:15px">{base_path}/{version}/CustomFieldsManager/{pathv1}/AddCustomFieldDef?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomFieldsManagerMoIdRemoveCustomFieldDef(moId, body, callback)</td>
    <td style="padding:15px">Removes a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/CustomFieldsManager/{pathv1}/RemoveCustomFieldDef?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomFieldsManagerMoIdRenameCustomFieldDef(moId, body, callback)</td>
    <td style="padding:15px">Renames a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/CustomFieldsManager/{pathv1}/RenameCustomFieldDef?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomFieldsManagerMoIdSetField(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field on an entity.</td>
    <td style="padding:15px">{base_path}/{version}/CustomFieldsManager/{pathv1}/SetField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCustomFieldsManagerMoIdField(moId, callback)</td>
    <td style="padding:15px">List of custom fields defined on this server.</td>
    <td style="padding:15px">{base_path}/{version}/CustomFieldsManager/{pathv1}/field?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdCheckCustomizationResources(moId, body, callback)</td>
    <td style="padding:15px">Validate that required resources are available on the server to customize a
particular guest operat</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/CheckCustomizationResources?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdCreateCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Creates a new specification.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/CreateCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdDeleteCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Deletes a specification.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/DeleteCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdDuplicateCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Duplicates a specification.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/DuplicateCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdDoesCustomizationSpecExist(moId, body, callback)</td>
    <td style="padding:15px">Whether or not a specification exists.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/DoesCustomizationSpecExist?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdGetCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Obtains a specification for the given name.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/GetCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdOverwriteCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Overwrites an existing specification, possibly after retrieving
(by using 'get') and editing it.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/OverwriteCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdRenameCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Renames a specification.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/RenameCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdCustomizationSpecItemToXml(moId, body, callback)</td>
    <td style="padding:15px">Converts a specification item to XML text</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/CustomizationSpecItemToXml?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postCustomizationSpecManagerMoIdXmlToCustomizationSpecItem(moId, body, callback)</td>
    <td style="padding:15px">Converts an XML string to a specification item</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/XmlToCustomizationSpecItem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCustomizationSpecManagerMoIdEncryptionKey(moId, callback)</td>
    <td style="padding:15px">Gets a binary public encryption key that can be used to encrypt
passwords in stored specifications.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/encryptionKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getCustomizationSpecManagerMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Gets a list of information on available specifications.</td>
    <td style="padding:15px">{base_path}/{version}/CustomizationSpecManager/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdBatchQueryConnectInfo(moId, body, callback)</td>
    <td style="padding:15px">This interface returns a list of information about the specified hosts
without adding them to the v</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/BatchQueryConnectInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdPowerOnMultiVMTask(moId, body, callback)</td>
    <td style="padding:15px">Powers on multiple virtual machines in a data center.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/PowerOnMultiVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdQueryDatacenterConfigOptionDescriptor(moId, callback)</td>
    <td style="padding:15px">The list of possible choices for
*DatacenterConfigSpec.defaultHardwareVersionKey*.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/queryDatacenterConfigOptionDescriptor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdQueryConnectionInfo(moId, body, callback)</td>
    <td style="padding:15px">This method provides a way of getting basic information about a host without
adding it to a datacen</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/QueryConnectionInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdQueryConnectionInfoViaSpec(moId, body, callback)</td>
    <td style="padding:15px">This method provides a way of getting basic information about a host
without adding it to a datacen</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/QueryConnectionInfoViaSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdReconfigureDatacenterTask(moId, body, callback)</td>
    <td style="padding:15px">Change the datacenter configuration.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/ReconfigureDatacenter_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatacenterMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdConfiguration(moId, callback)</td>
    <td style="padding:15px">Configuration of the datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/configuration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">A collection of references to the datastore objects
available in this datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdDatastoreFolder(moId, callback)</td>
    <td style="padding:15px">A reference to the folder hierarchy that contains
the datastores for this datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/datastoreFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdHostFolder(moId, callback)</td>
    <td style="padding:15px">A reference to the folder hierarchy that contains
the compute resources, including hosts and cluste</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/hostFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">A collection of references to the network objects
available in this datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdNetworkFolder(moId, callback)</td>
    <td style="padding:15px">A reference to the folder hierarchy that contains the network entities
for this datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/networkFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatacenterMoIdVmFolder(moId, callback)</td>
    <td style="padding:15px">A reference to the folder hierarchy that contains *VirtualMachine*
virtual machine templates (ident</td>
    <td style="padding:15px">{base_path}/{version}/Datacenter/{pathv1}/vmFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdDestroyDatastore(moId, callback)</td>
    <td style="padding:15px">Removes a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/DestroyDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdDatastoreEnterMaintenanceMode(moId, callback)</td>
    <td style="padding:15px">Puts the datastore in maintenance mode.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/DatastoreEnterMaintenanceMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdDatastoreExitMaintenanceModeTask(moId, callback)</td>
    <td style="padding:15px">Takes the datastore out of maintenance mode.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/DatastoreExitMaintenanceMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdIsClusteredVmdkEnabled(moId, callback)</td>
    <td style="padding:15px">Check whether clustered VMDK feature is enabled on this datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/IsClusteredVmdkEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdRefreshDatastore(moId, callback)</td>
    <td style="padding:15px">Explicitly refreshes free-space and capacity values in *Datastore.summary*
and *Datastore.info*.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/RefreshDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdRefreshDatastoreStorageInfo(moId, callback)</td>
    <td style="padding:15px">Refreshes all storage related information including free-space, capacity,
and detailed usage of vir</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/RefreshDatastoreStorageInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdRenameDatastore(moId, body, callback)</td>
    <td style="padding:15px">Renames a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/RenameDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdUpdateVVolVirtualMachineFilesTask(moId, body, callback)</td>
    <td style="padding:15px">Scan a VVol storage container to update file paths and objectID pointers
embedded in virtual machin</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/UpdateVVolVirtualMachineFiles_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreMoIdUpdateVirtualMachineFilesTask(moId, body, callback)</td>
    <td style="padding:15px">Update file paths embedded in virtual machine files on the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/UpdateVirtualMachineFiles_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdBrowser(moId, callback)</td>
    <td style="padding:15px">DatastoreBrowser used to browse this datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/browser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Capabilities of this datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdHost(moId, callback)</td>
    <td style="padding:15px">Hosts attached to this datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Specific information about the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdIormConfiguration(moId, callback)</td>
    <td style="padding:15px">Configuration of storage I/O resource management for the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/iormConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Global properties of the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDatastoreMoIdVm(moId, callback)</td>
    <td style="padding:15px">Virtual machines stored on this datastore.</td>
    <td style="padding:15px">{base_path}/{version}/Datastore/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreNamespaceManagerMoIdConvertNamespacePathToUuidPath(moId, body, callback)</td>
    <td style="padding:15px">Convert the namespace path to the namespace UUID path.</td>
    <td style="padding:15px">{base_path}/{version}/DatastoreNamespaceManager/{pathv1}/ConvertNamespacePathToUuidPath?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreNamespaceManagerMoIdCreateDirectory(moId, body, callback)</td>
    <td style="padding:15px">Creates a top-level directory on the given datastore, using the given
user display name hint and op</td>
    <td style="padding:15px">{base_path}/{version}/DatastoreNamespaceManager/{pathv1}/CreateDirectory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreNamespaceManagerMoIdDeleteDirectory(moId, body, callback)</td>
    <td style="padding:15px">Deletes the given top-level directory from a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/DatastoreNamespaceManager/{pathv1}/DeleteDirectory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreNamespaceManagerMoIdIncreaseDirectorySize(moId, body, callback)</td>
    <td style="padding:15px">Increase size of the given top-level directory to the given size on
vSAN backed object storage.</td>
    <td style="padding:15px">{base_path}/{version}/DatastoreNamespaceManager/{pathv1}/IncreaseDirectorySize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDatastoreNamespaceManagerMoIdQueryDirectoryInfo(moId, body, callback)</td>
    <td style="padding:15px">Query directory information of the given top-level directory on vSAN
backed object storage.</td>
    <td style="padding:15px">{base_path}/{version}/DatastoreNamespaceManager/{pathv1}/QueryDirectoryInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDiagnosticManagerMoIdEmitSyslogMark(moId, body, callback)</td>
    <td style="padding:15px">Issue a "mark" to syslog and the audit trail.</td>
    <td style="padding:15px">{base_path}/{version}/DiagnosticManager/{pathv1}/EmitSyslogMark?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDiagnosticManagerMoIdFetchAuditRecords(moId, body, callback)</td>
    <td style="padding:15px">Retrieve audit records from their storage on the specified host.</td>
    <td style="padding:15px">{base_path}/{version}/DiagnosticManager/{pathv1}/FetchAuditRecords?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDiagnosticManagerMoIdBrowseDiagnosticLog(moId, body, callback)</td>
    <td style="padding:15px">Returns part of a log file.</td>
    <td style="padding:15px">{base_path}/{version}/DiagnosticManager/{pathv1}/BrowseDiagnosticLog?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDiagnosticManagerMoIdGenerateLogBundlesTask(moId, body, callback)</td>
    <td style="padding:15px">Instructs the server to generate diagnostic bundles.</td>
    <td style="padding:15px">{base_path}/{version}/DiagnosticManager/{pathv1}/GenerateLogBundles_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDiagnosticManagerMoIdQueryDescriptions(moId, body, callback)</td>
    <td style="padding:15px">Returns a list of diagnostic files for a given system.</td>
    <td style="padding:15px">{base_path}/{version}/DiagnosticManager/{pathv1}/QueryDescriptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdDestroyNetwork(moId, callback)</td>
    <td style="padding:15px">Removes a network.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/DestroyNetwork?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdReconfigureDVPortgroupTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures one or more distributed virtual portgroups.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/ReconfigureDVPortgroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdDVPortgroupRollbackTask(moId, body, callback)</td>
    <td style="padding:15px">This method determines if the portgroup configuration has changed.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/DVPortgroupRollback_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualPortgroupMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration of the portgroup.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdHost(moId, callback)</td>
    <td style="padding:15px">Hosts attached to this network.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdKey(moId, callback)</td>
    <td style="padding:15px">Generated UUID of the portgroup.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/key?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdPortKeys(moId, callback)</td>
    <td style="padding:15px">Port keys for the set of ports in the portgroup.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/portKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Properties of a network.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualPortgroupMoIdVm(moId, callback)</td>
    <td style="padding:15px">Virtual machines using this network.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualPortgroup/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdAddNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Add a network resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/AddNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdCreateDVPortgroupTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a single *DistributedVirtualPortgroup* and adds it
to the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/CreateDVPortgroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdAddDVPortgroupTask(moId, body, callback)</td>
    <td style="padding:15px">Creates one or more *DistributedVirtualPortgroup*s and adds them to
the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/AddDVPortgroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdEnableNetworkResourceManagement(moId, body, callback)</td>
    <td style="padding:15px">Enable/Disable network I/O control on the vSphere Distributed Switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/EnableNetworkResourceManagement?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdFetchDVPortKeys(moId, body, callback)</td>
    <td style="padding:15px">Return the keys of ports that meet the criteria.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/FetchDVPortKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdFetchDVPorts(moId, body, callback)</td>
    <td style="padding:15px">Return the ports that meet the criteria.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/FetchDVPorts?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdLookupDvPortGroup(moId, body, callback)</td>
    <td style="padding:15px">Returns the portgroup identified by the key within this VDS.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/LookupDvPortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdMergeDvsTask(moId, body, callback)</td>
    <td style="padding:15px">Merge an existing DistributedVirtualSwitch (source) to this switch
(destination).</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/MergeDvs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdMoveDVPortTask(moId, body, callback)</td>
    <td style="padding:15px">Move the ports out of their current portgroup into the specified portgroup.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/MoveDVPort_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdPerformDvsProductSpecOperationTask(moId, body, callback)</td>
    <td style="padding:15px">This method updates the *DistributedVirtualSwitch* product specifications.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/PerformDvsProductSpecOperation_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdQueryUsedVlanIdInDvs(moId, callback)</td>
    <td style="padding:15px">Return the used VLAN ID (PVLAN excluded) in the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/QueryUsedVlanIdInDvs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdReconfigureDvsTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures a distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/ReconfigureDvs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdReconfigureDVPortTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigure individual ports.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/ReconfigureDVPort_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdDvsReconfigureVmVnicNetworkResourcePoolTask(moId, body, callback)</td>
    <td style="padding:15px">reconfigure the Virtual NIC network resource pool configuration.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/DvsReconfigureVmVnicNetworkResourcePool_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdRectifyDvsHostTask(moId, body, callback)</td>
    <td style="padding:15px">Update the switch configuration on the host to bring them in sync with the
current configuration in</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/RectifyDvsHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdRefreshDVPortState(moId, body, callback)</td>
    <td style="padding:15px">Refresh port states.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/RefreshDVPortState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdRemoveNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Remove a network resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/RemoveNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdDVSRollbackTask(moId, body, callback)</td>
    <td style="padding:15px">This method determines if the distributed virtual switch configuration
has changed.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/DVSRollback_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdUpdateDvsCapability(moId, body, callback)</td>
    <td style="padding:15px">Set the capability of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/UpdateDvsCapability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdUpdateDVSHealthCheckConfigTask(moId, body, callback)</td>
    <td style="padding:15px">Update health check configuration.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/UpdateDVSHealthCheckConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchMoIdUpdateNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Update the network resource pool configuration.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/UpdateNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Capability of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Switch configuration data.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdNetworkResourcePool(moId, callback)</td>
    <td style="padding:15px">Network resource pool information for the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/networkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdPortgroup(moId, callback)</td>
    <td style="padding:15px">Portgroups that are defined on the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/portgroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information of the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Summary of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdUuid(moId, callback)</td>
    <td style="padding:15px">Generated UUID of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/uuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getDistributedVirtualSwitchMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitch/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryDvsCheckCompatibility(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of compatibility results.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryDvsCheckCompatibility?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdDVSManagerExportEntityTask(moId, body, callback)</td>
    <td style="padding:15px">Export the configuration for entities specified in the
 selectionSet  parameter.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/DVSManagerExportEntity_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdDVSManagerImportEntityTask(moId, body, callback)</td>
    <td style="padding:15px">Import the configuration of entities specified in
*EntityBackupConfig*.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/DVSManagerImportEntity_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdDVSManagerLookupDvPortGroup(moId, body, callback)</td>
    <td style="padding:15px">Returns the portgroup identified by the key within the specified VDS
identified by its UUID.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/DVSManagerLookupDvPortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryCompatibleHostForExistingDvs(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of hosts that are compatible with
the given DistributedVirtualSwitch</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryCompatibleHostForExistingDvs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryCompatibleHostForNewDvs(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of hosts that are compatible with
the given DistributedVirtualSwitch</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryCompatibleHostForNewDvs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryDvsCompatibleHostSpec(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of host product specifications that
are compatible with the given Dis</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryDvsCompatibleHostSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryCompatibleVmnicsFromHosts(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of vmnics which are compatible
with the given DistributedVirtualSwitc</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryCompatibleVmnicsFromHosts?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryDvsConfigTarget(moId, body, callback)</td>
    <td style="padding:15px">This operation returns the DistributedVirtualSwitch or
DistributedVirtualPortgroup configuration ta</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryDvsConfigTarget?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryDvsFeatureCapability(moId, body, callback)</td>
    <td style="padding:15px">This operation indicates which version-specific DVS features are
available for the given Distribute</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryDvsFeatureCapability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQuerySupportedNetworkOffloadSpec(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of network offload specifications that are
compatible with the given</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QuerySupportedNetworkOffloadSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryAvailableDvsSpec(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a list of switch product specifications that
are supported by the vCenter Se</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryAvailableDvsSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdQueryDvsByUuid(moId, body, callback)</td>
    <td style="padding:15px">This operation returns a DistributedVirtualSwitch given a UUID.</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/QueryDvsByUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postDistributedVirtualSwitchManagerMoIdRectifyDvsOnHostTask(moId, body, callback)</td>
    <td style="padding:15px">Update the Distributed Switch configuration on the hosts to bring them in sync with the
current con</td>
    <td style="padding:15px">{base_path}/{version}/DistributedVirtualSwitchManager/{pathv1}/RectifyDvsOnHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEnvironmentBrowserMoIdQueryConfigOption(moId, body, callback)</td>
    <td style="padding:15px">Query for a specific virtual machine configuration option (the ConfigOption).</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/QueryConfigOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEnvironmentBrowserMoIdQueryConfigOptionDescriptor(moId, callback)</td>
    <td style="padding:15px">The list of ConfigOption keys available on this entity.</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/QueryConfigOptionDescriptor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEnvironmentBrowserMoIdQueryConfigOptionEx(moId, body, callback)</td>
    <td style="padding:15px">Query for a virtual machine configuration *option*
matching the key or host or both given in the
*E</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/QueryConfigOptionEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEnvironmentBrowserMoIdQueryConfigTarget(moId, body, callback)</td>
    <td style="padding:15px">Queries for information about a specific target, a "physical" device that
can be used to back virtu</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/QueryConfigTarget?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEnvironmentBrowserMoIdQueryTargetCapabilities(moId, body, callback)</td>
    <td style="padding:15px">Queries for information on the capabilities supported by the ComputeResource
associated with the En</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/QueryTargetCapabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEnvironmentBrowserMoIdDatastoreBrowser(moId, callback)</td>
    <td style="padding:15px">DatastoreBrowser to browse datastores that are available on this entity.</td>
    <td style="padding:15px">{base_path}/{version}/EnvironmentBrowser/{pathv1}/datastoreBrowser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdReadNextEvents(moId, body, callback)</td>
    <td style="padding:15px">Reads the 'scrollable view' from the current position.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/ReadNextEvents?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdReadPreviousEvents(moId, body, callback)</td>
    <td style="padding:15px">Reads the 'scrollable view' from the current position.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/ReadPreviousEvents?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdDestroyCollector(moId, callback)</td>
    <td style="padding:15px">Destroys this collector.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/DestroyCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdResetCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the item immediately preceding the
"viewable latest page".</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/ResetCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdRewindCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the oldest item.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/RewindCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventHistoryCollectorMoIdSetCollectorPageSize(moId, body, callback)</td>
    <td style="padding:15px">Sets the "viewable latest page" size to contain at most the
number of items specified by the maxCou</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/SetCollectorPageSize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventHistoryCollectorMoIdFilter(moId, callback)</td>
    <td style="padding:15px">The filter used to create this collector.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/filter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventHistoryCollectorMoIdInitialized(moId, callback)</td>
    <td style="padding:15px">Indicates whether the *EventHistoryCollector.latestPage* is initialized.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/initialized?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventHistoryCollectorMoIdLatestPage(moId, callback)</td>
    <td style="padding:15px">The items in the 'viewable latest page'.</td>
    <td style="padding:15px">{base_path}/{version}/EventHistoryCollector/{pathv1}/latestPage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventManagerMoIdQueryEvents(moId, body, callback)</td>
    <td style="padding:15px">Returns the events in specified filter.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/QueryEvents?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventManagerMoIdCreateCollectorForEvents(moId, body, callback)</td>
    <td style="padding:15px">Creates an event history collector, which is a specialized history collector
that provides Event ob</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/CreateCollectorForEvents?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventManagerMoIdLogUserEvent(moId, body, callback)</td>
    <td style="padding:15px">Logs a user defined event against a particular managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/LogUserEvent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventManagerMoIdPostEvent(moId, body, callback)</td>
    <td style="padding:15px">Posts the specified event, optionally associating it with
a task.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/PostEvent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postEventManagerMoIdRetrieveArgumentDescription(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the argument meta-data for a given Event type</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/RetrieveArgumentDescription?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Static descriptive strings used in events.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventManagerMoIdLatestEvent(moId, callback)</td>
    <td style="padding:15px">The latest event that happened on the VirtualCenter server.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/latestEvent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getEventManagerMoIdMaxCollector(moId, callback)</td>
    <td style="padding:15px">For each client, the maximum number of event collectors that can exist
simultaneously.</td>
    <td style="padding:15px">{base_path}/{version}/EventManager/{pathv1}/maxCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensibleManagedObjectMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensibleManagedObject/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getExtensibleManagedObjectMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensibleManagedObject/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getExtensibleManagedObjectMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensibleManagedObject/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdFindExtension(moId, body, callback)</td>
    <td style="padding:15px">Returns extension with the given key, if any.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/FindExtension?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdGetPublicKey(moId, callback)</td>
    <td style="padding:15px">Returns VirtualCenter Server public key.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/GetPublicKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdQueryExtensionIpAllocationUsage(moId, body, callback)</td>
    <td style="padding:15px">Query statistics about IP allocation usage, either system wide or for
specified extensions.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/QueryExtensionIpAllocationUsage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdQueryManagedBy(moId, body, callback)</td>
    <td style="padding:15px">Find entities managed by an extension.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/QueryManagedBy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdRegisterExtension(moId, body, callback)</td>
    <td style="padding:15px">Registers extension.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/RegisterExtension?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdSetExtensionCertificate(moId, body, callback)</td>
    <td style="padding:15px">Update the stored authentication certificate for a specified extension.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/SetExtensionCertificate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdSetPublicKey(moId, body, callback)</td>
    <td style="padding:15px">Sets extension's public key.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/SetPublicKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdSetServiceAccount(moId, body, callback)</td>
    <td style="padding:15px">Update the stored authentication service account for the specified extension.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/SetServiceAccount?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdUnregisterExtension(moId, body, callback)</td>
    <td style="padding:15px">Unregisters the specified extension if it exists.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/UnregisterExtension?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postExtensionManagerMoIdUpdateExtension(moId, body, callback)</td>
    <td style="padding:15px">If the key specified in the extension exists,
the existing record is updated.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/UpdateExtension?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getExtensionManagerMoIdExtensionList(moId, callback)</td>
    <td style="padding:15px">The list of currently registered extensions.</td>
    <td style="padding:15px">{base_path}/{version}/ExtensionManager/{pathv1}/extensionList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdConfigureVchaTask(moId, body, callback)</td>
    <td style="padding:15px">Configure VCHA on the local vCenter Server.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/configureVcha_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdCreatePassiveNodeTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a Passive node in a degraded VCHA Cluster with node location
information and pre-existing V</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/createPassiveNode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdCreateWitnessNodeTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a Witness node in a degraded VCHA Cluster with node location
information and pre-existing V</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/createWitnessNode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdDeployVchaTask(moId, body, callback)</td>
    <td style="padding:15px">Deploys and Configures VCHA on the local vCenter as a single API.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/deployVcha_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdDestroyVchaTask(moId, callback)</td>
    <td style="padding:15px">Destroys the VCHA cluster setup and removes all VCHA specific
configuration from the VCVA appliance.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/destroyVcha_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdGetVchaConfig(moId, callback)</td>
    <td style="padding:15px">Returns the configuration information for each node that is part of
the VCHA Cluster.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/getVchaConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterConfiguratorMoIdPrepareVchaTask(moId, body, callback)</td>
    <td style="padding:15px">Prepares the vCenter appliance for a VCHA cluster deployment.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/prepareVcha_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFailoverClusterConfiguratorMoIdDisabledConfigureMethod(moId, callback)</td>
    <td style="padding:15px">A list of method names that must not be called and will throw
a fault due to some other method runn</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterConfigurator/{pathv1}/disabledConfigureMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterManagerMoIdGetVchaClusterHealth(moId, callback)</td>
    <td style="padding:15px">Returns last known health of the VCHA Cluster.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterManager/{pathv1}/GetVchaClusterHealth?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterManagerMoIdGetClusterMode(moId, callback)</td>
    <td style="padding:15px">Returns current mode of a VCHA Cluster.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterManager/{pathv1}/getClusterMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterManagerMoIdInitiateFailoverTask(moId, body, callback)</td>
    <td style="padding:15px">Allows a caller to initiate a failover from Active vCenter Server node
to the Passive node.</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterManager/{pathv1}/initiateFailover_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFailoverClusterManagerMoIdSetClusterModeTask(moId, body, callback)</td>
    <td style="padding:15px">setClusterMode method allows caller to manipulate the mode of a
VCHA Cluster
Following mode transit</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterManager/{pathv1}/setClusterMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFailoverClusterManagerMoIdDisabledClusterMethod(moId, callback)</td>
    <td style="padding:15px">A list of method names that must not be called and will throw
a fault due to some other method runn</td>
    <td style="padding:15px">{base_path}/{version}/FailoverClusterManager/{pathv1}/disabledClusterMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdChangeOwner(moId, body, callback)</td>
    <td style="padding:15px">Change the owner for a file.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/ChangeOwner?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdCopyDatastoreFileTask(moId, body, callback)</td>
    <td style="padding:15px">Copies the source file or folder to the destination.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/CopyDatastoreFile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdDeleteDatastoreFileTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes the specified file or folder from the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/DeleteDatastoreFile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdMakeDirectory(moId, body, callback)</td>
    <td style="padding:15px">Create a folder using the specified name.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/MakeDirectory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdMoveDatastoreFileTask(moId, body, callback)</td>
    <td style="padding:15px">Moves the source file or folder to the destination.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/MoveDatastoreFile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFileManagerMoIdQueryFileLockInfo(moId, body, callback)</td>
    <td style="padding:15px">Fetches as much information as possible for the file path passed in.</td>
    <td style="padding:15px">{base_path}/{version}/FileManager/{pathv1}/QueryFileLockInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdAddStandaloneHostTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new single-host compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/AddStandaloneHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdBatchAddHostsToClusterTask(moId, body, callback)</td>
    <td style="padding:15px">Adds a set of new and existing hosts to the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/BatchAddHostsToCluster_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdBatchAddStandaloneHostsTask(moId, body, callback)</td>
    <td style="padding:15px">Adds a list of hosts to inventory, as standalone hosts,
in a single invocation.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/BatchAddStandaloneHosts_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateCluster(moId, body, callback)</td>
    <td style="padding:15px">Creates a new cluster compute resource in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateClusterEx(moId, body, callback)</td>
    <td style="padding:15px">Creates a new cluster compute resource in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateClusterEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateDatacenter(moId, body, callback)</td>
    <td style="padding:15px">Creates a new datacenter with the given name.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateDatacenter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateDVSTask(moId, body, callback)</td>
    <td style="padding:15px">Create a *DistributedVirtualSwitch* in the folder according to the
specified *DVSCreateSpec*.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateDVS_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateFolder(moId, body, callback)</td>
    <td style="padding:15px">Creates a new sub-folder with the specified name.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateStoragePod(moId, body, callback)</td>
    <td style="padding:15px">Creates a new storage pod in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateStoragePod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdCreateVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new virtual machine in the current folder and attaches it to the
specified resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/CreateVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdMoveIntoFolderTask(moId, body, callback)</td>
    <td style="padding:15px">Moves a set of managed entities into this folder.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/MoveIntoFolder_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdRegisterVMTask(moId, body, callback)</td>
    <td style="padding:15px">Adds an existing virtual machine to the folder.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/RegisterVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postFolderMoIdUnregisterAndDestroyTask(moId, callback)</td>
    <td style="padding:15px">Recursively unregisters all virtual machines and vApps, and destroys
all child virtual machine fold</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/UnregisterAndDestroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdChildEntity(moId, callback)</td>
    <td style="padding:15px">An array of managed object references.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/childEntity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdChildType(moId, callback)</td>
    <td style="padding:15px">Specifies the object types a folder may contain.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/childType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdNamespace(moId, callback)</td>
    <td style="padding:15px">The namespace with which the Folder is associated.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/namespace?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getFolderMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Folder/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAliasManagerMoIdAddGuestAlias(moId, body, callback)</td>
    <td style="padding:15px">Defines an alias for a guest account in a virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/GuestAliasManager/{pathv1}/AddGuestAlias?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAliasManagerMoIdListGuestAliases(moId, body, callback)</td>
    <td style="padding:15px">Lists the
*GuestAliases*
for a specified user in the guest that can be used
for authentication of g</td>
    <td style="padding:15px">{base_path}/{version}/GuestAliasManager/{pathv1}/ListGuestAliases?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAliasManagerMoIdListGuestMappedAliases(moId, body, callback)</td>
    <td style="padding:15px">Lists the
*GuestMappedAliases*
in the guest that can be used for
authentication of guest operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestAliasManager/{pathv1}/ListGuestMappedAliases?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAliasManagerMoIdRemoveGuestAlias(moId, body, callback)</td>
    <td style="padding:15px">Removes an alias from the guest so it can no longer be
used for
authentication of guest operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestAliasManager/{pathv1}/RemoveGuestAlias?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAliasManagerMoIdRemoveGuestAliasByCert(moId, body, callback)</td>
    <td style="padding:15px">Removes a VMware SSO Server's certificate and all
associated aliases from the guest so it
can no lo</td>
    <td style="padding:15px">{base_path}/{version}/GuestAliasManager/{pathv1}/RemoveGuestAliasByCert?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAuthManagerMoIdAcquireCredentialsInGuest(moId, body, callback)</td>
    <td style="padding:15px">Authenticates in the guest and returns a *GuestAuthentication* object
with the acquired credentials</td>
    <td style="padding:15px">{base_path}/{version}/GuestAuthManager/{pathv1}/AcquireCredentialsInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAuthManagerMoIdReleaseCredentialsInGuest(moId, body, callback)</td>
    <td style="padding:15px">Releases session data and resources associated with
a *GuestAuthentication* object returned by *Gue</td>
    <td style="padding:15px">{base_path}/{version}/GuestAuthManager/{pathv1}/ReleaseCredentialsInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestAuthManagerMoIdValidateCredentialsInGuest(moId, body, callback)</td>
    <td style="padding:15px">Validates the *GuestAuthentication* credentials.</td>
    <td style="padding:15px">{base_path}/{version}/GuestAuthManager/{pathv1}/ValidateCredentialsInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdChangeFileAttributesInGuest(moId, body, callback)</td>
    <td style="padding:15px">Changes the file attributes of a specified file inside the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/ChangeFileAttributesInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdCreateTemporaryDirectoryInGuest(moId, body, callback)</td>
    <td style="padding:15px">Creates a temporary directory.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/CreateTemporaryDirectoryInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdCreateTemporaryFileInGuest(moId, body, callback)</td>
    <td style="padding:15px">Creates a temporary file.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/CreateTemporaryFileInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdDeleteDirectoryInGuest(moId, body, callback)</td>
    <td style="padding:15px">Deletes a directory in the guest OS.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/DeleteDirectoryInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdDeleteFileInGuest(moId, body, callback)</td>
    <td style="padding:15px">Deletes a file in the guest OS</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/DeleteFileInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdInitiateFileTransferFromGuest(moId, body, callback)</td>
    <td style="padding:15px">Initiates an operation to transfer a file from the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/InitiateFileTransferFromGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdInitiateFileTransferToGuest(moId, body, callback)</td>
    <td style="padding:15px">Initiates an operation to transfer a file to the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/InitiateFileTransferToGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdListFilesInGuest(moId, body, callback)</td>
    <td style="padding:15px">Returns information about files or directories in the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/ListFilesInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdMakeDirectoryInGuest(moId, body, callback)</td>
    <td style="padding:15px">Creates a directory in the guest OS</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/MakeDirectoryInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdMoveDirectoryInGuest(moId, body, callback)</td>
    <td style="padding:15px">Moves or renames a directory in the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/MoveDirectoryInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestFileManagerMoIdMoveFileInGuest(moId, body, callback)</td>
    <td style="padding:15px">Renames a file in the guest.</td>
    <td style="padding:15px">{base_path}/{version}/GuestFileManager/{pathv1}/MoveFileInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getGuestOperationsManagerMoIdAliasManager(moId, callback)</td>
    <td style="padding:15px">A managed object that provides methods to support single sign-on
in the guest operating system.</td>
    <td style="padding:15px">{base_path}/{version}/GuestOperationsManager/{pathv1}/aliasManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getGuestOperationsManagerMoIdAuthManager(moId, callback)</td>
    <td style="padding:15px">A singleton managed object that provides methods for guest authentication
operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestOperationsManager/{pathv1}/authManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getGuestOperationsManagerMoIdFileManager(moId, callback)</td>
    <td style="padding:15px">A singleton managed object that provides methods for guest file
operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestOperationsManager/{pathv1}/fileManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getGuestOperationsManagerMoIdGuestWindowsRegistryManager(moId, callback)</td>
    <td style="padding:15px">A singleton managed object that provides methods for guest windows registry
operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestOperationsManager/{pathv1}/guestWindowsRegistryManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getGuestOperationsManagerMoIdProcessManager(moId, callback)</td>
    <td style="padding:15px">A singleton managed object that provides methods for guest process
operations.</td>
    <td style="padding:15px">{base_path}/{version}/GuestOperationsManager/{pathv1}/processManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestProcessManagerMoIdListProcessesInGuest(moId, body, callback)</td>
    <td style="padding:15px">List the processes running in the guest operating system,
plus those started by *GuestProcessManage</td>
    <td style="padding:15px">{base_path}/{version}/GuestProcessManager/{pathv1}/ListProcessesInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestProcessManagerMoIdReadEnvironmentVariableInGuest(moId, body, callback)</td>
    <td style="padding:15px">Reads an environment variable from the guest OS</td>
    <td style="padding:15px">{base_path}/{version}/GuestProcessManager/{pathv1}/ReadEnvironmentVariableInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestProcessManagerMoIdStartProgramInGuest(moId, body, callback)</td>
    <td style="padding:15px">Starts a program in the guest operating system.</td>
    <td style="padding:15px">{base_path}/{version}/GuestProcessManager/{pathv1}/StartProgramInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestProcessManagerMoIdTerminateProcessInGuest(moId, body, callback)</td>
    <td style="padding:15px">Terminates a process in the guest OS.</td>
    <td style="padding:15px">{base_path}/{version}/GuestProcessManager/{pathv1}/TerminateProcessInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdCreateRegistryKeyInGuest(moId, body, callback)</td>
    <td style="padding:15px">Create a registry key.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/CreateRegistryKeyInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdDeleteRegistryKeyInGuest(moId, body, callback)</td>
    <td style="padding:15px">Delete a registry key.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/DeleteRegistryKeyInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdDeleteRegistryValueInGuest(moId, body, callback)</td>
    <td style="padding:15px">Delete a registry value.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/DeleteRegistryValueInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdListRegistryKeysInGuest(moId, body, callback)</td>
    <td style="padding:15px">List all registry subkeys for a given registry key.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/ListRegistryKeysInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdListRegistryValuesInGuest(moId, body, callback)</td>
    <td style="padding:15px">List all registry values for a given registry key.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/ListRegistryValuesInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postGuestWindowsRegistryManagerMoIdSetRegistryValueInGuest(moId, body, callback)</td>
    <td style="padding:15px">Set/Create a registry value.</td>
    <td style="padding:15px">{base_path}/{version}/GuestWindowsRegistryManager/{pathv1}/SetRegistryValueInGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdAddFilter(moId, body, callback)</td>
    <td style="padding:15px">Adds health update filters.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/AddFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdAddFilterEntities(moId, body, callback)</td>
    <td style="padding:15px">Add entities on which this filter is configured.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/AddFilterEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdAddMonitoredEntities(moId, body, callback)</td>
    <td style="padding:15px">The provider monitors additional managed entities.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/AddMonitoredEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdHasMonitoredEntity(moId, body, callback)</td>
    <td style="padding:15px">Check if the managed entity is monitored by the provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/HasMonitoredEntity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdHasProvider(moId, body, callback)</td>
    <td style="padding:15px">Verifies if the given provider is registered.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/HasProvider?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdPostHealthUpdates(moId, body, callback)</td>
    <td style="padding:15px">Report a change in health status.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/PostHealthUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryFilterEntities(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of entities on which this filter is configured.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryFilterEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryFilterInfoIds(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of HealthUpdateInfos configured for this filter.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryFilterInfoIds?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryFilterList(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of filters.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryFilterList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryFilterName(moId, body, callback)</td>
    <td style="padding:15px">Returns the filter name.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryFilterName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryHealthUpdateInfos(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of HealthUpdateInfo configured for the given provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryHealthUpdateInfos?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryHealthUpdates(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of health updates reported by the given provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryHealthUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryMonitoredEntities(moId, body, callback)</td>
    <td style="padding:15px">Returns the list of managed entities monitored by the given provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryMonitoredEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryProviderList(moId, callback)</td>
    <td style="padding:15px">The providers.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryProviderList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryProviderName(moId, body, callback)</td>
    <td style="padding:15px">Query the name of the provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryProviderName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdQueryUnmonitoredHosts(moId, body, callback)</td>
    <td style="padding:15px">The set of hosts that are in the cluster, but not monitored by
the provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/QueryUnmonitoredHosts?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdRegisterHealthUpdateProvider(moId, body, callback)</td>
    <td style="padding:15px">Registers provider.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/RegisterHealthUpdateProvider?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdRemoveFilter(moId, body, callback)</td>
    <td style="padding:15px">Removes the specified filter.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/RemoveFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdRemoveFilterEntities(moId, body, callback)</td>
    <td style="padding:15px">Remove entities on which this filter is configured.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/RemoveFilterEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdRemoveMonitoredEntities(moId, body, callback)</td>
    <td style="padding:15px">The provider monitors fewer managed entities.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/RemoveMonitoredEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHealthUpdateManagerMoIdUnregisterHealthUpdateProvider(moId, body, callback)</td>
    <td style="padding:15px">Unregisters the specified provider, if it exists.</td>
    <td style="padding:15px">{base_path}/{version}/HealthUpdateManager/{pathv1}/UnregisterHealthUpdateProvider?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHistoryCollectorMoIdDestroyCollector(moId, callback)</td>
    <td style="padding:15px">Destroys this collector.</td>
    <td style="padding:15px">{base_path}/{version}/HistoryCollector/{pathv1}/DestroyCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHistoryCollectorMoIdResetCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the item immediately preceding the
"viewable latest page".</td>
    <td style="padding:15px">{base_path}/{version}/HistoryCollector/{pathv1}/ResetCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHistoryCollectorMoIdRewindCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the oldest item.</td>
    <td style="padding:15px">{base_path}/{version}/HistoryCollector/{pathv1}/RewindCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHistoryCollectorMoIdSetCollectorPageSize(moId, body, callback)</td>
    <td style="padding:15px">Sets the "viewable latest page" size to contain at most the
number of items specified by the maxCou</td>
    <td style="padding:15px">{base_path}/{version}/HistoryCollector/{pathv1}/SetCollectorPageSize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHistoryCollectorMoIdFilter(moId, callback)</td>
    <td style="padding:15px">The filter used to create this collector.</td>
    <td style="padding:15px">{base_path}/{version}/HistoryCollector/{pathv1}/filter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdChangeAccessMode(moId, body, callback)</td>
    <td style="padding:15px">Update the access mode for a user or group.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/ChangeAccessMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdChangeLockdownMode(moId, body, callback)</td>
    <td style="padding:15px">Changes the lockdown state of the ESXi host.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/ChangeLockdownMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdQueryLockdownExceptions(moId, callback)</td>
    <td style="padding:15px">Get the list of users which are exceptions for lockdown mode.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/QueryLockdownExceptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdQuerySystemUsers(moId, callback)</td>
    <td style="padding:15px">Get the list of local system users.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/QuerySystemUsers?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdRetrieveHostAccessControlEntries(moId, callback)</td>
    <td style="padding:15px">Retrieve access entries.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/RetrieveHostAccessControlEntries?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdUpdateLockdownExceptions(moId, body, callback)</td>
    <td style="padding:15px">Update the list of users which are exceptions for lockdown mode.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/UpdateLockdownExceptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAccessManagerMoIdUpdateSystemUsers(moId, body, callback)</td>
    <td style="padding:15px">Update the list of local system users.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/UpdateSystemUsers?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAccessManagerMoIdLockdownMode(moId, callback)</td>
    <td style="padding:15px">Current lockdown state of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostAccessManager/{pathv1}/lockdownMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdDisableSmartCardAuthentication(moId, callback)</td>
    <td style="padding:15px">Disables console authentication using a local smart card and reader.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/DisableSmartCardAuthentication?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdEnableSmartCardAuthentication(moId, callback)</td>
    <td style="padding:15px">Enables console authentication using a local smart card and reader.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/EnableSmartCardAuthentication?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdImportCertificateForCAMTask(moId, body, callback)</td>
    <td style="padding:15px">Import the CAM server's certificate to the local store of vmwauth.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/ImportCertificateForCAM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdInstallSmartCardTrustAnchor(moId, body, callback)</td>
    <td style="padding:15px">Install a trust anchor certificate for smart card authentication.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/InstallSmartCardTrustAnchor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdJoinDomainTask(moId, body, callback)</td>
    <td style="padding:15px">Adds the host to an Active Directory domain.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/JoinDomain_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdJoinDomainWithCAMTask(moId, body, callback)</td>
    <td style="padding:15px">Adds the host to an Active Directory domain through CAM service.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/JoinDomainWithCAM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdLeaveCurrentDomainTask(moId, body, callback)</td>
    <td style="padding:15px">Removes the host from the Active Directory domain to which it belongs.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/LeaveCurrentDomain_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdListSmartCardTrustAnchors(moId, callback)</td>
    <td style="padding:15px">Lists installed trust anchor certificates for smart card authentication.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/ListSmartCardTrustAnchors?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdRemoveSmartCardTrustAnchor(moId, body, callback)</td>
    <td style="padding:15px">Remove a smart card trust anchor certificate from the system.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/RemoveSmartCardTrustAnchor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdRemoveSmartCardTrustAnchorByFingerprint(moId, body, callback)</td>
    <td style="padding:15px">Remove a smart card trust anchor certificate from the system by
fingerprint.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/RemoveSmartCardTrustAnchorByFingerprint?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostActiveDirectoryAuthenticationMoIdReplaceSmartCardTrustAnchors(moId, body, callback)</td>
    <td style="padding:15px">Replace the trust anchor certificates for smart card authentication.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/ReplaceSmartCardTrustAnchors?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostActiveDirectoryAuthenticationMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about the authentication store.</td>
    <td style="padding:15px">{base_path}/{version}/HostActiveDirectoryAuthentication/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAssignableHardwareManagerMoIdDownloadDescriptionTree(moId, callback)</td>
    <td style="padding:15px">Download Assignable Hardware description tree.</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/DownloadDescriptionTree?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAssignableHardwareManagerMoIdRetrieveDynamicPassthroughInfo(moId, callback)</td>
    <td style="padding:15px">Retrieve PCI Dynamic Passthrough info.</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/RetrieveDynamicPassthroughInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAssignableHardwareManagerMoIdRetrieveVendorDeviceGroupInfo(moId, callback)</td>
    <td style="padding:15px">Retrieve VendorDeviceGroup info.</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/RetrieveVendorDeviceGroupInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAssignableHardwareManagerMoIdUpdateAssignableHardwareConfig(moId, body, callback)</td>
    <td style="padding:15px">Update Assignable Hardware configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/UpdateAssignableHardwareConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAssignableHardwareManagerMoIdBinding(moId, callback)</td>
    <td style="padding:15px">Assignable Hardware bindings</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/binding?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAssignableHardwareManagerMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Assignable Hardware configuration</td>
    <td style="padding:15px">{base_path}/{version}/HostAssignableHardwareManager/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAuthenticationManagerMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about Active Directory membership.</td>
    <td style="padding:15px">{base_path}/{version}/HostAuthenticationManager/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAuthenticationManagerMoIdSupportedStore(moId, callback)</td>
    <td style="padding:15px">An array that can contain managed object references to local and
Active Directory authentication ma</td>
    <td style="padding:15px">{base_path}/{version}/HostAuthenticationManager/{pathv1}/supportedStore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAuthenticationStoreMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about the authentication store.</td>
    <td style="padding:15px">{base_path}/{version}/HostAuthenticationStore/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAutoStartManagerMoIdAutoStartPowerOff(moId, callback)</td>
    <td style="padding:15px">Powers-off virtual machines according to the current AutoStart configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostAutoStartManager/{pathv1}/AutoStartPowerOff?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAutoStartManagerMoIdAutoStartPowerOn(moId, callback)</td>
    <td style="padding:15px">Powers-on virtual machines according to the current AutoStart configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostAutoStartManager/{pathv1}/AutoStartPowerOn?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostAutoStartManagerMoIdReconfigureAutostart(moId, body, callback)</td>
    <td style="padding:15px">Changes the power-on or power-off sequence and system defaults.</td>
    <td style="padding:15px">{base_path}/{version}/HostAutoStartManager/{pathv1}/ReconfigureAutostart?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostAutoStartManagerMoIdConfig(moId, callback)</td>
    <td style="padding:15px">HostAutoStartManager_getConfig</td>
    <td style="padding:15px">{base_path}/{version}/HostAutoStartManager/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostBootDeviceSystemMoIdQueryBootDevices(moId, callback)</td>
    <td style="padding:15px">Retrieves a list of the available boot devices for the host system.</td>
    <td style="padding:15px">{base_path}/{version}/HostBootDeviceSystem/{pathv1}/QueryBootDevices?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostBootDeviceSystemMoIdUpdateBootDevice(moId, body, callback)</td>
    <td style="padding:15px">Sets the current boot device for the host system.</td>
    <td style="padding:15px">{base_path}/{version}/HostBootDeviceSystem/{pathv1}/UpdateBootDevice?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCacheConfigurationManagerMoIdConfigureHostCacheTask(moId, body, callback)</td>
    <td style="padding:15px">Configure host cache/swap performance enhancement.</td>
    <td style="padding:15px">{base_path}/{version}/HostCacheConfigurationManager/{pathv1}/ConfigureHostCache_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCacheConfigurationManagerMoIdCacheConfigurationInfo(moId, callback)</td>
    <td style="padding:15px">The swap performance configuration for the ESX host.</td>
    <td style="padding:15px">{base_path}/{version}/HostCacheConfigurationManager/{pathv1}/cacheConfigurationInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdGenerateCertificateSigningRequest(moId, body, callback)</td>
    <td style="padding:15px">Requests the server to generate a certificate-signing
request (CSR) for itself.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/GenerateCertificateSigningRequest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdGenerateCertificateSigningRequestByDn(moId, body, callback)</td>
    <td style="padding:15px">Requests the server to generate a certificate-signing
request (CSR) for itself.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/GenerateCertificateSigningRequestByDn?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdInstallServerCertificate(moId, body, callback)</td>
    <td style="padding:15px">Installs a given SSL certificate on the server.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/InstallServerCertificate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdListCACertificateRevocationLists(moId, callback)</td>
    <td style="padding:15px">Fetches the SSL CRLs of Certificate Authorities that are trusted.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/ListCACertificateRevocationLists?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdListCACertificates(moId, callback)</td>
    <td style="padding:15px">Fetches the SSL certificates of Certificate Authorities
that are trusted.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/ListCACertificates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdNotifyAffectedServices(moId, body, callback)</td>
    <td style="padding:15px">Instructs the host services affected by SSL credential changes
by *HostCertificateManager.InstallSe</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/NotifyAffectedServices?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdProvisionServerPrivateKey(moId, body, callback)</td>
    <td style="padding:15px">Provisions a given SSL private key on the server for use with a subsequent
SSL certificate installa</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/ProvisionServerPrivateKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdReplaceCACertificatesAndCRLs(moId, body, callback)</td>
    <td style="padding:15px">Replaces the trusted Certificate Authority (CA)
certificates and Certification Revocation List (CRL</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/ReplaceCACertificatesAndCRLs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCertificateManagerMoIdRetrieveCertificateInfoList(moId, callback)</td>
    <td style="padding:15px">the CertificateInfos of all known Certificates on
the host</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/RetrieveCertificateInfoList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCertificateManagerMoIdCertificateInfo(moId, callback)</td>
    <td style="padding:15px">the CertificateInfo of the Host Certificate.</td>
    <td style="padding:15px">{base_path}/{version}/HostCertificateManager/{pathv1}/certificateInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCpuSchedulerSystemMoIdDisableHyperThreading(moId, callback)</td>
    <td style="padding:15px">Don't treat hyperthreads as schedulable resources the next time the CPU
scheduler starts.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/DisableHyperThreading?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCpuSchedulerSystemMoIdEnableHyperThreading(moId, callback)</td>
    <td style="padding:15px">Treat hyperthreads as schedulable resources the next time the CPU
scheduler starts.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/EnableHyperThreading?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostCpuSchedulerSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCpuSchedulerSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCpuSchedulerSystemMoIdCpuSchedulerInfo(moId, callback)</td>
    <td style="padding:15px">Information about the current CPU scheduler of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/cpuSchedulerInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCpuSchedulerSystemMoIdHyperthreadInfo(moId, callback)</td>
    <td style="padding:15px">The hyperthread configuration for the CpuSchedulerSystem.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/hyperthreadInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostCpuSchedulerSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostCpuSchedulerSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreBrowserMoIdDeleteFile(moId, body, callback)</td>
    <td style="padding:15px">Deletes the specified files from the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreBrowser/{pathv1}/DeleteFile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreBrowserMoIdSearchDatastoreTask(moId, body, callback)</td>
    <td style="padding:15px">Returns the information for the files that match the given search criteria as a
SearchResults objec</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreBrowser/{pathv1}/SearchDatastore_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreBrowserMoIdSearchDatastoreSubFoldersTask(moId, body, callback)</td>
    <td style="padding:15px">Returns the information for the files that match the given search criteria as a
SearchResults\[\] o</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreBrowser/{pathv1}/SearchDatastoreSubFolders_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDatastoreBrowserMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">Set of datastores that can be searched on this DatastoreBrowser.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreBrowser/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDatastoreBrowserMoIdSupportedType(moId, callback)</td>
    <td style="padding:15px">The list of supported file types.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreBrowser/{pathv1}/supportedType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdConfigureDatastorePrincipal(moId, body, callback)</td>
    <td style="padding:15px">Configures datastore principal user for the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/ConfigureDatastorePrincipal?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdCreateLocalDatastore(moId, body, callback)</td>
    <td style="padding:15px">Creates a new local datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/CreateLocalDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdCreateNasDatastore(moId, body, callback)</td>
    <td style="padding:15px">Creates a new network-attached storage datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/CreateNasDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdCreateVmfsDatastore(moId, body, callback)</td>
    <td style="padding:15px">Creates a new VMFS datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/CreateVmfsDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdCreateVvolDatastore(moId, body, callback)</td>
    <td style="padding:15px">Create a Virtual-Volume based datastore</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/CreateVvolDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdDisableClusteredVmdkSupport(moId, body, callback)</td>
    <td style="padding:15px">Disable the clustered vmdk support on specified datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/DisableClusteredVmdkSupport?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdEnableClusteredVmdkSupport(moId, body, callback)</td>
    <td style="padding:15px">Enable the clustered vmdk support on specified datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/EnableClusteredVmdkSupport?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdExpandVmfsDatastore(moId, body, callback)</td>
    <td style="padding:15px">Increases the capacity of an existing VMFS datastore by expanding
(increasing the size of) an exist</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/ExpandVmfsDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdExtendVmfsDatastore(moId, body, callback)</td>
    <td style="padding:15px">Increases the capacity of an existing VMFS datastore by adding new
extents to the datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/ExtendVmfsDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryAvailableDisksForVmfs(moId, body, callback)</td>
    <td style="padding:15px">Query to list disks that can be used to contain VMFS datastore extents.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryAvailableDisksForVmfs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryMaxQueueDepth(moId, body, callback)</td>
    <td style="padding:15px">Query max queue depth for a specified NFS datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryMaxQueueDepth?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryUnresolvedVmfsVolumes(moId, callback)</td>
    <td style="padding:15px">Get the list of unbound VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryUnresolvedVmfsVolumes?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryVmfsDatastoreCreateOptions(moId, body, callback)</td>
    <td style="padding:15px">Queries options for creating a new VMFS datastore for a disk.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryVmfsDatastoreCreateOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryVmfsDatastoreExpandOptions(moId, body, callback)</td>
    <td style="padding:15px">Queries for options for increasing the capacity of an existing VMFS
datastore by expanding (increas</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryVmfsDatastoreExpandOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdQueryVmfsDatastoreExtendOptions(moId, body, callback)</td>
    <td style="padding:15px">Queries for options for increasing the capacity of an existing VMFS
datastore by adding new extents</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/QueryVmfsDatastoreExtendOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdRemoveDatastore(moId, body, callback)</td>
    <td style="padding:15px">Removes a datastore from a host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/RemoveDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdRemoveDatastoreExTask(moId, body, callback)</td>
    <td style="padding:15px">Remove one or more datastores.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/RemoveDatastoreEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdResignatureUnresolvedVmfsVolumeTask(moId, body, callback)</td>
    <td style="padding:15px">Resignature an unbound VMFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/ResignatureUnresolvedVmfsVolume_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdSetMaxQueueDepth(moId, body, callback)</td>
    <td style="padding:15px">Set max queue depth for a specified NFS datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/SetMaxQueueDepth?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDatastoreSystemMoIdUpdateLocalSwapDatastore(moId, body, callback)</td>
    <td style="padding:15px">Choose the
*localSwapDatastore*
for this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/UpdateLocalSwapDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDatastoreSystemMoIdCapabilities(moId, callback)</td>
    <td style="padding:15px">Capability vector indicating the available product features.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/capabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDatastoreSystemMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">List of datastores on this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDatastoreSystem/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdQueryAvailableTimeZones(moId, callback)</td>
    <td style="padding:15px">Retrieves the list of available timezones on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/QueryAvailableTimeZones?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdQueryDateTime(moId, callback)</td>
    <td style="padding:15px">Get the current DateTime on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/QueryDateTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdRefreshDateTimeSystem(moId, callback)</td>
    <td style="padding:15px">Refresh the DateTime related settings to pick up any changes that might
have occurred.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/RefreshDateTimeSystem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdTestTimeService(moId, callback)</td>
    <td style="padding:15px">Run a test to validate current time service configuration is functioning
normally.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/TestTimeService?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdUpdateDateTimeConfig(moId, body, callback)</td>
    <td style="padding:15px">Update the DateTime configuration of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/UpdateDateTimeConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDateTimeSystemMoIdUpdateDateTime(moId, body, callback)</td>
    <td style="padding:15px">Update the date/time on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/UpdateDateTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDateTimeSystemMoIdDateTimeInfo(moId, callback)</td>
    <td style="padding:15px">The DateTime configuration of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostDateTimeSystem/{pathv1}/dateTimeInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDiagnosticSystemMoIdCreateDiagnosticPartition(moId, body, callback)</td>
    <td style="padding:15px">Creates a diagnostic partition according to the provided create
specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/CreateDiagnosticPartition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDiagnosticSystemMoIdQueryAvailablePartition(moId, callback)</td>
    <td style="padding:15px">Retrieves a list of available diagnostic partitions.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/QueryAvailablePartition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDiagnosticSystemMoIdQueryPartitionCreateDesc(moId, body, callback)</td>
    <td style="padding:15px">For a disk, query for the diagnostic partition creation description.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/QueryPartitionCreateDesc?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDiagnosticSystemMoIdQueryPartitionCreateOptions(moId, body, callback)</td>
    <td style="padding:15px">Retrieves a list of disks that can be used to contain a diagnostic
partition.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/QueryPartitionCreateOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostDiagnosticSystemMoIdSelectActivePartition(moId, body, callback)</td>
    <td style="padding:15px">Changes the active diagnostic partition to a different partition.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/SelectActivePartition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDiagnosticSystemMoIdActivePartition(moId, callback)</td>
    <td style="padding:15px">The currently active diagnostic partition.</td>
    <td style="padding:15px">{base_path}/{version}/HostDiagnosticSystem/{pathv1}/activePartition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostDirectoryStoreMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about the authentication store.</td>
    <td style="padding:15px">{base_path}/{version}/HostDirectoryStore/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostEsxAgentHostManagerMoIdEsxAgentHostManagerUpdateConfig(moId, body, callback)</td>
    <td style="padding:15px">Update the host's ESX agent configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostEsxAgentHostManager/{pathv1}/EsxAgentHostManagerUpdateConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostEsxAgentHostManagerMoIdConfigInfo(moId, callback)</td>
    <td style="padding:15px">Configuration of agent virtual machine resources</td>
    <td style="padding:15px">{base_path}/{version}/HostEsxAgentHostManager/{pathv1}/configInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdDisableRuleset(moId, body, callback)</td>
    <td style="padding:15px">Blocks the firewall ports belonging to the specified ruleset.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/DisableRuleset?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdEnableRuleset(moId, body, callback)</td>
    <td style="padding:15px">Opens the firewall ports belonging to the specified ruleset.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/EnableRuleset?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdRefreshFirewall(moId, callback)</td>
    <td style="padding:15px">Refresh the firewall information and settings to pick up any changes
made directly on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/RefreshFirewall?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdUpdateDefaultPolicy(moId, body, callback)</td>
    <td style="padding:15px">Updates the default firewall policy; unset fields are left unchanged.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/UpdateDefaultPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirewallSystemMoIdUpdateRuleset(moId, body, callback)</td>
    <td style="padding:15px">Update the firewall ruleset specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/UpdateRuleset?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostFirewallSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostFirewallSystemMoIdFirewallInfo(moId, callback)</td>
    <td style="padding:15px">Firewall configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/firewallInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostFirewallSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirewallSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirmwareSystemMoIdBackupFirmwareConfiguration(moId, callback)</td>
    <td style="padding:15px">Backup the configuration of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirmwareSystem/{pathv1}/BackupFirmwareConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirmwareSystemMoIdQueryFirmwareConfigUploadURL(moId, callback)</td>
    <td style="padding:15px">Return the URL on the host to which the configuration bundle must be
uploaded for a restore operati</td>
    <td style="padding:15px">{base_path}/{version}/HostFirmwareSystem/{pathv1}/QueryFirmwareConfigUploadURL?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirmwareSystemMoIdResetFirmwareToFactoryDefaults(moId, callback)</td>
    <td style="padding:15px">Reset the configuration to factory defaults.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirmwareSystem/{pathv1}/ResetFirmwareToFactoryDefaults?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostFirmwareSystemMoIdRestoreFirmwareConfiguration(moId, body, callback)</td>
    <td style="padding:15px">Restore the configuration of the host to that specified in the bundle.</td>
    <td style="padding:15px">{base_path}/{version}/HostFirmwareSystem/{pathv1}/RestoreFirmwareConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdIsSharedGraphicsActive(moId, callback)</td>
    <td style="padding:15px">Indicate if shared graphics device is active on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/IsSharedGraphicsActive?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdRefreshGraphicsManager(moId, callback)</td>
    <td style="padding:15px">Refresh the available graphics information.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/RefreshGraphicsManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdRetrieveVgpuDeviceInfo(moId, callback)</td>
    <td style="padding:15px">***Since:*** vSphere API Release 7.0.3.0

***Required privileges:*** System.Read</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/RetrieveVgpuDeviceInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdRetrieveVgpuProfileInfo(moId, callback)</td>
    <td style="padding:15px">***Since:*** vSphere API Release 7.0.3.0

***Required privileges:*** System.Read</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/RetrieveVgpuProfileInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostGraphicsManagerMoIdUpdateGraphicsConfig(moId, body, callback)</td>
    <td style="padding:15px">Update graphics configuration</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/UpdateGraphicsConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdGraphicsConfig(moId, callback)</td>
    <td style="padding:15px">Graphics Configuration</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/graphicsConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdGraphicsInfo(moId, callback)</td>
    <td style="padding:15px">Array of graphics information</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/graphicsInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdSharedGpuCapabilities(moId, callback)</td>
    <td style="padding:15px">Array of shared passthru GPU capablities.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/sharedGpuCapabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdSharedPassthruGpuTypes(moId, callback)</td>
    <td style="padding:15px">Array of shared passthru GPU types.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/sharedPassthruGpuTypes?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostGraphicsManagerMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostGraphicsManager/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostHealthStatusSystemMoIdFetchSystemEventLog(moId, callback)</td>
    <td style="padding:15px">Hardware System Event Log (SEL) information</td>
    <td style="padding:15px">{base_path}/{version}/HostHealthStatusSystem/{pathv1}/FetchSystemEventLog?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostHealthStatusSystemMoIdClearSystemEventLog(moId, callback)</td>
    <td style="padding:15px">Clear the the IPMI System Event Log.</td>
    <td style="padding:15px">{base_path}/{version}/HostHealthStatusSystem/{pathv1}/ClearSystemEventLog?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostHealthStatusSystemMoIdRefreshHealthStatusSystem(moId, callback)</td>
    <td style="padding:15px">Refresh the available runtime hardware health information.</td>
    <td style="padding:15px">{base_path}/{version}/HostHealthStatusSystem/{pathv1}/RefreshHealthStatusSystem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostHealthStatusSystemMoIdResetSystemHealthInfo(moId, callback)</td>
    <td style="padding:15px">Resets the state of the sensors of the IPMI subsystem.</td>
    <td style="padding:15px">{base_path}/{version}/HostHealthStatusSystem/{pathv1}/ResetSystemHealthInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostHealthStatusSystemMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">HostHealthStatusSystem_getRuntime</td>
    <td style="padding:15px">{base_path}/{version}/HostHealthStatusSystem/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostImageConfigManagerMoIdFetchSoftwarePackages(moId, callback)</td>
    <td style="padding:15px">Reports the set of software packages installed.</td>
    <td style="padding:15px">{base_path}/{version}/HostImageConfigManager/{pathv1}/fetchSoftwarePackages?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostImageConfigManagerMoIdInstallDate(moId, callback)</td>
    <td style="padding:15px">Reports the UTC time stamp when this system was first installed.</td>
    <td style="padding:15px">{base_path}/{version}/HostImageConfigManager/{pathv1}/installDate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostImageConfigManagerMoIdHostImageConfigGetAcceptance(moId, callback)</td>
    <td style="padding:15px">Queries the current host acceptance level setting.</td>
    <td style="padding:15px">{base_path}/{version}/HostImageConfigManager/{pathv1}/HostImageConfigGetAcceptance?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostImageConfigManagerMoIdHostImageConfigGetProfile(moId, callback)</td>
    <td style="padding:15px">Queries the current host image profile information.</td>
    <td style="padding:15px">{base_path}/{version}/HostImageConfigManager/{pathv1}/HostImageConfigGetProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostImageConfigManagerMoIdUpdateHostImageAcceptanceLevel(moId, body, callback)</td>
    <td style="padding:15px">Sets the acceptance level of the host image profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostImageConfigManager/{pathv1}/UpdateHostImageAcceptanceLevel?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostKernelModuleSystemMoIdQueryConfiguredModuleOptionString(moId, body, callback)</td>
    <td style="padding:15px">Query the options configured to be passed to the kernel module when loaded.</td>
    <td style="padding:15px">{base_path}/{version}/HostKernelModuleSystem/{pathv1}/QueryConfiguredModuleOptionString?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostKernelModuleSystemMoIdQueryModules(moId, callback)</td>
    <td style="padding:15px">Query the set of modules on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostKernelModuleSystem/{pathv1}/QueryModules?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostKernelModuleSystemMoIdUpdateModuleOptionString(moId, body, callback)</td>
    <td style="padding:15px">Specifies the options to be passed to the kernel module when loaded.</td>
    <td style="padding:15px">{base_path}/{version}/HostKernelModuleSystem/{pathv1}/UpdateModuleOptionString?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdAssignUserToGroup(moId, body, callback)</td>
    <td style="padding:15px">Assigns a user to a group.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/AssignUserToGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdChangePassword(moId, body, callback)</td>
    <td style="padding:15px">Updates the password of a local user account.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/ChangePassword?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdCreateGroup(moId, body, callback)</td>
    <td style="padding:15px">Creates a local group account using the parameters defined in the
*HostLocalAccountManagerAccountSp</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/CreateGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdCreateUser(moId, body, callback)</td>
    <td style="padding:15px">Creates a local user account using the parameters defined in the
*HostLocalAccountManagerAccountSpe</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/CreateUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdRemoveGroup(moId, body, callback)</td>
    <td style="padding:15px">Removes a local group account.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/RemoveGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdRemoveUser(moId, body, callback)</td>
    <td style="padding:15px">Removes a local user account.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/RemoveUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdUnassignUserFromGroup(moId, body, callback)</td>
    <td style="padding:15px">Unassigns a user from a group.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/UnassignUserFromGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostLocalAccountManagerMoIdUpdateUser(moId, body, callback)</td>
    <td style="padding:15px">Updates a local user account using the parameters defined in the
*HostLocalAccountManagerAccountSpe</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAccountManager/{pathv1}/UpdateUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostLocalAuthenticationMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about the authentication store.</td>
    <td style="padding:15px">{base_path}/{version}/HostLocalAuthentication/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostMemorySystemMoIdReconfigureServiceConsoleReservation(moId, body, callback)</td>
    <td style="padding:15px">Sets the configured service console memory reservation.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/ReconfigureServiceConsoleReservation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostMemorySystemMoIdReconfigureVirtualMachineReservation(moId, body, callback)</td>
    <td style="padding:15px">Updates the virtual machine reservation information.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/ReconfigureVirtualMachineReservation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostMemorySystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostMemorySystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostMemorySystemMoIdConsoleReservationInfo(moId, callback)</td>
    <td style="padding:15px">Service console reservation information for the memory manager.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/consoleReservationInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostMemorySystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostMemorySystemMoIdVirtualMachineReservationInfo(moId, callback)</td>
    <td style="padding:15px">Virtual machine reservation information for the memory manager.</td>
    <td style="padding:15px">{base_path}/{version}/HostMemorySystem/{pathv1}/virtualMachineReservationInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdAddPortGroup(moId, body, callback)</td>
    <td style="padding:15px">Adds a port group to the virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/AddPortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdAddServiceConsoleVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Adds a virtual service console network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/AddServiceConsoleVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdAddVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Adds a virtual host/VMkernel network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/AddVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdAddVirtualSwitch(moId, body, callback)</td>
    <td style="padding:15px">Adds a new virtual switch to the system with the given name.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/AddVirtualSwitch?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdQueryNetworkHint(moId, body, callback)</td>
    <td style="padding:15px">Requests network hint information for a physical network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/QueryNetworkHint?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRefreshNetworkSystem(moId, callback)</td>
    <td style="padding:15px">Refresh the network information and settings to pick up any changes
that might have occurred.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RefreshNetworkSystem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRemovePortGroup(moId, body, callback)</td>
    <td style="padding:15px">Removes port group from the virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RemovePortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRemoveServiceConsoleVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Removes a virtual service console network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RemoveServiceConsoleVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRemoveVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Removes a virtual host/VMkernel network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RemoveVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRemoveVirtualSwitch(moId, body, callback)</td>
    <td style="padding:15px">Removes an existing virtual switch from the system.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RemoveVirtualSwitch?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdRestartServiceConsoleVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Restart the service console virtual network adapter interface.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/RestartServiceConsoleVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdStartDpuFailover(moId, body, callback)</td>
    <td style="padding:15px">Launch DPU(Data Processing Unit) failover for a given distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/startDpuFailover?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateConsoleIpRouteConfig(moId, body, callback)</td>
    <td style="padding:15px">Applies the IP route configuration for the service console.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateConsoleIpRouteConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateDnsConfig(moId, body, callback)</td>
    <td style="padding:15px">Applies the client-side DNS configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateDnsConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateIpRouteConfig(moId, body, callback)</td>
    <td style="padding:15px">Applies the IP route configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateIpRouteConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateIpRouteTableConfig(moId, body, callback)</td>
    <td style="padding:15px">Applies the IP route table configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateIpRouteTableConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateNetworkConfig(moId, body, callback)</td>
    <td style="padding:15px">Applies the network configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateNetworkConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdatePhysicalNicLinkSpeed(moId, body, callback)</td>
    <td style="padding:15px">Configures link speed and duplexity.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdatePhysicalNicLinkSpeed?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdatePortGroup(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures a port group on the virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdatePortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateServiceConsoleVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Configures the IP configuration for a virtual service console network
adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateServiceConsoleVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateVirtualNic(moId, body, callback)</td>
    <td style="padding:15px">Configures virtual host/VMkernel network adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateVirtualNic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNetworkSystemMoIdUpdateVirtualSwitch(moId, body, callback)</td>
    <td style="padding:15px">Updates the properties of the virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/UpdateVirtualSwitch?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdCapabilities(moId, callback)</td>
    <td style="padding:15px">Capability vector indicating the available product features.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/capabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdConsoleIpRouteConfig(moId, callback)</td>
    <td style="padding:15px">IP route configuration for the service console.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/consoleIpRouteConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdDnsConfig(moId, callback)</td>
    <td style="padding:15px">Client-side DNS configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/dnsConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdIpRouteConfig(moId, callback)</td>
    <td style="padding:15px">The IP route configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/ipRouteConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdNetworkConfig(moId, callback)</td>
    <td style="padding:15px">Network configuration information.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/networkConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdNetworkInfo(moId, callback)</td>
    <td style="padding:15px">The network configuration and runtime information.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/networkInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdOffloadCapabilities(moId, callback)</td>
    <td style="padding:15px">The offload capabilities available on this server.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/offloadCapabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNetworkSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostNetworkSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNvdimmSystemMoIdCreateNvdimmNamespaceTask(moId, body, callback)</td>
    <td style="padding:15px">A new block or persistent namespace can be created on the NVDIMM(s)
when the system is in maintenan</td>
    <td style="padding:15px">{base_path}/{version}/HostNvdimmSystem/{pathv1}/CreateNvdimmNamespace_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNvdimmSystemMoIdCreateNvdimmPMemNamespaceTask(moId, body, callback)</td>
    <td style="padding:15px">Create persistent memory mode nvd namespace from information passed
in PMemNamespaceCreationSpec.</td>
    <td style="padding:15px">{base_path}/{version}/HostNvdimmSystem/{pathv1}/CreateNvdimmPMemNamespace_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNvdimmSystemMoIdDeleteNvdimmBlockNamespacesTask(moId, callback)</td>
    <td style="padding:15px">Delete all block mode namespaces in the system.</td>
    <td style="padding:15px">{base_path}/{version}/HostNvdimmSystem/{pathv1}/DeleteNvdimmBlockNamespaces_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostNvdimmSystemMoIdDeleteNvdimmNamespaceTask(moId, body, callback)</td>
    <td style="padding:15px">Delete nvd namespace whose uuid matches passed parameter.</td>
    <td style="padding:15px">{base_path}/{version}/HostNvdimmSystem/{pathv1}/DeleteNvdimmNamespace_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostNvdimmSystemMoIdNvdimmSystemInfo(moId, callback)</td>
    <td style="padding:15px">Host NVDIMM information.</td>
    <td style="padding:15px">{base_path}/{version}/HostNvdimmSystem/{pathv1}/nvdimmSystemInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdCheckHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Check the list of metadata and returns the dependency, obsolete and conflict information
The operat</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/CheckHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdInstallHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Patch the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/InstallHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdInstallHostPatchV2Task(moId, body, callback)</td>
    <td style="padding:15px">Patch the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/InstallHostPatchV2_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdQueryHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Query the host for installed bulletins.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/QueryHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdScanHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Scan the host for the patch status.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/ScanHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdScanHostPatchV2Task(moId, body, callback)</td>
    <td style="padding:15px">Scan the host for the patch status.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/ScanHostPatchV2_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdStageHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Stage the vib files to esx local location and possibly do some run time check.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/StageHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPatchManagerMoIdUninstallHostPatchTask(moId, body, callback)</td>
    <td style="padding:15px">Uninstall patch from the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostPatchManager/{pathv1}/UninstallHostPatch_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPciPassthruSystemMoIdRefresh(moId, callback)</td>
    <td style="padding:15px">Refresh the available PciPassthru information.</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/Refresh?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPciPassthruSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPciPassthruSystemMoIdUpdatePassthruConfig(moId, body, callback)</td>
    <td style="padding:15px">Updates the PciPassthru configuration, this will
get called for the dependent device with the enabl</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/UpdatePassthruConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPciPassthruSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPciPassthruSystemMoIdPciPassthruInfo(moId, callback)</td>
    <td style="padding:15px">Array of PciPassthru information</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/pciPassthruInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPciPassthruSystemMoIdSriovDevicePoolInfo(moId, callback)</td>
    <td style="padding:15px">Array of Sriov Device Pool information</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/sriovDevicePoolInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPciPassthruSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostPciPassthruSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostPowerSystemMoIdConfigurePowerPolicy(moId, body, callback)</td>
    <td style="padding:15px">Configure host power policy.</td>
    <td style="padding:15px">{base_path}/{version}/HostPowerSystem/{pathv1}/ConfigurePowerPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPowerSystemMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Power system capabilities object.</td>
    <td style="padding:15px">{base_path}/{version}/HostPowerSystem/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostPowerSystemMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Power system state info object.</td>
    <td style="padding:15px">{base_path}/{version}/HostPowerSystem/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdHostProfileResetValidationState(moId, callback)</td>
    <td style="padding:15px">This API will update the validationState to Ready
from Failed, invalidate the validationFailureInfo</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/HostProfileResetValidationState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdAssociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Associate a profile with a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/AssociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdCheckProfileComplianceTask(moId, body, callback)</td>
    <td style="padding:15px">Check compliance of an entity against a Profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/CheckProfileCompliance_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdDestroyProfile(moId, callback)</td>
    <td style="padding:15px">Destroy the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/DestroyProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdDissociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Remove the association between a profile and a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/DissociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdExecuteHostProfile(moId, body, callback)</td>
    <td style="padding:15px">Run the Profile Engine to determine the list of configuration changes
needed for the specified host.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/ExecuteHostProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdExportProfile(moId, callback)</td>
    <td style="padding:15px">Export the profile in a serialized form.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/ExportProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdRetrieveDescription(moId, callback)</td>
    <td style="padding:15px">Returns the localizable description for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/RetrieveDescription?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdUpdateHostProfile(moId, body, callback)</td>
    <td style="padding:15px">Update the  HostProfile  with the specified configuration data.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/UpdateHostProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileMoIdUpdateReferenceHost(moId, body, callback)</td>
    <td style="padding:15px">Sets the *HostProfile*.*HostProfile.referenceHost* property.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/UpdateReferenceHost?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdComplianceCheckTime(moId, callback)</td>
    <td style="padding:15px">The latest compliance check time.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/complianceCheckTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdComplianceStatus(moId, callback)</td>
    <td style="padding:15px">Overall compliance of entities associated with this profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/complianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration data for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdCreatedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was created.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/createdTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Localizable description of the profile</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdEntity(moId, callback)</td>
    <td style="padding:15px">List of managed entities associated with the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/entity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdModifiedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was last modified.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/modifiedTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdReferenceHost(moId, callback)</td>
    <td style="padding:15px">Reference host in use for this host profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/referenceHost?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdValidationFailureInfo(moId, callback)</td>
    <td style="padding:15px">This object is created or updated if the *HostProfileValidationState_enum*
is Failed.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/validationFailureInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdValidationState(moId, callback)</td>
    <td style="padding:15px">State of the host profile validation operation.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/validationState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileMoIdValidationStateUpdateTime(moId, callback)</td>
    <td style="padding:15px">Update time of the validation operation.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfile/{pathv1}/validationStateUpdateTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdApplyEntitiesConfigTask(moId, body, callback)</td>
    <td style="padding:15px">The task for applying host configuration on a list of hosts.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/ApplyEntitiesConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdApplyHostConfigTask(moId, body, callback)</td>
    <td style="padding:15px">Apply the configuration to the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/ApplyHostConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdCheckAnswerFileStatusTask(moId, body, callback)</td>
    <td style="padding:15px">Check the validity of the answer files for the specified hosts.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/CheckAnswerFileStatus_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdCompositeHostProfileTask(moId, body, callback)</td>
    <td style="padding:15px">Composes (merge, replace, delete, disable)
the selected configurations into the target host profile</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/CompositeHostProfile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdCreateDefaultProfile(moId, body, callback)</td>
    <td style="padding:15px">Create a default subprofile of a given type (for example, a
*VirtualSwitchProfile*).</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/CreateDefaultProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdCreateProfile(moId, body, callback)</td>
    <td style="padding:15px">Create a profile from the specified CreateSpec.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/CreateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdExportAnswerFileTask(moId, body, callback)</td>
    <td style="padding:15px">Export a host's answer file into a serialized form.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/ExportAnswerFile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdFindAssociatedProfile(moId, body, callback)</td>
    <td style="padding:15px">Get the profile(s) to which this entity is associated.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/FindAssociatedProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdGenerateConfigTaskList(moId, body, callback)</td>
    <td style="padding:15px">Generate a list of configuration tasks that will be performed on the
host during HostProfile applic</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/GenerateConfigTaskList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdGenerateHostConfigTaskSpecTask(moId, body, callback)</td>
    <td style="padding:15px">This method generates *ApplyHostProfileConfigurationSpec* data object
for each host which can be pa</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/GenerateHostConfigTaskSpec_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdGenerateHostProfileTaskListTask(moId, body, callback)</td>
    <td style="padding:15px">Generate a list of configuration tasks that will be performed on the
host during HostProfile applic</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/GenerateHostProfileTaskList_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdQueryAnswerFileStatus(moId, body, callback)</td>
    <td style="padding:15px">Returns the status of the answer files associated with specified hosts.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/QueryAnswerFileStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdQueryPolicyMetadata(moId, body, callback)</td>
    <td style="padding:15px">Get the Metadata information for the policyNames.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/QueryPolicyMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdQueryHostProfileMetadata(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the metadata for a set of profiles.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/QueryHostProfileMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdQueryProfileStructure(moId, body, callback)</td>
    <td style="padding:15px">Get information about the structure of the profile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/QueryProfileStructure?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdRetrieveAnswerFile(moId, body, callback)</td>
    <td style="padding:15px">Returns the answer file associated with a particular host.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/RetrieveAnswerFile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdRetrieveAnswerFileForProfile(moId, body, callback)</td>
    <td style="padding:15px">Returns the answer file associated with a particular host, augmented
with whatever answer file valu</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/RetrieveAnswerFileForProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdRetrieveHostCustomizations(moId, body, callback)</td>
    <td style="padding:15px">This is the batch version of
vim.profile.host.ProfileManager@retrieveAnswerFile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/RetrieveHostCustomizations?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdRetrieveHostCustomizationsForProfile(moId, body, callback)</td>
    <td style="padding:15px">This is the batch version of
vim.profile.host.ProfileManager@retrieveAnswerFileForProfile.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/RetrieveHostCustomizationsForProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdUpdateAnswerFileTask(moId, body, callback)</td>
    <td style="padding:15px">Update the *AnswerFile* for the specified host.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/UpdateAnswerFile_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostProfileManagerMoIdValidateHostProfileCompositionTask(moId, body, callback)</td>
    <td style="padding:15px">Validates the proposed host profile composition.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/ValidateHostProfileComposition_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostProfileManagerMoIdProfile(moId, callback)</td>
    <td style="padding:15px">A list of profiles known to this ProfileManager.</td>
    <td style="padding:15px">{base_path}/{version}/HostProfileManager/{pathv1}/profile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdRefreshServices(moId, callback)</td>
    <td style="padding:15px">Refresh the service information and settings to pick up any changes
made directly on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/RefreshServices?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdRestartService(moId, body, callback)</td>
    <td style="padding:15px">Restarts the service.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/RestartService?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdStartService(moId, body, callback)</td>
    <td style="padding:15px">Starts the service.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/StartService?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdStopService(moId, body, callback)</td>
    <td style="padding:15px">Stops the service.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/StopService?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdUninstallService(moId, body, callback)</td>
    <td style="padding:15px">Uninstalls the service.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/UninstallService?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostServiceSystemMoIdUpdateServicePolicy(moId, body, callback)</td>
    <td style="padding:15px">Updates the activation policy of the service.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/UpdateServicePolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostServiceSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostServiceSystemMoIdServiceInfo(moId, callback)</td>
    <td style="padding:15px">Service configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/serviceInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostServiceSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostServiceSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSnmpSystemMoIdReconfigureSnmpAgent(moId, body, callback)</td>
    <td style="padding:15px">***Required privileges:*** Global.Settings</td>
    <td style="padding:15px">{base_path}/{version}/HostSnmpSystem/{pathv1}/ReconfigureSnmpAgent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSnmpSystemMoIdSendTestNotification(moId, callback)</td>
    <td style="padding:15px">***Required privileges:*** Global.Settings</td>
    <td style="padding:15px">{base_path}/{version}/HostSnmpSystem/{pathv1}/SendTestNotification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSnmpSystemMoIdConfiguration(moId, callback)</td>
    <td style="padding:15px">***Required privileges:*** Global.Settings</td>
    <td style="padding:15px">{base_path}/{version}/HostSnmpSystem/{pathv1}/configuration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSnmpSystemMoIdLimits(moId, callback)</td>
    <td style="padding:15px">***Required privileges:*** Global.Settings</td>
    <td style="padding:15px">{base_path}/{version}/HostSnmpSystem/{pathv1}/limits?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdDeleteHostSpecification(moId, body, callback)</td>
    <td style="padding:15px">Delete the host specification of the specified host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/DeleteHostSpecification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdDeleteHostSubSpecification(moId, body, callback)</td>
    <td style="padding:15px">Delete the host sub specification specified by the provided
subSpecname  of the specified host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/DeleteHostSubSpecification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdHostSpecGetUpdatedHosts(moId, body, callback)</td>
    <td style="padding:15px">Query the hosts whose specification was updated in the specified
time period.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/HostSpecGetUpdatedHosts?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdRetrieveHostSpecification(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the host specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/RetrieveHostSpecification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdUpdateHostSpecification(moId, body, callback)</td>
    <td style="padding:15px">Update the host specification with the provided copy.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/UpdateHostSpecification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSpecificationManagerMoIdUpdateHostSubSpecification(moId, body, callback)</td>
    <td style="padding:15px">Update the host specification with the provided host sub specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostSpecificationManager/{pathv1}/UpdateHostSubSpecification?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdAddInternetScsiSendTargets(moId, body, callback)</td>
    <td style="padding:15px">Adds Send Target entries to the host bus adapter discovery list.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/AddInternetScsiSendTargets?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdAddInternetScsiStaticTargets(moId, body, callback)</td>
    <td style="padding:15px">Adds Static Target entries to the host bus adapter discovery list.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/AddInternetScsiStaticTargets?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdAttachScsiLun(moId, body, callback)</td>
    <td style="padding:15px">Allow I/O issue to the specified detached ScsiLun.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/AttachScsiLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdAttachScsiLunExTask(moId, body, callback)</td>
    <td style="padding:15px">Attach one or more SCSI LUNs.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/AttachScsiLunEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdAttachVmfsExtent(moId, body, callback)</td>
    <td style="padding:15px">Extends a VMFS by attaching a disk partition as an extent.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/AttachVmfsExtent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdChangeNFSUserPassword(moId, body, callback)</td>
    <td style="padding:15px">Change password for existing NFS user.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ChangeNFSUserPassword?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdClearNFSUser(moId, callback)</td>
    <td style="padding:15px">Clear the NFS user configured on the esx host</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ClearNFSUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdComputeDiskPartitionInfo(moId, body, callback)</td>
    <td style="padding:15px">Computes the disk partition information given the desired disk layout.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ComputeDiskPartitionInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdComputeDiskPartitionInfoForResize(moId, body, callback)</td>
    <td style="padding:15px">Computes the disk partition information for the purpose of resizing
a given partition.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ComputeDiskPartitionInfoForResize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdConnectNvmeController(moId, body, callback)</td>
    <td style="padding:15px">Establish a connection to an NVME controller.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ConnectNvmeController?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdConnectNvmeControllerExTask(moId, body, callback)</td>
    <td style="padding:15px">Establish a connection to one or more NVMe controllers.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ConnectNvmeControllerEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdCreateNvmeOverRdmaAdapter(moId, body, callback)</td>
    <td style="padding:15px">Creates a software NVME over RDMA adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/CreateNvmeOverRdmaAdapter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdCreateSoftwareAdapter(moId, body, callback)</td>
    <td style="padding:15px">Creates a software host bus adapter based on the provided spec.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/CreateSoftwareAdapter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDeleteScsiLunState(moId, body, callback)</td>
    <td style="padding:15px">For previously detached SCSI Lun, remove the state information from
host.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DeleteScsiLunState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDeleteVffsVolumeState(moId, body, callback)</td>
    <td style="padding:15px">For previously unmounted VFFS volume, remove the state information from
host.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DeleteVffsVolumeState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDeleteVmfsVolumeState(moId, body, callback)</td>
    <td style="padding:15px">For previously unmounted VMFS volume, remove the state information from
host.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DeleteVmfsVolumeState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDestroyVffs(moId, body, callback)</td>
    <td style="padding:15px">Destroy a VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DestroyVffs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDetachScsiLun(moId, body, callback)</td>
    <td style="padding:15px">Disallow I/O issue to the specified ScsiLun.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DetachScsiLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDetachScsiLunExTask(moId, body, callback)</td>
    <td style="padding:15px">Detach one or more SCSI LUNs.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DetachScsiLunEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDisableMultipathPath(moId, body, callback)</td>
    <td style="padding:15px">Disables an enabled path for a Logical Unit.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DisableMultipathPath?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDisconnectNvmeController(moId, body, callback)</td>
    <td style="padding:15px">Disconnect from an NVME controller.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DisconnectNvmeController?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDisconnectNvmeControllerExTask(moId, body, callback)</td>
    <td style="padding:15px">Disconnect from one or more NVMe controllers.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DisconnectNvmeControllerEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDiscoverFcoeHbas(moId, body, callback)</td>
    <td style="padding:15px">Initiates FCoE discovery using the given FcoeSpecification.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DiscoverFcoeHbas?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdDiscoverNvmeControllers(moId, body, callback)</td>
    <td style="padding:15px">Connects to a Discovery Controller and retrieves the Discovery Log
using the provided NvmeDiscoverS</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/DiscoverNvmeControllers?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdEnableMultipathPath(moId, body, callback)</td>
    <td style="padding:15px">Enables a disabled path for a Logical Unit.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/EnableMultipathPath?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdExpandVmfsExtent(moId, body, callback)</td>
    <td style="padding:15px">Expands a VMFS extent as specified by the Disk partition specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ExpandVmfsExtent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdExtendVffs(moId, body, callback)</td>
    <td style="padding:15px">Extends a VFFS by attaching a SSD.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ExtendVffs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdFormatVffs(moId, body, callback)</td>
    <td style="padding:15px">Format a new VFFS on a SSD disk</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/FormatVffs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdFormatVmfs(moId, body, callback)</td>
    <td style="padding:15px">Formats a new VMFS on a disk partition.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/FormatVmfs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkAsLocalTask(moId, body, callback)</td>
    <td style="padding:15px">Mark a disk to local disk, due to the reason that local disks
behind some controllers might not be</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkAsLocal_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkAsNonLocalTask(moId, body, callback)</td>
    <td style="padding:15px">Mark a disk to remote disk, which is the opposite operation of
*HostStorageSystem.MarkAsLocal_Task*</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkAsNonLocal_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkAsNonSsdTask(moId, body, callback)</td>
    <td style="padding:15px">Mark a disk to Non-SSD, which is the opposite operation of
*HostStorageSystem.MarkAsSsd_Task*
Task</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkAsNonSsd_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkAsSsdTask(moId, body, callback)</td>
    <td style="padding:15px">Mark a disk to SSD, due to the reason that SSDs behind some controllers
might not be recongized as</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkAsSsd_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdHostStorageSystemMarkForRemoval(moId, body, callback)</td>
    <td style="padding:15px">Mark or unmark the given FCoE HBA for removal from the host system.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/HostStorageSystem_MarkForRemoval?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkPerenniallyReserved(moId, body, callback)</td>
    <td style="padding:15px">Marks the specified LUN as perennially reserved.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkPerenniallyReserved?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMarkPerenniallyReservedExTask(moId, body, callback)</td>
    <td style="padding:15px">Marks the specified one or more SCSI LUN's perennially reserved based
on the sate.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MarkPerenniallyReservedEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMountVffsVolume(moId, body, callback)</td>
    <td style="padding:15px">Mount the unmounted VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MountVffsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMountVmfsVolume(moId, body, callback)</td>
    <td style="padding:15px">Mount the unmounted Vmfs volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MountVmfsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdMountVmfsVolumeExTask(moId, body, callback)</td>
    <td style="padding:15px">Mount one or more VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/MountVmfsVolumeEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryAvailableSsds(moId, body, callback)</td>
    <td style="padding:15px">Query the list SSD disks that can be used to contain a VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryAvailableSsds?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryNFSUser(moId, callback)</td>
    <td style="padding:15px">Query the NFS user configured on the esx host</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryNFSUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryPathSelectionPolicyOptions(moId, callback)</td>
    <td style="padding:15px">Queries the set of path selection policy options.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryPathSelectionPolicyOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryStorageArrayTypePolicyOptions(moId, callback)</td>
    <td style="padding:15px">Queries the set of storage array type policy options.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryStorageArrayTypePolicyOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryUnresolvedVmfsVolume(moId, callback)</td>
    <td style="padding:15px">Get the list of unbound VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryUnresolvedVmfsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdQueryVmfsConfigOption(moId, callback)</td>
    <td style="padding:15px">Get the VMFS configuration options, including block size,
unmap granularity.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/QueryVmfsConfigOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRefreshStorageSystem(moId, callback)</td>
    <td style="padding:15px">Obtains the latest host storage information related to storage devices, topology,
and file systems.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RefreshStorageSystem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRemoveInternetScsiSendTargets(moId, body, callback)</td>
    <td style="padding:15px">Removes Send Target entries from the host bus adapter discovery list.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RemoveInternetScsiSendTargets?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRemoveInternetScsiStaticTargets(moId, body, callback)</td>
    <td style="padding:15px">Removes static target entries from the host bus adapter discovery list.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RemoveInternetScsiStaticTargets?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRemoveNvmeOverRdmaAdapter(moId, body, callback)</td>
    <td style="padding:15px">Removes a software NVME over RDMA adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RemoveNvmeOverRdmaAdapter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRemoveSoftwareAdapter(moId, body, callback)</td>
    <td style="padding:15px">Removes a software host bus adapter, if the adapter type allows it.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RemoveSoftwareAdapter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRescanAllHba(moId, callback)</td>
    <td style="padding:15px">Scans all host bus adapters to obtain the current list of devices and device topology.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RescanAllHba?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRescanHba(moId, body, callback)</td>
    <td style="padding:15px">Issues a request to rescan a specific host bus adapter
for new storage devices.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RescanHba?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRescanVffs(moId, callback)</td>
    <td style="padding:15px">Rescans for new VFFS.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RescanVffs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRescanVmfs(moId, callback)</td>
    <td style="padding:15px">Rescans for new Virtual Machine File Systems (VMFS).</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RescanVmfs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdResolveMultipleUnresolvedVmfsVolumes(moId, body, callback)</td>
    <td style="padding:15px">Resignature or 'Force Mount' list of unbound VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ResolveMultipleUnresolvedVmfsVolumes?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdResolveMultipleUnresolvedVmfsVolumesExTask(moId, body, callback)</td>
    <td style="padding:15px">Resignature or 'Force Mount' list of unbound VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/ResolveMultipleUnresolvedVmfsVolumesEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdRetrieveDiskPartitionInfo(moId, body, callback)</td>
    <td style="padding:15px">Gets the partition information for the disks named by the device names.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/RetrieveDiskPartitionInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdSetMultipathLunPolicy(moId, body, callback)</td>
    <td style="padding:15px">Updates the path selection policy for a Logical Unit.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/SetMultipathLunPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdSetNFSUser(moId, body, callback)</td>
    <td style="padding:15px">Set NFS username and password on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/SetNFSUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdTurnDiskLocatorLedOffTask(moId, body, callback)</td>
    <td style="padding:15px">Turn off one or more disk locator LEDs.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/TurnDiskLocatorLedOff_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdTurnDiskLocatorLedOnTask(moId, body, callback)</td>
    <td style="padding:15px">Turn on one or more disk locator LEDs, duration is the maximum that
hardware can support.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/TurnDiskLocatorLedOn_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUnmapVmfsVolumeExTask(moId, body, callback)</td>
    <td style="padding:15px">Unmap one or more VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UnmapVmfsVolumeEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUnmountForceMountedVmfsVolume(moId, body, callback)</td>
    <td style="padding:15px">Unmount the 'forceMounted' Vmfs volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UnmountForceMountedVmfsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUnmountVffsVolume(moId, body, callback)</td>
    <td style="padding:15px">Unmount the VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UnmountVffsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUnmountVmfsVolume(moId, body, callback)</td>
    <td style="padding:15px">Unmount the Vmfs volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UnmountVmfsVolume?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUnmountVmfsVolumeExTask(moId, body, callback)</td>
    <td style="padding:15px">Unmount one or more VMFS volumes.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UnmountVmfsVolumeEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateDiskPartitions(moId, body, callback)</td>
    <td style="padding:15px">Changes the partitions on the disk by supplying a partition specification
and the device name.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateDiskPartitions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateHppMultipathLunPolicy(moId, body, callback)</td>
    <td style="padding:15px">Updates the path selection policy for a HPP claimed Logical Unit.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateHppMultipathLunPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiAdvancedOptions(moId, body, callback)</td>
    <td style="padding:15px">Updates the advanced options the iSCSI host bus adapter or the
discovery addresses and targets asso</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiAdvancedOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiAlias(moId, body, callback)</td>
    <td style="padding:15px">Updates the alias of an iSCSI host bus adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiAlias?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiAuthenticationProperties(moId, body, callback)</td>
    <td style="padding:15px">Updates the authentication properties for one or more targets or
discovery addresses associated wit</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiAuthenticationProperties?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiDigestProperties(moId, body, callback)</td>
    <td style="padding:15px">Updates the digest properties for the iSCSI host bus adapter or the
discovery addresses and targets</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiDigestProperties?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiDiscoveryProperties(moId, body, callback)</td>
    <td style="padding:15px">Updates the Discovery properties for an iSCSI host bus adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiDiscoveryProperties?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiIPProperties(moId, body, callback)</td>
    <td style="padding:15px">Updates the IP properties for an iSCSI host bus adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiIPProperties?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateInternetScsiName(moId, body, callback)</td>
    <td style="padding:15px">Updates the name of an iSCSI host bus adapter.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateInternetScsiName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateScsiLunDisplayName(moId, body, callback)</td>
    <td style="padding:15px">Update the mutable display name associated with a ScsiLun.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateScsiLunDisplayName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateSoftwareInternetScsiEnabled(moId, body, callback)</td>
    <td style="padding:15px">Enables or disables Software iSCSI.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateSoftwareInternetScsiEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateVmfsUnmapBandwidth(moId, body, callback)</td>
    <td style="padding:15px">Update VMFS unmap bandwidth.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateVmfsUnmapBandwidth?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpdateVmfsUnmapPriority(moId, body, callback)</td>
    <td style="padding:15px">Update VMFS unmap priority.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpdateVmfsUnmapPriority?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpgradeVmLayout(moId, callback)</td>
    <td style="padding:15px">Iterates over all registered virtual machines.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpgradeVmLayout?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostStorageSystemMoIdUpgradeVmfs(moId, body, callback)</td>
    <td style="padding:15px">Upgrades the VMFS to the *latest
supported VMFS version*.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/UpgradeVmfs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdFileSystemVolumeInfo(moId, callback)</td>
    <td style="padding:15px">File system volume information for the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/fileSystemVolumeInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdMultipathStateInfo(moId, callback)</td>
    <td style="padding:15px">Runtime information about the state of a multipath path.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/multipathStateInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdStorageDeviceInfo(moId, callback)</td>
    <td style="padding:15px">Host storage information up to the device level.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/storageDeviceInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdSystemFile(moId, callback)</td>
    <td style="padding:15px">Datastore paths of files used by the host system on
mounted volumes, for instance, the COS vmdk fil</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/systemFile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostStorageSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostStorageSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdAcquireCimServicesTicket(moId, callback)</td>
    <td style="padding:15px">Creates and returns a credential used to establish a remote
connection to a Web Based Management (C</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/AcquireCimServicesTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdConfigureCryptoKey(moId, body, callback)</td>
    <td style="padding:15px">Sets/changes the key to be used for coredump encryption
and puts the host in *safe* state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ConfigureCryptoKey?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdDisconnectHostTask(moId, callback)</td>
    <td style="padding:15px">Disconnects from a host and instructs the server to stop sending heartbeats.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/DisconnectHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdEnableCrypto(moId, body, callback)</td>
    <td style="padding:15px">Sets/changes the key to be used for coredump encryption
and puts the host in *safe* state
Note: *Ho</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/EnableCrypto?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdEnterLockdownMode(moId, callback)</td>
    <td style="padding:15px">Modifies the permissions on the host, so that it will only be accessible
through local console or a</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/EnterLockdownMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdEnterMaintenanceModeTask(moId, body, callback)</td>
    <td style="padding:15px">Puts the host in maintenance mode.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/EnterMaintenanceMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdPowerDownHostToStandByTask(moId, body, callback)</td>
    <td style="padding:15px">Puts the host in standby mode, a mode in which the host is in a
standby state from which it can be</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/PowerDownHostToStandBy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdExitLockdownMode(moId, callback)</td>
    <td style="padding:15px">Restores Administrator permission for the local administrative account
for the host that was remove</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ExitLockdownMode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdExitMaintenanceModeTask(moId, body, callback)</td>
    <td style="padding:15px">Takes the host out of maintenance mode.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ExitMaintenanceMode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdPowerUpHostFromStandByTask(moId, body, callback)</td>
    <td style="padding:15px">Takes the host out of standby mode.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/PowerUpHostFromStandBy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdPrepareCrypto(moId, callback)</td>
    <td style="padding:15px">Prepare the host for receiving sensitive information
and puts the host in *prepared* mode
Note: Mus</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/PrepareCrypto?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdQueryHostConnectionInfo(moId, callback)</td>
    <td style="padding:15px">Connection-oriented information about a host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/QueryHostConnectionInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdQueryMemoryOverhead(moId, body, callback)</td>
    <td style="padding:15px">Determines the amount of memory overhead necessary to power on a virtual
machine with the specified</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/QueryMemoryOverhead?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdQueryMemoryOverheadEx(moId, body, callback)</td>
    <td style="padding:15px">Determines the amount of memory overhead necessary to power on a virtual
machine with the specified</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/QueryMemoryOverheadEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdQueryProductLockerLocation(moId, callback)</td>
    <td style="padding:15px">Query the path to VMware Tools repository configured on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/QueryProductLockerLocation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdQueryTpmAttestationReport(moId, callback)</td>
    <td style="padding:15px">Basic information about TPM attestation state of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/QueryTpmAttestationReport?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdRebootHostTask(moId, body, callback)</td>
    <td style="padding:15px">Reboots a host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/RebootHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdReconfigureHostForDASTask(moId, callback)</td>
    <td style="padding:15px">Reconfigures the host for vSphere HA.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ReconfigureHostForDAS_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdReconnectHostTask(moId, body, callback)</td>
    <td style="padding:15px">Reconnects to a host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ReconnectHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdRetrieveFreeEpcMemory(moId, callback)</td>
    <td style="padding:15px">Return the amount of free EPC memory on the host in bytes.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/RetrieveFreeEpcMemory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdRetrieveHardwareUptime(moId, callback)</td>
    <td style="padding:15px">Return the hardware uptime of the host in seconds.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/RetrieveHardwareUptime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdShutdownHostTask(moId, body, callback)</td>
    <td style="padding:15px">Shuts down a host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/ShutdownHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdUpdateFlags(moId, body, callback)</td>
    <td style="padding:15px">Update flags that are part of the *HostFlagInfo* object.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/UpdateFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdUpdateIpmi(moId, body, callback)</td>
    <td style="padding:15px">Update fields that are part of the *HostIpmiInfo* object.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/UpdateIpmi?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdUpdateProductLockerLocationTask(moId, body, callback)</td>
    <td style="padding:15px">Change and reconfigure the VMware Tools repository on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/UpdateProductLockerLocation_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdUpdateSystemResources(moId, body, callback)</td>
    <td style="padding:15px">Update the configuration of the system resource hierarchy.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/UpdateSystemResources?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostSystemMoIdUpdateSystemSwapConfiguration(moId, body, callback)</td>
    <td style="padding:15px">Update the System Swap Configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/UpdateSystemSwapConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdAnswerFileValidationResult(moId, callback)</td>
    <td style="padding:15px">Host answer file validation result.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/answerFileValidationResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdAnswerFileValidationState(moId, callback)</td>
    <td style="padding:15px">Host answer file validation state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/answerFileValidationState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Host capabilities.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdComplianceCheckResult(moId, callback)</td>
    <td style="padding:15px">The host profile compliance check result.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/complianceCheckResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdComplianceCheckState(moId, callback)</td>
    <td style="padding:15px">The host profile compliance check state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/complianceCheckState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Host configuration information.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdConfigManager(moId, callback)</td>
    <td style="padding:15px">Host configuration systems.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/configManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of datastore objects in the datacenter
that are available</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdDatastoreBrowser(moId, callback)</td>
    <td style="padding:15px">DatastoreBrowser to browse datastores for this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/datastoreBrowser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdHardware(moId, callback)</td>
    <td style="padding:15px">Hardware configuration of the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/hardware?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdLicensableResource(moId, callback)</td>
    <td style="padding:15px">Information about all licensable resources, currently present on this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/licensableResource?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of network objects in the datacenter that
are available in</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdPrecheckRemediationResult(moId, callback)</td>
    <td style="padding:15px">The host profile precheck-remediation result.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/precheckRemediationResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdRemediationResult(moId, callback)</td>
    <td style="padding:15px">The host profile remediation result.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/remediationResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdRemediationState(moId, callback)</td>
    <td style="padding:15px">The host profile remediation state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/remediationState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime state information about the host such as connection state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic information about the host, including connection state.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdSystemResources(moId, callback)</td>
    <td style="padding:15px">Reference for the system resource hierarchy, used for configuring the set of
resources reserved to</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/systemResources?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostSystemMoIdVm(moId, callback)</td>
    <td style="padding:15px">List of virtual machines associated with this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostSystem/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVFlashManagerMoIdHostConfigVFlashCache(moId, body, callback)</td>
    <td style="padding:15px">Configure vFlash cache on the host.</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/HostConfigVFlashCache?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVFlashManagerMoIdHostConfigureVFlashResource(moId, body, callback)</td>
    <td style="padding:15px">Configure vFlash resource on the host by attaching to a backend VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/HostConfigureVFlashResource?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVFlashManagerMoIdConfigureVFlashResourceExTask(moId, body, callback)</td>
    <td style="padding:15px">Configure vFlash resource on a list of SSD disks.</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/ConfigureVFlashResourceEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVFlashManagerMoIdHostGetVFlashModuleDefaultConfig(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the default supported configuration for a given vFlash module</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/HostGetVFlashModuleDefaultConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVFlashManagerMoIdHostRemoveVFlashResource(moId, callback)</td>
    <td style="padding:15px">Remove vFlash resource on the host by destroying the contained VFFS volume.</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/HostRemoveVFlashResource?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVFlashManagerMoIdVFlashConfigInfo(moId, callback)</td>
    <td style="padding:15px">Host vFlash configuration information.</td>
    <td style="padding:15px">{base_path}/{version}/HostVFlashManager/{pathv1}/vFlashConfigInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVMotionSystemMoIdDeselectVnic(moId, callback)</td>
    <td style="padding:15px">Indicate that no VirtualNic should be used for VMotion.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/DeselectVnic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVMotionSystemMoIdSelectVnic(moId, body, callback)</td>
    <td style="padding:15px">Select the VirtualNic to be used for VMotion.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/SelectVnic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVMotionSystemMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVMotionSystemMoIdUpdateIpConfig(moId, body, callback)</td>
    <td style="padding:15px">Update the IP configuration of VMotion VirtualNic.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/UpdateIpConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVMotionSystemMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVMotionSystemMoIdIpConfig(moId, callback)</td>
    <td style="padding:15px">IP configuration of the VMotion VirtualNic.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/ipConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVMotionSystemMoIdNetConfig(moId, callback)</td>
    <td style="padding:15px">VMotion network configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/netConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVMotionSystemMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostVMotionSystem/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostVStorageObjectRevertTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostVStorageObjectRevert_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostClearVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Clear control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostClearVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostCloneVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Clone a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostCloneVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostCreateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Create a virtual disk, which is a storage object with
*disk*
as consumption type.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostCreateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostVStorageObjectCreateDiskFromSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new Disk from given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostVStorageObjectCreateDiskFromSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostVStorageObjectCreateSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostVStorageObjectCreateSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdVStorageObjectCreateSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/VStorageObjectCreateSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostVStorageObjectDeleteSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostVStorageObjectDeleteSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdVStorageObjectDeleteSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/VStorageObjectDeleteSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostDeleteVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual storage object and its assoicated backings.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostDeleteVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostDeleteVStorageObjectExTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual storage object and its assoicated backings.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostDeleteVStorageObjectEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostExtendDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostExtendDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdVStorageObjectExtendDiskExTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/VStorageObjectExtendDiskEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostInflateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Inflate a sparse or thin-provisioned virtual disk up to the full size.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostInflateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostListVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">List all virtual storage objects located on a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostListVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostQueryVirtualDiskUuid(moId, body, callback)</td>
    <td style="padding:15px">Get the virtual disk UUID.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostQueryVirtualDiskUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostReconcileDatastoreInventoryTask(moId, body, callback)</td>
    <td style="padding:15px">Reconcile the datastore inventory info of virtual storage objects.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostReconcileDatastoreInventory_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRegisterDisk(moId, body, callback)</td>
    <td style="padding:15px">Promote a virtual disk to a First Class Disk.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRegisterDisk?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRelocateVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Relocate a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRelocateVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRenameVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRenameVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdRenameVStorageObjectEx(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/RenameVStorageObjectEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostVStorageObjectRetrieveSnapshotInfo(moId, body, callback)</td>
    <td style="padding:15px">Retrieves snapshot information of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostVStorageObjectRetrieveSnapshotInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRetrieveVStorageInfrastructureObjectPolicy(moId, body, callback)</td>
    <td style="padding:15px">Retrieve virtual storage infrastructure object SBPM policy on given
datastore.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRetrieveVStorageInfrastructureObjectPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRetrieveVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRetrieveVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRetrieveVStorageObjectMetadata(moId, body, callback)</td>
    <td style="padding:15px">Retrieve metadata KV pairs from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRetrieveVStorageObjectMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRetrieveVStorageObjectMetadataValue(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the metadata value by key from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRetrieveVStorageObjectMetadataValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostRetrieveVStorageObjectState(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object state.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostRetrieveVStorageObjectState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdRevertVStorageObjectExTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/RevertVStorageObjectEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostScheduleReconcileDatastoreInventory(moId, body, callback)</td>
    <td style="padding:15px">Schedules reconcile of the datastore inventory info of virtual storage
objects.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostScheduleReconcileDatastoreInventory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostSetVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Set control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostSetVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostSetVirtualDiskUuidTask(moId, body, callback)</td>
    <td style="padding:15px">Set the virtual disk Uuid.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostSetVirtualDiskUuid_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostUpdateVStorageObjectMetadataTask(moId, body, callback)</td>
    <td style="padding:15px">Update metadata KV pairs to a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostUpdateVStorageObjectMetadata_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVStorageObjectManagerMoIdHostUpdateVStorageObjectMetadataExTask(moId, body, callback)</td>
    <td style="padding:15px">Update metadata KV pairs to a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVStorageObjectManager/{pathv1}/HostUpdateVStorageObjectMetadataEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVirtualNicManagerMoIdDeselectVnicForNicType(moId, body, callback)</td>
    <td style="padding:15px">Deselect the VirtualNic to be a special type.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/DeselectVnicForNicType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVirtualNicManagerMoIdQueryNetConfig(moId, body, callback)</td>
    <td style="padding:15px">Get the NetConfig for the specified nicType</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/QueryNetConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVirtualNicManagerMoIdSelectVnicForNicType(moId, body, callback)</td>
    <td style="padding:15px">Select the NicType of the VirtualNic.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/SelectVnicForNicType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVirtualNicManagerMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVirtualNicManagerMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVirtualNicManagerMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Network configuration.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVirtualNicManagerMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/HostVirtualNicManager/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdAbdicateDomOwnership(moId, body, callback)</td>
    <td style="padding:15px">Abdicate ownership of DOM objects.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/AbdicateDomOwnership?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdCanProvisionObjects(moId, body, callback)</td>
    <td style="padding:15px">Determine if given objects can be provisioned.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/CanProvisionObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdDeleteVsanObjects(moId, body, callback)</td>
    <td style="padding:15px">Delete VSAN objects.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/DeleteVsanObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdGetVsanObjExtAttrs(moId, body, callback)</td>
    <td style="padding:15px">Get VSAN object extended attributes.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/GetVsanObjExtAttrs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryCmmds(moId, body, callback)</td>
    <td style="padding:15px">Query CMMDS directly.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryCmmds?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryObjectsOnPhysicalVsanDisk(moId, body, callback)</td>
    <td style="padding:15px">Query DOM objects on a given set of physical disks.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryObjectsOnPhysicalVsanDisk?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryPhysicalVsanDisks(moId, body, callback)</td>
    <td style="padding:15px">Query statistics about physical VSAN disks.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryPhysicalVsanDisks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQuerySyncingVsanObjects(moId, body, callback)</td>
    <td style="padding:15px">Query information about VSAN DOM objects that are currently syncing data.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QuerySyncingVsanObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryVsanObjectUuidsByFilter(moId, body, callback)</td>
    <td style="padding:15px">Query VSAN object UUIDs by filtering conditions.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryVsanObjectUuidsByFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryVsanObjects(moId, body, callback)</td>
    <td style="padding:15px">Query information about VSAN DOM objects.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryVsanObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdQueryVsanStatistics(moId, body, callback)</td>
    <td style="padding:15px">Query VSAN system statistics.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/QueryVsanStatistics?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdReconfigurationSatisfiable(moId, body, callback)</td>
    <td style="padding:15px">Determine if the given objects can be reconfigured with the given
policies.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/ReconfigurationSatisfiable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdReconfigureDomObject(moId, body, callback)</td>
    <td style="padding:15px">Reconfigure DOM object.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/ReconfigureDomObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdRunVsanPhysicalDiskDiagnostics(moId, body, callback)</td>
    <td style="padding:15px">Runs diagnostics on VSAN physical disks.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/RunVsanPhysicalDiskDiagnostics?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanInternalSystemMoIdUpgradeVsanObjects(moId, body, callback)</td>
    <td style="padding:15px">Upgrade VSAN objects version.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanInternalSystem/{pathv1}/UpgradeVsanObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdAddDisksTask(moId, body, callback)</td>
    <td style="padding:15px">Add the set of given disks for use by the VSAN service on this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/AddDisks_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdEvacuateVsanNodeTask(moId, body, callback)</td>
    <td style="padding:15px">Evacuate this host from VSAN cluster.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/EvacuateVsanNode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdInitializeDisksTask(moId, body, callback)</td>
    <td style="padding:15px">Initialize and use the sets of disks in the given *VsanHostDiskMapping*
list for the VSAN service o</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/InitializeDisks_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdQueryDisksForVsan(moId, body, callback)</td>
    <td style="padding:15px">Queries disks on this host for suitability to use with the VSAN service,
and returns the result.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/QueryDisksForVsan?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdQueryHostStatus(moId, callback)</td>
    <td style="padding:15px">Queries this host's current runtime status for the VSAN service.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/QueryHostStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdRecommissionVsanNodeTask(moId, callback)</td>
    <td style="padding:15px">Recommission this host to VSAN cluster.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/RecommissionVsanNode_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdRemoveDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Remove the set of given disks from use by the VSAN service on this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/RemoveDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdRemoveDiskMappingTask(moId, body, callback)</td>
    <td style="padding:15px">Delete given set of disk mappings from use by the VSAN service on this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/RemoveDiskMapping_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdUnmountDiskMappingTask(moId, body, callback)</td>
    <td style="padding:15px">Unmount the mounted *VsanHostDiskMapping*.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/UnmountDiskMapping_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHostVsanSystemMoIdUpdateVsanTask(moId, body, callback)</td>
    <td style="padding:15px">Update the VSAN service on this host according to the given host
configuration specification.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/UpdateVsan_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHostVsanSystemMoIdConfig(moId, callback)</td>
    <td style="padding:15px">The current VSAN service configuration information for this host.</td>
    <td style="padding:15px">{base_path}/{version}/HostVsanSystem/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseAbort(moId, body, callback)</td>
    <td style="padding:15px">Aborts the import/export and releases this lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseAbort?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseComplete(moId, callback)</td>
    <td style="padding:15px">Completes the import/export and releases this lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseComplete?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseGetManifest(moId, callback)</td>
    <td style="padding:15px">Gets the download manifest for this lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseGetManifest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseProbeUrls(moId, body, callback)</td>
    <td style="padding:15px">Perform a series of validations on the target host to see if
it can succesfully perform PullFromUrl</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseProbeUrls?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseProgress(moId, body, callback)</td>
    <td style="padding:15px">Sets the disk up/download progress, and renews this lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseProgress?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeasePullFromUrlsTask(moId, body, callback)</td>
    <td style="padding:15px">Upgrades current lease from push to pull mode.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeasePullFromUrls_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postHttpNfcLeaseMoIdHttpNfcLeaseSetManifestChecksumType(moId, body, callback)</td>
    <td style="padding:15px">Sets desired checksum algorithm per each file that will be returned in
ManifestEntry.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/HttpNfcLeaseSetManifestChecksumType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdCapabilities(moId, callback)</td>
    <td style="padding:15px">Current supported capabilities by this lease
See *HttpNfcLeaseCapabilities*</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/capabilities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdError(moId, callback)</td>
    <td style="padding:15px">If the lease is in the error state, this property contains the
error that caused the lease to be ab</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/error?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Provides information on the objects contained in this lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdInitializeProgress(moId, callback)</td>
    <td style="padding:15px">Provides progress information (0-100 percent) for the initializing state
of the lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/initializeProgress?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdMode(moId, callback)</td>
    <td style="padding:15px">Current mode of the lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/mode?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdState(moId, callback)</td>
    <td style="padding:15px">The current state of the lease.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/state?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getHttpNfcLeaseMoIdTransferProgress(moId, callback)</td>
    <td style="padding:15px">Provides progress information (0-100 percent) for current transfer.</td>
    <td style="padding:15px">{base_path}/{version}/HttpNfcLease/{pathv1}/transferProgress?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postInventoryViewMoIdCloseInventoryViewFolder(moId, body, callback)</td>
    <td style="padding:15px">Notify the server that folder(s) have been closed, and changes for all
its contained objects should</td>
    <td style="padding:15px">{base_path}/{version}/InventoryView/{pathv1}/CloseInventoryViewFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postInventoryViewMoIdDestroyView(moId, callback)</td>
    <td style="padding:15px">Destroy this view.</td>
    <td style="padding:15px">{base_path}/{version}/InventoryView/{pathv1}/DestroyView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postInventoryViewMoIdOpenInventoryViewFolder(moId, body, callback)</td>
    <td style="padding:15px">Adds the child objects of a given managed entity to the view.</td>
    <td style="padding:15px">{base_path}/{version}/InventoryView/{pathv1}/OpenInventoryViewFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getInventoryViewMoIdView(moId, callback)</td>
    <td style="padding:15px">The list of references to objects mapped by this view.</td>
    <td style="padding:15px">{base_path}/{version}/InventoryView/{pathv1}/view?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdInstallIoFilterTask(moId, body, callback)</td>
    <td style="padding:15px">Install an IO Filter on a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/InstallIoFilter_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdQueryDisksUsingFilter(moId, body, callback)</td>
    <td style="padding:15px">Return the list of virtual disks that use an IO Filter installed on
a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/QueryDisksUsingFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdQueryIoFilterInfo(moId, body, callback)</td>
    <td style="padding:15px">Return the information for the IO Filters that are installed on the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/QueryIoFilterInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdQueryIoFilterIssues(moId, body, callback)</td>
    <td style="padding:15px">Return the issues that occurred during the last installation/uninstallation/upgrade
operation of an</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/QueryIoFilterIssues?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdResolveInstallationErrorsOnClusterTask(moId, body, callback)</td>
    <td style="padding:15px">Resolve the errors occurred during an installation/uninstallation/upgrade
operation of an IO Filter</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/ResolveInstallationErrorsOnCluster_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdResolveInstallationErrorsOnHostTask(moId, body, callback)</td>
    <td style="padding:15px">Resolve the errors occurred during an installation/uninstallation/upgrade
operation of an IO Filter</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/ResolveInstallationErrorsOnHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdUninstallIoFilterTask(moId, body, callback)</td>
    <td style="padding:15px">Uninstall an IO Filter from a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/UninstallIoFilter_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIoFilterManagerMoIdUpgradeIoFilterTask(moId, body, callback)</td>
    <td style="padding:15px">Upgrade an IO Filter on a compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/IoFilterManager/{pathv1}/UpgradeIoFilter_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdAllocateIpv4Address(moId, body, callback)</td>
    <td style="padding:15px">Allocates an IPv4 address from an IP pool.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/AllocateIpv4Address?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdAllocateIpv6Address(moId, body, callback)</td>
    <td style="padding:15px">Allocates an IPv6 address from an IP pool.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/AllocateIpv6Address?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdCreateIpPool(moId, body, callback)</td>
    <td style="padding:15px">Create a new IP pool.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/CreateIpPool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdDestroyIpPool(moId, body, callback)</td>
    <td style="padding:15px">Destroys an IP pool on the given datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/DestroyIpPool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdQueryIPAllocations(moId, body, callback)</td>
    <td style="padding:15px">Query IP allocations by IP pool and extension key.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/QueryIPAllocations?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdQueryIpPools(moId, body, callback)</td>
    <td style="padding:15px">Return the list of IP pools for a datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/QueryIpPools?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdReleaseIpAllocation(moId, body, callback)</td>
    <td style="padding:15px">Releases an IP allocation back to it's IP pool.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/ReleaseIpAllocation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIpPoolManagerMoIdUpdateIpPool(moId, body, callback)</td>
    <td style="padding:15px">Update an IP pool on a datacenter.</td>
    <td style="padding:15px">{base_path}/{version}/IpPoolManager/{pathv1}/UpdateIpPool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdBindVnic(moId, body, callback)</td>
    <td style="padding:15px">Bind a Virtual NIC to be used for an iSCSI adapter</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/BindVnic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdQueryBoundVnics(moId, body, callback)</td>
    <td style="padding:15px">Query the list of Virtual NICs that are bound to a given iSCSI HBA.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/QueryBoundVnics?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdQueryCandidateNics(moId, body, callback)</td>
    <td style="padding:15px">Query the candidate Virtual NICs and Physical NICs that can be used
for Port-Binding.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/QueryCandidateNics?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdQueryMigrationDependencies(moId, body, callback)</td>
    <td style="padding:15px">Query the dependency table for a migration operation of a given Physical
NIC.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/QueryMigrationDependencies?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdQueryPnicStatus(moId, body, callback)</td>
    <td style="padding:15px">Query if Physical NIC device is used for iSCSI.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/QueryPnicStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdQueryVnicStatus(moId, body, callback)</td>
    <td style="padding:15px">Query the status of Virtual NIC association with the iSCSI.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/QueryVnicStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postIscsiManagerMoIdUnbindVnic(moId, body, callback)</td>
    <td style="padding:15px">Unbind Virtual NIC binding from an iSCSI adapter.</td>
    <td style="padding:15px">{base_path}/{version}/IscsiManager/{pathv1}/UnbindVnic?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseAssignmentManagerMoIdQueryAssignedLicenses(moId, body, callback)</td>
    <td style="padding:15px">Get information about all the licenses associated with an entity</td>
    <td style="padding:15px">{base_path}/{version}/LicenseAssignmentManager/{pathv1}/QueryAssignedLicenses?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseAssignmentManagerMoIdRemoveAssignedLicense(moId, body, callback)</td>
    <td style="padding:15px">Remove licenses associated with an entity</td>
    <td style="padding:15px">{base_path}/{version}/LicenseAssignmentManager/{pathv1}/RemoveAssignedLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseAssignmentManagerMoIdUpdateAssignedLicense(moId, body, callback)</td>
    <td style="padding:15px">Update the license associated with an entity</td>
    <td style="padding:15px">{base_path}/{version}/LicenseAssignmentManager/{pathv1}/UpdateAssignedLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdAddLicense(moId, body, callback)</td>
    <td style="padding:15px">Adds a license to the inventory of available licenses.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/AddLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdCheckLicenseFeature(moId, body, callback)</td>
    <td style="padding:15px">Returns whether or not a given feature is enabled.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/CheckLicenseFeature?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdConfigureLicenseSource(moId, body, callback)</td>
    <td style="padding:15px">Allows for reconfiguration of the License Manager license source.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/ConfigureLicenseSource?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdDecodeLicense(moId, body, callback)</td>
    <td style="padding:15px">Decodes licensing information on the license specified.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/DecodeLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdDisableFeature(moId, body, callback)</td>
    <td style="padding:15px">Release licenses for an optional feature.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/DisableFeature?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdEnableFeature(moId, body, callback)</td>
    <td style="padding:15px">Enable a feature that has an optional state.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/EnableFeature?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdQueryLicenseSourceAvailability(moId, body, callback)</td>
    <td style="padding:15px">Queries the current license source for total and available licenses available for
each feature know</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/QueryLicenseSourceAvailability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdQuerySupportedFeatures(moId, body, callback)</td>
    <td style="padding:15px">Queries the current license source for a list of available licenses that can be
licensed from this</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/QuerySupportedFeatures?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdQueryLicenseUsage(moId, body, callback)</td>
    <td style="padding:15px">Returns the license usage.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/QueryLicenseUsage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdRemoveLicenseLabel(moId, body, callback)</td>
    <td style="padding:15px">Removed a license's label.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/RemoveLicenseLabel?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdRemoveLicense(moId, body, callback)</td>
    <td style="padding:15px">Remove license from the available set.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/RemoveLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdSetLicenseEdition(moId, body, callback)</td>
    <td style="padding:15px">Defines the product's license edition.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/SetLicenseEdition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdUpdateLicenseLabel(moId, body, callback)</td>
    <td style="padding:15px">Update a license's label.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/UpdateLicenseLabel?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postLicenseManagerMoIdUpdateLicense(moId, body, callback)</td>
    <td style="padding:15px">Updates the available licenses to the one provided in licenseKey.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/UpdateLicense?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdDiagnostics(moId, callback)</td>
    <td style="padding:15px">Return current diagnostic information.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/diagnostics?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdEvaluation(moId, callback)</td>
    <td style="padding:15px">***Required privileges:*** System.Read</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/evaluation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdFeatureInfo(moId, callback)</td>
    <td style="padding:15px">The list of features that can be licensed.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/featureInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdLicenseAssignmentManager(moId, callback)</td>
    <td style="padding:15px">License Assignment Manager</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/licenseAssignmentManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdLicensedEdition(moId, callback)</td>
    <td style="padding:15px">The product's license edition.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/licensedEdition?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdLicenses(moId, callback)</td>
    <td style="padding:15px">Get information about all the licenses available.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/licenses?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdSource(moId, callback)</td>
    <td style="padding:15px">Set or return a data object type of LocalLicense or LicenseServer.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/source?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLicenseManagerMoIdSourceAvailable(moId, callback)</td>
    <td style="padding:15px">Current state of the license source.</td>
    <td style="padding:15px">{base_path}/{version}/LicenseManager/{pathv1}/sourceAvailable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postListViewMoIdDestroyView(moId, callback)</td>
    <td style="padding:15px">Destroy this view.</td>
    <td style="padding:15px">{base_path}/{version}/ListView/{pathv1}/DestroyView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postListViewMoIdModifyListView(moId, body, callback)</td>
    <td style="padding:15px">Modify the list by giving a delta of entities to add and
entities to remove.</td>
    <td style="padding:15px">{base_path}/{version}/ListView/{pathv1}/ModifyListView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postListViewMoIdResetListView(moId, body, callback)</td>
    <td style="padding:15px">Replaces the list with an entirely new set of objects.</td>
    <td style="padding:15px">{base_path}/{version}/ListView/{pathv1}/ResetListView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postListViewMoIdResetListViewFromView(moId, body, callback)</td>
    <td style="padding:15px">Replaces the list with the set of objects in a given view.</td>
    <td style="padding:15px">{base_path}/{version}/ListView/{pathv1}/ResetListViewFromView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getListViewMoIdView(moId, callback)</td>
    <td style="padding:15px">The list of references to objects mapped by this view.</td>
    <td style="padding:15px">{base_path}/{version}/ListView/{pathv1}/view?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getLocalizationManagerMoIdCatalog(moId, callback)</td>
    <td style="padding:15px">Fetches the descriptions of all the client-side localization message
catalogs available for the cur</td>
    <td style="padding:15px">{base_path}/{version}/LocalizationManager/{pathv1}/catalog?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postManagedEntityMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postManagedEntityMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postManagedEntityMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postManagedEntityMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedEntityMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedEntity/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postManagedObjectViewMoIdDestroyView(moId, callback)</td>
    <td style="padding:15px">Destroy this view.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedObjectView/{pathv1}/DestroyView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getManagedObjectViewMoIdView(moId, callback)</td>
    <td style="padding:15px">The list of references to objects mapped by this view.</td>
    <td style="padding:15px">{base_path}/{version}/ManagedObjectView/{pathv1}/view?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postNetworkMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postNetworkMoIdDestroyNetwork(moId, callback)</td>
    <td style="padding:15px">Removes a network.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/DestroyNetwork?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postNetworkMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postNetworkMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postNetworkMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdHost(moId, callback)</td>
    <td style="padding:15px">Hosts attached to this network.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Properties of a network.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getNetworkMoIdVm(moId, callback)</td>
    <td style="padding:15px">Virtual machines using this network.</td>
    <td style="padding:15px">{base_path}/{version}/Network/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOpaqueNetworkMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOpaqueNetworkMoIdDestroyNetwork(moId, callback)</td>
    <td style="padding:15px">Removes a network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/DestroyNetwork?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOpaqueNetworkMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOpaqueNetworkMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOpaqueNetworkMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdCapability(moId, callback)</td>
    <td style="padding:15px">The capability of the Opaque Network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdExtraConfig(moId, callback)</td>
    <td style="padding:15px">Extra NSX specific properties for opaque network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/extraConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdHost(moId, callback)</td>
    <td style="padding:15px">Hosts attached to this network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/host?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Properties of a network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOpaqueNetworkMoIdVm(moId, callback)</td>
    <td style="padding:15px">Virtual machines using this network.</td>
    <td style="padding:15px">{base_path}/{version}/OpaqueNetwork/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOptionManagerMoIdQueryOptions(moId, body, callback)</td>
    <td style="padding:15px">Returns a specific node or nodes in the option hierarchy.</td>
    <td style="padding:15px">{base_path}/{version}/OptionManager/{pathv1}/QueryOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOptionManagerMoIdUpdateOptions(moId, body, callback)</td>
    <td style="padding:15px">Updates one or more options.</td>
    <td style="padding:15px">{base_path}/{version}/OptionManager/{pathv1}/UpdateOptions?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOptionManagerMoIdSetting(moId, callback)</td>
    <td style="padding:15px">A list of the current settings for the key/value pair options.</td>
    <td style="padding:15px">{base_path}/{version}/OptionManager/{pathv1}/setting?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOptionManagerMoIdSupportedOption(moId, callback)</td>
    <td style="padding:15px">A list of supported key/value pair options including their
type information.</td>
    <td style="padding:15px">{base_path}/{version}/OptionManager/{pathv1}/supportedOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOverheadMemoryManagerMoIdLookupVmOverheadMemory(moId, body, callback)</td>
    <td style="padding:15px">Return static VM overhead memory value in bytes for a (vm, host) pair from
the overhead memory modu</td>
    <td style="padding:15px">{base_path}/{version}/OverheadMemoryManager/{pathv1}/LookupVmOverheadMemory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOvfManagerMoIdCreateDescriptor(moId, body, callback)</td>
    <td style="padding:15px">Create an OVF descriptor for the specified ManagedEntity, which may be a
*VirtualMachine* or a *Vir</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/CreateDescriptor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOvfManagerMoIdCreateImportSpec(moId, body, callback)</td>
    <td style="padding:15px">Validate the OVF descriptor against the hardware supported by the
host system.</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/CreateImportSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOvfManagerMoIdParseDescriptor(moId, body, callback)</td>
    <td style="padding:15px">Parse the OVF descriptor and return as much information about it as possible
without knowing the ho</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/ParseDescriptor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postOvfManagerMoIdValidateHost(moId, body, callback)</td>
    <td style="padding:15px">Validate that the given OVF can be imported on the host.</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/ValidateHost?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOvfManagerMoIdOvfExportOption(moId, callback)</td>
    <td style="padding:15px">Returns an array of *OvfOptionInfo* object that specifies what options the server
support for expor</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/ovfExportOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getOvfManagerMoIdOvfImportOption(moId, callback)</td>
    <td style="padding:15px">Returns an array of *OvfOptionInfo* object that specifies what options the server
support for modif</td>
    <td style="padding:15px">{base_path}/{version}/OvfManager/{pathv1}/ovfImportOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdCreatePerfInterval(moId, body, callback)</td>
    <td style="padding:15px">Adds a new historical interval.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/CreatePerfInterval?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryAvailablePerfMetric(moId, body, callback)</td>
    <td style="padding:15px">Retrieves all performance counters for the specified *managed object* generated during a specified
</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryAvailablePerfMetric?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryPerfComposite(moId, body, callback)</td>
    <td style="padding:15px">Retrieves a *PerfCompositeMetric* data object
that comprises statistics for the specified entity an</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryPerfComposite?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryPerfCounter(moId, body, callback)</td>
    <td style="padding:15px">Retrieves counter information for the specified list of counter IDs.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryPerfCounter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryPerfCounterByLevel(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the set of counters that are available at a specified
collection *PerfInterval.level*.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryPerfCounterByLevel?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryPerfProviderSummary(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the *PerfProviderSummary* data object that
defines the capabilities of the specified mana</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryPerfProviderSummary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdQueryPerf(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the performance metrics for the specified entity (or entities)
based on the properties sp</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/QueryPerf?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdRemovePerfInterval(moId, body, callback)</td>
    <td style="padding:15px">Removes an interval from the list.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/RemovePerfInterval?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdResetCounterLevelMapping(moId, body, callback)</td>
    <td style="padding:15px">Restores a set of performance counters to the default level of data
collection.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/ResetCounterLevelMapping?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdUpdateCounterLevelMapping(moId, body, callback)</td>
    <td style="padding:15px">Changes the level of data collection for a set of performance counters.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/UpdateCounterLevelMapping?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPerformanceManagerMoIdUpdatePerfInterval(moId, body, callback)</td>
    <td style="padding:15px">Modifies VirtualCenter Server's built-in *historical intervals*, within certain limits.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/UpdatePerfInterval?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPerformanceManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">The static description strings.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPerformanceManagerMoIdHistoricalInterval(moId, callback)</td>
    <td style="padding:15px">A list of *intervals* configured on the
system.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/historicalInterval?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPerformanceManagerMoIdPerfCounter(moId, callback)</td>
    <td style="padding:15px">A list of all supported performance counters in the system.</td>
    <td style="padding:15px">{base_path}/{version}/PerformanceManager/{pathv1}/perfCounter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdAssociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Associate a profile with a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/AssociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdCheckProfileComplianceTask(moId, body, callback)</td>
    <td style="padding:15px">Check compliance of an entity against a Profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/CheckProfileCompliance_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdDestroyProfile(moId, callback)</td>
    <td style="padding:15px">Destroy the profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/DestroyProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdDissociateProfile(moId, body, callback)</td>
    <td style="padding:15px">Remove the association between a profile and a managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/DissociateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdExportProfile(moId, callback)</td>
    <td style="padding:15px">Export the profile in a serialized form.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/ExportProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileMoIdRetrieveDescription(moId, callback)</td>
    <td style="padding:15px">Returns the localizable description for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/RetrieveDescription?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdComplianceStatus(moId, callback)</td>
    <td style="padding:15px">Overall compliance of entities associated with this profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/complianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration data for the profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdCreatedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was created.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/createdTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Localizable description of the profile</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdEntity(moId, callback)</td>
    <td style="padding:15px">List of managed entities associated with the profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/entity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdModifiedTime(moId, callback)</td>
    <td style="padding:15px">Time at which the profile was last modified.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/modifiedTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of the profile.</td>
    <td style="padding:15px">{base_path}/{version}/Profile/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileComplianceManagerMoIdCheckComplianceTask(moId, body, callback)</td>
    <td style="padding:15px">Check compliance of an entity against a Profile.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileComplianceManager/{pathv1}/CheckCompliance_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileComplianceManagerMoIdClearComplianceStatus(moId, body, callback)</td>
    <td style="padding:15px">Clear the saved ComplianceResult based on profile and entity filtering criteria.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileComplianceManager/{pathv1}/ClearComplianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileComplianceManagerMoIdQueryComplianceStatus(moId, body, callback)</td>
    <td style="padding:15px">Query the compliance status based on Profile and Entity filter.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileComplianceManager/{pathv1}/QueryComplianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileComplianceManagerMoIdQueryExpressionMetadata(moId, body, callback)</td>
    <td style="padding:15px">Query the metadata for the expressions.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileComplianceManager/{pathv1}/QueryExpressionMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileManagerMoIdCreateProfile(moId, body, callback)</td>
    <td style="padding:15px">Create a profile from the specified CreateSpec.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileManager/{pathv1}/CreateProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileManagerMoIdFindAssociatedProfile(moId, body, callback)</td>
    <td style="padding:15px">Get the profile(s) to which this entity is associated.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileManager/{pathv1}/FindAssociatedProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postProfileManagerMoIdQueryPolicyMetadata(moId, body, callback)</td>
    <td style="padding:15px">Get the Metadata information for the policyNames.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileManager/{pathv1}/QueryPolicyMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getProfileManagerMoIdProfile(moId, callback)</td>
    <td style="padding:15px">A list of profiles known to this ProfileManager.</td>
    <td style="padding:15px">{base_path}/{version}/ProfileManager/{pathv1}/profile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdCancelRetrievePropertiesEx(moId, body, callback)</td>
    <td style="padding:15px">Discards remaining results from a retrieval started by *PropertyCollector.RetrievePropertiesEx* on</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/CancelRetrievePropertiesEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdCancelWaitForUpdates(moId, callback)</td>
    <td style="padding:15px">Attempts to cancel outstanding calls to *PropertyCollector.WaitForUpdates* or *PropertyCollector.Wa</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/CancelWaitForUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdCheckForUpdates(moId, body, callback)</td>
    <td style="padding:15px">Checks for updates on properties specified by the union of all current
filters.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/CheckForUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdContinueRetrievePropertiesEx(moId, body, callback)</td>
    <td style="padding:15px">Retrieves additional results from a retrieval started by *PropertyCollector.RetrievePropertiesEx* o</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/ContinueRetrievePropertiesEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdCreateFilter(moId, body, callback)</td>
    <td style="padding:15px">Creates a new filter for the given set of managed objects.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/CreateFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdCreatePropertyCollector(moId, callback)</td>
    <td style="padding:15px">Creates a new session-specific *PropertyCollector* that can
be used to retrieve property updates in</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/CreatePropertyCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdDestroyPropertyCollector(moId, callback)</td>
    <td style="padding:15px">Destroys this *PropertyCollector*.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/DestroyPropertyCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdRetrieveProperties(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the specified properties of the specified managed objects.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/RetrieveProperties?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdRetrievePropertiesEx(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the specified properties of the specified managed objects.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/RetrievePropertiesEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdWaitForUpdates(moId, body, callback)</td>
    <td style="padding:15px">Calculate the set of updates for each existing filter in the session,
returning when at least one f</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/WaitForUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyCollectorMoIdWaitForUpdatesEx(moId, body, callback)</td>
    <td style="padding:15px">Calculate the set of updates for each existing filter in the session.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/WaitForUpdatesEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPropertyCollectorMoIdFilter(moId, callback)</td>
    <td style="padding:15px">The filters that this *PropertyCollector* uses to determine the list of
properties for which it det</td>
    <td style="padding:15px">{base_path}/{version}/PropertyCollector/{pathv1}/filter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postPropertyFilterMoIdDestroyPropertyFilter(moId, callback)</td>
    <td style="padding:15px">Destroys this filter.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyFilter/{pathv1}/DestroyPropertyFilter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPropertyFilterMoIdPartialUpdates(moId, callback)</td>
    <td style="padding:15px">Flag to indicate if a change to a nested property reports only the
nested change or the entire spec</td>
    <td style="padding:15px">{base_path}/{version}/PropertyFilter/{pathv1}/partialUpdates?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getPropertyFilterMoIdSpec(moId, callback)</td>
    <td style="padding:15px">Specifications for this filter.</td>
    <td style="padding:15px">{base_path}/{version}/PropertyFilter/{pathv1}/spec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePlanningManagerMoIdEstimateDatabaseSize(moId, body, callback)</td>
    <td style="padding:15px">Estimates the database size required to store VirtualCenter data.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePlanningManager/{pathv1}/EstimateDatabaseSize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdCreateResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Creates a new resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/CreateResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdCreateVApp(moId, body, callback)</td>
    <td style="padding:15px">Creates a new vApp container.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/CreateVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdCreateChildVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new virtual machine in a vApp container.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/CreateChildVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdDestroyChildren(moId, callback)</td>
    <td style="padding:15px">Removes all child resource pools recursively.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/DestroyChildren?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdImportVApp(moId, body, callback)</td>
    <td style="padding:15px">Creates a new entity in this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/ImportVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdMoveIntoResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Moves a set of resource pools, vApps or virtual machines into this pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/MoveIntoResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdQueryResourceConfigOption(moId, callback)</td>
    <td style="padding:15px">Get a value range and default values for *ResourceConfigSpec*.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/QueryResourceConfigOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdRefreshRuntime(moId, callback)</td>
    <td style="padding:15px">Refreshes the resource usage data that is available in
*ResourcePoolRuntimeInfo*.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/RefreshRuntime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdRegisterChildVMTask(moId, body, callback)</td>
    <td style="padding:15px">Adds an existing virtual machine to this resource pool or vApp.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/RegisterChildVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdUpdateChildResourceConfiguration(moId, body, callback)</td>
    <td style="padding:15px">Changes resource configuration of a set of children of this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/UpdateChildResourceConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postResourcePoolMoIdUpdateConfig(moId, body, callback)</td>
    <td style="padding:15px">Updates the configuration of the resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/UpdateConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdChildConfiguration(moId, callback)</td>
    <td style="padding:15px">The resource configuration of all direct children (VirtualMachine and
ResourcePool) of this resourc</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/childConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration of this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdNamespace(moId, callback)</td>
    <td style="padding:15px">The namespace with which the ResourcePool is associated.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/namespace?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdOwner(moId, callback)</td>
    <td style="padding:15px">The ComputeResource to which this set of one or more nested resource pools
belong.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/owner?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdResourcePool(moId, callback)</td>
    <td style="padding:15px">The set of child resource pools.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/resourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information about a resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic information about a resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getResourcePoolMoIdVm(moId, callback)</td>
    <td style="padding:15px">The set of virtual machines associated with this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/ResourcePool/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskMoIdReconfigureScheduledTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures the scheduled task properties.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/ReconfigureScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskMoIdRemoveScheduledTask(moId, callback)</td>
    <td style="padding:15px">Removes the scheduled task.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/RemoveScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskMoIdRunScheduledTask(moId, callback)</td>
    <td style="padding:15px">Runs the scheduled task immediately.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/RunScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getScheduledTaskMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getScheduledTaskMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Information about the current scheduled task.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getScheduledTaskMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTask/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskManagerMoIdCreateScheduledTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a scheduled task.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/CreateScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskManagerMoIdCreateObjectScheduledTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a scheduled task.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/CreateObjectScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskManagerMoIdRetrieveEntityScheduledTask(moId, body, callback)</td>
    <td style="padding:15px">Available scheduled tasks defined on the entity.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/RetrieveEntityScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postScheduledTaskManagerMoIdRetrieveObjectScheduledTask(moId, body, callback)</td>
    <td style="padding:15px">Available scheduled tasks defined on the object.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/RetrieveObjectScheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getScheduledTaskManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Static descriptive strings used in scheduled tasks.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getScheduledTaskManagerMoIdScheduledTask(moId, callback)</td>
    <td style="padding:15px">All available scheduled tasks.</td>
    <td style="padding:15px">{base_path}/{version}/ScheduledTaskManager/{pathv1}/scheduledTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindAllByDnsName(moId, body, callback)</td>
    <td style="padding:15px">Finds all virtual machines or hosts by DNS name.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindAllByDnsName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindAllByIp(moId, body, callback)</td>
    <td style="padding:15px">Finds all virtual machines or hosts by IP address, where the IP address is
in dot-decimal notation.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindAllByIp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindAllByUuid(moId, body, callback)</td>
    <td style="padding:15px">Finds all virtual machines or hosts by UUID.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindAllByUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindByDatastorePath(moId, body, callback)</td>
    <td style="padding:15px">Finds a virtual machine by its location on a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindByDatastorePath?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindByDnsName(moId, body, callback)</td>
    <td style="padding:15px">Finds a virtual machine or host by DNS name.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindByDnsName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindByInventoryPath(moId, body, callback)</td>
    <td style="padding:15px">Finds a managed entity based on its location in the inventory.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindByInventoryPath?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindByIp(moId, body, callback)</td>
    <td style="padding:15px">Finds a virtual machine or host by IP address, where the IP address is in
dot-decimal notation.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindByIp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindByUuid(moId, body, callback)</td>
    <td style="padding:15px">Finds a virtual machine or host by BIOS or instance UUID.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindByUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSearchIndexMoIdFindChild(moId, body, callback)</td>
    <td style="padding:15px">Finds a particular child based on a managed entity
name.</td>
    <td style="padding:15px">{base_path}/{version}/SearchIndex/{pathv1}/FindChild?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceInstanceMoIdCurrentTime(moId, callback)</td>
    <td style="padding:15px">Returns the current time on the server.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/CurrentTime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceInstanceMoIdQueryVMotionCompatibility(moId, body, callback)</td>
    <td style="padding:15px">Investigates the general VMotion compatibility of a virtual machine with
a set of hosts.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/QueryVMotionCompatibility?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceInstanceMoIdRetrieveServiceContent(moId, callback)</td>
    <td style="padding:15px">Retrieves the properties of the service instance.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/RetrieveServiceContent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceInstanceMoIdRetrieveProductComponents(moId, callback)</td>
    <td style="padding:15px">Component information for bundled products</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/RetrieveProductComponents?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceInstanceMoIdValidateMigration(moId, body, callback)</td>
    <td style="padding:15px">Checks the validity of a set of proposed migrations.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/ValidateMigration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getServiceInstanceMoIdCapability(moId, callback)</td>
    <td style="padding:15px">API-wide capabilities.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getServiceInstanceMoIdContent(moId, callback)</td>
    <td style="padding:15px">The properties of the ServiceInstance managed object.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/content?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getServiceInstanceMoIdServerClock(moId, callback)</td>
    <td style="padding:15px">Contains the time most recently obtained from the server.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceInstance/{pathv1}/serverClock?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postServiceManagerMoIdQueryServiceList(moId, body, callback)</td>
    <td style="padding:15px">A query interface that returns a list of services that match certain criteria.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceManager/{pathv1}/QueryServiceList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getServiceManagerMoIdService(moId, callback)</td>
    <td style="padding:15px">The full list of services available in this directory.</td>
    <td style="padding:15px">{base_path}/{version}/ServiceManager/{pathv1}/service?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdAcquireCloneTicket(moId, callback)</td>
    <td style="padding:15px">Acquire a session-specific ticket string which can be used to clone
the current session.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/AcquireCloneTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdAcquireGenericServiceTicket(moId, body, callback)</td>
    <td style="padding:15px">Creates and returns a one-time credential that may be used to make the
specified request.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/AcquireGenericServiceTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdAcquireLocalTicket(moId, body, callback)</td>
    <td style="padding:15px">Acquires a one-time ticket for mutual authentication between a server and client.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/AcquireLocalTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdCloneSession(moId, body, callback)</td>
    <td style="padding:15px">Clone the session specified by the clone ticket and associate it with
the current connection.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/CloneSession?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdImpersonateUser(moId, body, callback)</td>
    <td style="padding:15px">Converts current session to impersonate the specified user.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/ImpersonateUser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLogin(moId, body, callback)</td>
    <td style="padding:15px">Log on to the server.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/Login?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLoginBySSPI(moId, body, callback)</td>
    <td style="padding:15px">Log on to the server using SSPI pass-through authentication.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/LoginBySSPI?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLoginByToken(moId, body, callback)</td>
    <td style="padding:15px">Log on to the server through token representing principal identity.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/LoginByToken?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLoginExtension(moId, body, callback)</td>
    <td style="padding:15px">Creates a special privileged session that includes
the Sessions.ImpersonateUser privilege.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/LoginExtension?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLoginExtensionByCertificate(moId, body, callback)</td>
    <td style="padding:15px">Creates a special privileged session that includes
the Sessions.ImpersonateUser privilege.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/LoginExtensionByCertificate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLoginExtensionBySubjectName(moId, body, callback)</td>
    <td style="padding:15px">Creates a special privileged session that includes
the Sessions.ImpersonateUser privilege.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/LoginExtensionBySubjectName?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdLogout(moId, callback)</td>
    <td style="padding:15px">Log out and terminate the current session.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/Logout?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdSessionIsActive(moId, body, callback)</td>
    <td style="padding:15px">Validates that a currently-active session exists with the specified
sessionID and userName associat</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/SessionIsActive?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdSetLocale(moId, body, callback)</td>
    <td style="padding:15px">Sets the session locale.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/SetLocale?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdTerminateSession(moId, body, callback)</td>
    <td style="padding:15px">Log off and terminate the provided list of sessions.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/TerminateSession?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSessionManagerMoIdUpdateServiceMessage(moId, body, callback)</td>
    <td style="padding:15px">Updates the system global message.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/UpdateServiceMessage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdCurrentSession(moId, callback)</td>
    <td style="padding:15px">This property contains information about the client's current session.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/currentSession?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdDefaultLocale(moId, callback)</td>
    <td style="padding:15px">This is the default server locale.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/defaultLocale?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdMessage(moId, callback)</td>
    <td style="padding:15px">The system global message from the server.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/message?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdMessageLocaleList(moId, callback)</td>
    <td style="padding:15px">Provides the list of locales for which the server has localized messages.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/messageLocaleList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdSessionList(moId, callback)</td>
    <td style="padding:15px">The list of currently active sessions.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/sessionList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSessionManagerMoIdSupportedLocaleList(moId, callback)</td>
    <td style="padding:15px">Provides the list of locales that the server supports.</td>
    <td style="padding:15px">{base_path}/{version}/SessionManager/{pathv1}/supportedLocaleList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSimpleCommandMoIdExecuteSimpleCommand(moId, body, callback)</td>
    <td style="padding:15px">The single function execution point for this simple command.</td>
    <td style="padding:15px">{base_path}/{version}/SimpleCommand/{pathv1}/ExecuteSimpleCommand?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSimpleCommandMoIdEncodingType(moId, callback)</td>
    <td style="padding:15px">The encoding type used in the result.</td>
    <td style="padding:15px">{base_path}/{version}/SimpleCommand/{pathv1}/encodingType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getSimpleCommandMoIdEntity(moId, callback)</td>
    <td style="padding:15px">A description of the service.</td>
    <td style="padding:15px">{base_path}/{version}/SimpleCommand/{pathv1}/entity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postSiteInfoManagerMoIdGetSiteInfo(moId, callback)</td>
    <td style="padding:15px">Returns the *SiteInfo* object associated with this vCenter.</td>
    <td style="padding:15px">{base_path}/{version}/SiteInfoManager/{pathv1}/GetSiteInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdAddStandaloneHostTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new single-host compute resource.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/AddStandaloneHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdBatchAddHostsToClusterTask(moId, body, callback)</td>
    <td style="padding:15px">Adds a set of new and existing hosts to the cluster.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/BatchAddHostsToCluster_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdBatchAddStandaloneHostsTask(moId, body, callback)</td>
    <td style="padding:15px">Adds a list of hosts to inventory, as standalone hosts,
in a single invocation.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/BatchAddStandaloneHosts_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateCluster(moId, body, callback)</td>
    <td style="padding:15px">Creates a new cluster compute resource in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateCluster?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateClusterEx(moId, body, callback)</td>
    <td style="padding:15px">Creates a new cluster compute resource in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateClusterEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateDatacenter(moId, body, callback)</td>
    <td style="padding:15px">Creates a new datacenter with the given name.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateDatacenter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateDVSTask(moId, body, callback)</td>
    <td style="padding:15px">Create a *DistributedVirtualSwitch* in the folder according to the
specified *DVSCreateSpec*.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateDVS_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateFolder(moId, body, callback)</td>
    <td style="padding:15px">Creates a new sub-folder with the specified name.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateStoragePod(moId, body, callback)</td>
    <td style="padding:15px">Creates a new storage pod in this folder.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateStoragePod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdCreateVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new virtual machine in the current folder and attaches it to the
specified resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/CreateVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdMoveIntoFolderTask(moId, body, callback)</td>
    <td style="padding:15px">Moves a set of managed entities into this folder.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/MoveIntoFolder_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdRegisterVMTask(moId, body, callback)</td>
    <td style="padding:15px">Adds an existing virtual machine to the folder.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/RegisterVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStoragePodMoIdUnregisterAndDestroyTask(moId, callback)</td>
    <td style="padding:15px">Recursively unregisters all virtual machines and vApps, and destroys
all child virtual machine fold</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/UnregisterAndDestroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdChildEntity(moId, callback)</td>
    <td style="padding:15px">An array of managed object references.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/childEntity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdChildType(moId, callback)</td>
    <td style="padding:15px">Specifies the object types a folder may contain.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/childType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdNamespace(moId, callback)</td>
    <td style="padding:15px">The namespace with which the Folder is associated.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/namespace?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdPodStorageDrsEntry(moId, callback)</td>
    <td style="padding:15px">Storage DRS related attributes of the Storage Pod.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/podStorageDrsEntry?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Storage pod summary.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getStoragePodMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/StoragePod/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageQueryManagerMoIdQueryHostsWithAttachedLun(moId, body, callback)</td>
    <td style="padding:15px">Query the set of all hosts which have the specified lun attached.</td>
    <td style="padding:15px">{base_path}/{version}/StorageQueryManager/{pathv1}/QueryHostsWithAttachedLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdConfigureDatastoreIORMTask(moId, body, callback)</td>
    <td style="padding:15px">Changes configuration of storage I/O resource management for a given datastore.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/ConfigureDatastoreIORM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdQueryIORMConfigOption(moId, body, callback)</td>
    <td style="padding:15px">Query configuration options for storage I/O resource management.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/QueryIORMConfigOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdApplyStorageDrsRecommendationTask(moId, body, callback)</td>
    <td style="padding:15px">Applies a recommendation from the recommendation list that is generated
by SDRS initial placement i</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/ApplyStorageDrsRecommendation_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdApplyStorageDrsRecommendationToPodTask(moId, body, callback)</td>
    <td style="padding:15px">Applies a recommendation from the recommendation list that is generated
by SDRS load balancing acti</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/ApplyStorageDrsRecommendationToPod_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdCancelStorageDrsRecommendation(moId, body, callback)</td>
    <td style="padding:15px">Cancels a recommendation.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/CancelStorageDrsRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdConfigureStorageDrsForPodTask(moId, body, callback)</td>
    <td style="padding:15px">Change the storage DRS configuration for a pod *StoragePod*.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/ConfigureStorageDrsForPod_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdQueryDatastorePerformanceSummary(moId, body, callback)</td>
    <td style="padding:15px">Returns datastore summary performance statistics.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/QueryDatastorePerformanceSummary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdRecommendDatastores(moId, body, callback)</td>
    <td style="padding:15px">This method returns a *StoragePlacementResult* object.
This API is intended to replace the followin</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/RecommendDatastores?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdRefreshStorageDrsRecommendation(moId, body, callback)</td>
    <td style="padding:15px">Make Storage DRS invoke again on the specified pod *StoragePod*
and return a new list of recommenda</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/RefreshStorageDrsRecommendation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdRefreshStorageDrsRecommendationsForPodTask(moId, body, callback)</td>
    <td style="padding:15px">Invoke Storage DRS on a specific pod *StoragePod*
and return a new list of recommendations.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/RefreshStorageDrsRecommendationsForPod_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postStorageResourceManagerMoIdValidateStoragePodConfig(moId, body, callback)</td>
    <td style="padding:15px">Validate the new storage DRS configuration for a pod
*StoragePod*.</td>
    <td style="padding:15px">{base_path}/{version}/StorageResourceManager/{pathv1}/ValidateStoragePodConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskMoIdSetTaskDescription(moId, body, callback)</td>
    <td style="padding:15px">Updates task description to describe the current phase of the task.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/SetTaskDescription?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskMoIdUpdateProgress(moId, body, callback)</td>
    <td style="padding:15px">Sets percentage done for this task and recalculates overall
percentage done.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/UpdateProgress?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskMoIdCancelTask(moId, callback)</td>
    <td style="padding:15px">Cancels a running or queued task.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/CancelTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskMoIdSetTaskState(moId, body, callback)</td>
    <td style="padding:15px">Sets task state and optionally sets results or fault,
as appropriate for state</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/SetTaskState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskMoIdInfo(moId, callback)</td>
    <td style="padding:15px">Detailed information about this task.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/info?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/Task/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdReadNextTasks(moId, body, callback)</td>
    <td style="padding:15px">Reads the 'scrollable view' from the current position.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/ReadNextTasks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdReadPreviousTasks(moId, body, callback)</td>
    <td style="padding:15px">Reads the 'scrollable view' from the current position.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/ReadPreviousTasks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdDestroyCollector(moId, callback)</td>
    <td style="padding:15px">Destroys this collector.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/DestroyCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdResetCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the item immediately preceding the
"viewable latest page".</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/ResetCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdRewindCollector(moId, callback)</td>
    <td style="padding:15px">Moves the "scrollable view" to the oldest item.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/RewindCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskHistoryCollectorMoIdSetCollectorPageSize(moId, body, callback)</td>
    <td style="padding:15px">Sets the "viewable latest page" size to contain at most the
number of items specified by the maxCou</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/SetCollectorPageSize?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskHistoryCollectorMoIdFilter(moId, callback)</td>
    <td style="padding:15px">The filter used to create this collector.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/filter?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskHistoryCollectorMoIdLatestPage(moId, callback)</td>
    <td style="padding:15px">The items in the 'viewable latest page'.</td>
    <td style="padding:15px">{base_path}/{version}/TaskHistoryCollector/{pathv1}/latestPage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskManagerMoIdCreateCollectorForTasks(moId, body, callback)</td>
    <td style="padding:15px">Creates a *TaskHistoryCollector*, a
specialized *HistoryCollector* that gathers
*TaskInfo* data obj</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/CreateCollectorForTasks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskManagerMoIdCreateCollectorWithInfoFilterForTasks(moId, body, callback)</td>
    <td style="padding:15px">Creates a *TaskHistoryCollector*, a
specialized *HistoryCollector* that gathers
*TaskInfo* data obj</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/CreateCollectorWithInfoFilterForTasks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTaskManagerMoIdCreateTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new *Task*, specifying the object with which
the *Task* is associated, the type of task,
</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/CreateTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskManagerMoIdDescription(moId, callback)</td>
    <td style="padding:15px">Locale-specific, static strings that describe *Task*
information to users.</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/description?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskManagerMoIdMaxCollector(moId, callback)</td>
    <td style="padding:15px">Maximum number of *TaskHistoryCollector*
data objects that can exist concurrently, per client.</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/maxCollector?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getTaskManagerMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">A list of *Task* managed objects that completed recently,
that are currently running, or that are q</td>
    <td style="padding:15px">{base_path}/{version}/TaskManager/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTenantTenantManagerMoIdMarkServiceProviderEntities(moId, body, callback)</td>
    <td style="padding:15px">Define a set of ManagedEntity objects as used for tenant management.</td>
    <td style="padding:15px">{base_path}/{version}/TenantTenantManager/{pathv1}/MarkServiceProviderEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTenantTenantManagerMoIdRetrieveServiceProviderEntities(moId, callback)</td>
    <td style="padding:15px">Retrieves the list of tenant management entities.</td>
    <td style="padding:15px">{base_path}/{version}/TenantTenantManager/{pathv1}/RetrieveServiceProviderEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postTenantTenantManagerMoIdUnmarkServiceProviderEntities(moId, body, callback)</td>
    <td style="padding:15px">Resets the management type of an array of ManagedEntity objects.</td>
    <td style="padding:15px">{base_path}/{version}/TenantTenantManager/{pathv1}/UnmarkServiceProviderEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postUserDirectoryMoIdRetrieveUserGroups(moId, body, callback)</td>
    <td style="padding:15px">Returns a list of *UserSearchResult* objects describing the
users and groups defined for the server.</td>
    <td style="padding:15px">{base_path}/{version}/UserDirectory/{pathv1}/RetrieveUserGroups?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getUserDirectoryMoIdDomainList(moId, callback)</td>
    <td style="padding:15px">List of Windows domains available for user searches, if the underlying
system supports windows doma</td>
    <td style="padding:15px">{base_path}/{version}/UserDirectory/{pathv1}/domainList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVStorageObjectManagerBaseMoIdVStorageObjectCreateSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VStorageObjectManagerBase/{pathv1}/VStorageObjectCreateSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVStorageObjectManagerBaseMoIdVStorageObjectDeleteSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VStorageObjectManagerBase/{pathv1}/VStorageObjectDeleteSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVStorageObjectManagerBaseMoIdVStorageObjectExtendDiskExTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/VStorageObjectManagerBase/{pathv1}/VStorageObjectExtendDiskEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVStorageObjectManagerBaseMoIdRenameVStorageObjectEx(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VStorageObjectManagerBase/{pathv1}/RenameVStorageObjectEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVStorageObjectManagerBaseMoIdRevertVStorageObjectExTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VStorageObjectManagerBase/{pathv1}/RevertVStorageObjectEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRevertVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RevertVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdAttachTagToVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Attach a tag to a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/AttachTagToVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdClearVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Clear control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ClearVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdCloneVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Clone a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/CloneVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdCreateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Create a virtual disk, which is a storage object with
*disk*
as consumption type.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/CreateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdCreateDiskFromSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new Disk from given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/CreateDiskFromSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVStorageObjectCreateSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VStorageObjectCreateSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVStorageObjectCreateSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VStorageObjectCreateSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdDeleteSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/DeleteSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVStorageObjectDeleteSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VStorageObjectDeleteSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdDeleteVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual storage object and its associated backings.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/DeleteVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdDeleteVStorageObjectExTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual storage object and its associated backings.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/DeleteVStorageObjectEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdDetachTagFromVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Detach a tag from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/DetachTagFromVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdExtendDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ExtendDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVStorageObjectExtendDiskExTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VStorageObjectExtendDiskEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdInflateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Inflate a sparse or thin-provisioned virtual disk up to the full size.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/InflateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdListTagsAttachedToVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Lists all tags attached to virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ListTagsAttachedToVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdListVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">List all virtual storage objects located on a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ListVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdListVStorageObjectsAttachedToTag(moId, body, callback)</td>
    <td style="padding:15px">Lists all virtual storage objects attached to the tag.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ListVStorageObjectsAttachedToTag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVstorageObjectVCenterQueryChangedDiskAreas(moId, body, callback)</td>
    <td style="padding:15px">Get a list of areas of a virtual disk that have been modified since a
well-defined point in the pas</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VstorageObjectVCenterQueryChangedDiskAreas?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdQueryVirtualDiskUuidEx(moId, body, callback)</td>
    <td style="padding:15px">Get the virtual disk UUID.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/QueryVirtualDiskUuidEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdReconcileDatastoreInventoryTask(moId, body, callback)</td>
    <td style="padding:15px">Reconcile the datastore inventory info of virtual storage objects.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ReconcileDatastoreInventory_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRegisterDisk(moId, body, callback)</td>
    <td style="padding:15px">Promote a virtual disk to a First Class Disk.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RegisterDisk?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRelocateVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Relocate a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RelocateVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRenameVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RenameVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRenameVStorageObjectEx(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RenameVStorageObjectEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveSnapshotDetails(moId, body, callback)</td>
    <td style="padding:15px">Retrieves snapshot disk details of a given snapshot.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveSnapshotDetails?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveSnapshotInfo(moId, body, callback)</td>
    <td style="padding:15px">Retrieves snapshot information of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveSnapshotInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveVStorageInfrastructureObjectPolicy(moId, body, callback)</td>
    <td style="padding:15px">Retrieve virtual storage infrastructure object SBPM policy on given
datastore.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveVStorageInfrastructureObjectPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveVStorageObjectAssociations(moId, body, callback)</td>
    <td style="padding:15px">Retrieve vm associations for each virtual storage object in the query.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveVStorageObjectAssociations?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRetrieveVStorageObjectState(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object state.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RetrieveVStorageObjectState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdRevertVStorageObjectExTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/RevertVStorageObjectEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdScheduleReconcileDatastoreInventory(moId, body, callback)</td>
    <td style="padding:15px">Schedules reconcile of the inventory info of virtual storage objects on
one of the hosts that is co</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/ScheduleReconcileDatastoreInventory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdSetVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Set control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/SetVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdSetVirtualDiskUuidExTask(moId, body, callback)</td>
    <td style="padding:15px">Set the virtual disk Uuid.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/SetVirtualDiskUuidEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdUpdateVStorageInfrastructureObjectPolicyTask(moId, body, callback)</td>
    <td style="padding:15px">Assigns specified SBPM policy to the given virtual storage
infrastructure object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/UpdateVStorageInfrastructureObjectPolicy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdUpdateVStorageObjectCryptoTask(moId, body, callback)</td>
    <td style="padding:15px">Update the crypto on a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/UpdateVStorageObjectCrypto_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdVCenterUpdateVStorageObjectMetadataExTask(moId, body, callback)</td>
    <td style="padding:15px">Update metadata KV pairs to a virtual storage object and
returns the corresponding vclock upon succ</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/VCenterUpdateVStorageObjectMetadataEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVcenterVStorageObjectManagerMoIdUpdateVStorageObjectPolicyTask(moId, body, callback)</td>
    <td style="padding:15px">Update the storage policy on a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/VcenterVStorageObjectManager/{pathv1}/UpdateVStorageObjectPolicy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postViewMoIdDestroyView(moId, callback)</td>
    <td style="padding:15px">Destroy this view.</td>
    <td style="padding:15px">{base_path}/{version}/View/{pathv1}/DestroyView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postViewManagerMoIdCreateContainerView(moId, body, callback)</td>
    <td style="padding:15px">Create a *ContainerView* managed object for this session.</td>
    <td style="padding:15px">{base_path}/{version}/ViewManager/{pathv1}/CreateContainerView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postViewManagerMoIdCreateInventoryView(moId, callback)</td>
    <td style="padding:15px">Create a new *InventoryView* managed object for this session.</td>
    <td style="padding:15px">{base_path}/{version}/ViewManager/{pathv1}/CreateInventoryView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postViewManagerMoIdCreateListView(moId, body, callback)</td>
    <td style="padding:15px">Create a *ListView* object for this session.</td>
    <td style="padding:15px">{base_path}/{version}/ViewManager/{pathv1}/CreateListView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postViewManagerMoIdCreateListViewFromView(moId, body, callback)</td>
    <td style="padding:15px">Create a *ListView* object for this session.</td>
    <td style="padding:15px">{base_path}/{version}/ViewManager/{pathv1}/CreateListViewFromView?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getViewManagerMoIdViewList(moId, callback)</td>
    <td style="padding:15px">An array of view references.</td>
    <td style="padding:15px">{base_path}/{version}/ViewManager/{pathv1}/viewList?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdCloneVAppTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a clone of this vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/CloneVApp_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdCreateResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Creates a new resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/CreateResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdCreateVApp(moId, body, callback)</td>
    <td style="padding:15px">Creates a new vApp container.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/CreateVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdCreateChildVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new virtual machine in a vApp container.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/CreateChildVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdDestroyChildren(moId, callback)</td>
    <td style="padding:15px">Removes all child resource pools recursively.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/DestroyChildren?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdExportVApp(moId, callback)</td>
    <td style="padding:15px">Obtains an export lease on this vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/ExportVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdImportVApp(moId, body, callback)</td>
    <td style="padding:15px">Creates a new entity in this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/ImportVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdMoveIntoResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Moves a set of resource pools, vApps or virtual machines into this pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/MoveIntoResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdPowerOffVAppTask(moId, body, callback)</td>
    <td style="padding:15px">Stops this vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/PowerOffVApp_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdPowerOnVAppTask(moId, callback)</td>
    <td style="padding:15px">Starts this vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/PowerOnVApp_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdQueryResourceConfigOption(moId, callback)</td>
    <td style="padding:15px">Get a value range and default values for *ResourceConfigSpec*.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/QueryResourceConfigOption?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdRefreshRuntime(moId, callback)</td>
    <td style="padding:15px">Refreshes the resource usage data that is available in
*ResourcePoolRuntimeInfo*.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/RefreshRuntime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdRegisterChildVMTask(moId, body, callback)</td>
    <td style="padding:15px">Adds an existing virtual machine to this resource pool or vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/RegisterChildVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdSuspendVAppTask(moId, callback)</td>
    <td style="padding:15px">Suspends this vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/SuspendVApp_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdUnregisterVAppTask(moId, callback)</td>
    <td style="padding:15px">Removes this vApp from the inventory without removing
any of the virtual machine's files on disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/unregisterVApp_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdUpdateChildResourceConfiguration(moId, body, callback)</td>
    <td style="padding:15px">Changes resource configuration of a set of children of this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/UpdateChildResourceConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdUpdateConfig(moId, body, callback)</td>
    <td style="padding:15px">Updates the configuration of the resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/UpdateConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdUpdateLinkedChildren(moId, body, callback)</td>
    <td style="padding:15px">Reconfigure the set of linked children.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/UpdateLinkedChildren?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualAppMoIdUpdateVAppConfig(moId, body, callback)</td>
    <td style="padding:15px">Updates the vApp configuration.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/UpdateVAppConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdChildConfiguration(moId, callback)</td>
    <td style="padding:15px">The resource configuration of all direct children (VirtualMachine and
ResourcePool) of this resourc</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/childConfiguration?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdChildLink(moId, callback)</td>
    <td style="padding:15px">List of linked children.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/childLink?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration of this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of datastore objects used by this
vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdNamespace(moId, callback)</td>
    <td style="padding:15px">The namespace with which the ResourcePool is associated.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/namespace?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of network objects that
is used by this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdOwner(moId, callback)</td>
    <td style="padding:15px">The ComputeResource to which this set of one or more nested resource pools
belong.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/owner?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdParentFolder(moId, callback)</td>
    <td style="padding:15px">A reference to the parent folder in the VM and Template folder hierarchy.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/parentFolder?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdParentVApp(moId, callback)</td>
    <td style="padding:15px">Reference to the parent vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/parentVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdResourcePool(moId, callback)</td>
    <td style="padding:15px">The set of child resource pools.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/resourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information about a resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic information about a resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdVAppConfig(moId, callback)</td>
    <td style="padding:15px">Configuration of this package.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/vAppConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualAppMoIdVm(moId, callback)</td>
    <td style="padding:15px">The set of virtual machines associated with this resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualApp/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdCopyVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Copy a virtual disk, performing conversions as specified in the spec.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/CopyVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdCreateVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Create a virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/CreateVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdDefragmentVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Defragment a sparse virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/DefragmentVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdDeleteVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/DeleteVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdEagerZeroVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Explicitly zero out unaccessed parts zeroedthick disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/EagerZeroVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdExtendVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk to the new capacity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/ExtendVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdImportUnmanagedSnapshot(moId, body, callback)</td>
    <td style="padding:15px">Import an unmanaged-snapshot from Virtual-Volume(VVol) enabled
Storage Array.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/ImportUnmanagedSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdInflateVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Inflate a sparse or thin-provisioned virtual disk up to the full size.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/InflateVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdMoveVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Move a virtual disk and all related files from the source location specified
by  sourceName  and  s</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/MoveVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdQueryVirtualDiskFragmentation(moId, body, callback)</td>
    <td style="padding:15px">Return the percentage of fragmentation of the sparse virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/QueryVirtualDiskFragmentation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdQueryVirtualDiskGeometry(moId, body, callback)</td>
    <td style="padding:15px">Get the disk geometry information for the virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/QueryVirtualDiskGeometry?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdQueryVirtualDiskUuid(moId, body, callback)</td>
    <td style="padding:15px">Get the virtual disk SCSI inquiry page 0x83 data.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/QueryVirtualDiskUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdReleaseManagedSnapshot(moId, body, callback)</td>
    <td style="padding:15px">Release a snapshot previously imported with importUnmanagedSnapshot</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/ReleaseManagedSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdSetVirtualDiskUuid(moId, body, callback)</td>
    <td style="padding:15px">Set the virtual disk SCSI inquiry page 0x83 data.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/SetVirtualDiskUuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdShrinkVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Shrink a sparse virtual disk.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/ShrinkVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualDiskManagerMoIdZeroFillVirtualDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Overwrite all blocks of the virtual disk with zeros.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualDiskManager/{pathv1}/ZeroFillVirtualDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdAcquireMksTicket(moId, callback)</td>
    <td style="padding:15px">Creates and returns a one-time credential used in establishing a
remote mouse-keyboard-screen conne</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/AcquireMksTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdAcquireTicket(moId, body, callback)</td>
    <td style="padding:15px">Creates and returns a one-time credential used in establishing a
specific connection to this virtua</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/AcquireTicket?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdAnswerVM(moId, body, callback)</td>
    <td style="padding:15px">Responds to a question that is blocking this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/AnswerVM?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdApplyEvcModeVMTask(moId, body, callback)</td>
    <td style="padding:15px">Applies the EVC mode masks to the virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ApplyEvcModeVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdAttachDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Attach an existing disk to this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/AttachDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCheckCustomizationSpec(moId, body, callback)</td>
    <td style="padding:15px">Checks the customization specification against the virtual machine configuration.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CheckCustomizationSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCloneVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a clone of this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CloneVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdConsolidateVMDisksTask(moId, callback)</td>
    <td style="padding:15px">Consolidate the virtual disk files of the virtual machine by finding hierarchies
of redo logs that</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ConsolidateVMDisks_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCreateScreenshotTask(moId, callback)</td>
    <td style="padding:15px">Create a screen shot of a virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CreateScreenshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCreateSecondaryVMTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a secondary virtual machine to be part of this fault tolerant group.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CreateSecondaryVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCreateSecondaryVMExTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a secondary virtual machine to be part of this fault tolerant group.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CreateSecondaryVMEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCreateSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new snapshot of this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CreateSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCreateSnapshotExTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new snapshot of this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CreateSnapshotEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCryptoUnlockTask(moId, callback)</td>
    <td style="padding:15px">Unlocks an encrypted virtual machine by sending the encryption keys for
the Virtual Machine Home an</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CryptoUnlock_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdCustomizeVMTask(moId, body, callback)</td>
    <td style="padding:15px">Customizes a virtual machine's guest operating system.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/CustomizeVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdDefragmentAllDisks(moId, callback)</td>
    <td style="padding:15px">Defragment all virtual disks attached to this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/DefragmentAllDisks?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdDetachDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Detach a disk from this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/DetachDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdDisableSecondaryVMTask(moId, body, callback)</td>
    <td style="padding:15px">Disables the specified secondary virtual machine in this fault tolerant group.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/DisableSecondaryVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdDropConnections(moId, body, callback)</td>
    <td style="padding:15px">Force the virtual machine to drop the specified connections.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/DropConnections?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdEnableSecondaryVMTask(moId, body, callback)</td>
    <td style="padding:15px">Enables the specified secondary virtual machine in this fault tolerant group.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/EnableSecondaryVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdEstimateStorageForConsolidateSnapshotsTask(moId, callback)</td>
    <td style="padding:15px">Estimate the temporary space required to consolidation disk
files.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/EstimateStorageForConsolidateSnapshots_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdExportVm(moId, callback)</td>
    <td style="padding:15px">Obtains an export lease on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ExportVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdExtractOvfEnvironment(moId, callback)</td>
    <td style="padding:15px">Returns the OVF environment for a virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ExtractOvfEnvironment?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdInstantCloneTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a powered-on Instant Clone of a virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/InstantClone_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdMakePrimaryVMTask(moId, body, callback)</td>
    <td style="padding:15px">Makes the specified secondary virtual machine from this fault tolerant group as
the primary virtual</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/MakePrimaryVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdMarkAsTemplate(moId, callback)</td>
    <td style="padding:15px">Marks a VirtualMachine object as being used as a template.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/MarkAsTemplate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdMarkAsVirtualMachine(moId, body, callback)</td>
    <td style="padding:15px">Clears the 'isTemplate' flag and reassociates the virtual machine with
a resource pool and host.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/MarkAsVirtualMachine?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdMigrateVMTask(moId, body, callback)</td>
    <td style="padding:15px">Migrates a virtual machine's execution to a specific resource pool or host.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/MigrateVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdMountToolsInstaller(moId, callback)</td>
    <td style="padding:15px">Mounts the VMware Tools CD installer as a CD-ROM for the guest operating system.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/MountToolsInstaller?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdPowerOffVMTask(moId, callback)</td>
    <td style="padding:15px">Powers off this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/PowerOffVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdPowerOnVMTask(moId, body, callback)</td>
    <td style="padding:15px">Powers on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/PowerOnVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdPromoteDisksTask(moId, body, callback)</td>
    <td style="padding:15px">Promotes disks on this virtual machine that have delta disk backings.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/PromoteDisks_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdPutUsbScanCodes(moId, body, callback)</td>
    <td style="padding:15px">Inject a sequence of USB HID scan codes into the keyboard.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/PutUsbScanCodes?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdQueryChangedDiskAreas(moId, body, callback)</td>
    <td style="padding:15px">Get a list of areas of a virtual disk belonging to this VM that have
been modified since a well-def</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/QueryChangedDiskAreas?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdQueryConnections(moId, callback)</td>
    <td style="padding:15px">Ask the virtual machine for a list of connections.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/QueryConnections?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdQueryFaultToleranceCompatibility(moId, callback)</td>
    <td style="padding:15px">This API can be invoked to determine whether a virtual machine is
compatible for legacy Fault Toler</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/QueryFaultToleranceCompatibility?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdQueryFaultToleranceCompatibilityEx(moId, body, callback)</td>
    <td style="padding:15px">This API can be invoked to determine whether a virtual machine is
compatible for Fault Tolerance.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/QueryFaultToleranceCompatibilityEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdQueryUnownedFiles(moId, callback)</td>
    <td style="padding:15px">For all files that belong to the vm, check that the file owner
is set to the current datastore prin</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/QueryUnownedFiles?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRebootGuest(moId, callback)</td>
    <td style="padding:15px">Issues a command to the guest operating system asking it to perform
a reboot.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/RebootGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdReconfigVMTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ReconfigVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRefreshStorageInfo(moId, callback)</td>
    <td style="padding:15px">Explicitly refreshes the storage information of this virtual machine,
updating properties *VirtualM</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/RefreshStorageInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdReloadVirtualMachineFromPathTask(moId, body, callback)</td>
    <td style="padding:15px">Reloads the configuration for this virtual machine from a given
datastore path.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/reloadVirtualMachineFromPath_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRelocateVMTask(moId, body, callback)</td>
    <td style="padding:15px">Relocates a virtual machine to the location specified by
*VirtualMachineRelocateSpec*.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/RelocateVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRemoveAllSnapshotsTask(moId, body, callback)</td>
    <td style="padding:15px">Remove all the snapshots associated with this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/RemoveAllSnapshots_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdResetVMTask(moId, callback)</td>
    <td style="padding:15px">Resets power on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ResetVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdResetGuestInformation(moId, callback)</td>
    <td style="padding:15px">Clears cached guest information.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ResetGuestInformation?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdRevertToCurrentSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts the virtual machine to the current snapshot.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/RevertToCurrentSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdSendNMI(moId, callback)</td>
    <td style="padding:15px">Send a non-maskable interrupt (NMI).</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/SendNMI?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdSetDisplayTopology(moId, body, callback)</td>
    <td style="padding:15px">Sets the console window's display topology as specified.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/SetDisplayTopology?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdSetScreenResolution(moId, body, callback)</td>
    <td style="padding:15px">Sets the console window's resolution as specified.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/SetScreenResolution?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdShutdownGuest(moId, callback)</td>
    <td style="padding:15px">Issues a command to the guest operating system asking it to perform
a clean shutdown of all service</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/ShutdownGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdStandbyGuest(moId, callback)</td>
    <td style="padding:15px">Issues a command to the guest operating system asking it to prepare for
a suspend operation.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/StandbyGuest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdStartRecordingTask(moId, body, callback)</td>
    <td style="padding:15px">Initiates a recording session on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/StartRecording_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdStartReplayingTask(moId, body, callback)</td>
    <td style="padding:15px">Starts a replay session on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/StartReplaying_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdStopRecordingTask(moId, callback)</td>
    <td style="padding:15px">Stops a currently active recording session on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/StopRecording_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdStopReplayingTask(moId, callback)</td>
    <td style="padding:15px">Stops a replay session on this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/StopReplaying_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdSuspendVMTask(moId, callback)</td>
    <td style="padding:15px">Suspends execution in this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/SuspendVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdTerminateVM(moId, callback)</td>
    <td style="padding:15px">Do an immediate power off of a VM.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/TerminateVM?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdTerminateFaultTolerantVMTask(moId, body, callback)</td>
    <td style="padding:15px">Terminates the specified secondary virtual machine in a fault tolerant group.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/TerminateFaultTolerantVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdTurnOffFaultToleranceForVMTask(moId, callback)</td>
    <td style="padding:15px">Removes all secondary virtual machines associated with the fault tolerant
group and turns off prote</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/TurnOffFaultToleranceForVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdUnmountToolsInstaller(moId, callback)</td>
    <td style="padding:15px">Unmounts VMware Tools installer CD.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/UnmountToolsInstaller?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdUnregisterVM(moId, callback)</td>
    <td style="padding:15px">Removes this virtual machine from the inventory without removing
any of the virtual machine's files</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/UnregisterVM?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdUpgradeToolsTask(moId, body, callback)</td>
    <td style="padding:15px">Begins the tools upgrade process.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/UpgradeTools_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineMoIdUpgradeVMTask(moId, body, callback)</td>
    <td style="padding:15px">Upgrades this virtual machine's virtual hardware to the latest revision
that is supported by the vi</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/UpgradeVM_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Information about the runtime capabilities of this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Configuration of this virtual machine, including the name and UUID.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdDatastore(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of datastore objects in the datacenter
that is used by thi</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/datastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdEnvironmentBrowser(moId, callback)</td>
    <td style="padding:15px">The current virtual machine's environment browser object.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/environmentBrowser?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdGuest(moId, callback)</td>
    <td style="padding:15px">Information about VMware Tools and about the virtual machine
from the perspective of VMware Tools.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/guest?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdGuestHeartbeatStatus(moId, callback)</td>
    <td style="padding:15px">The guest heartbeat.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/guestHeartbeatStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdLayout(moId, callback)</td>
    <td style="padding:15px">Detailed information about the files that comprise this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/layout?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdLayoutEx(moId, callback)</td>
    <td style="padding:15px">Detailed information about the files that comprise this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/layoutEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdNetwork(moId, callback)</td>
    <td style="padding:15px">A collection of references to the subset of network objects in the datacenter that
is used by this</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/network?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdParentVApp(moId, callback)</td>
    <td style="padding:15px">Reference to the parent vApp.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/parentVApp?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdResourceConfig(moId, callback)</td>
    <td style="padding:15px">The resource configuration for a virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/resourceConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdResourcePool(moId, callback)</td>
    <td style="padding:15px">The current resource pool that specifies resource allocation
for this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/resourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdRootSnapshot(moId, callback)</td>
    <td style="padding:15px">The roots of all snapshot trees for the virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/rootSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Execution state and history for this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdSnapshot(moId, callback)</td>
    <td style="padding:15px">Current snapshot and tree.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/snapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdStorage(moId, callback)</td>
    <td style="padding:15px">Storage space used by the virtual machine, split by datastore.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/storage?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Basic information about this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachine/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineCompatibilityCheckerMoIdCheckCompatibilityTask(moId, body, callback)</td>
    <td style="padding:15px">Tests whether or not a virtual machine could be placed on
the given host in the given resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineCompatibilityChecker/{pathv1}/CheckCompatibility_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineCompatibilityCheckerMoIdCheckPowerOnTask(moId, body, callback)</td>
    <td style="padding:15px">Tests whether the provided virtual machine can be powered on
on the given host and/or resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineCompatibilityChecker/{pathv1}/CheckPowerOn_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineCompatibilityCheckerMoIdCheckVmConfigTask(moId, body, callback)</td>
    <td style="padding:15px">Tests whether the provided virtual machine specification can be applied
on the given host and resou</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineCompatibilityChecker/{pathv1}/CheckVmConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineGuestCustomizationManagerMoIdAbortCustomizationTask(moId, body, callback)</td>
    <td style="padding:15px">Abort any running guest customization process in the guest and remove
the guest customization lock</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineGuestCustomizationManager/{pathv1}/AbortCustomization_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineGuestCustomizationManagerMoIdCustomizeGuestTask(moId, body, callback)</td>
    <td style="padding:15px">Customize a running virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineGuestCustomizationManager/{pathv1}/CustomizeGuest_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineGuestCustomizationManagerMoIdStartGuestNetworkTask(moId, body, callback)</td>
    <td style="padding:15px">Start the network service in the guest, e.g.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineGuestCustomizationManager/{pathv1}/StartGuestNetwork_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineProvisioningCheckerMoIdCheckCloneTask(moId, body, callback)</td>
    <td style="padding:15px">Tests the feasibility of a proposed
*VirtualMachine.CloneVM_Task* operation.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineProvisioningChecker/{pathv1}/CheckClone_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineProvisioningCheckerMoIdCheckInstantCloneTask(moId, body, callback)</td>
    <td style="padding:15px">Tests the feasibility of a proposed
*VirtualMachine.InstantClone_Task* operation.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineProvisioningChecker/{pathv1}/CheckInstantClone_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineProvisioningCheckerMoIdCheckMigrateTask(moId, body, callback)</td>
    <td style="padding:15px">Tests the feasibility of a proposed
*VirtualMachine.MigrateVM_Task* operation.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineProvisioningChecker/{pathv1}/CheckMigrate_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineProvisioningCheckerMoIdCheckRelocateTask(moId, body, callback)</td>
    <td style="padding:15px">Tests the feasibility of a proposed
*VirtualMachine.RelocateVM_Task* operation.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineProvisioningChecker/{pathv1}/CheckRelocate_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineProvisioningCheckerMoIdQueryVMotionCompatibilityExTask(moId, body, callback)</td>
    <td style="padding:15px">Investigates the general VMotion compatibility of a set of virtual machines
with a set of hosts.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineProvisioningChecker/{pathv1}/QueryVMotionCompatibilityEx_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineSnapshotMoIdExportSnapshot(moId, callback)</td>
    <td style="padding:15px">Obtains an export lease on this snapshot.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/ExportSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineSnapshotMoIdRemoveSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Removes this snapshot and deletes any associated storage.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/RemoveSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineSnapshotMoIdRenameSnapshot(moId, body, callback)</td>
    <td style="padding:15px">Rename this snapshot with either a new name or a new description or both.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/RenameSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineSnapshotMoIdRevertToSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Change the execution state of the virtual machine to the state of this snapshot.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/RevertToSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVirtualMachineSnapshotMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineSnapshotMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineSnapshotMoIdChildSnapshot(moId, callback)</td>
    <td style="padding:15px">All snapshots for which this snapshot is the parent.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/childSnapshot?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineSnapshotMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Information about the configuration of this virtual machine when this snapshot was
taken.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineSnapshotMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVirtualMachineSnapshotMoIdVm(moId, callback)</td>
    <td style="padding:15px">The virtual machine for which the snapshot was taken.</td>
    <td style="padding:15px">{base_path}/{version}/VirtualMachineSnapshot/{pathv1}/vm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdAddNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Add a network resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/AddNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdCreateDVPortgroupTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a single *DistributedVirtualPortgroup* and adds it
to the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/CreateDVPortgroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdAddDVPortgroupTask(moId, body, callback)</td>
    <td style="padding:15px">Creates one or more *DistributedVirtualPortgroup*s and adds them to
the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/AddDVPortgroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdDestroyTask(moId, callback)</td>
    <td style="padding:15px">Destroys this object, deleting its contents and removing it from its parent
folder (if any).</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/Destroy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdEnableNetworkResourceManagement(moId, body, callback)</td>
    <td style="padding:15px">Enable/Disable network I/O control on the vSphere Distributed Switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/EnableNetworkResourceManagement?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdFetchDVPortKeys(moId, body, callback)</td>
    <td style="padding:15px">Return the keys of ports that meet the criteria.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/FetchDVPortKeys?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdFetchDVPorts(moId, body, callback)</td>
    <td style="padding:15px">Return the ports that meet the criteria.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/FetchDVPorts?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdLookupDvPortGroup(moId, body, callback)</td>
    <td style="padding:15px">Returns the portgroup identified by the key within this VDS.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/LookupDvPortGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdMergeDvsTask(moId, body, callback)</td>
    <td style="padding:15px">Merge an existing DistributedVirtualSwitch (source) to this switch
(destination).</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/MergeDvs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdMoveDVPortTask(moId, body, callback)</td>
    <td style="padding:15px">Move the ports out of their current portgroup into the specified portgroup.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/MoveDVPort_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdPerformDvsProductSpecOperationTask(moId, body, callback)</td>
    <td style="padding:15px">This method updates the *DistributedVirtualSwitch* product specifications.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/PerformDvsProductSpecOperation_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdQueryUsedVlanIdInDvs(moId, callback)</td>
    <td style="padding:15px">Return the used VLAN ID (PVLAN excluded) in the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/QueryUsedVlanIdInDvs?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdReconfigureDvsTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigures a distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/ReconfigureDvs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdReconfigureDVPortTask(moId, body, callback)</td>
    <td style="padding:15px">Reconfigure individual ports.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/ReconfigureDVPort_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdDvsReconfigureVmVnicNetworkResourcePoolTask(moId, body, callback)</td>
    <td style="padding:15px">reconfigure the Virtual NIC network resource pool configuration.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/DvsReconfigureVmVnicNetworkResourcePool_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdRectifyDvsHostTask(moId, body, callback)</td>
    <td style="padding:15px">Update the switch configuration on the host to bring them in sync with the
current configuration in</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/RectifyDvsHost_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdRefreshDVPortState(moId, body, callback)</td>
    <td style="padding:15px">Refresh port states.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/RefreshDVPortState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdReload(moId, callback)</td>
    <td style="padding:15px">Reload the entity state.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/Reload?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdRemoveNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Remove a network resource pool.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/RemoveNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdRenameTask(moId, body, callback)</td>
    <td style="padding:15px">Renames this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/Rename_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdDVSRollbackTask(moId, body, callback)</td>
    <td style="padding:15px">This method determines if the distributed virtual switch configuration
has changed.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/DVSRollback_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdSetCustomValue(moId, body, callback)</td>
    <td style="padding:15px">Assigns a value to a custom field.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/setCustomValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdUpdateDvsCapability(moId, body, callback)</td>
    <td style="padding:15px">Set the capability of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/UpdateDvsCapability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdUpdateDVSHealthCheckConfigTask(moId, body, callback)</td>
    <td style="padding:15px">Update health check configuration.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/UpdateDVSHealthCheckConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdUpdateDVSLacpGroupConfigTask(moId, body, callback)</td>
    <td style="padding:15px">Update Link Aggregation Control Protocol groups.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/UpdateDVSLacpGroupConfig_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVmwareDistributedVirtualSwitchMoIdUpdateNetworkResourcePool(moId, body, callback)</td>
    <td style="padding:15px">Update the network resource pool configuration.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/UpdateNetworkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdAlarmActionsEnabled(moId, callback)</td>
    <td style="padding:15px">Whether alarm actions are enabled for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/alarmActionsEnabled?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdAvailableField(moId, callback)</td>
    <td style="padding:15px">List of custom field definitions that are valid for the object's type.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/availableField?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdCapability(moId, callback)</td>
    <td style="padding:15px">Capability of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/capability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdConfig(moId, callback)</td>
    <td style="padding:15px">Switch configuration data.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdConfigIssue(moId, callback)</td>
    <td style="padding:15px">Current configuration issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/configIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdConfigStatus(moId, callback)</td>
    <td style="padding:15px">The configStatus indicates whether or not the system has detected a configuration
issue involving t</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/configStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdCustomValue(moId, callback)</td>
    <td style="padding:15px">Custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/customValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdDeclaredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms that apply to this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/declaredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdDisabledMethod(moId, callback)</td>
    <td style="padding:15px">List of operations that are disabled, given the current runtime
state of the entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/disabledMethod?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdEffectiveRole(moId, callback)</td>
    <td style="padding:15px">Access rights the current session has to this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/effectiveRole?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdName(moId, callback)</td>
    <td style="padding:15px">Name of this entity, unique relative to its parent.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/name?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdNetworkResourcePool(moId, callback)</td>
    <td style="padding:15px">Network resource pool information for the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/networkResourcePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdOverallStatus(moId, callback)</td>
    <td style="padding:15px">General health of this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/overallStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdParent(moId, callback)</td>
    <td style="padding:15px">Parent of this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/parent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdPermission(moId, callback)</td>
    <td style="padding:15px">List of permissions defined for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/permission?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdPortgroup(moId, callback)</td>
    <td style="padding:15px">Portgroups that are defined on the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/portgroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdRecentTask(moId, callback)</td>
    <td style="padding:15px">The set of recent tasks operating on this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/recentTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information of the distributed virtual switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdSummary(moId, callback)</td>
    <td style="padding:15px">Summary of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/summary?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdTag(moId, callback)</td>
    <td style="padding:15px">The set of tags associated with this managed entity.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/tag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdTriggeredAlarmState(moId, callback)</td>
    <td style="padding:15px">A set of alarm states for alarms triggered by this entity
or by its descendants.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/triggeredAlarmState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdUuid(moId, callback)</td>
    <td style="padding:15px">Generated UUID of the switch.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/uuid?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">getVmwareDistributedVirtualSwitchMoIdValue(moId, callback)</td>
    <td style="padding:15px">List of custom field values.</td>
    <td style="padding:15px">{base_path}/{version}/VmwareDistributedVirtualSwitch/{pathv1}/value?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVsanUpgradeSystemMoIdPerformVsanUpgradeTask(moId, body, callback)</td>
    <td style="padding:15px">Start VSAN on-disk format upgrade process on a particular cluster.</td>
    <td style="padding:15px">{base_path}/{version}/VsanUpgradeSystem/{pathv1}/PerformVsanUpgrade_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVsanUpgradeSystemMoIdPerformVsanUpgradePreflightCheck(moId, body, callback)</td>
    <td style="padding:15px">Perform an upgrade pre-flight check on a cluster.</td>
    <td style="padding:15px">{base_path}/{version}/VsanUpgradeSystem/{pathv1}/PerformVsanUpgradePreflightCheck?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">postVsanUpgradeSystemMoIdQueryVsanUpgradeStatus(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the latest status of a running, or the previously completed,
upgrade process.</td>
    <td style="padding:15px">{base_path}/{version}/VsanUpgradeSystem/{pathv1}/QueryVsanUpgradeStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyAddIssue(moId, body, callback)</td>
    <td style="padding:15px">Adds an issue to this agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/AddIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyDestroyAgency(moId, callback)</td>
    <td style="padding:15px">Destroys this Agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/DestroyAgency?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyAgencyDisable(moId, callback)</td>
    <td style="padding:15px">Sets the goal state of this  Agency  to  disabled .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/Agency_Disable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyAgencyEnable(moId, callback)</td>
    <td style="padding:15px">Sets the goal state of this  Agency  to  enabled .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/Agency_Enable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyQueryAgent(moId, callback)</td>
    <td style="padding:15px">An array of agents deployed by this agent manager.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/QueryAgent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyQueryConfig(moId, callback)</td>
    <td style="padding:15px">The configuration of this  Agency .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/QueryConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyQueryIssue(moId, body, callback)</td>
    <td style="padding:15px">Current issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/QueryIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyAgencyQueryRuntime(moId, callback)</td>
    <td style="padding:15px">Gets the runtime information for this agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/AgencyQueryRuntime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyQuerySolutionId(moId, callback)</td>
    <td style="padding:15px">The ID of the solution that owns this  Agency .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/QuerySolutionId?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyRegisterAgentVm(moId, body, callback)</td>
    <td style="padding:15px">Adds an agent VM to this agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/RegisterAgentVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyResolve(moId, body, callback)</td>
    <td style="padding:15px">Resolves the issues specified in the input.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/Resolve?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyResolveAll(moId, callback)</td>
    <td style="padding:15px">Resolve all outstanding issues.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/ResolveAll?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyUninstall(moId, callback)</td>
    <td style="padding:15px">Sets the goal state of this  Agency  to
 uninstalled .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/Uninstall?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyUnregisterAgentVm(moId, body, callback)</td>
    <td style="padding:15px">Removes an agent VM to this agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/UnregisterAgentVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyUpdate(moId, body, callback)</td>
    <td style="padding:15px">Updates the agency configuration used by this  Agency  to
deploy agents and VIBs.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/Update?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyGetAgent(moId, callback)</td>
    <td style="padding:15px">An array of agents deployed by this agent manager.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/agent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyGetConfig(moId, callback)</td>
    <td style="padding:15px">The configuration of this  Agency .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyGetOwner(moId, callback)</td>
    <td style="padding:15px">The principal name of the user that owns this  Agency .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/owner?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyGetRuntime(moId, callback)</td>
    <td style="padding:15px">Gets the runtime information for this agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agencyGetSolutionId(moId, callback)</td>
    <td style="padding:15px">The ID of the solution that owns this  Agency .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agency/{pathv1}/solutionId?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentMarkAsAvailable(moId, callback)</td>
    <td style="padding:15px">Mark this agent's VM as available.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/MarkAsAvailable?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentAgentQueryConfig(moId, callback)</td>
    <td style="padding:15px">The configuration of this  Agent .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/AgentQueryConfig?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentQueryIssue(moId, body, callback)</td>
    <td style="padding:15px">Current issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/QueryIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentAgentQueryRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information for the agent.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/AgentQueryRuntime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentResolve(moId, body, callback)</td>
    <td style="padding:15px">Resolves the issues specified in the input.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/Resolve?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentResolveAll(moId, callback)</td>
    <td style="padding:15px">Resolve all outstanding issues.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/ResolveAll?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentGetConfig(moId, callback)</td>
    <td style="padding:15px">The configuration of this  Agent .</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/config?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">agentGetRuntime(moId, callback)</td>
    <td style="padding:15px">Runtime information for this agent.</td>
    <td style="padding:15px">{base_path}/{version}/eam/Agent/{pathv1}/runtime?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">eamObjectQueryIssue(moId, body, callback)</td>
    <td style="padding:15px">Current issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EamObject/{pathv1}/QueryIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">eamObjectResolve(moId, body, callback)</td>
    <td style="padding:15px">Resolves the issues specified in the input.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EamObject/{pathv1}/Resolve?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">eamObjectResolveAll(moId, callback)</td>
    <td style="padding:15px">Resolve all outstanding issues.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EamObject/{pathv1}/ResolveAll?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerCreateAgency(moId, body, callback)</td>
    <td style="padding:15px">Creates an Agency.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/CreateAgency?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerGetMaintenanceModePolicy(moId, callback)</td>
    <td style="padding:15px">Obtains maintenance policy for for clusters not managed by vSphere
Lifecycle Manasger.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/GetMaintenanceModePolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerQueryAgency(moId, callback)</td>
    <td style="padding:15px">An array of all *Agency* objects.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/QueryAgency?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerQueryIssue(moId, body, callback)</td>
    <td style="padding:15px">Current issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/QueryIssue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerResolve(moId, body, callback)</td>
    <td style="padding:15px">Resolves the issues specified in the input.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/Resolve?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerResolveAll(moId, callback)</td>
    <td style="padding:15px">Resolve all outstanding issues.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/ResolveAll?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerScanForUnknownAgentVm(moId, callback)</td>
    <td style="padding:15px">Scans the vCenter inventory for any unknown agent virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/ScanForUnknownAgentVm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerSetMaintenanceModePolicy(moId, body, callback)</td>
    <td style="padding:15px">Configures maintenance mode policy for clusters not managed by vSphere
Lifecycle Manasger.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/SetMaintenanceModePolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerGetAgency(moId, callback)</td>
    <td style="padding:15px">An array of all *Agency* objects.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/agency?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">esxAgentManagerGetIssue(moId, callback)</td>
    <td style="padding:15px">Current issues that have been detected for this entity.</td>
    <td style="padding:15px">{base_path}/{version}/eam/EsxAgentManager/{pathv1}/issue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmComplianceManagerPbmCheckCompliance(moId, body, callback)</td>
    <td style="padding:15px">Checks compliance of the profiles associated with one or more
virtual machines and/or virtual disks.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmComplianceManager/{pathv1}/PbmCheckCompliance?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmComplianceManagerPbmCheckRollupCompliance(moId, body, callback)</td>
    <td style="padding:15px">Checks rollup compliance of virtual machines and returns the results to your
client.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmComplianceManager/{pathv1}/PbmCheckRollupCompliance?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmComplianceManagerPbmFetchComplianceResult(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the latest version of *PbmComplianceResult* objects that are
available for the specified</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmComplianceManager/{pathv1}/PbmFetchComplianceResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmComplianceManagerPbmFetchRollupComplianceResult(moId, body, callback)</td>
    <td style="padding:15px">Retrieves the rollup compliance (*PbmRollupComplianceResult*)
of the given virtual machines if pres</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmComplianceManager/{pathv1}/PbmFetchRollupComplianceResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmComplianceManagerPbmQueryByRollupComplianceStatus(moId, body, callback)</td>
    <td style="padding:15px">Returns the virtual machines for the given rollup compliance status.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmComplianceManager/{pathv1}/PbmQueryByRollupComplianceStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmPlacementSolverPbmCheckCompatibility(moId, body, callback)</td>
    <td style="padding:15px">Performs placement compatibility checking based on a storage requirement
profile.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmPlacementSolver/{pathv1}/PbmCheckCompatibility?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmPlacementSolverPbmCheckCompatibilityWithSpec(moId, body, callback)</td>
    <td style="padding:15px">Performs placement compatibility checking based on a storage profile
specification.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmPlacementSolver/{pathv1}/PbmCheckCompatibilityWithSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmPlacementSolverPbmCheckRequirements(moId, body, callback)</td>
    <td style="padding:15px">Performs placement compatibility checking for the specified object to be placed based on its
specif</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmPlacementSolver/{pathv1}/PbmCheckRequirements?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmPlacementSolverPbmQueryMatchingHub(moId, body, callback)</td>
    <td style="padding:15px">Finds matching placement hubs for the specified requirements profile.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmPlacementSolver/{pathv1}/PbmQueryMatchingHub?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmPlacementSolverPbmQueryMatchingHubWithSpec(moId, body, callback)</td>
    <td style="padding:15px">Finds matching placement hubs based on a profile creation specification.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmPlacementSolver/{pathv1}/PbmQueryMatchingHubWithSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmAssignDefaultRequirementProfile(moId, body, callback)</td>
    <td style="padding:15px">Assign the given profile as the default profile for the given datastores.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmAssignDefaultRequirementProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmCreate(moId, body, callback)</td>
    <td style="padding:15px">Creates a capability-based storage profile.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmCreate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmDelete(moId, body, callback)</td>
    <td style="padding:15px">Deletes one or more profiles.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmDelete?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmFetchCapabilityMetadata(moId, body, callback)</td>
    <td style="padding:15px">Retrieves capability metadata.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmFetchCapabilityMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmFetchCapabilitySchema(moId, body, callback)</td>
    <td style="padding:15px">Returns the capability schema objects registered in the system.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmFetchCapabilitySchema?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmFetchResourceType(moId, callback)</td>
    <td style="padding:15px">Retrieves information about various resource types registered with the system.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmFetchResourceType?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmFetchVendorInfo(moId, body, callback)</td>
    <td style="padding:15px">Retrieve information about various capability metadata owners/vendors
registered with the system, t</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmFetchVendorInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmFindApplicableDefaultProfile(moId, body, callback)</td>
    <td style="padding:15px">Returns the profiles that can be made as default profile for all the given datastores.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmFindApplicableDefaultProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryAssociatedEntities(moId, body, callback)</td>
    <td style="padding:15px">Returns the virtual machine and disks that are associated with the given
storage policies.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryAssociatedEntities?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryAssociatedEntity(moId, body, callback)</td>
    <td style="padding:15px">Retrieves entities associated with the specified profile.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryAssociatedEntity?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryAssociatedProfile(moId, body, callback)</td>
    <td style="padding:15px">Returns identifiers for profiles associated with a virtual machine,
virtual disk, or datastore.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryAssociatedProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryAssociatedProfiles(moId, body, callback)</td>
    <td style="padding:15px">Returns profiles associated with the specified entities.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryAssociatedProfiles?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryDefaultRequirementProfile(moId, body, callback)</td>
    <td style="padding:15px">Returns the default requirement profile ID for the given datastore.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryDefaultRequirementProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryDefaultRequirementProfiles(moId, body, callback)</td>
    <td style="padding:15px">Returns the default profiles for the given datastores.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryDefaultRequirementProfiles?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQueryProfile(moId, body, callback)</td>
    <td style="padding:15px">Returns requirement profile ids or resource profile ids, or both.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQueryProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmQuerySpaceStatsForStorageContainer(moId, body, callback)</td>
    <td style="padding:15px">Retrieves space statistics of a datastore.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmQuerySpaceStatsForStorageContainer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmResetDefaultRequirementProfile(moId, body, callback)</td>
    <td style="padding:15px">Not supported in this release.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmResetDefaultRequirementProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmResetVSanDefaultProfile(moId, callback)</td>
    <td style="padding:15px">Resets the system pre-created VSAN default profile to factory defaults.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmResetVSanDefaultProfile?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmRetrieveContent(moId, body, callback)</td>
    <td style="padding:15px">Returns one or more storage profiles.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmRetrieveContent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmProfileProfileManagerPbmUpdate(moId, body, callback)</td>
    <td style="padding:15px">Updates a storage profile.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmProfileProfileManager/{pathv1}/PbmUpdate?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmReplicationManagerPbmQueryReplicationGroups(moId, body, callback)</td>
    <td style="padding:15px">Returns identifiers for replication groups associated with virtual machines, virtual
disks or virtu</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmReplicationManager/{pathv1}/PbmQueryReplicationGroups?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmServiceInstancePbmRetrieveServiceContent(moId, callback)</td>
    <td style="padding:15px">Retrieves the properties of the Storage Policy service instance.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmServiceInstance/{pathv1}/PbmRetrieveServiceContent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">pbmServiceInstanceGetContent(moId, callback)</td>
    <td style="padding:15px">Contains references to Storage Policy managed objects.</td>
    <td style="padding:15px">{base_path}/{version}/pbm/PbmServiceInstance/{pathv1}/content?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsProviderQueryProviderInfo(moId, callback)</td>
    <td style="padding:15px">Get provider information.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsProvider/{pathv1}/QueryProviderInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsServiceInstanceQueryAboutInfo(moId, callback)</td>
    <td style="padding:15px">Retrieves information about the service.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsServiceInstance/{pathv1}/QueryAboutInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsServiceInstanceQuerySessionManager(moId, callback)</td>
    <td style="padding:15px">Retrieves SMS Session Manager managed object.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsServiceInstance/{pathv1}/QuerySessionManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsServiceInstanceQueryStorageManager(moId, callback)</td>
    <td style="padding:15px">Retrieves Storage Manager managed object.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsServiceInstance/{pathv1}/QueryStorageManager?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryArray(moId, body, callback)</td>
    <td style="padding:15px">Get the list of storage arrays managed by all the registered VASA providers.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryArray?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryArrayAssociatedWithLun(moId, body, callback)</td>
    <td style="padding:15px">Get the StorageArray object that is associated with the
ScsiLun.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryArrayAssociatedWithLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryAssociatedBackingStoragePool(moId, body, callback)</td>
    <td style="padding:15px">Query Backing Storage Pools for StorageLun or StorageFileSystem.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryAssociatedBackingStoragePool?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryDatastoreBackingPoolMapping(moId, body, callback)</td>
    <td style="padding:15px">Query BackingStoragePools for the given set of datastores.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryDatastoreBackingPoolMapping?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryDatastoreCapability(moId, body, callback)</td>
    <td style="padding:15px">Get the capability for the given datastore.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryDatastoreCapability?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryDrsMigrationCapabilityForPerformance(moId, body, callback)</td>
    <td style="padding:15px">Query the provider to figure out whether Storage DRS should
migrate VMDKs between the two given dat</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryDrsMigrationCapabilityForPerformance?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryDrsMigrationCapabilityForPerformanceEx(moId, body, callback)</td>
    <td style="padding:15px">Query available VASA providers for I/O performance based migration recommendations
for all pair com</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryDrsMigrationCapabilityForPerformanceEx?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryFaultDomain(moId, body, callback)</td>
    <td style="padding:15px">Query for fault domains based on the query spec.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryFaultDomain?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryFileSystemAssociatedWithArray(moId, body, callback)</td>
    <td style="padding:15px">Get the StorageFileSystem data objects for the Array.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryFileSystemAssociatedWithArray?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryHostAssociatedWithLun(moId, body, callback)</td>
    <td style="padding:15px">Get HostSystem managed entities that share the StorageLun.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryHostAssociatedWithLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryLunAssociatedWithArray(moId, body, callback)</td>
    <td style="padding:15px">Get the list of StorageLun data objects that for the Array.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryLunAssociatedWithArray?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryLunAssociatedWithPort(moId, body, callback)</td>
    <td style="padding:15px">Get the StorageLun data objects that are associated with StoragePort.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryLunAssociatedWithPort?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryNfsDatastoreAssociatedWithFileSystem(moId, body, callback)</td>
    <td style="padding:15px">Get NFS datastore managed entity that are associated with
StorageFileSystem.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryNfsDatastoreAssociatedWithFileSystem?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryPortAssociatedWithArray(moId, body, callback)</td>
    <td style="padding:15px">Get the StoragePort data objects that are associated with Array.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryPortAssociatedWithArray?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryPortAssociatedWithLun(moId, body, callback)</td>
    <td style="padding:15px">Get the StoragePort data object that is associated with LUN.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryPortAssociatedWithLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryPortAssociatedWithProcessor(moId, body, callback)</td>
    <td style="padding:15px">Get the StoragePort data objects that are associated with Processor.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryPortAssociatedWithProcessor?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryProcessorAssociatedWithArray(moId, body, callback)</td>
    <td style="padding:15px">Get the StorageProcessor data objects that are associated with Array.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryProcessorAssociatedWithArray?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryProvider(moId, callback)</td>
    <td style="padding:15px">Get the list of Providers that are currently registered
with StorageManager.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryProvider?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryReplicationGroupInfo(moId, body, callback)</td>
    <td style="padding:15px">Query for replication group details based on the query filter spec.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryReplicationGroupInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryStorageContainer(moId, body, callback)</td>
    <td style="padding:15px">Query storage containers that are retrieved from VASA providers.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryStorageContainer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerQueryVmfsDatastoreAssociatedWithLun(moId, body, callback)</td>
    <td style="padding:15px">Get VMFS Datastore managed entity that are associated with
StorageLun.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/QueryVmfsDatastoreAssociatedWithLun?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerSmsRefreshCACertificatesAndCRLsTask(moId, body, callback)</td>
    <td style="padding:15px">SMS pushes the latest CA root certificates and CRLs to all registered VASA providers.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/SmsRefreshCACertificatesAndCRLs_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerRegisterProviderTask(moId, body, callback)</td>
    <td style="padding:15px">Register the provider and issue a sync operation on it.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/RegisterProvider_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsStorageManagerUnregisterProviderTask(moId, body, callback)</td>
    <td style="padding:15px">Unregister the provider.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsStorageManager/{pathv1}/UnregisterProvider_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsTaskQuerySmsTaskInfo(moId, callback)</td>
    <td style="padding:15px">Get detailed information about this task.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsTask/{pathv1}/QuerySmsTaskInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">smsTaskQuerySmsTaskResult(moId, callback)</td>
    <td style="padding:15px">Get the result of the task.</td>
    <td style="padding:15px">{base_path}/{version}/sms/SmsTask/{pathv1}/QuerySmsTaskResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderFailoverReplicationGroupTask(moId, body, callback)</td>
    <td style="padding:15px">Failover the specified device groups.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/FailoverReplicationGroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderPrepareFailoverReplicationGroupTask(moId, body, callback)</td>
    <td style="padding:15px">Prepare to fail over the specified replication groups.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/PrepareFailoverReplicationGroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderPromoteReplicationGroupTask(moId, body, callback)</td>
    <td style="padding:15px">Promotes the replication groups currently *INTEST*
to *FAILEDOVER*.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/PromoteReplicationGroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderQueryActiveAlarm(moId, body, callback)</td>
    <td style="padding:15px">Query for the currently active alarms known to this VASA provider.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/QueryActiveAlarm?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderQueryPointInTimeReplica(moId, body, callback)</td>
    <td style="padding:15px">Query for the point-in-time replicas available at the target location.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/QueryPointInTimeReplica?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderQueryProviderInfo(moId, callback)</td>
    <td style="padding:15px">Get provider information.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/QueryProviderInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderQueryReplicationGroup(moId, body, callback)</td>
    <td style="padding:15px">Query for the replication group details.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/QueryReplicationGroup?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderQueryReplicationPeer(moId, body, callback)</td>
    <td style="padding:15px">Query for the replication peer fault domains.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/QueryReplicationPeer?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderVasaProviderReconnectTask(moId, callback)</td>
    <td style="padding:15px">Reconnect to the provider.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/VasaProviderReconnect_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderVasaProviderRefreshCertificateTask(moId, callback)</td>
    <td style="padding:15px">Refresh a CA signed certificate for the provider.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/VasaProviderRefreshCertificate_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderReverseReplicateGroupTask(moId, body, callback)</td>
    <td style="padding:15px">Initiate replication in the reverse way, making the currently
*FAILEDOVER* devices as sources.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/ReverseReplicateGroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderVasaProviderRevokeCertificateTask(moId, callback)</td>
    <td style="padding:15px">Revoke CA signed certificate of the provider.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/VasaProviderRevokeCertificate_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderVasaProviderSyncTask(moId, body, callback)</td>
    <td style="padding:15px">Issue a sync for the given Storage Array.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/VasaProviderSync_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderSyncReplicationGroupTask(moId, body, callback)</td>
    <td style="padding:15px">Synchronize the data between source and replica for the specified
replication group.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/SyncReplicationGroup_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderTestFailoverReplicationGroupStartTask(moId, body, callback)</td>
    <td style="padding:15px">Start a test failover for the specified replication groups.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/TestFailoverReplicationGroupStart_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vasaProviderTestFailoverReplicationGroupStopTask(moId, body, callback)</td>
    <td style="padding:15px">Stop the ongoing test failover.</td>
    <td style="padding:15px">{base_path}/{version}/sms/VasaProvider/{pathv1}/TestFailoverReplicationGroupStop_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmServiceInstanceRetrieveContent(moId, callback)</td>
    <td style="padding:15px">Retrieves the properties of the Storage Lifecycle Management service
instance.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmServiceInstance/{pathv1}/RetrieveContent?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmServiceInstanceGetContent(moId, callback)</td>
    <td style="padding:15px">Contains references to Storage Lifecycle Management managed objects.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmServiceInstance/{pathv1}/content?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmSessionManagerVslmLoginByToken(moId, body, callback)</td>
    <td style="padding:15px">Login to the VSLM service by using SSO token.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmSessionManager/{pathv1}/VslmLoginByToken?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmSessionManagerVslmLogout(moId, callback)</td>
    <td style="padding:15px">Logs out of the VSLM Service.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmSessionManager/{pathv1}/VslmLogout?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmStorageLifecycleManagerVslmQueryDatastoreInfo(moId, body, callback)</td>
    <td style="padding:15px">Query the mapping of *Datacenter* and *Datastore*
for a specified datastore url.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmStorageLifecycleManager/{pathv1}/VslmQueryDatastoreInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmStorageLifecycleManagerVslmSyncDatastore(moId, body, callback)</td>
    <td style="padding:15px">Sync the FCD info on the passed in datastore.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmStorageLifecycleManager/{pathv1}/VslmSyncDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmTaskVslmCancelTask(moId, callback)</td>
    <td style="padding:15px">Cancel a running or queued task.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmTask/{pathv1}/VslmCancelTask?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmTaskVslmQueryInfo(moId, callback)</td>
    <td style="padding:15px">Get detailed information about this task.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmTask/{pathv1}/VslmQueryInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmTaskVslmQueryTaskResult(moId, callback)</td>
    <td style="padding:15px">Get the result of the task.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmTask/{pathv1}/VslmQueryTaskResult?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmAttachDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Attach an existing disk to this virtual machine.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmAttachDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmAttachTagToVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Attach a tag to a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmAttachTagToVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmClearVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Clear control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmClearVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmCloneVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Clone a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmCloneVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmCreateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Create a virtual disk, which is a storage object with
*disk*
as consumption type.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmCreateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmCreateDiskFromSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a new Disk from given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmCreateDiskFromSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmCreateSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Creates a snapshot of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmCreateSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmDeleteSnapshotTask(moId, body, callback)</td>
    <td style="padding:15px">Deletes a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmDeleteSnapshot_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmDeleteVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Delete a virtual storage object and its associated backings.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmDeleteVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmDetachTagFromVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Detach a tag from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmDetachTagFromVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmExtendDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Expand the capacity of a virtual disk, which is a storage object with
*disk*, to the new
capacity.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmExtendDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmInflateDiskTask(moId, body, callback)</td>
    <td style="padding:15px">Inflate a sparse or thin-provisioned virtual disk up to the full size.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmInflateDisk_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmListTagsAttachedToVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Lists all tags attached to virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmListTagsAttachedToVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmListVStorageObjectsAttachedToTag(moId, body, callback)</td>
    <td style="padding:15px">Lists all virtual storage objects attached to the tag.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmListVStorageObjectsAttachedToTag?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmListVStorageObjectForSpec(moId, body, callback)</td>
    <td style="padding:15px">List virtual storage objects matching all the
*VslmVsoVStorageObjectQuerySpec*.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmListVStorageObjectForSpec?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmQueryChangedDiskAreas(moId, body, callback)</td>
    <td style="padding:15px">Get a list of areas of a virtual disk that have been modified since a
well-defined point in the pas</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmQueryChangedDiskAreas?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmQueryGlobalCatalogSyncStatus(moId, callback)</td>
    <td style="padding:15px">Gets the synchronization status of the Global Catalog.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmQueryGlobalCatalogSyncStatus?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmQueryGlobalCatalogSyncStatusForDatastore(moId, body, callback)</td>
    <td style="padding:15px">Gets the synchronization state of the Global Catalog for the specified datastore.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmQueryGlobalCatalogSyncStatusForDatastore?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmReconcileDatastoreInventoryTask(moId, body, callback)</td>
    <td style="padding:15px">Reconcile the datastore inventory info of virtual storage objects.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmReconcileDatastoreInventory_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRegisterDisk(moId, body, callback)</td>
    <td style="padding:15px">Promote a virtual disk to a First Class Disk.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRegisterDisk?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRelocateVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Relocate a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRelocateVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRenameVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Rename a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRenameVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveSnapshotDetails(moId, body, callback)</td>
    <td style="padding:15px">Retrieves snapshot disk details of a given snapshot.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveSnapshotDetails?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveSnapshotInfo(moId, body, callback)</td>
    <td style="padding:15px">Retrieves snapshot information of a given VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveSnapshotInfo?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageInfrastructureObjectPolicy(moId, body, callback)</td>
    <td style="padding:15px">Retrieve FCD infrastructure object SBPM policy on given datastore.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageInfrastructureObjectPolicy?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObject(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObject?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObjectAssociations(moId, body, callback)</td>
    <td style="padding:15px">Retrieve vm associations for each virtual storage object in the query.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObjectAssociations?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObjectMetadata(moId, body, callback)</td>
    <td style="padding:15px">Retrieve metadata KV pairs from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObjectMetadata?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObjectMetadataValue(moId, body, callback)</td>
    <td style="padding:15px">Retrieve the metadata value by key from a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObjectMetadataValue?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObjectState(moId, body, callback)</td>
    <td style="padding:15px">Retrieve a virtual storage object state.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObjectState?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRetrieveVStorageObjects(moId, body, callback)</td>
    <td style="padding:15px">Retrieves details of a list of virtual storage objects from cache.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRetrieveVStorageObjects?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmRevertVStorageObjectTask(moId, body, callback)</td>
    <td style="padding:15px">Reverts to a given snapshot of a VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmRevertVStorageObject_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmScheduleReconcileDatastoreInventory(moId, body, callback)</td>
    <td style="padding:15px">Schedules reconcile of the inventory info of virtual storage objects on
one of the hosts that is co</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmScheduleReconcileDatastoreInventory?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmSetVStorageObjectControlFlags(moId, body, callback)</td>
    <td style="padding:15px">Set control flags on VStorageObject.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmSetVStorageObjectControlFlags?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmUpdateVStorageInfrastructureObjectPolicyTask(moId, body, callback)</td>
    <td style="padding:15px">Assigns specified SBPM policy to the given FCD infrastructure object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmUpdateVStorageInfrastructureObjectPolicy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmUpdateVstorageObjectCryptoTask(moId, body, callback)</td>
    <td style="padding:15px">Update the storage crypto on a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmUpdateVstorageObjectCrypto_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmUpdateVStorageObjectMetadataTask(moId, body, callback)</td>
    <td style="padding:15px">Update metadata KV pairs to a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmUpdateVStorageObjectMetadata_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
  <tr>
    <td style="padding:15px">vslmVStorageObjectManagerVslmUpdateVstorageObjectPolicyTask(moId, body, callback)</td>
    <td style="padding:15px">Update the storage policy on a virtual storage object.</td>
    <td style="padding:15px">{base_path}/{version}/vslm/VslmVStorageObjectManager/{pathv1}/VslmUpdateVstorageObjectPolicy_Task?{query}</td>
    <td style="padding:15px">Yes</td>
  </tr>
</table>
<br>
