mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.3 KiB
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 |
|
/tools/sdk/python/beta/models/workgroup-connection-dto |
|
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'
)