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

1.1 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-approval-summary ApprovalSummary ApprovalSummary ApprovalSummary powershellsdk
powershell
PowerShell
sdk
ApprovalSummary
V2024ApprovalSummary
/tools/sdk/powershell/v2024/models/approval-summary
SDK
Software Development Kit
ApprovalSummary
V2024ApprovalSummary

ApprovalSummary

Properties

Name Type Description Notes
Pending Pointer to Int32 The number of pending access requests approvals. [optional]
Approved Pointer to Int32 The number of approved access requests approvals. [optional]
Rejected Pointer to Int32 The number of rejected access requests approvals. [optional]

Examples

  • Prepare the resource
$ApprovalSummary = Initialize-PSSailpoint.V2024ApprovalSummary  -Pending 0 `
 -Approved 0 `
 -Rejected 0
  • Convert the resource to JSON
$ApprovalSummary | ConvertTo-JSON

[Back to top]