skus
Creates, updates, deletes, gets or lists a skus resource.
Overview
| Name | skus |
| Type | Resource |
| Id | azure.spring_apps.skus |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Gets the name of SKU. |
capacity | object | Gets the capacity of SKU. |
locationInfo | array | Gets a list of locations and availability zones in those locations where the SKU is available. |
locations | array | Gets the set of locations that the SKU is available. |
resourceType | string | Gets the type of resource the SKU applies to. |
restrictions | array | Gets the restrictions because of which SKU cannot be used. This is empty if there are no restrictions. |
tier | string | Gets the tier of SKU. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | Lists 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.
| Name | Datatype | Description |
|---|---|---|
subscriptionId | string | Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
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
;