Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/ConnectedObject.md
2025-02-20 12:59:19 -05: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
beta-connected-object ConnectedObject ConnectedObject ConnectedObject pythonsdk
python
Python
sdk
ConnectedObject
BetaConnectedObject
/tools/sdk/python/beta/models/connected-object
SDK
Software Development Kit
ConnectedObject
BetaConnectedObject

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.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]