Update PowerShell SDK docs: 16148673912

This commit is contained in:
developer-relations-sp
2025-07-08 16:16:31 +00:00
parent 5bf98f5958
commit 16e520a919
5 changed files with 79 additions and 20 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2025-access-action-configuration
title: AccessActionConfiguration
pagination_label: AccessActionConfiguration
sidebar_label: AccessActionConfiguration
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessActionConfiguration', 'V2025AccessActionConfiguration']
slug: /tools/sdk/powershell/v2025/models/access-action-configuration
tags: ['SDK', 'Software Development Kit', 'AccessActionConfiguration', 'V2025AccessActionConfiguration']
---
# AccessActionConfiguration
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RemoveAllAccessEnabled** | **Boolean** | If true, then all accesses are marked for removal. | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$AccessActionConfiguration = Initialize-V2025AccessActionConfiguration -RemoveAllAccessEnabled true
```
- Convert the resource to JSON
```powershell
$AccessActionConfiguration | ConvertTo-JSON
```
[[Back to top]](#)