Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/PreApprovalTriggerDetails.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
pre-approval-trigger-details PreApprovalTriggerDetails PreApprovalTriggerDetails PreApprovalTriggerDetails powershellsdk
powershell
PowerShell
sdk
PreApprovalTriggerDetails
PreApprovalTriggerDetails
/tools/sdk/powershell/v3/models/pre-approval-trigger-details
SDK
Software Development Kit
PreApprovalTriggerDetails
PreApprovalTriggerDetails

PreApprovalTriggerDetails

Properties

Name Type Description Notes
Comment String Comment left for the pre-approval decision [optional]
Reviewer String The reviewer of the pre-approval decision [optional]
Decision Enum [ "APPROVED", "REJECTED" ] The decision of the pre-approval trigger [optional]

Examples

  • Prepare the resource
$PreApprovalTriggerDetails = Initialize-PSSailpoint.V3PreApprovalTriggerDetails  -Comment Access is Approved `
 -Reviewer John Doe `
 -Decision APPROVED
  • Convert the resource to JSON
$PreApprovalTriggerDetails | ConvertTo-JSON

[Back to top]