Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure_extras.app_platform.skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringGets the name of SKU.
capacityobjectGets the capacity of SKU.
locationInfoarrayGets a list of locations and availability zones in those locations where the SKU is available.
locationsarrayGets the set of locations that the SKU is available.
resourceTypestringGets the type of resource the SKU applies to.
restrictionsarrayGets the restrictions because of which SKU cannot be used. This is empty if there are no restrictions.
tierstringGets the tier of SKU.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idLists all of the available skus of the Microsoft.AppPlatform provider.

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 all of the available skus of the Microsoft.AppPlatform provider.

SELECT
name,
capacity,
locationInfo,
locations,
resourceType,
restrictions,
tier
FROM azure_extras.app_platform.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;