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: beta-request-on-behalf-of-config
title: RequestOnBehalfOfConfig
pagination_label: RequestOnBehalfOfConfig
sidebar_label: RequestOnBehalfOfConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestOnBehalfOfConfig', 'BetaRequestOnBehalfOfConfig']
slug: /tools/sdk/powershell/beta/models/request-on-behalf-of-config
tags: ['SDK', 'Software Development Kit', 'RequestOnBehalfOfConfig', 'BetaRequestOnBehalfOfConfig']
---
# RequestOnBehalfOfConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AllowRequestOnBehalfOfAnyoneByAnyone** | Pointer to **Boolean** | If this is true, anyone can request access for anyone. | [optional] [default to $false]
**AllowRequestOnBehalfOfEmployeeByManager** | Pointer to **Boolean** | If this is true, a manager can request access for his or her direct reports. | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$RequestOnBehalfOfConfig = Initialize-PSSailpoint.BetaRequestOnBehalfOfConfig -AllowRequestOnBehalfOfAnyoneByAnyone true `
-AllowRequestOnBehalfOfEmployeeByManager true
```
- Convert the resource to JSON
```powershell
$RequestOnBehalfOfConfig | ConvertTo-JSON
```
[[Back to top]](#)