skus
Creates, updates, deletes, gets or lists a skus resource.
Overview
| Name | skus |
| Type | Resource |
| Id | azure_isv.avs.skus |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the SKU. Required. |
capabilities | array | Name value pairs to describe the capability. |
family | string | The family of the SKU. |
locationInfo | array | A list of locations and availability zones in those locations where the SKU is available. Required. |
locations | array | The set of locations that the SKU is available. Required. |
resourceType | string | The type of resource the SKU applies to. Required. Known values are: "privateClouds" and "privateClouds/clusters". (privateClouds, privateClouds/clusters) |
restrictions | array | The restrictions of the SKU. Required. |
size | string | The size of the SKU. |
tier | string | The tier of virtual machines in a scale set. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | A list of SKUs. |
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
A list of SKUs.
SELECT
name,
capabilities,
family,
locationInfo,
locations,
resourceType,
restrictions,
size,
tier
FROM azure_isv.avs.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;