Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure_extras.test_base.skus

Fields

NameDatatypeDescription
namestringThe name of the SKU. This is typically a letter + number code, such as B0 or S0.
capabilitiesarrayThe capabilities of a SKU.
locationsarrayThe locations that the SKU is available.
resourceTypestringThe type of resource the SKU applies to.
tierstringThe tier of this particular SKU.

Methods

NameAccessible byRequired ParamsDescription
listSELECTsubscriptionIdLists the available SKUs of Test Base Account in a subscription.

SELECT examples

Lists the available SKUs of Test Base Account in a subscription.

SELECT
name,
capabilities,
locations,
resourceType,
tier
FROM azure_extras.test_base.skus
WHERE subscriptionId = '{{ subscriptionId }}';