Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.elastic_san.skus

Fields

The following fields are returned by SELECT queries:

Lists the available SKUs supported by Microsoft.ElasticSan for given subscription.

NameDatatypeDescription
namestringThe sku name.
capabilitiesarrayThe capability information in the specified SKU.
locationInfoarrayAvailability of the SKU for the location/zone
locationsarrayThe set of locations that the SKU is available. This will be supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.).
resourceTypestringThe type of the resource.
tierstringThe sku tier.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId$filter

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.

NameDatatypeDescription
subscriptionIdstringThe ID of the target subscription.
$filterstringSpecify $filter='location eq <location>' to filter on location.

SELECT examples

Lists the available SKUs supported by Microsoft.ElasticSan for given subscription.

SELECT
name,
capabilities,
locationInfo,
locations,
resourceType,
tier
FROM azure.elastic_san.skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $filter = '{{ $filter }}'
;