Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/WorkgroupDto.md
2025-02-03 22:09:17 +00:00

1.5 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
v2024-workgroup-dto WorkgroupDto WorkgroupDto WorkgroupDto powershellsdk
powershell
PowerShell
sdk
WorkgroupDto
V2024WorkgroupDto
/tools/sdk/powershell/v2024/models/workgroup-dto
SDK
Software Development Kit
WorkgroupDto
V2024WorkgroupDto

WorkgroupDto

Properties

Name Type Description Notes
Owner WorkgroupDtoOwner [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
$WorkgroupDto = Initialize-PSSailpoint.V2024WorkgroupDto  -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
$WorkgroupDto | ConvertTo-JSON

[Back to top]