Skip to main content

vmware_host_controllers

Creates, updates, deletes, gets or lists a vmware_host_controllers resource.

Overview

Namevmware_host_controllers
TypeResource
Idazure.migrate.vmware_host_controllers

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, siteName, hostNameGet a VmwareHost
list_by_vmware_siteselectsubscriptionId, resourceGroupName, siteNameList VmwareHost resources by VmwareSite

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
hostNamestring Hosts name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
siteNamestringSite name
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get a VmwareHost

SELECT
properties
FROM azure.migrate.vmware_host_controllers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
AND hostName = '{{ hostName }}' -- required
;