vmware_host_controllers
Creates, updates, deletes, gets or lists a vmware_host_controllers
resource.
Overview
Name | vmware_host_controllers |
Type | Resource |
Id | azure.migrate.vmware_host_controllers |
Fields
- vw_vmware_host_controllers
- vmware_host_controllers
Name | Datatype | Description |
---|---|---|
appliance_names | text | field from the properties object |
created_timestamp | text | field from the properties object |
datastores | text | field from the properties object |
hostName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
subscriptionId | text | field from the properties object |
updated_timestamp | text | field from the properties object |
uuid | text | field from the properties object |
vcenter_id | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for host properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | hostName, resourceGroupName, siteName, subscriptionId | Get a VmwareHost |
list_by_vmware_site | SELECT | resourceGroupName, siteName, subscriptionId | List VmwareHost resources by VmwareSite |
SELECT
examples
List VmwareHost resources by VmwareSite
- vw_vmware_host_controllers
- vmware_host_controllers
SELECT
appliance_names,
created_timestamp,
datastores,
hostName,
provisioning_state,
resourceGroupName,
siteName,
subscriptionId,
updated_timestamp,
uuid,
vcenter_id
FROM azure.migrate.vw_vmware_host_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.migrate.vmware_host_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';