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