Skip to main content

rack_skus

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

Overview

Namerack_skus
TypeResource
Idazure_extras.network_cloud.rack_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.
computeMachinesarrayThe list of machine SKUs and associated rack slot for the compute-dedicated machines in this rack model.
controllerMachinesarrayThe list of machine SKUs and associated rack slot for the control-plane dedicated machines in this rack model.
deploymentTypestringThe deployment type supported by the rack SKU. Known values are: "Nexus" and "AzureLocal". (Nexus, AzureLocal)
descriptionstringThe free-form text describing the rack.
maxClusterSlotsintegerThe maximum number of compute racks supported by an aggregator rack. 0 if this is a compute rack or a rack for a single rack cluster(rackType="Single").
provisioningStatestringThe provisioning state of the rack SKU resource. Known values are: "Canceled", "Failed", and "Succeeded". (Canceled, Failed, Succeeded)
rackTypestringThe type of the rack. Known values are: "Aggregator", "Compute", and "Single". (Aggregator, Compute, Single)
storageAppliancesarrayThe list of appliance SKUs and associated rack slot for the storage appliance(s) in this rack model.
supportedRackSkuIdsarrayThe list of supported SKUs if the rack is an aggregator.
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
getselectrack_sku_name, subscription_idGet the properties of the provided rack SKU.
list_by_subscriptionselectsubscription_idGet a list of rack SKUs in the provided 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.

NameDatatypeDescription
rack_sku_namestringThe name of the rack SKU. Required.
subscription_idstring

SELECT examples

Get the properties of the provided rack SKU.

SELECT
id,
name,
computeMachines,
controllerMachines,
deploymentType,
description,
maxClusterSlots,
provisioningState,
rackType,
storageAppliances,
supportedRackSkuIds,
systemData,
type
FROM azure_extras.network_cloud.rack_skus
WHERE rack_sku_name = '{{ rack_sku_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;