adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: approval-summary
title: ApprovalSummary
pagination_label: ApprovalSummary
sidebar_label: ApprovalSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalSummary']
slug: /tools/sdk/powershell/v2024/models/approval-summary
tags: ['SDK', 'Software Development Kit', 'ApprovalSummary']
---
# 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
```powershell
$ApprovalSummary = Initialize-PSSailpoint.V2024ApprovalSummary -Pending 0 `
-Approved 0 `
-Rejected 0
```
- Convert the resource to JSON
```powershell
$ApprovalSummary | ConvertTo-JSON
```
[[Back to top]](#)