Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/AttributeChange.md
2025-05-07 14:37:48 +00:00

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

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-V2025AttributeChange  -Name null `
 -PreviousValue null `
 -NewValue null
  • Convert the resource to JSON
$AttributeChange | ConvertTo-JSON

[Back to top]