network_fabric_skus
Creates, updates, deletes, gets or lists a network_fabric_skus resource.
Overview
| Name | network_fabric_skus |
| Type | Resource |
| Id | azure_extras.managed_network_fabric.network_fabric_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. |
details | string | URL providing detailed configuration of the fabric SKU. |
maxComputeRacks | integer | Maximum number of compute racks available for this Network Fabric SKU. The value of max count racks is 4 for 4 rack SKU and 8 for 8 rack SKU. |
maximumServerCount | integer | Maximum number of servers available for this Network Fabric SKU. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled) |
supportedVersions | array | List of supported Network Fabric SKU versions. |
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. |
details | string | URL providing detailed configuration of the fabric SKU. |
maxComputeRacks | integer | Maximum number of compute racks available for this Network Fabric SKU. The value of max count racks is 4 for 4 rack SKU and 8 for 8 rack SKU. |
maximumServerCount | integer | Maximum number of servers available for this Network Fabric SKU. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled) |
supportedVersions | array | List of supported Network Fabric SKU versions. |
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_fabric_sku_name, subscription_id | Implements Network Fabric SKU GET method. | |
list_by_subscription | select | subscription_id | 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 |
|---|---|---|
network_fabric_sku_name | string | Name of the Network Fabric SKU. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_subscription
Implements Network Fabric SKU GET method.
SELECT
id,
name,
details,
maxComputeRacks,
maximumServerCount,
provisioningState,
supportedVersions,
systemData,
type
FROM azure_extras.managed_network_fabric.network_fabric_skus
WHERE network_fabric_sku_name = '{{ network_fabric_sku_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Implements Network Fabric SKUs list by subscription GET method.
SELECT
id,
name,
details,
maxComputeRacks,
maximumServerCount,
provisioningState,
supportedVersions,
systemData,
type
FROM azure_extras.managed_network_fabric.network_fabric_skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;