access_review_instances_assigned_for_my_approval
Creates, updates, deletes, gets or lists an access_review_instances_assigned_for_my_approval
resource.
Overview
Name | access_review_instances_assigned_for_my_approval |
Type | Resource |
Id | azure.authorization.access_review_instances_assigned_for_my_approval |
Fields
The following fields are returned by SELECT
queries:
- get_by_id
- list
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
id | string | The access review instance id. |
name | string | The access review instance name. |
properties | object | Access Review properties. |
type | string | The resource type. |
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
id | string | The access review instance id. |
name | string | The access review instance name. |
properties | object | Access Review properties. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_by_id | select | scheduleDefinitionId , id | Get single access review instance assigned for my approval. | |
list | select | scheduleDefinitionId | $filter | Get 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.
Name | Datatype | Description |
---|---|---|
id | string | The id of the access review instance. |
scheduleDefinitionId | string | The id of the access review schedule definition. |
$filter | string | The 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_by_id
- list
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
;
Get access review instances assigned for my approval.
SELECT
id,
name,
properties,
type
FROM azure.authorization.access_review_instances_assigned_for_my_approval
WHERE scheduleDefinitionId = '{{ scheduleDefinitionId }}' -- required
AND $filter = '{{ $filter }}'
;