Skip to main content

network_fabric_skus

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

Overview

Namenetwork_fabric_skus
TypeResource
Idazure.managed_network_fabric.network_fabric_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, networkFabricSkuNameImplements Network Fabric SKU GET method.
list_by_subscriptionselectsubscriptionIdImplements Network Fabric SKUs list by subscription GET method.

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
networkFabricSkuNamestringName of the Network Fabric SKU.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Implements Network Fabric SKU GET method.

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