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

@@ -18,17 +18,17 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**EventType** | **String** | the event type | [optional]
**IdentityId** | **String** | the identity id | [optional]
**Dt** | **String** | the date of event | [optional]
**Account** | [**AccountStatusChangedAccount**](account-status-changed-account) | | [optional]
**StatusChange** | [**AccountStatusChangedStatusChange**](account-status-changed-status-change) | | [optional]
**DateTime** | **String** | the date of event | [optional]
**Account** | [**AccountStatusChangedAccount**](account-status-changed-account) | | [required]
**StatusChange** | [**AccountStatusChangedStatusChange**](account-status-changed-status-change) | | [required]
## Examples
- Prepare the resource
```powershell
$AccountStatusChanged = Initialize-BetaAccountStatusChanged -EventType null `
-IdentityId null `
-Dt null `
$AccountStatusChanged = Initialize-BetaAccountStatusChanged -EventType AccountStatusChanged `
-IdentityId 8a80828f643d484f01643e14202e206f `
-DateTime 2019-03-08T22:37:33.901Z `
-Account null `
-StatusChange null
```