starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-workgroup-connection-dto
title: WorkgroupConnectionDto
pagination_label: WorkgroupConnectionDto
sidebar_label: WorkgroupConnectionDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'WorkgroupConnectionDto', 'BetaWorkgroupConnectionDto']
slug: /tools/sdk/python/beta/models/workgroup-connection-dto
tags: ['SDK', 'Software Development Kit', 'WorkgroupConnectionDto', 'BetaWorkgroupConnectionDto']
---
# WorkgroupConnectionDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**object** | [**ConnectedObject**](connected-object) | | [optional]
**connection_type** | **Enum** [ 'AccessRequestReviewer', 'Owner', 'ManagementWorkgroup' ] | Connection Type. | [optional]
}
## Example
```python
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]](#)