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: non-employee-approval-summary
title: NonEmployeeApprovalSummary
pagination_label: NonEmployeeApprovalSummary
sidebar_label: NonEmployeeApprovalSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'NonEmployeeApprovalSummary', 'NonEmployeeApprovalSummary']
slug: /tools/sdk/powershell/v3/models/non-employee-approval-summary
tags: ['SDK', 'Software Development Kit', 'NonEmployeeApprovalSummary', 'NonEmployeeApprovalSummary']
---
# NonEmployeeApprovalSummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Approved** | Pointer to **Int32** | The number of approved non-employee approval requests. | [optional]
**Pending** | Pointer to **Int32** | The number of pending non-employee approval requests. | [optional]
**Rejected** | Pointer to **Int32** | The number of rejected non-employee approval requests. | [optional]
## Examples
- Prepare the resource
```powershell
$NonEmployeeApprovalSummary = Initialize-PSSailpoint.V3NonEmployeeApprovalSummary -Approved 2 `
-Pending 2 `
-Rejected 2
```
- Convert the resource to JSON
```powershell
$NonEmployeeApprovalSummary | ConvertTo-JSON
```
[[Back to top]](#)