skus
Creates, updates, deletes, gets or lists a skus resource.
Overview
| Name | skus |
| Type | Resource |
| Id | azure_extras.testbase.skus |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the SKU. This is typically a letter + number code, such as B0 or S0. Required. |
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. Required. "Standard" |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | 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 |
|---|---|---|
subscription_id | string |
SELECT examples
- list
Lists the available SKUs of Test Base Account in a subscription.
SELECT
name,
capabilities,
locations,
resourceType,
tier
FROM azure_extras.testbase.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;