vw_autoscale_settings
Creates, updates, deletes, gets or lists a vw_autoscale_settings
resource.
Overview
Name | vw_autoscale_settings |
Type | View |
Id | azure.monitor.vw_autoscale_settings |
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,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.profiles') as "profiles",
JSON_EXTRACT(properties, '$.notifications') as "notifications",
JSON_EXTRACT(properties, '$.enabled') as "enabled",
JSON_EXTRACT(properties, '$.predictiveAutoscalePolicy') as "predictive_autoscale_policy",
JSON_EXTRACT(properties, '$.name') as "name",
JSON_EXTRACT(properties, '$.targetResourceUri') as "target_resource_uri",
JSON_EXTRACT(properties, '$.targetResourceLocation') as "target_resource_location",
subscriptionId,
resourceGroupName,
autoscaleSettingName
FROM azure.monitor.autoscale_settings
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.profiles') as "profiles",
json_extract_path_text(properties, '$.notifications') as "notifications",
json_extract_path_text(properties, '$.enabled') as "enabled",
json_extract_path_text(properties, '$.predictiveAutoscalePolicy') as "predictive_autoscale_policy",
json_extract_path_text(properties, '$.name') as "name",
json_extract_path_text(properties, '$.targetResourceUri') as "target_resource_uri",
json_extract_path_text(properties, '$.targetResourceLocation') as "target_resource_location",
subscriptionId,
resourceGroupName,
autoscaleSettingName
FROM azure.monitor.autoscale_settings
WHERE subscriptionId = 'replace-me';