Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/NonEmployeeApprovalSummary.md
2025-04-01 09:23:12 -04: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
v2025-non-employee-approval-summary NonEmployeeApprovalSummary NonEmployeeApprovalSummary NonEmployeeApprovalSummary powershellsdk
powershell
PowerShell
sdk
NonEmployeeApprovalSummary
V2025NonEmployeeApprovalSummary
/tools/sdk/powershell/v2025/models/non-employee-approval-summary
SDK
Software Development Kit
NonEmployeeApprovalSummary
V2025NonEmployeeApprovalSummary

NonEmployeeApprovalSummary

Properties

Name Type Description Notes
Approved Int32 The number of approved non-employee approval requests. [optional]
Pending Int32 The number of pending non-employee approval requests. [optional]
Rejected Int32 The number of rejected non-employee approval requests. [optional]

Examples

  • Prepare the resource
$NonEmployeeApprovalSummary = Initialize-PSSailpoint.V2025NonEmployeeApprovalSummary  -Approved 2 `
 -Pending 2 `
 -Rejected 2
  • Convert the resource to JSON
$NonEmployeeApprovalSummary | ConvertTo-JSON

[Back to top]