--- id: v2025-entitlement-access-request-config title: EntitlementAccessRequestConfig pagination_label: EntitlementAccessRequestConfig sidebar_label: EntitlementAccessRequestConfig sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementAccessRequestConfig', 'V2025EntitlementAccessRequestConfig'] slug: /tools/sdk/powershell/v2025/models/entitlement-access-request-config tags: ['SDK', 'Software Development Kit', 'EntitlementAccessRequestConfig', 'V2025EntitlementAccessRequestConfig'] --- # EntitlementAccessRequestConfig ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ApprovalSchemes** | [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional] **RequestCommentRequired** | **Boolean** | If the requester must provide a comment during access request. | [optional] [default to $false] **DenialCommentRequired** | **Boolean** | If the reviewer must provide a comment when denying the access request. | [optional] [default to $false] **ReauthorizationRequired** | **Boolean** | Is Reauthorization Required | [optional] [default to $false] ## Examples - Prepare the resource ```powershell $EntitlementAccessRequestConfig = Initialize-V2025EntitlementAccessRequestConfig -ApprovalSchemes null ` -RequestCommentRequired true ` -DenialCommentRequired false ` -ReauthorizationRequired false ``` - Convert the resource to JSON ```powershell $EntitlementAccessRequestConfig | ConvertTo-JSON ``` [[Back to top]](#)