Skip to main content

virtual_appliance_skus

Creates, updates, deletes, gets or lists a virtual_appliance_skus resource.

Overview

Namevirtual_appliance_skus
TypeResource
Idazure.network.virtual_appliance_skus

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the requested NetworkVirtualAppliance sku information.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectNetworkVirtualApplianceSku properties. (title: Network Virtual Appliance Sku Properties)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, skuNameRetrieves a single available sku for network virtual appliance.
listselectsubscriptionIdList 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.

NameDatatypeDescription
skuNamestringName of the Sku.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Retrieves a single available sku for network virtual appliance.

SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.virtual_appliance_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND skuName = '{{ skuName }}' -- required
;