Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ApprovalSummary.md
2025-02-03 22:09:17 +00:00

1.0 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
beta-approval-summary ApprovalSummary ApprovalSummary ApprovalSummary powershellsdk
powershell
PowerShell
sdk
ApprovalSummary
BetaApprovalSummary
/tools/sdk/powershell/beta/models/approval-summary
SDK
Software Development Kit
ApprovalSummary
BetaApprovalSummary

ApprovalSummary

Properties

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

Examples

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

[Back to top]