skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure_extras.test_base.skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the SKU. This is typically a letter + number code, such as B0 or S0. |
capabilities | array | The capabilities of a SKU. |
locations | array | The locations that the SKU is available. |
resourceType | string | The type of resource the SKU applies to. |
tier | string | The tier of this particular SKU. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | subscriptionId | Lists the available SKUs of Test Base Account in a subscription. |
SELECT
examples
Lists the available SKUs of Test Base Account in a subscription.
SELECT
name,
capabilities,
locations,
resourceType,
tier
FROM azure_extras.test_base.skus
WHERE subscriptionId = '{{ subscriptionId }}';