adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

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