Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/WorkgroupDto.md
2025-01-28 13:29:29 -05:00

1.6 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-dto WorkgroupDto WorkgroupDto WorkgroupDto powershellsdk
powershell
PowerShell
sdk
WorkgroupDto
BetaWorkgroupDto
/tools/sdk/powershell/beta/models/workgroup-dto
SDK
Software Development Kit
WorkgroupDto
BetaWorkgroupDto

WorkgroupDto

Properties

Name Type Description Notes
Owner Pointer to WorkgroupDtoOwner [optional]
Id Pointer to String Governance group ID. [optional] [readonly]
Name Pointer to String Governance group name. [optional]
Description Pointer to String Governance group description. [optional]
MemberCount Pointer to Int64 Number of members in the governance group. [optional] [readonly]
ConnectionCount Pointer to Int64 Number of connections in the governance group. [optional] [readonly]
Created Pointer to System.DateTime [optional]
Modified Pointer to System.DateTime [optional]

Examples

  • Prepare the resource
$WorkgroupDto = Initialize-PSSailpoint.BetaWorkgroupDto  -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]