Skip to main content

AccessRequestPreApprovalRequestedItemsInner

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the access item being requested.[required]
namestrThe human friendly name of the access item.[required]
descriptionstrDetailed description of the access item.[optional]
typeEnum [ 'ACCESS_PROFILE', 'ROLE', 'ENTITLEMENT' ]The type of access item.[required]
operationEnum [ 'Add', 'Remove' ]The action to perform on the access item.[required]
commentstrA comment from the identity requesting the access.[optional]
}

Example

from sailpoint.v2024.models.access_request_pre_approval_requested_items_inner import AccessRequestPreApprovalRequestedItemsInner

access_request_pre_approval_requested_items_inner = AccessRequestPreApprovalRequestedItemsInner(
id='2c91808b6ef1d43e016efba0ce470904',
name='Engineering Access',
description='Access to engineering database',
type=ACCESS_PROFILE,
operation=Add,
comment='William needs this access to do his job.'
)

[Back to top]