Skip to main content

scope_access_review_schedule_definitions

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

Overview

Namescope_access_review_schedule_definitions
TypeResource
Idazure.authorization.scope_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
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
get_by_idSELECTscheduleDefinitionId, scopeGet single access review definition
listSELECTscopeGet access review schedule definitions
delete_by_idDELETEscheduleDefinitionId, scopeDelete access review schedule definition
stopEXECscheduleDefinitionId, scopeStop 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,
type
FROM azure.authorization.vw_scope_access_review_schedule_definitions
WHERE scope = '{{ scope }}';

DELETE example

Deletes the specified scope_access_review_schedule_definitions resource.

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