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,49 @@
---
id: v2025-workgroup-dto
title: WorkgroupDto
pagination_label: WorkgroupDto
sidebar_label: WorkgroupDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkgroupDto', 'V2025WorkgroupDto']
slug: /tools/sdk/powershell/v2025/models/workgroup-dto
tags: ['SDK', 'Software Development Kit', 'WorkgroupDto', 'V2025WorkgroupDto']
---
# WorkgroupDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Owner** | [**WorkgroupDtoOwner**](workgroup-dto-owner) | | [optional]
**Id** | **String** | Governance group ID. | [optional] [readonly]
**Name** | **String** | Governance group name. | [optional]
**Description** | **String** | Governance group description. | [optional]
**MemberCount** | **Int64** | Number of members in the governance group. | [optional] [readonly]
**ConnectionCount** | **Int64** | Number of connections in the governance group. | [optional] [readonly]
**Created** | **System.DateTime** | | [optional]
**Modified** | **System.DateTime** | | [optional]
## Examples
- Prepare the resource
```powershell
$WorkgroupDto = Initialize-PSSailpoint.V2025WorkgroupDto -Owner null `
-Id 2c91808568c529c60168cca6f90c1313 `
-Name DB Access Governance Group `
-Description Description of the Governance Group `
-MemberCount 1641498673000 `
-ConnectionCount 1641498673000 `
-Created 2022-01-06T19:51:13Z `
-Modified 2022-01-06T19:51:13Z
```
- Convert the resource to JSON
```powershell
$WorkgroupDto | ConvertTo-JSON
```
[[Back to top]](#)