add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2025-workgroup-dto
title: WorkgroupDto
pagination_label: WorkgroupDto
sidebar_label: WorkgroupDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'WorkgroupDto', 'V2025WorkgroupDto']
slug: /tools/sdk/python/v2025/models/workgroup-dto
tags: ['SDK', 'Software Development Kit', 'WorkgroupDto', 'V2025WorkgroupDto']
---
# WorkgroupDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**owner** | [**WorkgroupDtoOwner**](workgroup-dto-owner) | | [optional]
**id** | **str** | Governance group ID. | [optional] [readonly]
**name** | **str** | Governance group name. | [optional]
**description** | **str** | Governance group description. | [optional]
**member_count** | **int** | Number of members in the governance group. | [optional] [readonly]
**connection_count** | **int** | Number of connections in the governance group. | [optional] [readonly]
**created** | **datetime** | | [optional]
**modified** | **datetime** | | [optional]
}
## Example
```python
from sailpoint.v2025.models.workgroup_dto import WorkgroupDto
workgroup_dto = WorkgroupDto(
owner=,
id='2c91808568c529c60168cca6f90c1313',
name='DB Access Governance Group',
description='Description of the Governance Group',
member_count=1641498673000,
connection_count=1641498673000,
created='2022-01-06T19:51:13Z',
modified='2022-01-06T19:51:13Z'
)
```
[[Back to top]](#)