Skip to main content

IdentityAccess

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]
typestrType of the access item.[optional]
sourceReference[optional]
ownerDisplayReference[optional]
revocablebool[optional]
privilegedbool[optional]
attributestr[optional]
valuestr[optional]
standalonebool[optional]
disabledbool[optional]
}

Example

from sailpoint.v2024.models.identity_access import IdentityAccess

identity_access = IdentityAccess(
id='2c91808568c529c60168cca6f90c1313',
name='John Doe',
display_name='John Q. Doe',
description='',
type='ROLE',
source=sailpoint.v2024.models.reference.Reference(
id = '2c91808568c529c60168cca6f90c1313',
name = 'John Doe', ),
owner=,
revocable=True,
privileged=False,
attribute='memberOf',
value='CN=Buyer,OU=Groups,OU=Demo,DC=seri,DC=sailpointdemo,DC=com',
standalone=False,
disabled=True
)

[Back to top]