Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/RequestedAccountRef.md
2025-05-07 14:37:48 +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
beta-requested-account-ref RequestedAccountRef RequestedAccountRef RequestedAccountRef powershellsdk
powershell
PowerShell
sdk
RequestedAccountRef
BetaRequestedAccountRef
/tools/sdk/powershell/beta/models/requested-account-ref
SDK
Software Development Kit
RequestedAccountRef
BetaRequestedAccountRef

RequestedAccountRef

Properties

Name Type Description Notes
Name String Display name of the account for the user [optional]
Type DtoType [optional]
AccountUuid String The uuid for the account [optional]
AccountId String The native identity for the account [optional]
SourceName String Display name of the source for the account [optional]

Examples

  • Prepare the resource
$RequestedAccountRef = Initialize-BetaRequestedAccountRef  -Name Glen.067da3248e914 `
 -Type null `
 -AccountUuid {fab7119e-004f-4822-9c33-b8d570d6c6a6} `
 -AccountId CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local `
 -SourceName Multi Account AD source name
  • Convert the resource to JSON
$RequestedAccountRef | ConvertTo-JSON

[Back to top]