Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/PreApprovalTriggerDetails.md
2025-01-28 13:29:29 -05: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
v2024-pre-approval-trigger-details PreApprovalTriggerDetails PreApprovalTriggerDetails PreApprovalTriggerDetails powershellsdk
powershell
PowerShell
sdk
PreApprovalTriggerDetails
V2024PreApprovalTriggerDetails
/tools/sdk/powershell/v2024/models/pre-approval-trigger-details
SDK
Software Development Kit
PreApprovalTriggerDetails
V2024PreApprovalTriggerDetails

PreApprovalTriggerDetails

Properties

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

Examples

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

[Back to top]