Skip to main content

AccessRequestDynamicApproverRequestedItemsInner

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the access item.[required]
namestrHuman friendly name of the access item.[required]
descriptionstrExtended description of the access item.[optional]
typeEnum [ 'ACCESS_PROFILE', 'ROLE', 'ENTITLEMENT' ]The type of access item being requested.[required]
operationEnum [ 'Add', 'Remove' ]Grant or revoke the access item[required]
commentstrA comment from the requestor on why the access is needed.[optional]
}

Example

from sailpoint.v2024.models.access_request_dynamic_approver_requested_items_inner import AccessRequestDynamicApproverRequestedItemsInner

access_request_dynamic_approver_requested_items_inner = AccessRequestDynamicApproverRequestedItemsInner(
id='2c91808b6ef1d43e016efba0ce470904',
name='Engineering Access',
description='Engineering Access',
type=ACCESS_PROFILE,
operation=Add,
comment='William needs this access for his day to day job activities.'
)

[Back to top]