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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-entitlement-approval-scheme | EntitlementApprovalScheme | EntitlementApprovalScheme | EntitlementApprovalScheme | pythonsdk |
|
/tools/sdk/python/beta/models/entitlement-approval-scheme |
|
EntitlementApprovalScheme
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| approver_type | Enum [ 'ENTITLEMENT_OWNER', 'SOURCE_OWNER', 'MANAGER', 'GOVERNANCE_GROUP' ] | Describes the individual or group that is responsible for an approval step. Values are as follows. ENTITLEMENT_OWNER: Owner of the associated Entitlement SOURCE_OWNER: Owner of the associated Source MANAGER: Manager of the Identity for whom the request is being made GOVERNANCE_GROUP: A Governance Group, the ID of which is specified by the approverId field | [optional] |
| approver_id | str | Id of the specific approver, used only when approverType is GOVERNANCE_GROUP | [optional] |
| } |
Example
from sailpoint.beta.models.entitlement_approval_scheme import EntitlementApprovalScheme
entitlement_approval_scheme = EntitlementApprovalScheme(
approver_type='GOVERNANCE_GROUP',
approver_id='e3eab852-8315-467f-9de7-70eda97f63c8'
)