Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.spring_apps.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
listselectsubscriptionIdLists 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
subscriptionIdstringGets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Lists all of the available skus of the Microsoft.AppPlatform provider.

SELECT
name,
capacity,
locationInfo,
locations,
resourceType,
restrictions,
tier
FROM azure.spring_apps.skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;