Skip to main content

network_device_skus

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

Overview

Namenetwork_device_skus
TypeResource
Idazure_extras.managed_network_fabric.network_device_skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
interfacesarrayList of network device interfaces.
manufacturerstringManufacturer of the network device.
modelstringModel of the network device. Required.
provisioningStatestringProvisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled)
supportedRoleTypesarrayAvailable roles for the network device.
supportedVersionsarrayList of supported version details of network device.
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
getselectnetwork_device_sku_name, subscription_idGet a Network Device SKU details.
list_by_subscriptionselectsubscription_idList 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
network_device_sku_namestringName of the Network Device SKU. Required.
subscription_idstring

SELECT examples

Get a Network Device SKU details.

SELECT
id,
name,
interfaces,
manufacturer,
model,
provisioningState,
supportedRoleTypes,
supportedVersions,
systemData,
type
FROM azure_extras.managed_network_fabric.network_device_skus
WHERE network_device_sku_name = '{{ network_device_sku_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;