skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure.storage_cache.skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of this SKU. |
capabilities | array | A list of capabilities of this SKU, such as throughput or ops/sec. |
locationInfo | array | The set of locations where the SKU is available. |
locations | array | The set of locations where the SKU is available. This is the supported and registered Azure Geo Regions (e.g., West US, East US, Southeast Asia, etc.). |
resourceType | string | The type of resource the SKU applies to. |
restrictions | array | The restrictions preventing this SKU from being used. This is empty if there are no restrictions. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | subscriptionId | Get the list of StorageCache.Cache SKUs available to this subscription. |
SELECT
examples
Get the list of StorageCache.Cache SKUs available to this subscription.
SELECT
name,
capabilities,
locationInfo,
locations,
resourceType,
restrictions
FROM azure.storage_cache.skus
WHERE subscriptionId = '{{ subscriptionId }}';