adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: event-attributes
title: EventAttributes
pagination_label: EventAttributes
sidebar_label: EventAttributes
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EventAttributes']
slug: /tools/sdk/powershell/v3/models/event-attributes
tags: ['SDK', 'Software Development Kit', 'EventAttributes']
---
# EventAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The unique ID of the trigger | [required]
**VarFilter** | Pointer to **String** | JSON path expression that will limit which events the trigger will fire on | [optional]
**Description** | Pointer to **String** | Description of the event trigger | [optional]
**AttributeToFilter** | Pointer to **String** | The attribute to filter on | [optional]
## Examples
- Prepare the resource
```powershell
$EventAttributes = Initialize-PSSailpoint.V3EventAttributes -Id idn:identity-attributes-changed `
-VarFilter $.changes[?(@.attribute == 'manager')] `
-Description Triggered when an identity's manager attribute changes `
-AttributeToFilter LifecycleState
```
- Convert the resource to JSON
```powershell
$EventAttributes | ConvertTo-JSON
```
[[Back to top]](#)