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

1.1 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-event-attributes EventAttributes EventAttributes EventAttributes powershellsdk
powershell
PowerShell
sdk
EventAttributes
BetaEventAttributes
/tools/sdk/powershell/beta/models/event-attributes
SDK
Software Development Kit
EventAttributes
BetaEventAttributes

EventAttributes

Properties

Name Type Description Notes
Id String The unique ID of the trigger [required]
VarFilter String JSON path expression that will limit which events the trigger will fire on [optional]
Description String Description of the event trigger [optional]

Examples

  • Prepare the resource
$EventAttributes = Initialize-PSSailpoint.BetaEventAttributes  -Id idn:identity-attributes-changed `
 -VarFilter $.changes[?(@.attribute == 'manager')] `
 -Description null
  • Convert the resource to JSON
$EventAttributes | ConvertTo-JSON

[Back to top]