Skip to main content

access_review_schedule_definitions_assigned_for_my_approval

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

Overview

Nameaccess_review_schedule_definitions_assigned_for_my_approval
TypeResource
Idazure.authorization.access_review_schedule_definitions_assigned_for_my_approval

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
idstringThe access review schedule definition id.
namestringThe access review schedule definition unique id.
propertiesobjectAccess Review properties.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect$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
$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 access review instances assigned for my approval.

SELECT
id,
name,
properties,
type
FROM azure.authorization.access_review_schedule_definitions_assigned_for_my_approval
WHERE $filter = '{{ $filter }}'
;