adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-bulk-approve-access-request
title: BulkApproveAccessRequest
pagination_label: BulkApproveAccessRequest
sidebar_label: BulkApproveAccessRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BulkApproveAccessRequest']
slug: /tools/sdk/powershell/v2024/models/bulk-approve-access-request
tags: ['SDK', 'Software Development Kit', 'BulkApproveAccessRequest']
---
# BulkApproveAccessRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ApprovalIds** | **[]String** | List of approval ids to approve the pending requests | [required]
**Comment** | **String** | Reason for approving the pending access request. | [required]
## Examples
- Prepare the resource
```powershell
$BulkApproveAccessRequest = Initialize-PSSailpoint.V2024BulkApproveAccessRequest -ApprovalIds [2c9180835d2e5168015d32f890ca1581, 2c9180835d2e5168015d32f890ca1582] `
-Comment I approve these request items
```
- Convert the resource to JSON
```powershell
$BulkApproveAccessRequest | ConvertTo-JSON
```
[[Back to top]](#)