Skip to main content

skus

Creates, updates, deletes, gets or lists a skus resource.

Overview

Nameskus
TypeResource
Idazure.storage_cache.skus

Fields

The following fields are returned by SELECT queries:

A list of SKU descriptors.

NameDatatypeDescription
namestringThe name of this SKU.
capabilitiesarrayA list of capabilities of this SKU, such as throughput or ops/sec.
locationInfoarrayThe set of locations where the SKU is available.
locationsarrayThe 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.).
resourceTypestringThe type of resource the SKU applies to.
restrictionsarrayThe restrictions preventing this SKU from being used. This is empty if there are no restrictions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdGet 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.

NameDatatypeDescription
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 }}' -- required
;