vw_access_review_instances_assigned_for_my_approval
Creates, updates, deletes, gets or lists a vw_access_review_instances_assigned_for_my_approval
resource.
Overview
Name | vw_access_review_instances_assigned_for_my_approval |
Type | View |
Id | azure.authorization.vw_access_review_instances_assigned_for_my_approval |
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, '$.startDateTime') as "start_date_time",
JSON_EXTRACT(properties, '$.endDateTime') as "end_date_time",
JSON_EXTRACT(properties, '$.reviewers') as "reviewers",
JSON_EXTRACT(properties, '$.backupReviewers') as "backup_reviewers",
JSON_EXTRACT(properties, '$.reviewersType') as "reviewers_type",
scheduleDefinitionId,
id
FROM azure.authorization.access_review_instances_assigned_for_my_approval
WHERE scheduleDefinitionId = '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, '$.startDateTime') as "start_date_time",
json_extract_path_text(properties, '$.endDateTime') as "end_date_time",
json_extract_path_text(properties, '$.reviewers') as "reviewers",
json_extract_path_text(properties, '$.backupReviewers') as "backup_reviewers",
json_extract_path_text(properties, '$.reviewersType') as "reviewers_type",
scheduleDefinitionId,
id
FROM azure.authorization.access_review_instances_assigned_for_my_approval
WHERE scheduleDefinitionId = 'replace-me';