removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,43 +0,0 @@
---
id: account-status-changed
title: AccountStatusChanged
pagination_label: AccountStatusChanged
sidebar_label: AccountStatusChanged
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountStatusChanged']
slug: /tools/sdk/powershell/beta/models/account-status-changed
tags: ['SDK', 'Software Development Kit', 'AccountStatusChanged']
---
# AccountStatusChanged
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**EventType** | Pointer to **String** | the event type | [optional]
**IdentityId** | Pointer to **String** | the identity id | [optional]
**Dt** | Pointer to **String** | the date of event | [optional]
**Account** | Pointer to [**AccountStatusChangedAccount**](account-status-changed-account) | | [optional]
**StatusChange** | Pointer to [**AccountStatusChangedStatusChange**](account-status-changed-status-change) | | [optional]
## Examples
- Prepare the resource
```powershell
$AccountStatusChanged = Initialize-PSSailpoint.BetaAccountStatusChanged -EventType null `
-IdentityId null `
-Dt null `
-Account null `
-StatusChange null
```
- Convert the resource to JSON
```powershell
$AccountStatusChanged | ConvertTo-JSON
```
[[Back to top]](#)