Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccountAttributesChangedAccount.md
2025-02-28 14:46:13 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-account-attributes-changed-account AccountAttributesChangedAccount AccountAttributesChangedAccount AccountAttributesChangedAccount powershellsdk
powershell
PowerShell
sdk
AccountAttributesChangedAccount
BetaAccountAttributesChangedAccount
/tools/sdk/powershell/beta/models/account-attributes-changed-account
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
$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
$AccountAttributesChangedAccount | ConvertTo-JSON

[Back to top]