Skip to main content

Identityentitlementdetailsentitlementdto

Properties

NameTypeDescriptionNotes
idstrThe entitlement id[optional]
namestrThe entitlement name[optional]
createddatetimeTime when the entitlement was last modified[optional]
modifieddatetimeTime when the entitlement was last modified[optional]
descriptionstrThe description of the entitlement[optional]
typestrThe type of the object, will always be "ENTITLEMENT"[optional]
source_idstrThe source ID[optional]
source_namestrThe source name[optional]
ownerOwnerdto[optional]
valuestrThe value of the entitlement[optional]
flags[]stra list of properties informing the viewer about the entitlement[optional]
}

Example

from sailpoint.access_requests.models.identityentitlementdetailsentitlementdto import Identityentitlementdetailsentitlementdto

identityentitlementdetailsentitlementdto = Identityentitlementdetailsentitlementdto(
id='2c91808874ff91550175097daaec161c',
name='LauncherTest2',
created='2020-10-08T18:33:52.029Z',
modified='2020-10-08T18:33:52.029Z',
description='CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local',
type='ENTITLEMENT',
source_id='2c9180827ca885d7017ca8ce28a000eb',
source_name='ODS-AD-Source',
owner=sailpoint.access_requests.models.owner_dto.Owner Dto(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Support', ),
value='CN=LauncherTest2,OU=LauncherTestOrg,OU=slpt-automation,DC=TestAutomationAD,DC=local',
flags=["privileged"]
)

[Back to top]