Update to powershell SDK docs: 15023035004

This commit is contained in:
developer-relations-sp
2025-05-14 14:14:03 +00:00
parent 1da87f2e41
commit d5eba63d0e
23 changed files with 292 additions and 9 deletions

View File

@@ -0,0 +1,35 @@
---
id: beta-entitlement-revocation-request-config
title: EntitlementRevocationRequestConfig
pagination_label: EntitlementRevocationRequestConfig
sidebar_label: EntitlementRevocationRequestConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig']
slug: /tools/sdk/powershell/beta/models/entitlement-revocation-request-config
tags: ['SDK', 'Software Development Kit', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig']
---
# EntitlementRevocationRequestConfig
## 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]
## Examples
- Prepare the resource
```powershell
$EntitlementRevocationRequestConfig = Initialize-BetaEntitlementRevocationRequestConfig -ApprovalSchemes null
```
- Convert the resource to JSON
```powershell
$EntitlementRevocationRequestConfig | ConvertTo-JSON
```
[[Back to top]](#)