dedicated_hosts_available_sizes
Creates, updates, deletes, gets or lists a dedicated_hosts_available_sizes
resource.
Overview
Name | dedicated_hosts_available_sizes |
Type | Resource |
Id | azure.compute.dedicated_hosts_available_sizes |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , hostGroupName , hostName , subscriptionId | Lists all available dedicated host sizes to which the specified dedicated host can be resized. NOTE: The dedicated host sizes provided can be used to only scale up the existing dedicated host. |
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 |
---|---|---|
hostGroupName | string | The name of the dedicated host group. |
hostName | string | The name of the dedicated host. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
Lists all available dedicated host sizes to which the specified dedicated host can be resized. NOTE: The dedicated host sizes provided can be used to only scale up the existing dedicated host.
SELECT
*
FROM azure.compute.dedicated_hosts_available_sizes
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hostGroupName = '{{ hostGroupName }}' -- required
AND hostName = '{{ hostName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;