virtual_machine_sizes
Creates, updates, deletes, gets or lists a virtual_machine_sizes
resource.
Overview
Name | virtual_machine_sizes |
Type | Resource |
Id | azure.ml_services.virtual_machine_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 |
---|---|---|---|
list | SELECT | location, subscriptionId | Returns supported VM Sizes in a location |
SELECT
examples
Returns supported VM Sizes in a location
SELECT
name,
estimatedVMPrices,
family,
gpus,
lowPriorityCapable,
maxResourceVolumeMB,
memoryGB,
osVhdSizeMB,
premiumIO,
supportedComputeTypes,
vCPUs
FROM azure.ml_services.virtual_machine_sizes
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';