Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.web.skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resourceTypestringResource type that this SKU applies to.
skusarrayList of SKUs the subscription is able to use.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_skusselectsubscription_idList all SKUs. Description for List all SKUs.

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

List all SKUs. Description for List all SKUs.

SELECT
resourceType,
skus
FROM azure.web.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;