Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure_extras.testbase.skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the SKU. This is typically a letter + number code, such as B0 or S0. Required.
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. Required. "Standard"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idLists the available SKUs of Test Base Account in a 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
subscription_idstring

SELECT examples

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

SELECT
name,
capabilities,
locations,
resourceType,
tier
FROM azure_extras.testbase.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;