Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/IdentityAttributePreview.md
2025-01-28 13:29:29 -05: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 Pointer to String Name of the attribute that is being previewed. [optional]
Value Pointer to String Value that was derived during the preview. [optional]
PreviousValue Pointer to String The value of the attribute before the preview. [optional]
ErrorMessages Pointer to []ErrorMessageDto [optional]

Examples

  • Prepare the resource
$IdentityAttributePreview = Initialize-PSSailpoint.V2024IdentityAttributePreview  -Name email `
 -Value email@mail.com `
 -PreviousValue oldEmail@mail.com `
 -ErrorMessages null
  • Convert the resource to JSON
$IdentityAttributePreview | ConvertTo-JSON

[Back to top]