Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AttributeChange.md
2025-07-24 20:31:57 +00:00

993 B

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-attribute-change AttributeChange AttributeChange AttributeChange powershellsdk
powershell
PowerShell
sdk
AttributeChange
V2024AttributeChange
/tools/sdk/powershell/v2024/models/attribute-change
SDK
Software Development Kit
AttributeChange
V2024AttributeChange

AttributeChange

Properties

Name Type Description Notes
Name String the attribute name [optional]
PreviousValue String the old value of attribute [optional]
NewValue String the new value of attribute [optional]

Examples

  • Prepare the resource
$AttributeChange = Initialize-V2024AttributeChange  -Name firstname `
 -PreviousValue adam `
 -NewValue zampa
  • Convert the resource to JSON
$AttributeChange | ConvertTo-JSON

[Back to top]