Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AttributeChange.md
2025-02-03 22:09:17 +00:00

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

[Back to top]