skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure.storage_cache.skus |
Fields
The following fields are returned by SELECT
queries:
- list
A list of SKU descriptors.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Get the list of StorageCache.Cache SKUs available to this subscription. |
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 (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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 }}' -- required
;