network_device_skus
Creates, updates, deletes, gets or lists a network_device_skus resource.
Overview
| Name | network_device_skus |
| Type | Resource |
| Id | azure_extras.managed_network_fabric.network_device_skus |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_subscription
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
interfaces | array | List of network device interfaces. |
manufacturer | string | Manufacturer of the network device. |
model | string | Model of the network device. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled) |
supportedRoleTypes | array | Available roles for the network device. |
supportedVersions | array | List of supported version details of network device. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
interfaces | array | List of network device interfaces. |
manufacturer | string | Manufacturer of the network device. |
model | string | Model of the network device. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled) |
supportedRoleTypes | array | Available roles for the network device. |
supportedVersions | array | List of supported version details of network device. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | network_device_sku_name, subscription_id | Get a Network Device SKU details. | |
list_by_subscription | select | subscription_id | 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 |
|---|---|---|
network_device_sku_name | string | Name of the Network Device SKU. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_subscription
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
;
List Network Device SKUs for the given subscription.
SELECT
id,
name,
interfaces,
manufacturer,
model,
provisioningState,
supportedRoleTypes,
supportedVersions,
systemData,
type
FROM azure_extras.managed_network_fabric.network_device_skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;