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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | The name of the virtual machine size. (title: Virtual Machine size name) |
estimatedVMPrices | object | The estimated price information for using a VM. (title: Estimated VM prices) |
family | string | The family name of the virtual machine size. (title: Virtual Machine family name) |
gpus | integer (int32) | The number of gPUs supported by the virtual machine size. (title: Number of gPUs) |
lowPriorityCapable | boolean | Specifies if the virtual machine size supports low priority VMs. (title: Low priority capable) |
maxResourceVolumeMB | integer (int32) | The resource volume size, in MB, allowed by the virtual machine size. (title: Resource volume size) |
memoryGB | number (double) | The amount of memory, in GB, supported by the virtual machine size. (title: Memory size) |
osVhdSizeMB | integer (int32) | The OS VHD disk size, in MB, allowed by the virtual machine size. (title: OS VHD Disk size) |
premiumIO | boolean | Specifies if the virtual machine size supports premium IO. (title: Premium IO supported) |
supportedComputeTypes | array | Specifies the compute types supported by the virtual machine size. (title: Supported Compute Types) |
vCPUs | integer (int32) | The number of vCPUs supported by the virtual machine size. (title: Number of vPUs) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | location , subscriptionId | Returns supported VM Sizes in a location |
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 |
---|---|---|
location | string | The location upon which virtual-machine-sizes is queried. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;