location_supported_virtual_machine_skus
Creates, updates, deletes, gets or lists a location_supported_virtual_machine_skus
resource.
Overview
Name | location_supported_virtual_machine_skus |
Type | Resource |
Id | azure.batch.location_supported_virtual_machine_skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the SKU. |
batchSupportEndOfLife | string | The time when Azure Batch service will retire this SKU. |
capabilities | array | A collection of capabilities which this SKU supports. |
familyName | string | The family name of the SKU. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationName, subscriptionId | Gets the list of Batch supported Virtual Machine VM sizes available at the given location. |
SELECT
examples
Gets the list of Batch supported Virtual Machine VM sizes available at the given location.
SELECT
name,
batchSupportEndOfLife,
capabilities,
familyName
FROM azure.batch.location_supported_virtual_machine_skus
WHERE locationName = '{{ locationName }}'
AND subscriptionId = '{{ subscriptionId }}';