files-com 1.6.32__py3-none-any.whl → 1.6.137__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. README.md +81 -18
  2. _VERSION +1 -1
  3. {files_com-1.6.32.dist-info → files_com-1.6.137.dist-info}/METADATA +82 -19
  4. {files_com-1.6.32.dist-info → files_com-1.6.137.dist-info}/RECORD +49 -46
  5. files_sdk/__init__.py +9 -1
  6. files_sdk/error.py +113 -23
  7. files_sdk/models/__init__.py +5 -0
  8. files_sdk/models/api_key.py +10 -0
  9. files_sdk/models/api_request_log.py +6 -6
  10. files_sdk/models/automation.py +48 -5
  11. files_sdk/models/automation_log.py +6 -6
  12. files_sdk/models/behavior.py +2 -2
  13. files_sdk/models/bundle_action.py +5 -1
  14. files_sdk/models/bundle_registration.py +1 -1
  15. files_sdk/models/child_site_management_policy.py +278 -0
  16. files_sdk/models/email_log.py +5 -12
  17. files_sdk/models/exavault_api_request_log.py +6 -6
  18. files_sdk/models/file.py +8 -0
  19. files_sdk/models/file_migration_log.py +5 -12
  20. files_sdk/models/folder.py +11 -1
  21. files_sdk/models/ftp_action_log.py +6 -6
  22. files_sdk/models/gpg_key.py +29 -9
  23. files_sdk/models/history_export.py +4 -4
  24. files_sdk/models/history_export_result.py +2 -2
  25. files_sdk/models/inbox_registration.py +1 -1
  26. files_sdk/models/invoice_line_item.py +5 -0
  27. files_sdk/models/outbound_connection_log.py +6 -6
  28. files_sdk/models/partner.py +296 -0
  29. files_sdk/models/permission.py +10 -2
  30. files_sdk/models/public_hosting_request_log.py +6 -6
  31. files_sdk/models/public_key.py +7 -3
  32. files_sdk/models/remote_mount_backend.py +1 -0
  33. files_sdk/models/remote_server.py +65 -91
  34. files_sdk/models/remote_server_configuration_file.py +1 -0
  35. files_sdk/models/scim_log.py +88 -0
  36. files_sdk/models/sftp_action_log.py +6 -6
  37. files_sdk/models/siem_http_destination.py +98 -19
  38. files_sdk/models/site.py +37 -12
  39. files_sdk/models/sso_strategy.py +2 -1
  40. files_sdk/models/sync.py +74 -10
  41. files_sdk/models/sync_log.py +7 -13
  42. files_sdk/models/sync_run.py +31 -17
  43. files_sdk/models/user.py +79 -2
  44. files_sdk/models/user_cipher_use.py +24 -1
  45. files_sdk/models/user_lifecycle_rule.py +81 -40
  46. files_sdk/models/web_dav_action_log.py +6 -6
  47. {files_com-1.6.32.dist-info → files_com-1.6.137.dist-info}/WHEEL +0 -0
  48. {files_com-1.6.32.dist-info → files_com-1.6.137.dist-info}/licenses/LICENSE +0 -0
  49. {files_com-1.6.32.dist-info → files_com-1.6.137.dist-info}/top_level.txt +0 -0
@@ -41,8 +41,9 @@ class Automation:
41
41
  "schedule_times_of_day": None, # array(string) - If trigger is `custom_schedule`, Custom schedule description for when the automation should be run. Times of day in HH:MM format.
42
42
  "schedule_time_zone": None, # string - If trigger is `custom_schedule`, Custom schedule Time Zone for when the automation should be run.
43
43
  "source": None, # string - Source path/glob. See Automation docs for exact description, but this is used to filter for files in the `path` to find files to operate on. Supports globs, except on remote mounts.
44
- "sync_ids": None, # array(int64) - IDs of remote sync folder behaviors to run by this Automation
45
- "trigger_actions": None, # array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
44
+ "legacy_sync_ids": None, # array(int64) - IDs of remote sync folder behaviors to run by this Automation
45
+ "sync_ids": None, # array(int64) - IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of `legacy_sync_ids`.
46
+ "trigger_actions": None, # array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
46
47
  "trigger": None, # string - How this automation is triggered to run.
47
48
  "user_id": None, # int64 - User ID of the Automation's creator.
48
49
  "user_ids": None, # array(int64) - IDs of Users for the Automation (i.e. who to Request File from)
@@ -97,12 +98,14 @@ class Automation:
97
98
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
98
99
  # interval - string - How often to run this automation? One of: `day`, `week`, `week_end`, `month`, `month_end`, `quarter`, `quarter_end`, `year`, `year_end`
99
100
  # path - string - Path on which this Automation runs. Supports globs, except on remote mounts.
101
+ # legacy_sync_ids - string - A list of legacy sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
100
102
  # sync_ids - string - A list of sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
101
103
  # user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
102
104
  # group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
103
105
  # schedule_days_of_week - array(int64) - If trigger is `custom_schedule`. A list of days of the week to run this automation. 0 is Sunday, 1 is Monday, etc.
104
106
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
105
107
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
108
+ # holiday_region - string - If trigger is `custom_schedule`, the Automation will check if there is a formal, observed holiday for the region, and if so, it will not run.
106
109
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
107
110
  # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
108
111
  # description - string - Description for the this Automation.
@@ -118,7 +121,7 @@ class Automation:
118
121
  # retry_on_failure_interval_in_minutes - int64 - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
119
122
  # retry_on_failure_number_of_attempts - int64 - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
120
123
  # trigger - string - How this automation is triggered to run.
121
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
124
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
122
125
  # value - object - A Hash of attributes specific to the automation type.
123
126
  # recurring_day - int64 - If trigger type is `daily`, this specifies a day number to run in one of the supported intervals: `week`, `month`, `quarter`, `year`.
124
127
  # automation - string - Automation type
@@ -160,6 +163,12 @@ class Automation:
160
163
  )
161
164
  if "path" in params and not isinstance(params["path"], str):
162
165
  raise InvalidParameterError("Bad parameter: path must be an str")
166
+ if "legacy_sync_ids" in params and not isinstance(
167
+ params["legacy_sync_ids"], str
168
+ ):
169
+ raise InvalidParameterError(
170
+ "Bad parameter: legacy_sync_ids must be an str"
171
+ )
163
172
  if "sync_ids" in params and not isinstance(params["sync_ids"], str):
164
173
  raise InvalidParameterError(
165
174
  "Bad parameter: sync_ids must be an str"
@@ -190,6 +199,12 @@ class Automation:
190
199
  raise InvalidParameterError(
191
200
  "Bad parameter: schedule_time_zone must be an str"
192
201
  )
202
+ if "holiday_region" in params and not isinstance(
203
+ params["holiday_region"], str
204
+ ):
205
+ raise InvalidParameterError(
206
+ "Bad parameter: holiday_region must be an str"
207
+ )
193
208
  if "description" in params and not isinstance(
194
209
  params["description"], str
195
210
  ):
@@ -364,12 +379,14 @@ def get(id, params=None, options=None):
364
379
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
365
380
  # interval - string - How often to run this automation? One of: `day`, `week`, `week_end`, `month`, `month_end`, `quarter`, `quarter_end`, `year`, `year_end`
366
381
  # path - string - Path on which this Automation runs. Supports globs, except on remote mounts.
382
+ # legacy_sync_ids - string - A list of legacy sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
367
383
  # sync_ids - string - A list of sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
368
384
  # user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
369
385
  # group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
370
386
  # schedule_days_of_week - array(int64) - If trigger is `custom_schedule`. A list of days of the week to run this automation. 0 is Sunday, 1 is Monday, etc.
371
387
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
372
388
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
389
+ # holiday_region - string - If trigger is `custom_schedule`, the Automation will check if there is a formal, observed holiday for the region, and if so, it will not run.
373
390
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
374
391
  # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
375
392
  # description - string - Description for the this Automation.
@@ -385,7 +402,7 @@ def get(id, params=None, options=None):
385
402
  # retry_on_failure_interval_in_minutes - int64 - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
386
403
  # retry_on_failure_number_of_attempts - int64 - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
387
404
  # trigger - string - How this automation is triggered to run.
388
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
405
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
389
406
  # value - object - A Hash of attributes specific to the automation type.
390
407
  # recurring_day - int64 - If trigger type is `daily`, this specifies a day number to run in one of the supported intervals: `week`, `month`, `quarter`, `year`.
391
408
  # automation (required) - string - Automation type
@@ -418,6 +435,12 @@ def create(params=None, options=None):
418
435
  raise InvalidParameterError("Bad parameter: interval must be an str")
419
436
  if "path" in params and not isinstance(params["path"], str):
420
437
  raise InvalidParameterError("Bad parameter: path must be an str")
438
+ if "legacy_sync_ids" in params and not isinstance(
439
+ params["legacy_sync_ids"], str
440
+ ):
441
+ raise InvalidParameterError(
442
+ "Bad parameter: legacy_sync_ids must be an str"
443
+ )
421
444
  if "sync_ids" in params and not isinstance(params["sync_ids"], str):
422
445
  raise InvalidParameterError("Bad parameter: sync_ids must be an str")
423
446
  if "user_ids" in params and not isinstance(params["user_ids"], str):
@@ -442,6 +465,12 @@ def create(params=None, options=None):
442
465
  raise InvalidParameterError(
443
466
  "Bad parameter: schedule_time_zone must be an str"
444
467
  )
468
+ if "holiday_region" in params and not isinstance(
469
+ params["holiday_region"], str
470
+ ):
471
+ raise InvalidParameterError(
472
+ "Bad parameter: holiday_region must be an str"
473
+ )
445
474
  if "always_overwrite_size_matching_files" in params and not isinstance(
446
475
  params["always_overwrite_size_matching_files"], bool
447
476
  ):
@@ -568,12 +597,14 @@ def manual_run(id, params=None, options=None):
568
597
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
569
598
  # interval - string - How often to run this automation? One of: `day`, `week`, `week_end`, `month`, `month_end`, `quarter`, `quarter_end`, `year`, `year_end`
570
599
  # path - string - Path on which this Automation runs. Supports globs, except on remote mounts.
600
+ # legacy_sync_ids - string - A list of legacy sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
571
601
  # sync_ids - string - A list of sync IDs the automation is associated with. If sent as a string, it should be comma-delimited.
572
602
  # user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
573
603
  # group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
574
604
  # schedule_days_of_week - array(int64) - If trigger is `custom_schedule`. A list of days of the week to run this automation. 0 is Sunday, 1 is Monday, etc.
575
605
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
576
606
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
607
+ # holiday_region - string - If trigger is `custom_schedule`, the Automation will check if there is a formal, observed holiday for the region, and if so, it will not run.
577
608
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
578
609
  # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
579
610
  # description - string - Description for the this Automation.
@@ -589,7 +620,7 @@ def manual_run(id, params=None, options=None):
589
620
  # retry_on_failure_interval_in_minutes - int64 - If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
590
621
  # retry_on_failure_number_of_attempts - int64 - If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
591
622
  # trigger - string - How this automation is triggered to run.
592
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
623
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
593
624
  # value - object - A Hash of attributes specific to the automation type.
594
625
  # recurring_day - int64 - If trigger type is `daily`, this specifies a day number to run in one of the supported intervals: `week`, `month`, `quarter`, `year`.
595
626
  # automation - string - Automation type
@@ -625,6 +656,12 @@ def update(id, params=None, options=None):
625
656
  raise InvalidParameterError("Bad parameter: interval must be an str")
626
657
  if "path" in params and not isinstance(params["path"], str):
627
658
  raise InvalidParameterError("Bad parameter: path must be an str")
659
+ if "legacy_sync_ids" in params and not isinstance(
660
+ params["legacy_sync_ids"], str
661
+ ):
662
+ raise InvalidParameterError(
663
+ "Bad parameter: legacy_sync_ids must be an str"
664
+ )
628
665
  if "sync_ids" in params and not isinstance(params["sync_ids"], str):
629
666
  raise InvalidParameterError("Bad parameter: sync_ids must be an str")
630
667
  if "user_ids" in params and not isinstance(params["user_ids"], str):
@@ -649,6 +686,12 @@ def update(id, params=None, options=None):
649
686
  raise InvalidParameterError(
650
687
  "Bad parameter: schedule_time_zone must be an str"
651
688
  )
689
+ if "holiday_region" in params and not isinstance(
690
+ params["holiday_region"], str
691
+ ):
692
+ raise InvalidParameterError(
693
+ "Bad parameter: holiday_region must be an str"
694
+ )
652
695
  if "always_overwrite_size_matching_files" in params and not isinstance(
653
696
  params["always_overwrite_size_matching_files"], bool
654
697
  ):
@@ -48,12 +48,12 @@ class AutomationLog:
48
48
  # Parameters:
49
49
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
50
50
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
51
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `start_date`, `end_date`, `automation_id`, `automation_run_id`, `operation`, `path`, `status` or `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
52
- # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
53
- # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
54
- # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `operation`, `path` or `status`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
55
- # filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
56
- # filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, automation_id ]`, `[ start_date, automation_run_id ]`, `[ start_date, operation ]`, `[ start_date, path ]`, `[ start_date, status ]`, `[ start_date, created_at ]`, `[ end_date, automation_id ]`, `[ end_date, automation_run_id ]`, `[ end_date, operation ]`, `[ end_date, path ]`, `[ end_date, status ]`, `[ end_date, created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ start_date, end_date, automation_id ]`, `[ start_date, end_date, automation_run_id ]`, `[ start_date, end_date, operation ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, created_at ]`, `[ start_date, automation_id, automation_run_id ]`, `[ start_date, automation_id, operation ]`, `[ start_date, automation_id, path ]`, `[ start_date, automation_id, status ]`, `[ start_date, automation_id, created_at ]`, `[ start_date, automation_run_id, operation ]`, `[ start_date, automation_run_id, path ]`, `[ start_date, automation_run_id, status ]`, `[ start_date, automation_run_id, created_at ]`, `[ start_date, operation, path ]`, `[ start_date, operation, status ]`, `[ start_date, operation, created_at ]`, `[ start_date, path, status ]`, `[ start_date, path, created_at ]`, `[ start_date, status, created_at ]`, `[ end_date, automation_id, automation_run_id ]`, `[ end_date, automation_id, operation ]`, `[ end_date, automation_id, path ]`, `[ end_date, automation_id, status ]`, `[ end_date, automation_id, created_at ]`, `[ end_date, automation_run_id, operation ]`, `[ end_date, automation_run_id, path ]`, `[ end_date, automation_run_id, status ]`, `[ end_date, automation_run_id, created_at ]`, `[ end_date, operation, path ]`, `[ end_date, operation, status ]`, `[ end_date, operation, created_at ]`, `[ end_date, path, status ]`, `[ end_date, path, created_at ]`, `[ end_date, status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id ]`, `[ start_date, end_date, automation_id, operation ]`, `[ start_date, end_date, automation_id, path ]`, `[ start_date, end_date, automation_id, status ]`, `[ start_date, end_date, automation_id, created_at ]`, `[ start_date, end_date, automation_run_id, operation ]`, `[ start_date, end_date, automation_run_id, path ]`, `[ start_date, end_date, automation_run_id, status ]`, `[ start_date, end_date, automation_run_id, created_at ]`, `[ start_date, end_date, operation, path ]`, `[ start_date, end_date, operation, status ]`, `[ start_date, end_date, operation, created_at ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation ]`, `[ start_date, automation_id, automation_run_id, path ]`, `[ start_date, automation_id, automation_run_id, status ]`, `[ start_date, automation_id, automation_run_id, created_at ]`, `[ start_date, automation_id, operation, path ]`, `[ start_date, automation_id, operation, status ]`, `[ start_date, automation_id, operation, created_at ]`, `[ start_date, automation_id, path, status ]`, `[ start_date, automation_id, path, created_at ]`, `[ start_date, automation_id, status, created_at ]`, `[ start_date, automation_run_id, operation, path ]`, `[ start_date, automation_run_id, operation, status ]`, `[ start_date, automation_run_id, operation, created_at ]`, `[ start_date, automation_run_id, path, status ]`, `[ start_date, automation_run_id, path, created_at ]`, `[ start_date, automation_run_id, status, created_at ]`, `[ start_date, operation, path, status ]`, `[ start_date, operation, path, created_at ]`, `[ start_date, operation, status, created_at ]`, `[ start_date, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation ]`, `[ end_date, automation_id, automation_run_id, path ]`, `[ end_date, automation_id, automation_run_id, status ]`, `[ end_date, automation_id, automation_run_id, created_at ]`, `[ end_date, automation_id, operation, path ]`, `[ end_date, automation_id, operation, status ]`, `[ end_date, automation_id, operation, created_at ]`, `[ end_date, automation_id, path, status ]`, `[ end_date, automation_id, path, created_at ]`, `[ end_date, automation_id, status, created_at ]`, `[ end_date, automation_run_id, operation, path ]`, `[ end_date, automation_run_id, operation, status ]`, `[ end_date, automation_run_id, operation, created_at ]`, `[ end_date, automation_run_id, path, status ]`, `[ end_date, automation_run_id, path, created_at ]`, `[ end_date, automation_run_id, status, created_at ]`, `[ end_date, operation, path, status ]`, `[ end_date, operation, path, created_at ]`, `[ end_date, operation, status, created_at ]`, `[ end_date, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation ]`, `[ start_date, end_date, automation_id, automation_run_id, path ]`, `[ start_date, end_date, automation_id, automation_run_id, status ]`, `[ start_date, end_date, automation_id, automation_run_id, created_at ]`, `[ start_date, end_date, automation_id, operation, path ]`, `[ start_date, end_date, automation_id, operation, status ]`, `[ start_date, end_date, automation_id, operation, created_at ]`, `[ start_date, end_date, automation_id, path, status ]`, `[ start_date, end_date, automation_id, path, created_at ]`, `[ start_date, end_date, automation_id, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_run_id, path, status ]`, `[ start_date, end_date, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_run_id, status, created_at ]`, `[ start_date, end_date, operation, path, status ]`, `[ start_date, end_date, operation, path, created_at ]`, `[ start_date, end_date, operation, status, created_at ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status ]`, `[ start_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, automation_id, operation, path, status ]`, `[ start_date, automation_id, operation, path, created_at ]`, `[ start_date, automation_id, operation, status, created_at ]`, `[ start_date, automation_id, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status ]`, `[ start_date, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_run_id, path, status, created_at ]`, `[ start_date, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path ]`, `[ end_date, automation_id, automation_run_id, operation, status ]`, `[ end_date, automation_id, automation_run_id, operation, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status ]`, `[ end_date, automation_id, automation_run_id, path, created_at ]`, `[ end_date, automation_id, automation_run_id, status, created_at ]`, `[ end_date, automation_id, operation, path, status ]`, `[ end_date, automation_id, operation, path, created_at ]`, `[ end_date, automation_id, operation, status, created_at ]`, `[ end_date, automation_id, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status ]`, `[ end_date, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_run_id, path, status, created_at ]`, `[ end_date, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status ]`, `[ start_date, end_date, automation_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, automation_id, operation, path, status, created_at ]`, `[ start_date, automation_run_id, operation, path, status, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, path, status ]`, `[ end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ end_date, automation_id, operation, path, status, created_at ]`, `[ end_date, automation_run_id, operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, status ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, path, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, operation, status, created_at ]`, `[ start_date, end_date, automation_id, automation_run_id, path, status, created_at ]`, `[ start_date, end_date, automation_id, operation, path, status, created_at ]`, `[ start_date, end_date, automation_run_id, operation, path, status, created_at ]`, `[ start_date, automation_id, automation_run_id, operation, path, status, created_at ]` or `[ end_date, automation_id, automation_run_id, operation, path, status, created_at ]`.
51
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `automation_id`, `automation_run_id`, `operation`, `path`, `status` or `created_at`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
52
+ # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
53
+ # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
54
+ # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
55
+ # filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
56
+ # filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ automation_id ]`, `[ automation_run_id ]`, `[ operation ]`, `[ path ]`, `[ status ]`, `[ created_at ]`, `[ automation_id, automation_run_id ]`, `[ automation_id, operation ]`, `[ automation_id, path ]`, `[ automation_id, status ]`, `[ automation_id, created_at ]`, `[ automation_run_id, operation ]`, `[ automation_run_id, path ]`, `[ automation_run_id, status ]`, `[ automation_run_id, created_at ]`, `[ operation, path ]`, `[ operation, status ]`, `[ operation, created_at ]`, `[ path, status ]`, `[ path, created_at ]`, `[ status, created_at ]`, `[ automation_id, automation_run_id, operation ]`, `[ automation_id, automation_run_id, path ]`, `[ automation_id, automation_run_id, status ]`, `[ automation_id, automation_run_id, created_at ]`, `[ automation_id, operation, path ]`, `[ automation_id, operation, status ]`, `[ automation_id, operation, created_at ]`, `[ automation_id, path, status ]`, `[ automation_id, path, created_at ]`, `[ automation_id, status, created_at ]`, `[ automation_run_id, operation, path ]`, `[ automation_run_id, operation, status ]`, `[ automation_run_id, operation, created_at ]`, `[ automation_run_id, path, status ]`, `[ automation_run_id, path, created_at ]`, `[ automation_run_id, status, created_at ]`, `[ operation, path, status ]`, `[ operation, path, created_at ]`, `[ operation, status, created_at ]`, `[ path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path ]`, `[ automation_id, automation_run_id, operation, status ]`, `[ automation_id, automation_run_id, operation, created_at ]`, `[ automation_id, automation_run_id, path, status ]`, `[ automation_id, automation_run_id, path, created_at ]`, `[ automation_id, automation_run_id, status, created_at ]`, `[ automation_id, operation, path, status ]`, `[ automation_id, operation, path, created_at ]`, `[ automation_id, operation, status, created_at ]`, `[ automation_id, path, status, created_at ]`, `[ automation_run_id, operation, path, status ]`, `[ automation_run_id, operation, path, created_at ]`, `[ automation_run_id, operation, status, created_at ]`, `[ automation_run_id, path, status, created_at ]`, `[ operation, path, status, created_at ]`, `[ automation_id, automation_run_id, operation, path, status ]`, `[ automation_id, automation_run_id, operation, path, created_at ]`, `[ automation_id, automation_run_id, operation, status, created_at ]`, `[ automation_id, automation_run_id, path, status, created_at ]`, `[ automation_id, operation, path, status, created_at ]`, `[ automation_run_id, operation, path, status, created_at ]` or `[ automation_id, automation_run_id, operation, path, status, created_at ]`.
57
57
  def list(params=None, options=None):
58
58
  if not isinstance(params, dict):
59
59
  params = {}
@@ -117,7 +117,7 @@ class Behavior:
117
117
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
118
118
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
119
119
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `behavior`.
120
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
120
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`. Valid field combinations are `[ impacts_ui, behavior ]`.
121
121
  def list(params=None, options=None):
122
122
  if not isinstance(params, dict):
123
123
  params = {}
@@ -164,7 +164,7 @@ def get(id, params=None, options=None):
164
164
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
165
165
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
166
166
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `behavior`.
167
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
167
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`. Valid field combinations are `[ impacts_ui, behavior ]`.
168
168
  # path (required) - string - Path to operate on.
169
169
  # ancestor_behaviors - boolean - If `true`, behaviors above this path are shown.
170
170
  def list_for(path, params=None, options=None):
@@ -16,6 +16,10 @@ class BundleAction:
16
16
  "destination": None, # string - The destination path for this bundle action, if applicable
17
17
  "path": None, # string - Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
18
18
  "source": None, # string - The source path for this bundle action, if applicable
19
+ "bundle_registration_id": None, # int64 - Identifier of the associated bundle registration
20
+ "bundle_registration_name": None, # string - Name of the registrant who performed the action
21
+ "bundle_registration_email": None, # string - Email of the registrant
22
+ "bundle_registration_ip": None, # string - IP address of the registrant
19
23
  }
20
24
 
21
25
  def __init__(self, attributes=None, options=None):
@@ -45,7 +49,7 @@ class BundleAction:
45
49
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
46
50
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
47
51
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
48
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at`.
52
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `created_at` and `bundle_registration_id`.
49
53
  # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `bundle_id` or `bundle_registration_id`. Valid field combinations are `[ bundle_id, created_at ]`, `[ bundle_registration_id, created_at ]`, `[ bundle_id, bundle_registration_id ]` or `[ bundle_id, bundle_registration_id, created_at ]`.
50
54
  # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
51
55
  # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
@@ -52,7 +52,7 @@ class BundleRegistration:
52
52
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
53
53
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
54
54
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
55
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `bundle_id`.
55
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `bundle_id` and `created_at`.
56
56
  # bundle_id - int64 - ID of the associated Bundle
57
57
  def list(params=None, options=None):
58
58
  if not isinstance(params, dict):