Skip to main content

network_device_skus

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

Overview

Namenetwork_device_skus
TypeResource
Idazure.managed_network_fabric.network_device_skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectResource properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, networkDeviceSkuNameGet a Network Device SKU details.
list_by_subscriptionselectsubscriptionIdList Network Device SKUs for the given 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.

NameDatatypeDescription
networkDeviceSkuNamestringName of the Network Device SKU.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a Network Device SKU details.

SELECT
properties
FROM azure.managed_network_fabric.network_device_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND networkDeviceSkuName = '{{ networkDeviceSkuName }}' -- required
;