Skip to main content

dedicated_hosts_available_sizes

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

Overview

Namededicated_hosts_available_sizes
TypeResource
Idazure.compute.dedicated_hosts_available_sizes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, hostGroupName, hostName, subscriptionIdLists 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.

NameDatatypeDescription
hostGroupNamestringThe name of the dedicated host group.
hostNamestringThe name of the dedicated host.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;