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
The following fields are returned by SELECT
queries:
- list
The operation was successful. The response contains the Batch service supported virtual machine vm sizes for the subscription in the specified location.
Name | Datatype | Description |
---|---|---|
name | string | The name of the SKU. |
batchSupportEndOfLife | string (date-time) | 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | locationName , subscriptionId | maxresults , $filter | Gets the list of Batch supported Virtual Machine VM sizes available at the given 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 |
---|---|---|
locationName | string | The region for which to retrieve Batch service supported SKUs. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
$filter | string | OData filter expression. Valid properties for filtering are "familyName". |
maxresults | integer (int32) | The maximum number of items to return in the response. |
SELECT
examples
- list
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 }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND maxresults = '{{ maxresults }}'
AND $filter = '{{ $filter }}'
;