vw_published_blueprints
Creates, updates, deletes, gets or lists a vw_published_blueprints
resource.
Overview
Name | vw_published_blueprints |
Type | View |
Id | azure.blueprints.vw_published_blueprints |
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, '$.status') as "status",
JSON_EXTRACT(properties, '$.targetScope') as "target_scope",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.resourceGroups') as "resource_groups",
JSON_EXTRACT(properties, '$.blueprintName') as "blueprint_name",
JSON_EXTRACT(properties, '$.changeNotes') as "change_notes",
resourceScope,
blueprintName,
versionId
FROM azure.blueprints.published_blueprints
WHERE resourceScope = 'replace-me' AND blueprintName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.targetScope') as "target_scope",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.resourceGroups') as "resource_groups",
json_extract_path_text(properties, '$.blueprintName') as "blueprint_name",
json_extract_path_text(properties, '$.changeNotes') as "change_notes",
resourceScope,
blueprintName,
versionId
FROM azure.blueprints.published_blueprints
WHERE resourceScope = 'replace-me' AND blueprintName = 'replace-me';