Skip to main content

rack_skus

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

Overview

Namerack_skus
TypeResource
Idazure.nexus.rack_skus

Fields

The following fields are returned by SELECT queries:

The resource has been successfully retrieved.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectThe list of the resource properties. (title: RackSkuProperties represents the properties of compute-related hardware for a rack. This supports both aggregator and compute racks.)
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
getselectsubscriptionId, rackSkuNameGet the properties of the provided rack SKU.
list_by_subscriptionselectsubscriptionIdGet 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
rackSkuNamestringThe name of the rack SKU.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get the properties of the provided rack SKU.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.nexus.rack_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND rackSkuName = '{{ rackSkuName }}' -- required
;