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:

NameDatatypeDescription
namestringSku Name. Required. Known values are: "Premium_LRS" and "Premium_ZRS". (Premium_LRS, Premium_ZRS)
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.
tierstringSku Tier. "Premium" (Premium)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_id$filterList all the available Skus in the region and information related to them. List all the available Skus in the region and information related to them.

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
subscription_idstring
$filterstringSpecify $filter='location eq ' to filter on location. Default value is None.

SELECT examples

List all the available Skus in the region and information related to them. List all the available Skus in the region and information related to them.

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