Skip to main content

AccessProfileEntitlement

EntitlementReference

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the referenced object.[optional]
namestrThe human readable name of the referenced object.[optional]
display_namestr[optional]
descriptionstrDescription of access item.[optional]
sourceReference[optional]
typestrType of the access item.[optional]
privilegedbool[optional]
attributestr[optional]
valuestr[optional]
standalonebool[optional]
}

Example

from sailpoint.v3.models.access_profile_entitlement import AccessProfileEntitlement

access_profile_entitlement = AccessProfileEntitlement(
id='2c91808568c529c60168cca6f90c1313',
name='John Doe',
display_name='John Q. Doe',
description='',
source=sailpoint.v3.models.reference.Reference(
id = '2c91808568c529c60168cca6f90c1313',
name = 'John Doe', ),
type='ENTITLEMENT',
privileged=False,
attribute='memberOf',
value='CN=Buyer,OU=Groups,OU=Demo,DC=seri,DC=sailpointdemo,DC=com',
standalone=False
)

[Back to top]