Skip to main content

compute_allowed_resize_sizes

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

Overview

Namecompute_allowed_resize_sizes
TypeResource
Idazure.ml_services.compute_allowed_resize_sizes

Fields

NameDatatypeDescription
namestringThe name of the virtual machine size.
estimatedVMPricesobjectThe estimated price info for using a VM.
familystringThe family name of the virtual machine size.
gpusintegerThe number of gPUs supported by the virtual machine size.
lowPriorityCapablebooleanSpecifies if the virtual machine size supports low priority VMs.
maxResourceVolumeMBintegerThe resource volume size, in MB, allowed by the virtual machine size.
memoryGBnumberThe amount of memory, in GB, supported by the virtual machine size.
osVhdSizeMBintegerThe OS VHD disk size, in MB, allowed by the virtual machine size.
premiumIObooleanSpecifies if the virtual machine size supports premium IO.
supportedComputeTypesarraySpecifies the compute types supported by the virtual machine size.
vCPUsintegerThe number of vCPUs supported by the virtual machine size.

Methods

NameAccessible byRequired ParamsDescription
getSELECTcomputeName, resourceGroupName, subscriptionId, workspaceNameReturns 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 }}';