Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/WorkItemsSummary.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

988 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
work-items-summary WorkItemsSummary WorkItemsSummary WorkItemsSummary powershellsdk
powershell
PowerShell
sdk
WorkItemsSummary
/tools/sdk/powershell/beta/models/work-items-summary
SDK
Software Development Kit
WorkItemsSummary

WorkItemsSummary

Properties

Name Type Description Notes
Open Pointer to Int32 The count of open work items [optional]
Completed Pointer to Int32 The count of completed work items [optional]
Total Pointer to Int32 The count of total work items [optional]

Examples

  • Prepare the resource
$WorkItemsSummary = Initialize-PSSailpoint.BetaWorkItemsSummary  -Open 29 `
 -Completed 1 `
 -Total 30
  • Convert the resource to JSON
$WorkItemsSummary | ConvertTo-JSON

[Back to top]