skus
Creates, updates, deletes, gets or lists a skus resource.
Overview
| Name | skus |
| Type | Resource |
| Id | azure.elastic_san.skus |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Sku Name. Required. Known values are: "Premium_LRS" and "Premium_ZRS". (Premium_LRS, Premium_ZRS) |
capabilities | array | The capability information in the specified SKU. |
locationInfo | array | Availability of the SKU for the location/zone. |
locations | array | The 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.). |
resourceType | string | The type of the resource. |
tier | string | Sku Tier. "Premium" (Premium) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | $filter | 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. |
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 |
|---|---|---|
subscription_id | string | |
$filter | string | Specify $filter='location eq ' to filter on location. Default value is None. |
SELECT examples
- list
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 }}'
;