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

2.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
beta-work-items WorkItems WorkItems WorkItems powershellsdk
powershell
PowerShell
sdk
WorkItems
BetaWorkItems
/tools/sdk/powershell/beta/models/work-items
SDK
Software Development Kit
WorkItems
BetaWorkItems

WorkItems

Properties

Name Type Description Notes
Id Pointer to String ID of the work item [optional]
RequesterId Pointer to String ID of the requester [optional]
RequesterDisplayName Pointer to String The displayname of the requester [optional]
OwnerId Pointer to String The ID of the owner [optional]
OwnerName Pointer to String The name of the owner [optional]
Created Pointer to System.DateTime [optional]
Modified Pointer to System.DateTime [optional]
Description Pointer to String The description of the work item [optional]
State Pointer to WorkItemState [optional]
Type Pointer to WorkItemType [optional]
RemediationItems Pointer to []RemediationItemDetails [optional]
ApprovalItems Pointer to []ApprovalItemDetails [optional]
Name Pointer to String The work item name [optional]
Completed Pointer to System.DateTime [optional]
NumItems Pointer to Int32 The number of items in the work item [optional]
Errors Pointer to []String [optional]
Form Pointer to FormDetails [optional]

Examples

  • Prepare the resource
$WorkItems = Initialize-PSSailpoint.BetaWorkItems  -Id 2c9180835d2e5168015d32f890ca1581 `
 -RequesterId 2c9180835d2e5168015d32f890ca1581 `
 -RequesterDisplayName John Smith `
 -OwnerId 2c9180835d2e5168015d32f890ca1581 `
 -OwnerName Jason Smith `
 -Created 2017-07-11T18:45:37.098Z `
 -Modified 2018-06-25T20:22:28.104Z `
 -Description Create account on source 'AD' `
 -State null `
 -Type null `
 -RemediationItems null `
 -ApprovalItems null `
 -Name Account Create `
 -Completed 2018-10-19T13:49:37.385Z `
 -NumItems 19 `
 -Errors [The work item ID that was specified was not found.] `
 -Form null
  • Convert the resource to JSON
$WorkItems | ConvertTo-JSON

[Back to top]