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

1.1 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-info-dto AccountInfoDto AccountInfoDto AccountInfoDto powershellsdk
powershell
PowerShell
sdk
AccountInfoDto
BetaAccountInfoDto
/tools/sdk/powershell/beta/models/account-info-dto
SDK
Software Development Kit
AccountInfoDto
BetaAccountInfoDto

AccountInfoDto

Properties

Name Type Description Notes
NativeIdentity String The unique ID of the account generated by the source system [optional]
DisplayName String Display name for this account [optional]
Uuid String UUID associated with this account [optional]

Examples

  • Prepare the resource
$AccountInfoDto = Initialize-PSSailpoint.BetaAccountInfoDto  -NativeIdentity CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com `
 -DisplayName Abby.Smith `
 -Uuid {ad9fc391-246d-40af-b248-b6556a2b7c01}
  • Convert the resource to JSON
$AccountInfoDto | ConvertTo-JSON

[Back to top]