Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.storage_cache.skus

Fields

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

NameAccessible byRequired ParamsDescription
listSELECTsubscriptionIdGet 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 }}';