vw_auto_scale_vcores
Creates, updates, deletes, gets or lists a vw_auto_scale_vcores
resource.
Overview
Name | vw_auto_scale_vcores |
Type | View |
Id | azure.powerbi_dedicated.vw_auto_scale_vcores |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
sku as sku,
type as type,
tags as tags,
systemData as system_data,
JSON_EXTRACT(properties, '$.capacityObjectId') as "capacity_object_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.capacityLimit') as "capacity_limit",
subscriptionId,
resourceGroupName,
vcoreName
FROM azure.powerbi_dedicated.auto_scale_vcores
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
sku as sku,
type as type,
tags as tags,
systemData as system_data,
json_extract_path_text(properties, '$.capacityObjectId') as "capacity_object_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.capacityLimit') as "capacity_limit",
subscriptionId,
resourceGroupName,
vcoreName
FROM azure.powerbi_dedicated.auto_scale_vcores
WHERE subscriptionId = 'replace-me';