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

1.3 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
v2024-approval1 Approval1 Approval1 Approval1 powershellsdk
powershell
PowerShell
sdk
Approval1
V2024Approval1
/tools/sdk/powershell/v2024/models/approval1
SDK
Software Development Kit
Approval1
V2024Approval1

Approval1

Properties

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

Examples

  • Prepare the resource
$Approval1 = Initialize-PSSailpoint.V2024Approval1  -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
$Approval1 | ConvertTo-JSON

[Back to top]