network_device_skus
Creates, updates, deletes, gets or lists a network_device_skus
resource.
Overview
Name | network_device_skus |
Type | Resource |
Id | azure.managed_network_fabric.network_device_skus |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_subscription
Name | Datatype | Description |
---|---|---|
properties | object | Resource properties. |
Lists all Network Device SKU 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 , networkDeviceSkuName | Get a Network Device SKU details. | |
list_by_subscription | select | subscriptionId | List 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.
Name | Datatype | Description |
---|---|---|
networkDeviceSkuName | string | Name of the Network Device SKU. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_subscription
Get a Network Device SKU details.
SELECT
properties
FROM azure.managed_network_fabric.network_device_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND networkDeviceSkuName = '{{ networkDeviceSkuName }}' -- required
;
List Network Device SKUs for the given subscription.
SELECT
properties
FROM azure.managed_network_fabric.network_device_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;