Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/WorkgroupConnectionDto.md
2025-02-20 12:59:19 -05:00

1.3 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-workgroup-connection-dto WorkgroupConnectionDto WorkgroupConnectionDto WorkgroupConnectionDto pythonsdk
python
Python
sdk
WorkgroupConnectionDto
BetaWorkgroupConnectionDto
/tools/sdk/python/beta/models/workgroup-connection-dto
SDK
Software Development Kit
WorkgroupConnectionDto
BetaWorkgroupConnectionDto

WorkgroupConnectionDto

Properties

Name Type Description Notes
object ConnectedObject [optional]
connection_type Enum [ 'AccessRequestReviewer', 'Owner', 'ManagementWorkgroup' ] Connection Type. [optional]
}

Example

from sailpoint.beta.models.workgroup_connection_dto import WorkgroupConnectionDto

workgroup_connection_dto = WorkgroupConnectionDto(
object=sailpoint.beta.models.connected_object.ConnectedObject(
                    type = 'ACCESS_PROFILE', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'Employee-database-read-write', 
                    description = 'Collection of entitlements to read/write the employee database.', ),
connection_type='AccessRequestReviewer'
)

[Back to top]