Update PowerShell SDK docs: 16507204442

This commit is contained in:
developer-relations-sp
2025-07-24 20:31:57 +00:00
parent 076fc2761f
commit ba44ba0234
76 changed files with 950 additions and 721 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-access-requested-status-change
title: AccessRequestedStatusChange
pagination_label: AccessRequestedStatusChange
sidebar_label: AccessRequestedStatusChange
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessRequestedStatusChange', 'V2024AccessRequestedStatusChange']
slug: /tools/sdk/powershell/v2024/models/access-requested-status-change
tags: ['SDK', 'Software Development Kit', 'AccessRequestedStatusChange', 'V2024AccessRequestedStatusChange']
---
# AccessRequestedStatusChange
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**PreviousStatus** | **Enum** [ "enabled", "disabled", "locked" ] | the previous status of the account | [optional]
**NewStatus** | **Enum** [ "enabled", "disabled", "locked" ] | the new status of the account | [optional]
## Examples
- Prepare the resource
```powershell
$AccessRequestedStatusChange = Initialize-V2024AccessRequestedStatusChange -PreviousStatus enabled `
-NewStatus disabled
```
- Convert the resource to JSON
```powershell
$AccessRequestedStatusChange | ConvertTo-JSON
```
[[Back to top]](#)