rack_skus
Creates, updates, deletes, gets or lists a rack_skus
resource.
Overview
Name | rack_skus |
Type | Resource |
Id | azure.nexus.rack_skus |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_subscription
The resource has been successfully retrieved.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | The list of the resource properties. (title: RackSkuProperties represents the properties of compute-related hardware for a rack. This supports both aggregator and compute racks.) |
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" |
The resource list has been successfully retrieved.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | The list of the resource properties. (title: RackSkuProperties represents the properties of compute-related hardware for a rack. This supports both aggregator and compute racks.) |
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 | subscriptionId , rackSkuName | Get the properties of the provided rack SKU. | |
list_by_subscription | select | subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
rackSkuName | string | The name of the rack SKU. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_subscription
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
;
Get a list of rack SKUs in the provided subscription.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.nexus.rack_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;