add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
id: v2025-event-attributes
title: EventAttributes
pagination_label: EventAttributes
sidebar_label: EventAttributes
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'EventAttributes', 'V2025EventAttributes']
slug: /tools/sdk/python/v2025/models/event-attributes
tags: ['SDK', 'Software Development Kit', 'EventAttributes', 'V2025EventAttributes']
---
# EventAttributes
Attributes related to an IdentityNow ETS event
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique ID of the trigger | [required]
**filter_** | **str** | JSON path expression that will limit which events the trigger will fire on | [optional]
**description** | **str** | Description of the event trigger | [optional]
**attribute_to_filter** | **str** | The attribute to filter on | [optional]
**form_definition_id** | **str** | Form definition's unique identifier. | [optional]
}
## Example
```python
from sailpoint.v2025.models.event_attributes import EventAttributes
event_attributes = EventAttributes(
id='idn:identity-attributes-changed',
filter_='$.changes[?(@.attribute == 'manager')]',
description='Triggered when an identity's manager attribute changes',
attribute_to_filter='LifecycleState',
form_definition_id='Admin_Access_Request_Form'
)
```
[[Back to top]](#)