Skip to main content

network_fabric_skus

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

Overview

Namenetwork_fabric_skus
TypeResource
Idazure_extras.managed_network_fabric.network_fabric_skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
detailsstringURL providing detailed configuration of the fabric SKU.
maxComputeRacksintegerMaximum 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.
maximumServerCountintegerMaximum number of servers available for this Network Fabric SKU.
provisioningStatestringProvisioning state of the resource. Known values are: "Accepted", "Succeeded", "Updating", "Deleting", "Failed", and "Canceled". (Accepted, Succeeded, Updating, Deleting, Failed, Canceled)
supportedVersionsarrayList of supported Network Fabric SKU versions.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectnetwork_fabric_sku_name, subscription_idImplements Network Fabric SKU GET method.
list_by_subscriptionselectsubscription_idImplements 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
network_fabric_sku_namestringName of the Network Fabric SKU. Required.
subscription_idstring

SELECT examples

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
;