mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: v2024-entitlement-access-request-config
|
||||
title: EntitlementAccessRequestConfig
|
||||
pagination_label: EntitlementAccessRequestConfig
|
||||
sidebar_label: EntitlementAccessRequestConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementAccessRequestConfig', 'V2024EntitlementAccessRequestConfig']
|
||||
slug: /tools/sdk/powershell/v2024/models/entitlement-access-request-config
|
||||
tags: ['SDK', 'Software Development Kit', 'EntitlementAccessRequestConfig', 'V2024EntitlementAccessRequestConfig']
|
||||
---
|
||||
|
||||
|
||||
# EntitlementAccessRequestConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**ApprovalSchemes** | Pointer to [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
|
||||
**RequestCommentRequired** | Pointer to **Boolean** | If the requester must provide a comment during access request. | [optional] [default to $false]
|
||||
**DenialCommentRequired** | Pointer to **Boolean** | If the reviewer must provide a comment when denying the access request. | [optional] [default to $false]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$EntitlementAccessRequestConfig = Initialize-PSSailpoint.V2024EntitlementAccessRequestConfig -ApprovalSchemes null `
|
||||
-RequestCommentRequired true `
|
||||
-DenialCommentRequired false
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$EntitlementAccessRequestConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user