Skip to main content

tenant_level_access_review_instance_contacted_reviewers

Creates, updates, deletes, gets or lists a tenant_level_access_review_instance_contacted_reviewers resource.

Overview

Nametenant_level_access_review_instance_contacted_reviewers
TypeResource
Idazure.authorization.tenant_level_access_review_instance_contacted_reviewers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe access review reviewer id.
namestringThe access review reviewer id.
createdDateTimestring (date-time)Date Time when the reviewer was contacted.
typestringThe resource type.
userDisplayNamestringThe display name of the reviewer.
userPrincipalNamestringThe user principal name of the reviewer.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectschedule_definition_id, idGet 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.

NameDatatypeDescription
idstringThe id of the access review instance. Required.
schedule_definition_idstringThe id of the access review schedule definition. Required.

SELECT examples

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
;