Skip to main content

Revocabilityforrole

Properties

NameTypeDescriptionNotes
comments_requiredboolWhether the requester of the containing object must provide comments justifying the request[optional] [default to False]
denial_comments_requiredboolWhether an approver must provide comments when denying the request[optional] [default to False]
approval_schemes[]ApprovalschemeforroleList describing the steps in approving the revocation request[optional]
}

Example

from sailpoint.roles.models.revocabilityforrole import Revocabilityforrole

revocabilityforrole = Revocabilityforrole(
comments_required=False,
denial_comments_required=False,
approval_schemes=[
sailpoint.roles.models.approvalschemeforrole.approvalschemeforrole(
approver_type = 'GOVERNANCE_GROUP',
approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
]
)

[Back to top]