Skip to main content

WorkgroupDto

Properties

NameTypeDescriptionNotes
OwnerWorkgroupDtoOwner[optional]
IdStringGovernance group ID.[optional] [readonly]
NameStringGovernance group name.[optional]
DescriptionStringGovernance group description.[optional]
MemberCountInt64Number of members in the governance group.[optional] [readonly]
ConnectionCountInt64Number of connections in the governance group.[optional] [readonly]
CreatedSystem.DateTime[optional]
ModifiedSystem.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]