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
The following fields are returned by SELECT
queries:
- get
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 |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName , computeName | Returns supported virtual machine sizes for resize |
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 |
---|---|---|
computeName | string | Name of the Azure Machine Learning compute. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | Azure Machine Learning Workspace Name |
SELECT
examples
- get
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND computeName = '{{ computeName }}' -- required
;