tenant_level_access_review_instance_contacted_reviewers
Creates, updates, deletes, gets or lists a tenant_level_access_review_instance_contacted_reviewers resource.
Overview
| Name | tenant_level_access_review_instance_contacted_reviewers |
| Type | Resource |
| Id | azure.authorization.tenant_level_access_review_instance_contacted_reviewers |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The access review reviewer id. |
name | string | The access review reviewer id. |
createdDateTime | string (date-time) | Date Time when the reviewer was contacted. |
type | string | The resource type. |
userDisplayName | string | The display name of the reviewer. |
userPrincipalName | string | The user principal name of the reviewer. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | schedule_definition_id, id | Get access review instance contacted reviewers. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
id | string | The id of the access review instance. Required. |
schedule_definition_id | string | The id of the access review schedule definition. Required. |
SELECT examples
- list
Get access review instance contacted reviewers.
SELECT
id,
name,
createdDateTime,
type,
userDisplayName,
userPrincipalName
FROM azure.authorization.tenant_level_access_review_instance_contacted_reviewers
WHERE schedule_definition_id = '{{ schedule_definition_id }}' -- required
AND id = '{{ id }}' -- required
;