Skip to main content

access_review_schedule_definitions

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

Overview

Nameaccess_review_schedule_definitions
TypeResource
Idazure.authorization.access_review_schedule_definitions

Fields

NameDatatypeDescription
idtextThe access review schedule definition id.
nametextThe access review schedule definition unique id.
backup_reviewerstextfield from the properties object
created_bytextfield from the properties object
description_for_adminstextfield from the properties object
description_for_reviewerstextfield from the properties object
display_nametextfield from the properties object
instancestextfield from the properties object
reviewerstextfield from the properties object
reviewers_typetextfield from the properties object
scheduleDefinitionIdtextfield from the properties object
scopetextfield from the properties object
settingstextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
get_by_idSELECTscheduleDefinitionId, subscriptionIdGet single access review definition
listSELECTsubscriptionIdGet access review schedule definitions
delete_by_idDELETEscheduleDefinitionId, subscriptionIdDelete access review schedule definition
stopEXECscheduleDefinitionId, subscriptionIdStop access review definition

SELECT examples

Get access review schedule definitions

SELECT
id,
name,
backup_reviewers,
created_by,
description_for_admins,
description_for_reviewers,
display_name,
instances,
reviewers,
reviewers_type,
scheduleDefinitionId,
scope,
settings,
status,
subscriptionId,
type
FROM azure.authorization.vw_access_review_schedule_definitions
WHERE subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified access_review_schedule_definitions resource.

/*+ delete */
DELETE FROM azure.authorization.access_review_schedule_definitions
WHERE scheduleDefinitionId = '{{ scheduleDefinitionId }}'
AND subscriptionId = '{{ subscriptionId }}';