Skip to main content

ConnectedObject

Properties

NameTypeDescriptionNotes
typeConnectedObjectType[optional]
idstrID of the object to which this reference applies[optional]
namestrHuman-readable name of Connected object[optional]
descriptionstrDescription of the Connected object.[optional]
}

Example

from sailpoint.beta.models.connected_object import ConnectedObject

connected_object = ConnectedObject(
type='ACCESS_PROFILE',
id='2c91808568c529c60168cca6f90c1313',
name='Employee-database-read-write',
description='Collection of entitlements to read/write the employee database.'
)

[Back to top]