skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure_extras.test_base.skus |
Fields
The following fields are returned by SELECT
queries:
- list
The operation is completed.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Lists the available SKUs of Test Base Account in a subscription. |
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 (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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 }}' -- required
;