Skip to main content

scale_units

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

Overview

Namescale_units
TypeResource
Idazure_stack.compute_admin.scale_units

Fields

NameDatatypeDescription
idtextID of the resource.
nametextName of the resource.
last_updated_timetextfield from the properties object
locationtextLocation of the resource.
nodestextfield from the properties object
scaleUnitNametextfield from the properties object
scale_unit_nametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextType of Resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, scaleUnitName, subscriptionIdGet the scale unit view.

SELECT examples

Get the scale unit view.

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 }}';