Skip to main content

scope_access_review_instance_contacted_reviewers

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

Overview

Namescope_access_review_instance_contacted_reviewers
TypeResource
Idazure.authorization.scope_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
listselectscope, schedule_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.
scopestringThe scope of the resource. Required.

SELECT examples

Get access review instance contacted reviewers.

SELECT
id,
name,
createdDateTime,
type,
userDisplayName,
userPrincipalName
FROM azure.authorization.scope_access_review_instance_contacted_reviewers
WHERE scope = '{{ scope }}' -- required
AND schedule_definition_id = '{{ schedule_definition_id }}' -- required
AND id = '{{ id }}' -- required
;