vw_assignments
Creates, updates, deletes, gets or lists a vw_assignments
resource.
Overview
Name | vw_assignments |
Type | View |
Id | azure.blueprints.vw_assignments |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.blueprintId') as "blueprint_id",
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.resourceGroups') as "resource_groups",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.locks') as "locks",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
resourceScope,
assignmentName
FROM azure.blueprints.assignments
WHERE resourceScope = 'replace-me';
SELECT
location as location,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.blueprintId') as "blueprint_id",
json_extract_path_text(properties, '$.scope') as "scope",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(properties, '$.resourceGroups') as "resource_groups",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.locks') as "locks",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
resourceScope,
assignmentName
FROM azure.blueprints.assignments
WHERE resourceScope = 'replace-me';