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,37 @@
---
id: v2024-bulk-approve-access-request
title: BulkApproveAccessRequest
pagination_label: BulkApproveAccessRequest
sidebar_label: BulkApproveAccessRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'BulkApproveAccessRequest', 'V2024BulkApproveAccessRequest']
slug: /tools/sdk/powershell/v2024/models/bulk-approve-access-request
tags: ['SDK', 'Software Development Kit', 'BulkApproveAccessRequest', 'V2024BulkApproveAccessRequest']
---
# 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]](#)