Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/IdentityAttributePreview.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
v2024-identity-attribute-preview IdentityAttributePreview IdentityAttributePreview IdentityAttributePreview powershellsdk
powershell
PowerShell
sdk
IdentityAttributePreview
V2024IdentityAttributePreview
/tools/sdk/powershell/v2024/models/identity-attribute-preview
SDK
Software Development Kit
IdentityAttributePreview
V2024IdentityAttributePreview

IdentityAttributePreview

Properties

Name Type Description Notes
Name String Name of the attribute that is being previewed. [optional]
Value String Value that was derived during the preview. [optional]
PreviousValue String The value of the attribute before the preview. [optional]
ErrorMessages []ErrorMessageDto List of error messages [optional]

Examples

  • Prepare the resource
$IdentityAttributePreview = Initialize-V2024IdentityAttributePreview  -Name email `
 -Value email@mail.com `
 -PreviousValue oldEmail@mail.com `
 -ErrorMessages {locale=en-US, localeOrigin=DEFAULT, text=Error Message}
  • Convert the resource to JSON
$IdentityAttributePreview | ConvertTo-JSON

[Back to top]