Skip to main content

Requestability

Properties

NameTypeDescriptionNotes
comments_requiredboolIndicates whether the requester of the containing object must provide comments justifying the request.[optional] [default to False]
denial_comments_requiredboolIndicates whether an approver must provide comments when denying the request.[optional] [default to False]
reauthorization_requiredboolIndicates whether reauthorization is required for the request.[optional] [default to False]
require_end_dateboolIndicates whether the requester of the containing object must provide access end date.[optional] [default to False]
max_permitted_access_durationAccessduration[optional]
approval_schemes[]AccessprofileapprovalschemeList describing the steps involved in approving the request.[optional]
}

Example

from sailpoint.dimensions.models.requestability import Requestability

requestability = Requestability(
comments_required=True,
denial_comments_required=True,
reauthorization_required=True,
require_end_date=True,
max_permitted_access_duration=sailpoint.dimensions.models.accessduration.accessduration(
value = 6,
time_unit = 'MONTHS', ),
approval_schemes=[
sailpoint.dimensions.models.accessprofileapprovalscheme.accessprofileapprovalscheme(
approver_type = 'GOVERNANCE_GROUP',
approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
]
)

[Back to top]