network_fabric_skus
Creates, updates, deletes, gets or lists a network_fabric_skus resource.
Overview
| Name | network_fabric_skus |
| Type | Resource |
| Id | azure.managed_network_fabric.network_fabric_skus |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_subscription
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
Lists all Network Fabric SKUs under the subscription.
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, networkFabricSkuName | Implements Network Fabric SKU GET method. | |
list_by_subscription | select | subscriptionId | Implements 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.
| Name | Datatype | Description |
|---|---|---|
networkFabricSkuName | string | Name of the Network Fabric SKU. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
- list_by_subscription
Implements Network Fabric SKU GET method.
SELECT
properties
FROM azure.managed_network_fabric.network_fabric_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND networkFabricSkuName = '{{ networkFabricSkuName }}' -- required
;
Implements Network Fabric SKUs list by subscription GET method.
SELECT
properties
FROM azure.managed_network_fabric.network_fabric_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;