Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/AttributeChange.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

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

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]