vw_assignment_operations
Creates, updates, deletes, gets or lists a vw_assignment_operations
resource.
Overview
Name | vw_assignment_operations |
Type | View |
Id | azure.blueprints.vw_assignment_operations |
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, '$.blueprintVersion') as "blueprint_version",
JSON_EXTRACT(properties, '$.assignmentState') as "assignment_state",
JSON_EXTRACT(properties, '$.timeCreated') as "time_created",
JSON_EXTRACT(properties, '$.timeStarted') as "time_started",
JSON_EXTRACT(properties, '$.timeFinished') as "time_finished",
JSON_EXTRACT(properties, '$.deployments') as "deployments",
resourceScope,
assignmentName,
assignmentOperationName
FROM azure.blueprints.assignment_operations
WHERE resourceScope = 'replace-me' AND assignmentName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.blueprintVersion') as "blueprint_version",
json_extract_path_text(properties, '$.assignmentState') as "assignment_state",
json_extract_path_text(properties, '$.timeCreated') as "time_created",
json_extract_path_text(properties, '$.timeStarted') as "time_started",
json_extract_path_text(properties, '$.timeFinished') as "time_finished",
json_extract_path_text(properties, '$.deployments') as "deployments",
resourceScope,
assignmentName,
assignmentOperationName
FROM azure.blueprints.assignment_operations
WHERE resourceScope = 'replace-me' AND assignmentName = 'replace-me';