resource_skus
Creates, updates, deletes, gets or lists a resource_skus
resource.
Overview
Name | resource_skus |
Type | Resource |
Id | azure.storage_pool.resource_skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Sku name |
apiVersion | string | StoragePool RP API version |
capabilities | array | List of additional capabilities for StoragePool resource. |
locationInfo | object | Zone and capability info for resource sku |
resourceType | string | StoragePool resource type |
restrictions | array | The restrictions because of which SKU cannot be used. This is empty if there are no restrictions. |
tier | string | Sku tier |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Lists available StoragePool resources and skus in an Azure location. |
SELECT
examples
Lists available StoragePool resources and skus in an Azure location.
SELECT
name,
apiVersion,
capabilities,
locationInfo,
resourceType,
restrictions,
tier
FROM azure.storage_pool.resource_skus
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';