compute_allowed_resize_sizes
Creates, updates, deletes, gets or lists a compute_allowed_resize_sizes
resource.
Overview
Name | compute_allowed_resize_sizes |
Type | Resource |
Id | azure.ml_services.compute_allowed_resize_sizes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the virtual machine size. |
estimatedVMPrices | object | The estimated price info for using a VM. |
family | string | The family name of the virtual machine size. |
gpus | integer | The number of gPUs supported by the virtual machine size. |
lowPriorityCapable | boolean | Specifies if the virtual machine size supports low priority VMs. |
maxResourceVolumeMB | integer | The resource volume size, in MB, allowed by the virtual machine size. |
memoryGB | number | The amount of memory, in GB, supported by the virtual machine size. |
osVhdSizeMB | integer | The OS VHD disk size, in MB, allowed by the virtual machine size. |
premiumIO | boolean | Specifies if the virtual machine size supports premium IO. |
supportedComputeTypes | array | Specifies the compute types supported by the virtual machine size. |
vCPUs | integer | The number of vCPUs supported by the virtual machine size. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | computeName, resourceGroupName, subscriptionId, workspaceName | Returns supported virtual machine sizes for resize |
SELECT
examples
Returns supported virtual machine sizes for resize
SELECT
name,
estimatedVMPrices,
family,
gpus,
lowPriorityCapable,
maxResourceVolumeMB,
memoryGB,
osVhdSizeMB,
premiumIO,
supportedComputeTypes,
vCPUs
FROM azure.ml_services.compute_allowed_resize_sizes
WHERE computeName = '{{ computeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';