virtual_appliance_skus
Creates, updates, deletes, gets or lists a virtual_appliance_skus resource.
Overview
| Name | virtual_appliance_skus |
| Type | Resource |
| Id | azure.network.virtual_appliance_skus |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
availableScaleUnits | array | The list of scale units available. |
availableVersions | array | Available Network Virtual Appliance versions. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
tags | object | Resource tags. |
type | string | Resource type. |
vendor | string | Network Virtual Appliance Sku vendor. |
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
availableScaleUnits | array | The list of scale units available. |
availableVersions | array | Available Network Virtual Appliance versions. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
tags | object | Resource tags. |
type | string | Resource type. |
vendor | string | Network Virtual Appliance Sku vendor. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | sku_name, subscription_id | Retrieves a single available sku for network virtual appliance. | |
list | select | subscription_id | List all SKUs available for a virtual appliance. |
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 |
|---|---|---|
sku_name | string | Name of the Sku. Required. |
subscription_id | string |
SELECT examples
- get
- list
Retrieves a single available sku for network virtual appliance.
SELECT
id,
name,
availableScaleUnits,
availableVersions,
etag,
location,
tags,
type,
vendor
FROM azure.network.virtual_appliance_skus
WHERE sku_name = '{{ sku_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List all SKUs available for a virtual appliance.
SELECT
id,
name,
availableScaleUnits,
availableVersions,
etag,
location,
tags,
type,
vendor
FROM azure.network.virtual_appliance_skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;