Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AttributeChange.md
2025-01-28 13:29:29 -05:00

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

AttributeChange

Properties

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

Examples

  • Prepare the resource
$AttributeChange = Initialize-PSSailpoint.BetaAttributeChange  -Name null `
 -PreviousValue null `
 -NewValue null
  • Convert the resource to JSON
$AttributeChange | ConvertTo-JSON

[Back to top]