Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.app_service.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
listselectsubscriptionIdDescription 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
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Description for List all SKUs.

SELECT
resourceType,
skus
FROM azure.app_service.skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;