adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-account-attributes-changed-account
title: AccountAttributesChangedAccount
pagination_label: AccountAttributesChangedAccount
sidebar_label: AccountAttributesChangedAccount
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountAttributesChangedAccount', 'BetaAccountAttributesChangedAccount']
slug: /tools/sdk/powershell/beta/models/account-attributes-changed-account
tags: ['SDK', 'Software Development Kit', 'AccountAttributesChangedAccount', 'BetaAccountAttributesChangedAccount']
---
# AccountAttributesChangedAccount
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | SailPoint generated unique identifier. | [required]
**Uuid** | **String** | The source's unique identifier for the account. UUID is generated by the source system. | [required]
**Name** | **String** | Name of the account. | [required]
**NativeIdentity** | **String** | Unique ID of the account on the source. | [required]
**Type** | **Enum** [ "ACCOUNT" ] | The type of the account | [required]
## Examples
- Prepare the resource
```powershell
$AccountAttributesChangedAccount = Initialize-PSSailpoint.BetaAccountAttributesChangedAccount -Id 52170a74-ca89-11ea-87d0-0242ac130003 `
-Uuid 1cb1f07d-3e5a-4431-becd-234fa4306108 `
-Name john.doe `
-NativeIdentity cn=john.doe,ou=users,dc=acme,dc=com `
-Type ACCOUNT
```
- Convert the resource to JSON
```powershell
$AccountAttributesChangedAccount | ConvertTo-JSON
```
[[Back to top]](#)