virtual_machines_hosts
Creates, updates, deletes, gets or lists a virtual_machines_hosts
resource.
Overview
Name | virtual_machines_hosts |
Type | Resource |
Id | azure.hdinsight.virtual_machines_hosts |
Fields
The following fields are returned by SELECT
queries:
- list
OK response definition.
Name | Datatype | Description |
---|---|---|
name | string | The host name |
effectiveDiskEncryptionKeyUrl | string | The effective disk encryption key URL used by the host |
fqdn | string | The Fully Qualified Domain Name of host |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , clusterName | Lists the HDInsight clusters hosts |
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.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the cluster. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
Lists the HDInsight clusters hosts
SELECT
name,
effectiveDiskEncryptionKeyUrl,
fqdn
FROM azure.hdinsight.virtual_machines_hosts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
;