vw_best_practices_versions
Creates, updates, deletes, gets or lists a vw_best_practices_versions
resource.
Overview
Name | vw_best_practices_versions |
Type | View |
Id | azure.automanage.vw_best_practices_versions |
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,
systemData as system_data,
JSON_EXTRACT(properties, '$.configuration') as "configuration",
bestPracticeName,
versionName
FROM azure.automanage.best_practices_versions
WHERE bestPracticeName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.configuration') as "configuration",
bestPracticeName,
versionName
FROM azure.automanage.best_practices_versions
WHERE bestPracticeName = 'replace-me';