vw_scale_units
Creates, updates, deletes, gets or lists a vw_scale_units
resource.
Overview
Name | vw_scale_units |
Type | View |
Id | azure_stack.compute_admin.vw_scale_units |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.scaleUnitName') as "scale_unit_name",
JSON_EXTRACT(properties, '$.lastUpdatedTime') as "last_updated_time",
JSON_EXTRACT(properties, '$.nodes') as "nodes",
subscriptionId,
location,
scaleUnitName
FROM azure_stack.compute_admin.scale_units
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND scaleUnitName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.scaleUnitName') as "scale_unit_name",
json_extract_path_text(properties, '$.lastUpdatedTime') as "last_updated_time",
json_extract_path_text(properties, '$.nodes') as "nodes",
subscriptionId,
location,
scaleUnitName
FROM azure_stack.compute_admin.scale_units
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND scaleUnitName = 'replace-me';