mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
Update to python SDK docs: 13984088294
This commit is contained in:
@@ -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'
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
||||
**time_zone** | **str** | Time zone identifier | [optional]
|
||||
**weekly_days** | **[]str** | Scheduled days of the week for execution | [optional]
|
||||
**weekly_times** | **[]str** | Scheduled execution times | [optional]
|
||||
**yearly_times** | **[]str** | Scheduled execution times | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -34,7 +35,8 @@ cron_string='0 9 * * 1',
|
||||
frequency='daily',
|
||||
time_zone='America/Chicago',
|
||||
weekly_days=Monday,
|
||||
weekly_times=Monday
|
||||
weekly_times=Monday,
|
||||
yearly_times=1969-12-31T09:00:00.000Z
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
@@ -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** | Additonal context about the external trigger | [optional]
|
||||
**attribute_to_filter** | **str** | The attribute to filter on | [optional]
|
||||
**form_definition_id** | **str** | Form definition's unique identifier. | [optional]
|
||||
**name** | **str** | A unique name for the external trigger | [optional]
|
||||
**client_id** | **str** | OAuth Client ID to authenticate with this trigger | [optional]
|
||||
**url** | **str** | URL to invoke this workflow | [optional]
|
||||
@@ -29,6 +30,7 @@ Name | Type | Description | Notes
|
||||
**time_zone** | **str** | Time zone identifier | [optional]
|
||||
**weekly_days** | **[]str** | Scheduled days of the week for execution | [optional]
|
||||
**weekly_times** | **[]str** | Scheduled execution times | [optional]
|
||||
**yearly_times** | **[]str** | Scheduled execution times | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -41,6 +43,7 @@ id='idn:identity-attributes-changed',
|
||||
filter_='$.changes[?(@.attribute == 'manager')]',
|
||||
description='Run a search and notify the results',
|
||||
attribute_to_filter='LifecycleState',
|
||||
form_definition_id='Admin_Access_Request_Form',
|
||||
name='search-and-notify',
|
||||
client_id='87e239b2-b85b-4bde-b9a7-55bf304ddcdc',
|
||||
url='https://tenant.api.identitynow.com/beta/workflows/execute/external/c79e0079-562c-4df5-aa73-60a9e25c916d',
|
||||
@@ -48,7 +51,8 @@ cron_string='0 9 * * 1',
|
||||
frequency='daily',
|
||||
time_zone='America/Chicago',
|
||||
weekly_days=Monday,
|
||||
weekly_times=Monday
|
||||
weekly_times=Monday,
|
||||
yearly_times=1969-12-31T09:00:00.000Z
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user