Update to python SDK docs: 13984088294

This commit is contained in:
developer-relations-sp
2025-03-21 03:35:56 +00:00
parent ab8c7f65b5
commit 5109bc43f7
96 changed files with 598 additions and 488 deletions

View File

@@ -21,6 +21,7 @@ Name | Type | Description | Notes
**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
@@ -32,7 +33,8 @@ 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'
attribute_to_filter='LifecycleState',
form_definition_id='Admin_Access_Request_Form'
)
```