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.triggers.models.accessrequestpreapproval_requested_items_inner import AccessrequestpreapprovalRequestedItemsInner

accessrequestpreapproval_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]