Skip to main content

ReviewableEntitlementAccount

Information about the status of the entitlement

Properties

NameTypeDescriptionNotes
native_identitystrThe native identity for this account[optional]
disabledboolIndicates whether this account is currently disabled[optional] [default to False]
lockedboolIndicates whether this account is currently locked[optional] [default to False]
typeDtoType[optional]
idstrThe id associated with the account[optional]
namestrThe account name[optional]
createddatetimeWhen the account was created[optional]
modifieddatetimeWhen the account was last modified[optional]
activity_insightsActivityInsights[optional]
descriptionstrInformation about the account[optional]
governance_group_idstrThe id associated with the machine Account Governance Group[optional]
ownerReviewableEntitlementAccountOwner[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]