Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ConnectedObject.md
2025-04-01 09:23:12 -04:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-connected-object ConnectedObject ConnectedObject ConnectedObject pythonsdk
python
Python
sdk
ConnectedObject
V2025ConnectedObject
/tools/sdk/python/v2025/models/connected-object
SDK
Software Development Kit
ConnectedObject
V2025ConnectedObject

ConnectedObject

Properties

Name Type Description Notes
type ConnectedObjectType [optional]
id str ID of the object to which this reference applies [optional]
name str Human-readable name of Connected object [optional]
description str Description of the Connected object. [optional]
}

Example

from sailpoint.v2025.models.connected_object import ConnectedObject

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

[Back to top]