scale_units
Creates, updates, deletes, gets or lists a scale_units
resource.
Overview
Name | scale_units |
Type | Resource |
Id | azure_stack.compute_admin.scale_units |
Fields
- vw_scale_units
- scale_units
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
last_updated_time | text | field from the properties object |
location | text | Location of the resource. |
nodes | text | field from the properties object |
scaleUnitName | text | field from the properties object |
scale_unit_name | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource. |
properties | object | Properties for a scale unit |
type | string | Type of Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, scaleUnitName, subscriptionId | Get the scale unit view. |
SELECT
examples
Get the scale unit view.
- vw_scale_units
- scale_units
SELECT
id,
name,
last_updated_time,
location,
nodes,
scaleUnitName,
scale_unit_name,
subscriptionId,
type
FROM azure_stack.compute_admin.vw_scale_units
WHERE location = '{{ location }}'
AND scaleUnitName = '{{ scaleUnitName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure_stack.compute_admin.scale_units
WHERE location = '{{ location }}'
AND scaleUnitName = '{{ scaleUnitName }}'
AND subscriptionId = '{{ subscriptionId }}';