Skip to main content

access_review_instances_assigned_for_my_approval

Creates, updates, deletes, gets or lists an access_review_instances_assigned_for_my_approval resource.

Overview

Nameaccess_review_instances_assigned_for_my_approval
TypeResource
Idazure.authorization.access_review_instances_assigned_for_my_approval

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
idstringThe access review instance id.
namestringThe access review instance name.
propertiesobjectAccess Review properties.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_idselectscheduleDefinitionId, idGet single access review instance assigned for my approval.
listselectscheduleDefinitionId$filterGet access review instances assigned for my approval.

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.
scheduleDefinitionIdstringThe id of the access review schedule definition.
$filterstringThe filter to apply on the operation. Other than standard filters, one custom filter option is supported : 'assignedToMeToReview()'. When one specified $filter=assignedToMeToReview(), only items that are assigned to the calling user to review are returned

SELECT examples

Get single access review instance assigned for my approval.

SELECT
id,
name,
properties,
type
FROM azure.authorization.access_review_instances_assigned_for_my_approval
WHERE scheduleDefinitionId = '{{ scheduleDefinitionId }}' -- required
AND id = '{{ id }}' -- required
;