Skip to main content

location_supported_virtual_machine_skus

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

Overview

Namelocation_supported_virtual_machine_skus
TypeResource
Idazure.batch.location_supported_virtual_machine_skus

Fields

NameDatatypeDescription
namestringThe name of the SKU.
batchSupportEndOfLifestringThe time when Azure Batch service will retire this SKU.
capabilitiesarrayA collection of capabilities which this SKU supports.
familyNamestringThe family name of the SKU.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationName, subscriptionIdGets 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 }}';