Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/AccountInfoRef.md
2025-04-11 15:52:43 +00:00

1.3 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
v2025-account-info-ref AccountInfoRef AccountInfoRef AccountInfoRef powershellsdk
powershell
PowerShell
sdk
AccountInfoRef
V2025AccountInfoRef
/tools/sdk/powershell/v2025/models/account-info-ref
SDK
Software Development Kit
AccountInfoRef
V2025AccountInfoRef

AccountInfoRef

Properties

Name Type Description Notes
Uuid String The uuid for the account, available under the 'objectguid' attribute [optional]
NativeIdentity String The 'distinguishedName' attribute for the account [optional]
Type DtoType [optional]
Id String The account id [optional]
Name String The account display name [optional]

Examples

  • Prepare the resource
$AccountInfoRef = Initialize-PSSailpoint.V2025AccountInfoRef  -Uuid {fab7119e-004f-4822-9c33-b8d570d6c6a6} `
 -NativeIdentity CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local `
 -Type null `
 -Id f19d168c27374fd1aff3b483573f997f `
 -Name UserAccount.761a2248b
  • Convert the resource to JSON
$AccountInfoRef | ConvertTo-JSON

[Back to top]