Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Revocability.md
2025-04-23 16:48:54 +00:00

1.0 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
beta-revocability Revocability Revocability Revocability pythonsdk
python
Python
sdk
Revocability
BetaRevocability
/tools/sdk/python/beta/models/revocability
SDK
Software Development Kit
Revocability
BetaRevocability

Revocability

Properties

Name Type Description Notes
approval_schemes []AccessProfileApprovalScheme List describing the steps involved in approving the revocation request. [optional]
}

Example

from sailpoint.beta.models.revocability import Revocability

revocability = Revocability(
approval_schemes=[
                    sailpoint.beta.models.access_profile_approval_scheme.AccessProfileApprovalScheme(
                        approver_type = 'GOVERNANCE_GROUP', 
                        approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
                    ]
)

[Back to top]