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
Lists the available SKUs supported by Microsoft.ElasticSan for given subscription.
Name | Datatype | Description |
---|---|---|
name | string | The sku name. |
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 | The sku tier. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | $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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | The ID of the target subscription. |
$filter | string | Specify $filter='location eq <location>' to filter on location. |
SELECT
examples
- list
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 }}'
;