Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure_extras.test_base.skus

Fields

The following fields are returned by SELECT queries:

The operation is completed.

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists 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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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