Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/IdentityAttributePreview.md
2025-02-03 22:09:17 +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
identity-attribute-preview IdentityAttributePreview IdentityAttributePreview IdentityAttributePreview powershellsdk
powershell
PowerShell
sdk
IdentityAttributePreview
IdentityAttributePreview
/tools/sdk/powershell/v3/models/identity-attribute-preview
SDK
Software Development Kit
IdentityAttributePreview
IdentityAttributePreview

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 [optional]

Examples

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

[Back to top]