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

1.2 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
approval Approval Approval Approval powershellsdk
powershell
PowerShell
sdk
Approval
Approval
/tools/sdk/powershell/v3/models/approval
SDK
Software Development Kit
Approval
Approval

Approval

Properties

Name Type Description Notes
Comments []ApprovalComment [optional]
Created System.DateTime A date-time in ISO-8601 format [optional]
Modified System.DateTime A date-time in ISO-8601 format [optional]
Owner AccountSource [optional]
Result String The result of the approval [optional]
Type String [optional]

Examples

  • Prepare the resource
$Approval = Initialize-PSSailpoint.V3Approval  -Comments null `
 -Created 2018-06-25T20:22:28.104Z `
 -Modified 2018-06-25T20:22:28.104Z `
 -Owner null `
 -Result Finished `
 -Type null
  • Convert the resource to JSON
$Approval | ConvertTo-JSON

[Back to top]