mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.5 KiB
1.5 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-revocability-for-role | RevocabilityForRole | RevocabilityForRole | RevocabilityForRole | pythonsdk |
|
/tools/sdk/python/v2024/models/revocability-for-role |
|
RevocabilityForRole
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| comments_required | bool | Whether the requester of the containing object must provide comments justifying the request | [optional] [default to False] |
| denial_comments_required | bool | Whether an approver must provide comments when denying the request | [optional] [default to False] |
| approval_schemes | []ApprovalSchemeForRole | List describing the steps in approving the revocation request | [optional] |
| } |
Example
from sailpoint.v2024.models.revocability_for_role import RevocabilityForRole
revocability_for_role = RevocabilityForRole(
comments_required=False,
denial_comments_required=False,
approval_schemes=[
sailpoint.v2024.models.approval_scheme_for_role.ApprovalSchemeForRole(
approver_type = 'GOVERNANCE_GROUP',
approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
]
)