Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/ReviewableEntitlementAccount.md
2025-02-20 12:59:19 -05:00

2.6 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
reviewable-entitlement-account ReviewableEntitlementAccount ReviewableEntitlementAccount ReviewableEntitlementAccount pythonsdk
python
Python
sdk
ReviewableEntitlementAccount
ReviewableEntitlementAccount
/tools/sdk/python/v3/models/reviewable-entitlement-account
SDK
Software Development Kit
ReviewableEntitlementAccount
ReviewableEntitlementAccount

ReviewableEntitlementAccount

Information about the status of the entitlement

Properties

Name Type Description Notes
native_identity str The native identity for this account [optional]
disabled bool Indicates whether this account is currently disabled [optional] [default to False]
locked bool Indicates whether this account is currently locked [optional] [default to False]
type DtoType [optional]
id str The id associated with the account [optional]
name str The account name [optional]
created datetime When the account was created [optional]
modified datetime When the account was last modified [optional]
activity_insights ActivityInsights [optional]
description str Information about the account [optional]
governance_group_id str The id associated with the machine Account Governance Group [optional]
owner ReviewableEntitlementAccountOwner [optional]
}

Example

from sailpoint.v3.models.reviewable_entitlement_account import ReviewableEntitlementAccount

reviewable_entitlement_account = ReviewableEntitlementAccount(
native_identity='CN=Alison Ferguso',
disabled=False,
locked=False,
type='IDENTITY',
id='2c9180857182305e0171993737eb29e6',
name='Alison Ferguso',
created='2020-04-20T20:11:05.067Z',
modified='2020-05-20T18:57:16.987Z',
activity_insights=sailpoint.v3.models.activity_insights.ActivityInsights(
                    account_id = 'c4ddd5421d8549f0abd309162cafd3b1', 
                    usage_days = 45, 
                    usage_days_state = 'COMPLETE', ),
description='Account for Read/write to the company database',
governance_group_id='2c9180857182305e0171993737eb29e6',
owner=sailpoint.v3.models.reviewable_entitlement_account_owner.ReviewableEntitlement_account_owner(
                    id = '2c9180857182305e0171993737eb29e8', 
                    type = 'IDENTITY', 
                    display_name = 'Alison Ferguson', )
)

[Back to top]