scale_units
Creates, updates, deletes, gets or lists a scale_units
resource.
Overview
Name | scale_units |
Type | Resource |
Id | azure_stack.fabric_admin.scale_units |
Fields
- vw_scale_units
- scale_units
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
is_multi_node | text | field from the properties object |
location | text | The region where the resource is located. |
logical_fault_domain | text | field from the properties object |
model | text | field from the properties object |
nodes | text | field from the properties object |
resourceGroupName | text | field from the properties object |
scaleUnit | text | field from the properties object |
scale_unit_type | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
total_capacity | text | field from the properties object |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | Properties of a scale unit. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, scaleUnit, subscriptionId | Returns the requested scale unit. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all scale units at a location. |
scale_out | EXEC | location, resourceGroupName, scaleUnit, subscriptionId | Scales out a scale unit. |
set_gpu_partition_size | EXEC | location, resourceGroupName, scaleUnit, subscriptionId | Set GPU partition size. |
SELECT
examples
Returns a list of all scale units at a location.
- vw_scale_units
- scale_units
SELECT
id,
name,
is_multi_node,
location,
logical_fault_domain,
model,
nodes,
resourceGroupName,
scaleUnit,
scale_unit_type,
state,
subscriptionId,
tags,
total_capacity,
type
FROM azure_stack.fabric_admin.vw_scale_units
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.scale_units
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';