apache-airflow-client 3.2.1__tar.gz → 3.2.2__tar.gz

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 (570) hide show
  1. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/PKG-INFO +1 -1
  2. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/__init__.py +7 -1
  3. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/asset_api.py +104 -36
  4. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/connection_api.py +23 -6
  5. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_api.py +119 -51
  6. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_parsing_api.py +3 -3
  7. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_run_api.py +144 -42
  8. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_version_api.py +3 -3
  9. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_warning_api.py +3 -3
  10. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/event_log_api.py +115 -30
  11. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/experimental_api.py +3 -3
  12. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/extra_links_api.py +17 -0
  13. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/import_error_api.py +23 -6
  14. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/pool_api.py +23 -6
  15. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/task_api.py +3 -3
  16. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/task_instance_api.py +370 -81
  17. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/variable_api.py +23 -6
  18. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/x_com_api.py +114 -28
  19. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api_client.py +15 -19
  20. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/configuration.py +2 -2
  21. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/__init__.py +3 -0
  22. apache_airflow_client-3.2.1/airflow_client/client/models/task_instance_collection_response.py → apache_airflow_client-3.2.2/airflow_client/client/models/clear_task_instance_collection_response.py +7 -7
  23. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_body.py +3 -0
  24. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_collection_response.py +1 -1
  25. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_details_response.py +1 -1
  26. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_response.py +1 -1
  27. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_clear_body.py +4 -2
  28. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_collection_response.py +9 -5
  29. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_patch_body.py +1 -1
  30. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_patch_states.py +1 -1
  31. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_response.py +1 -1
  32. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_runs_batch_body.py +1 -1
  33. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_schedule_asset_reference.py +1 -1
  34. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_source_response.py +1 -1
  35. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_collection_response.py +1 -1
  36. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_response.py +1 -1
  37. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_tag_collection_response.py +1 -1
  38. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_tag_response.py +1 -1
  39. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_version_collection_response.py +1 -1
  40. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_collection_response.py +1 -1
  41. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_response.py +1 -1
  42. apache_airflow_client-3.2.2/airflow_client/client/models/new_task_response.py +90 -0
  43. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/response_clear_dag_run.py +14 -14
  44. apache_airflow_client-3.2.2/airflow_client/client/models/task_instance_collection_response.py +102 -0
  45. apache_airflow_client-3.2.2/airflow_client/client/models/task_instances_inner.py +137 -0
  46. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/trigger_dag_run_post_body.py +1 -1
  47. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetApi.md +26 -18
  48. apache_airflow_client-3.2.2/docs/ClearTaskInstanceCollectionResponse.md +31 -0
  49. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionApi.md +6 -4
  50. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGApi.md +35 -23
  51. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGCollectionResponse.md +1 -1
  52. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGDetailsResponse.md +1 -1
  53. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGParsingApi.md +1 -1
  54. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGResponse.md +1 -1
  55. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunClearBody.md +2 -1
  56. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunCollectionResponse.md +4 -2
  57. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunPatchBody.md +1 -1
  58. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunPatchStates.md +1 -1
  59. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunResponse.md +1 -1
  60. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunsBatchBody.md +1 -1
  61. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGSourceResponse.md +1 -1
  62. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGTagCollectionResponse.md +1 -1
  63. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGVersionCollectionResponse.md +1 -1
  64. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGWarningCollectionResponse.md +1 -1
  65. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGWarningResponse.md +1 -1
  66. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunApi.md +38 -17
  67. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagScheduleAssetReference.md +1 -1
  68. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsCollectionResponse.md +1 -1
  69. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsResponse.md +1 -1
  70. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagTagResponse.md +1 -1
  71. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagVersionApi.md +2 -2
  72. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagWarningApi.md +1 -1
  73. apache_airflow_client-3.2.2/docs/EventLogApi.md +223 -0
  74. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExperimentalApi.md +1 -1
  75. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExtraLinksApi.md +4 -2
  76. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorApi.md +6 -4
  77. apache_airflow_client-3.2.2/docs/NewTaskResponse.md +31 -0
  78. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolApi.md +6 -4
  79. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ResponseClearDagRun.md +1 -1
  80. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskApi.md +1 -1
  81. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceApi.md +79 -36
  82. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceCollectionResponse.md +4 -2
  83. apache_airflow_client-3.2.2/docs/TaskInstancesInner.md +62 -0
  84. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggerDAGRunPostBody.md +1 -1
  85. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableApi.md +6 -4
  86. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComApi.md +21 -11
  87. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/pyproject.toml +3 -3
  88. apache_airflow_client-3.2.2/test/test_clear_task_instance_collection_response.py +58 -0
  89. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_clear_body.py +1 -0
  90. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_collection_response.py +2 -1
  91. apache_airflow_client-3.2.2/test/test_new_task_response.py +54 -0
  92. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_response_clear_dag_run.py +2 -70
  93. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_collection_response.py +2 -1
  94. apache_airflow_client-3.2.2/test/test_task_instances_inner.py +122 -0
  95. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/v2.yaml +937 -95
  96. apache_airflow_client-3.2.2/version.txt +1 -0
  97. apache_airflow_client-3.2.1/docs/EventLogApi.md +0 -213
  98. apache_airflow_client-3.2.1/version.txt +0 -1
  99. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/.gitignore +0 -0
  100. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/INSTALL +0 -0
  101. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/LICENSE +0 -0
  102. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/NOTICE +0 -0
  103. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/README.md +0 -0
  104. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/__init__.py +0 -0
  105. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/backfill_api.py +0 -0
  106. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/config_api.py +0 -0
  107. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_source_api.py +0 -0
  108. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_stats_api.py +0 -0
  109. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/job_api.py +0 -0
  110. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/login_api.py +0 -0
  111. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/monitor_api.py +0 -0
  112. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/plugin_api.py +0 -0
  113. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/provider_api.py +0 -0
  114. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/version_api.py +0 -0
  115. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api_response.py +0 -0
  116. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/exceptions.py +0 -0
  117. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner.py +0 -0
  118. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner1.py +0 -0
  119. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner2.py +0 -0
  120. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner3.py +0 -0
  121. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/app_builder_menu_item_response.py +0 -0
  122. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/app_builder_view_response.py +0 -0
  123. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_alias_collection_response.py +0 -0
  124. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_alias_response.py +0 -0
  125. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_collection_response.py +0 -0
  126. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_event_collection_response.py +0 -0
  127. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_event_response.py +0 -0
  128. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_response.py +0 -0
  129. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_watcher_response.py +0 -0
  130. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_collection_response.py +0 -0
  131. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_post_body.py +0 -0
  132. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_response.py +0 -0
  133. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/base_info_response.py +0 -0
  134. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_not_on_existence.py +0 -0
  135. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_on_existence.py +0 -0
  136. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_response.py +0 -0
  137. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_bulk_task_instance_body.py +0 -0
  138. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_connection_body.py +0 -0
  139. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_pool_body.py +0 -0
  140. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_variable_body.py +0 -0
  141. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_bulk_task_instance_body.py +0 -0
  142. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_connection_body.py +0 -0
  143. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_pool_body.py +0 -0
  144. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_variable_body.py +0 -0
  145. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_bulk_task_instance_body.py +0 -0
  146. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_connection_body.py +0 -0
  147. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_pool_body.py +0 -0
  148. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_variable_body.py +0 -0
  149. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_response.py +0 -0
  150. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_task_instance_body.py +0 -0
  151. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_bulk_task_instance_body.py +0 -0
  152. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_connection_body.py +0 -0
  153. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_pool_body.py +0 -0
  154. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_variable_body.py +0 -0
  155. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/clear_task_instances_body.py +0 -0
  156. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/clear_task_instances_body_task_ids_inner.py +0 -0
  157. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config.py +0 -0
  158. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config_option.py +0 -0
  159. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config_section.py +0 -0
  160. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_collection_response.py +0 -0
  161. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_response.py +0 -0
  162. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_test_response.py +0 -0
  163. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/content.py +0 -0
  164. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/create_asset_events_body.py +0 -0
  165. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_patch_body.py +0 -0
  166. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_processor_info_response.py +0 -0
  167. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_asset_reference.py +0 -0
  168. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_state.py +0 -0
  169. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_triggered_by_type.py +0 -0
  170. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_type.py +0 -0
  171. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_state_response.py +0 -0
  172. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_version_response.py +0 -0
  173. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_type.py +0 -0
  174. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/detail.py +0 -0
  175. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dry_run_backfill_collection_response.py +0 -0
  176. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dry_run_backfill_response.py +0 -0
  177. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner.py +0 -0
  178. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner1.py +0 -0
  179. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner2.py +0 -0
  180. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner3.py +0 -0
  181. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/event_log_collection_response.py +0 -0
  182. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/event_log_response.py +0 -0
  183. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/external_log_url_response.py +0 -0
  184. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/external_view_response.py +0 -0
  185. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/extra_link_collection_response.py +0 -0
  186. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/fast_api_app_response.py +0 -0
  187. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/fast_api_root_middleware_response.py +0 -0
  188. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/health_info_response.py +0 -0
  189. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail.py +0 -0
  190. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_collection.py +0 -0
  191. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_history.py +0 -0
  192. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_response.py +0 -0
  193. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_user.py +0 -0
  194. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/http_exception_response.py +0 -0
  195. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/http_validation_error.py +0 -0
  196. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/import_error_collection_response.py +0 -0
  197. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/import_error_response.py +0 -0
  198. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/job_collection_response.py +0 -0
  199. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/job_response.py +0 -0
  200. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/last_asset_event_response.py +0 -0
  201. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/location_inner.py +0 -0
  202. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/materialize_asset_body.py +0 -0
  203. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/patch_task_instance_body.py +0 -0
  204. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_collection_response.py +0 -0
  205. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_import_error_collection_response.py +0 -0
  206. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_import_error_response.py +0 -0
  207. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_response.py +0 -0
  208. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_body.py +0 -0
  209. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_collection_response.py +0 -0
  210. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_patch_body.py +0 -0
  211. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_response.py +0 -0
  212. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/provider_collection_response.py +0 -0
  213. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/provider_response.py +0 -0
  214. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/queued_event_collection_response.py +0 -0
  215. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/queued_event_response.py +0 -0
  216. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/react_app_response.py +0 -0
  217. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/reprocess_behavior.py +0 -0
  218. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/response_get_xcom_entry.py +0 -0
  219. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/scheduler_info_response.py +0 -0
  220. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/structured_log_message.py +0 -0
  221. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_collection_response.py +0 -0
  222. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_dependency_collection_response.py +0 -0
  223. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_dependency_response.py +0 -0
  224. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_inlet_asset_reference.py +0 -0
  225. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_history_collection_response.py +0 -0
  226. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_history_response.py +0 -0
  227. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_response.py +0 -0
  228. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_state.py +0 -0
  229. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instances_batch_body.py +0 -0
  230. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instances_log_response.py +0 -0
  231. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_outlet_asset_reference.py +0 -0
  232. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_response.py +0 -0
  233. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/time_delta.py +0 -0
  234. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/trigger_response.py +0 -0
  235. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/triggerer_info_response.py +0 -0
  236. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/update_hitl_detail_payload.py +0 -0
  237. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/validation_error.py +0 -0
  238. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/value.py +0 -0
  239. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_body.py +0 -0
  240. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_collection_response.py +0 -0
  241. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_response.py +0 -0
  242. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/version_info.py +0 -0
  243. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_collection_response.py +0 -0
  244. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_create_body.py +0 -0
  245. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response.py +0 -0
  246. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response_native.py +0 -0
  247. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response_string.py +0 -0
  248. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_update_body.py +0 -0
  249. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/py.typed +0 -0
  250. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/rest.py +0 -0
  251. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner.md +0 -0
  252. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner1.md +0 -0
  253. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner2.md +0 -0
  254. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner3.md +0 -0
  255. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AppBuilderMenuItemResponse.md +0 -0
  256. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AppBuilderViewResponse.md +0 -0
  257. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetAliasCollectionResponse.md +0 -0
  258. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetAliasResponse.md +0 -0
  259. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetCollectionResponse.md +0 -0
  260. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetEventCollectionResponse.md +0 -0
  261. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetEventResponse.md +0 -0
  262. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetResponse.md +0 -0
  263. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetWatcherResponse.md +0 -0
  264. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillApi.md +0 -0
  265. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillCollectionResponse.md +0 -0
  266. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillPostBody.md +0 -0
  267. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillResponse.md +0 -0
  268. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BaseInfoResponse.md +0 -0
  269. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionNotOnExistence.md +0 -0
  270. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionOnExistence.md +0 -0
  271. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionResponse.md +0 -0
  272. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyBulkTaskInstanceBody.md +0 -0
  273. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyConnectionBody.md +0 -0
  274. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyPoolBody.md +0 -0
  275. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyVariableBody.md +0 -0
  276. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionBulkTaskInstanceBody.md +0 -0
  277. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionConnectionBody.md +0 -0
  278. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionPoolBody.md +0 -0
  279. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionVariableBody.md +0 -0
  280. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionBulkTaskInstanceBody.md +0 -0
  281. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionConnectionBody.md +0 -0
  282. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionPoolBody.md +0 -0
  283. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionVariableBody.md +0 -0
  284. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkResponse.md +0 -0
  285. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkTaskInstanceBody.md +0 -0
  286. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionBulkTaskInstanceBody.md +0 -0
  287. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionConnectionBody.md +0 -0
  288. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionPoolBody.md +0 -0
  289. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionVariableBody.md +0 -0
  290. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ClearTaskInstancesBody.md +0 -0
  291. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ClearTaskInstancesBodyTaskIdsInner.md +0 -0
  292. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Config.md +0 -0
  293. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigApi.md +0 -0
  294. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigOption.md +0 -0
  295. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigSection.md +0 -0
  296. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionBody.md +0 -0
  297. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionCollectionResponse.md +0 -0
  298. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionResponse.md +0 -0
  299. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionTestResponse.md +0 -0
  300. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Content.md +0 -0
  301. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/CreateAssetEventsBody.md +0 -0
  302. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGPatchBody.md +0 -0
  303. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagProcessorInfoResponse.md +0 -0
  304. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunAssetReference.md +0 -0
  305. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunState.md +0 -0
  306. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunTriggeredByType.md +0 -0
  307. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunType.md +0 -0
  308. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagSourceApi.md +0 -0
  309. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsApi.md +0 -0
  310. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsStateResponse.md +0 -0
  311. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagVersionResponse.md +0 -0
  312. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagWarningType.md +0 -0
  313. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Detail.md +0 -0
  314. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DryRunBackfillCollectionResponse.md +0 -0
  315. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DryRunBackfillResponse.md +0 -0
  316. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner.md +0 -0
  317. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner1.md +0 -0
  318. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner2.md +0 -0
  319. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner3.md +0 -0
  320. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EventLogCollectionResponse.md +0 -0
  321. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EventLogResponse.md +0 -0
  322. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExternalLogUrlResponse.md +0 -0
  323. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExternalViewResponse.md +0 -0
  324. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExtraLinkCollectionResponse.md +0 -0
  325. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/FastAPIAppResponse.md +0 -0
  326. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/FastAPIRootMiddlewareResponse.md +0 -0
  327. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetail.md +0 -0
  328. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailCollection.md +0 -0
  329. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailHistory.md +0 -0
  330. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailResponse.md +0 -0
  331. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLUser.md +0 -0
  332. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HTTPExceptionResponse.md +0 -0
  333. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HTTPValidationError.md +0 -0
  334. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HealthInfoResponse.md +0 -0
  335. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorCollectionResponse.md +0 -0
  336. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorResponse.md +0 -0
  337. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobApi.md +0 -0
  338. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobCollectionResponse.md +0 -0
  339. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobResponse.md +0 -0
  340. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LastAssetEventResponse.md +0 -0
  341. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LocationInner.md +0 -0
  342. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LoginApi.md +0 -0
  343. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/MaterializeAssetBody.md +0 -0
  344. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/MonitorApi.md +0 -0
  345. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PatchTaskInstanceBody.md +0 -0
  346. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginApi.md +0 -0
  347. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginCollectionResponse.md +0 -0
  348. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginImportErrorCollectionResponse.md +0 -0
  349. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginImportErrorResponse.md +0 -0
  350. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginResponse.md +0 -0
  351. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolBody.md +0 -0
  352. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolCollectionResponse.md +0 -0
  353. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolPatchBody.md +0 -0
  354. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolResponse.md +0 -0
  355. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderApi.md +0 -0
  356. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderCollectionResponse.md +0 -0
  357. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderResponse.md +0 -0
  358. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/QueuedEventCollectionResponse.md +0 -0
  359. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/QueuedEventResponse.md +0 -0
  360. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ReactAppResponse.md +0 -0
  361. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ReprocessBehavior.md +0 -0
  362. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ResponseGetXcomEntry.md +0 -0
  363. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/SchedulerInfoResponse.md +0 -0
  364. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/StructuredLogMessage.md +0 -0
  365. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskCollectionResponse.md +0 -0
  366. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskDependencyCollectionResponse.md +0 -0
  367. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskDependencyResponse.md +0 -0
  368. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInletAssetReference.md +0 -0
  369. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceHistoryCollectionResponse.md +0 -0
  370. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceHistoryResponse.md +0 -0
  371. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceResponse.md +0 -0
  372. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceState.md +0 -0
  373. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstancesBatchBody.md +0 -0
  374. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstancesLogResponse.md +0 -0
  375. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskOutletAssetReference.md +0 -0
  376. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskResponse.md +0 -0
  377. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TimeDelta.md +0 -0
  378. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggerResponse.md +0 -0
  379. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggererInfoResponse.md +0 -0
  380. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/UpdateHITLDetailPayload.md +0 -0
  381. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ValidationError.md +0 -0
  382. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Value.md +0 -0
  383. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableBody.md +0 -0
  384. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableCollectionResponse.md +0 -0
  385. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableResponse.md +0 -0
  386. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VersionApi.md +0 -0
  387. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VersionInfo.md +0 -0
  388. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComCollectionResponse.md +0 -0
  389. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComCreateBody.md +0 -0
  390. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponse.md +0 -0
  391. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponseNative.md +0 -0
  392. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponseString.md +0 -0
  393. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComUpdateBody.md +0 -0
  394. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/__init__.py +0 -0
  395. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner.py +0 -0
  396. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner1.py +0 -0
  397. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner2.py +0 -0
  398. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner3.py +0 -0
  399. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_app_builder_menu_item_response.py +0 -0
  400. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_app_builder_view_response.py +0 -0
  401. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_alias_collection_response.py +0 -0
  402. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_alias_response.py +0 -0
  403. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_api.py +0 -0
  404. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_collection_response.py +0 -0
  405. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_event_collection_response.py +0 -0
  406. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_event_response.py +0 -0
  407. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_response.py +0 -0
  408. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_watcher_response.py +0 -0
  409. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_api.py +0 -0
  410. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_collection_response.py +0 -0
  411. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_post_body.py +0 -0
  412. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_response.py +0 -0
  413. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_base_info_response.py +0 -0
  414. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_not_on_existence.py +0 -0
  415. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_on_existence.py +0 -0
  416. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_response.py +0 -0
  417. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_bulk_task_instance_body.py +0 -0
  418. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_connection_body.py +0 -0
  419. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_pool_body.py +0 -0
  420. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_variable_body.py +0 -0
  421. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_bulk_task_instance_body.py +0 -0
  422. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_connection_body.py +0 -0
  423. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_pool_body.py +0 -0
  424. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_variable_body.py +0 -0
  425. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_bulk_task_instance_body.py +0 -0
  426. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_connection_body.py +0 -0
  427. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_pool_body.py +0 -0
  428. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_variable_body.py +0 -0
  429. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_response.py +0 -0
  430. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_task_instance_body.py +0 -0
  431. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_bulk_task_instance_body.py +0 -0
  432. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_connection_body.py +0 -0
  433. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_pool_body.py +0 -0
  434. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_variable_body.py +0 -0
  435. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_clear_task_instances_body.py +0 -0
  436. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_clear_task_instances_body_task_ids_inner.py +0 -0
  437. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config.py +0 -0
  438. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_api.py +0 -0
  439. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_option.py +0 -0
  440. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_section.py +0 -0
  441. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_api.py +0 -0
  442. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_body.py +0 -0
  443. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_collection_response.py +0 -0
  444. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_response.py +0 -0
  445. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_test_response.py +0 -0
  446. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_content.py +0 -0
  447. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_create_asset_events_body.py +0 -0
  448. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_api.py +0 -0
  449. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_collection_response.py +0 -0
  450. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_details_response.py +0 -0
  451. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_parsing_api.py +0 -0
  452. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_patch_body.py +0 -0
  453. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_processor_info_response.py +0 -0
  454. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_response.py +0 -0
  455. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_api.py +0 -0
  456. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_asset_reference.py +0 -0
  457. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_patch_body.py +0 -0
  458. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_patch_states.py +0 -0
  459. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_response.py +0 -0
  460. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_state.py +0 -0
  461. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_triggered_by_type.py +0 -0
  462. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_type.py +0 -0
  463. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_runs_batch_body.py +0 -0
  464. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_schedule_asset_reference.py +0 -0
  465. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_source_api.py +0 -0
  466. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_source_response.py +0 -0
  467. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_api.py +0 -0
  468. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_collection_response.py +0 -0
  469. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_response.py +0 -0
  470. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_state_response.py +0 -0
  471. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_tag_collection_response.py +0 -0
  472. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_tag_response.py +0 -0
  473. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_api.py +0 -0
  474. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_collection_response.py +0 -0
  475. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_response.py +0 -0
  476. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_api.py +0 -0
  477. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_collection_response.py +0 -0
  478. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_response.py +0 -0
  479. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_type.py +0 -0
  480. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_detail.py +0 -0
  481. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dry_run_backfill_collection_response.py +0 -0
  482. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dry_run_backfill_response.py +0 -0
  483. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner.py +0 -0
  484. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner1.py +0 -0
  485. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner2.py +0 -0
  486. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner3.py +0 -0
  487. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_api.py +0 -0
  488. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_collection_response.py +0 -0
  489. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_response.py +0 -0
  490. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_experimental_api.py +0 -0
  491. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_external_log_url_response.py +0 -0
  492. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_external_view_response.py +0 -0
  493. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_extra_link_collection_response.py +0 -0
  494. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_extra_links_api.py +0 -0
  495. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_fast_api_app_response.py +0 -0
  496. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_fast_api_root_middleware_response.py +0 -0
  497. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_health_info_response.py +0 -0
  498. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail.py +0 -0
  499. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_collection.py +0 -0
  500. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_history.py +0 -0
  501. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_response.py +0 -0
  502. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_user.py +0 -0
  503. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_http_exception_response.py +0 -0
  504. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_http_validation_error.py +0 -0
  505. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_api.py +0 -0
  506. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_collection_response.py +0 -0
  507. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_response.py +0 -0
  508. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_api.py +0 -0
  509. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_collection_response.py +0 -0
  510. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_response.py +0 -0
  511. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_last_asset_event_response.py +0 -0
  512. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_location_inner.py +0 -0
  513. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_login_api.py +0 -0
  514. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_materialize_asset_body.py +0 -0
  515. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_monitor_api.py +0 -0
  516. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_patch_task_instance_body.py +0 -0
  517. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_api.py +0 -0
  518. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_collection_response.py +0 -0
  519. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_import_error_collection_response.py +0 -0
  520. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_import_error_response.py +0 -0
  521. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_response.py +0 -0
  522. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_api.py +0 -0
  523. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_body.py +0 -0
  524. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_collection_response.py +0 -0
  525. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_patch_body.py +0 -0
  526. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_response.py +0 -0
  527. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_api.py +0 -0
  528. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_collection_response.py +0 -0
  529. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_response.py +0 -0
  530. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_queued_event_collection_response.py +0 -0
  531. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_queued_event_response.py +0 -0
  532. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_react_app_response.py +0 -0
  533. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_reprocess_behavior.py +0 -0
  534. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_response_get_xcom_entry.py +0 -0
  535. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_scheduler_info_response.py +0 -0
  536. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_structured_log_message.py +0 -0
  537. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_api.py +0 -0
  538. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_collection_response.py +0 -0
  539. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_dependency_collection_response.py +0 -0
  540. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_dependency_response.py +0 -0
  541. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_inlet_asset_reference.py +0 -0
  542. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_api.py +0 -0
  543. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_history_collection_response.py +0 -0
  544. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_history_response.py +0 -0
  545. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_response.py +0 -0
  546. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_state.py +0 -0
  547. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instances_batch_body.py +0 -0
  548. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instances_log_response.py +0 -0
  549. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_outlet_asset_reference.py +0 -0
  550. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_response.py +0 -0
  551. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_time_delta.py +0 -0
  552. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_trigger_dag_run_post_body.py +0 -0
  553. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_trigger_response.py +0 -0
  554. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_triggerer_info_response.py +0 -0
  555. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_update_hitl_detail_payload.py +0 -0
  556. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_validation_error.py +0 -0
  557. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_value.py +0 -0
  558. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_api.py +0 -0
  559. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_body.py +0 -0
  560. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_collection_response.py +0 -0
  561. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_response.py +0 -0
  562. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_version_api.py +0 -0
  563. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_version_info.py +0 -0
  564. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_api.py +0 -0
  565. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_collection_response.py +0 -0
  566. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_create_body.py +0 -0
  567. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response.py +0 -0
  568. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response_native.py +0 -0
  569. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response_string.py +0 -0
  570. {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_update_body.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-client
3
- Version: 3.2.1
3
+ Version: 3.2.2
4
4
  Summary: Apache Airflow API (Stable)
5
5
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
6
6
  Project-URL: Changelog, https://github.com/apache/airflow-client-python/blob/main/CHANGELOG.md
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "3.2.1"
17
+ __version__ = "3.2.2"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,6 +91,7 @@ __all__ = [
91
91
  "BulkUpdateActionConnectionBody",
92
92
  "BulkUpdateActionPoolBody",
93
93
  "BulkUpdateActionVariableBody",
94
+ "ClearTaskInstanceCollectionResponse",
94
95
  "ClearTaskInstancesBody",
95
96
  "ClearTaskInstancesBodyTaskIdsInner",
96
97
  "Config",
@@ -158,6 +159,7 @@ __all__ = [
158
159
  "LastAssetEventResponse",
159
160
  "LocationInner",
160
161
  "MaterializeAssetBody",
162
+ "NewTaskResponse",
161
163
  "PatchTaskInstanceBody",
162
164
  "PluginCollectionResponse",
163
165
  "PluginImportErrorCollectionResponse",
@@ -187,6 +189,7 @@ __all__ = [
187
189
  "TaskInstanceResponse",
188
190
  "TaskInstanceState",
189
191
  "TaskInstancesBatchBody",
192
+ "TaskInstancesInner",
190
193
  "TaskInstancesLogResponse",
191
194
  "TaskOutletAssetReference",
192
195
  "TaskResponse",
@@ -287,6 +290,7 @@ from airflow_client.client.models.bulk_update_action_bulk_task_instance_body imp
287
290
  from airflow_client.client.models.bulk_update_action_connection_body import BulkUpdateActionConnectionBody as BulkUpdateActionConnectionBody
288
291
  from airflow_client.client.models.bulk_update_action_pool_body import BulkUpdateActionPoolBody as BulkUpdateActionPoolBody
289
292
  from airflow_client.client.models.bulk_update_action_variable_body import BulkUpdateActionVariableBody as BulkUpdateActionVariableBody
293
+ from airflow_client.client.models.clear_task_instance_collection_response import ClearTaskInstanceCollectionResponse as ClearTaskInstanceCollectionResponse
290
294
  from airflow_client.client.models.clear_task_instances_body import ClearTaskInstancesBody as ClearTaskInstancesBody
291
295
  from airflow_client.client.models.clear_task_instances_body_task_ids_inner import ClearTaskInstancesBodyTaskIdsInner as ClearTaskInstancesBodyTaskIdsInner
292
296
  from airflow_client.client.models.config import Config as Config
@@ -354,6 +358,7 @@ from airflow_client.client.models.job_response import JobResponse as JobResponse
354
358
  from airflow_client.client.models.last_asset_event_response import LastAssetEventResponse as LastAssetEventResponse
355
359
  from airflow_client.client.models.location_inner import LocationInner as LocationInner
356
360
  from airflow_client.client.models.materialize_asset_body import MaterializeAssetBody as MaterializeAssetBody
361
+ from airflow_client.client.models.new_task_response import NewTaskResponse as NewTaskResponse
357
362
  from airflow_client.client.models.patch_task_instance_body import PatchTaskInstanceBody as PatchTaskInstanceBody
358
363
  from airflow_client.client.models.plugin_collection_response import PluginCollectionResponse as PluginCollectionResponse
359
364
  from airflow_client.client.models.plugin_import_error_collection_response import PluginImportErrorCollectionResponse as PluginImportErrorCollectionResponse
@@ -383,6 +388,7 @@ from airflow_client.client.models.task_instance_history_response import TaskInst
383
388
  from airflow_client.client.models.task_instance_response import TaskInstanceResponse as TaskInstanceResponse
384
389
  from airflow_client.client.models.task_instance_state import TaskInstanceState as TaskInstanceState
385
390
  from airflow_client.client.models.task_instances_batch_body import TaskInstancesBatchBody as TaskInstancesBatchBody
391
+ from airflow_client.client.models.task_instances_inner import TaskInstancesInner as TaskInstancesInner
386
392
  from airflow_client.client.models.task_instances_log_response import TaskInstancesLogResponse as TaskInstancesLogResponse
387
393
  from airflow_client.client.models.task_outlet_asset_reference import TaskOutletAssetReference as TaskOutletAssetReference
388
394
  from airflow_client.client.models.task_response import TaskResponse as TaskResponse
@@ -647,7 +647,7 @@ class AssetApi:
647
647
  ) -> None:
648
648
  """Delete Dag Asset Queued Event
649
649
 
650
- Delete a queued asset event for a DAG.
650
+ Delete a queued asset event for a Dag.
651
651
 
652
652
  :param dag_id: (required)
653
653
  :type dag_id: str
@@ -727,7 +727,7 @@ class AssetApi:
727
727
  ) -> ApiResponse[None]:
728
728
  """Delete Dag Asset Queued Event
729
729
 
730
- Delete a queued asset event for a DAG.
730
+ Delete a queued asset event for a Dag.
731
731
 
732
732
  :param dag_id: (required)
733
733
  :type dag_id: str
@@ -807,7 +807,7 @@ class AssetApi:
807
807
  ) -> RESTResponseType:
808
808
  """Delete Dag Asset Queued Event
809
809
 
810
- Delete a queued asset event for a DAG.
810
+ Delete a queued asset event for a Dag.
811
811
 
812
812
  :param dag_id: (required)
813
813
  :type dag_id: str
@@ -1779,7 +1779,8 @@ class AssetApi:
1779
1779
  self,
1780
1780
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1781
1781
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1782
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
1782
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
1783
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
1783
1784
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
1784
1785
  _request_timeout: Union[
1785
1786
  None,
@@ -1802,8 +1803,10 @@ class AssetApi:
1802
1803
  :type limit: int
1803
1804
  :param offset:
1804
1805
  :type offset: int
1805
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
1806
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
1806
1807
  :type name_pattern: str
1808
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
1809
+ :type name_prefix_pattern: str
1807
1810
  :param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
1808
1811
  :type order_by: List[str]
1809
1812
  :param _request_timeout: timeout setting for this request. If one
@@ -1832,6 +1835,7 @@ class AssetApi:
1832
1835
  limit=limit,
1833
1836
  offset=offset,
1834
1837
  name_pattern=name_pattern,
1838
+ name_prefix_pattern=name_prefix_pattern,
1835
1839
  order_by=order_by,
1836
1840
  _request_auth=_request_auth,
1837
1841
  _content_type=_content_type,
@@ -1862,7 +1866,8 @@ class AssetApi:
1862
1866
  self,
1863
1867
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1864
1868
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1865
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
1869
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
1870
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
1866
1871
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
1867
1872
  _request_timeout: Union[
1868
1873
  None,
@@ -1885,8 +1890,10 @@ class AssetApi:
1885
1890
  :type limit: int
1886
1891
  :param offset:
1887
1892
  :type offset: int
1888
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
1893
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
1889
1894
  :type name_pattern: str
1895
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
1896
+ :type name_prefix_pattern: str
1890
1897
  :param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
1891
1898
  :type order_by: List[str]
1892
1899
  :param _request_timeout: timeout setting for this request. If one
@@ -1915,6 +1922,7 @@ class AssetApi:
1915
1922
  limit=limit,
1916
1923
  offset=offset,
1917
1924
  name_pattern=name_pattern,
1925
+ name_prefix_pattern=name_prefix_pattern,
1918
1926
  order_by=order_by,
1919
1927
  _request_auth=_request_auth,
1920
1928
  _content_type=_content_type,
@@ -1945,7 +1953,8 @@ class AssetApi:
1945
1953
  self,
1946
1954
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1947
1955
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1948
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
1956
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
1957
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
1949
1958
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
1950
1959
  _request_timeout: Union[
1951
1960
  None,
@@ -1968,8 +1977,10 @@ class AssetApi:
1968
1977
  :type limit: int
1969
1978
  :param offset:
1970
1979
  :type offset: int
1971
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
1980
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
1972
1981
  :type name_pattern: str
1982
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
1983
+ :type name_prefix_pattern: str
1973
1984
  :param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
1974
1985
  :type order_by: List[str]
1975
1986
  :param _request_timeout: timeout setting for this request. If one
@@ -1998,6 +2009,7 @@ class AssetApi:
1998
2009
  limit=limit,
1999
2010
  offset=offset,
2000
2011
  name_pattern=name_pattern,
2012
+ name_prefix_pattern=name_prefix_pattern,
2001
2013
  order_by=order_by,
2002
2014
  _request_auth=_request_auth,
2003
2015
  _content_type=_content_type,
@@ -2024,6 +2036,7 @@ class AssetApi:
2024
2036
  limit,
2025
2037
  offset,
2026
2038
  name_pattern,
2039
+ name_prefix_pattern,
2027
2040
  order_by,
2028
2041
  _request_auth,
2029
2042
  _content_type,
@@ -2060,6 +2073,10 @@ class AssetApi:
2060
2073
 
2061
2074
  _query_params.append(('name_pattern', name_pattern))
2062
2075
 
2076
+ if name_prefix_pattern is not None:
2077
+
2078
+ _query_params.append(('name_prefix_pattern', name_prefix_pattern))
2079
+
2063
2080
  if order_by is not None:
2064
2081
 
2065
2082
  _query_params.append(('order_by', order_by))
@@ -2113,7 +2130,8 @@ class AssetApi:
2113
2130
  source_task_id: Optional[StrictStr] = None,
2114
2131
  source_run_id: Optional[StrictStr] = None,
2115
2132
  source_map_index: Optional[StrictInt] = None,
2116
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
2133
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
2134
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
2117
2135
  timestamp_gte: Optional[datetime] = None,
2118
2136
  timestamp_gt: Optional[datetime] = None,
2119
2137
  timestamp_lte: Optional[datetime] = None,
@@ -2151,8 +2169,10 @@ class AssetApi:
2151
2169
  :type source_run_id: str
2152
2170
  :param source_map_index:
2153
2171
  :type source_map_index: int
2154
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
2172
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
2155
2173
  :type name_pattern: str
2174
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
2175
+ :type name_prefix_pattern: str
2156
2176
  :param timestamp_gte:
2157
2177
  :type timestamp_gte: datetime
2158
2178
  :param timestamp_gt:
@@ -2193,6 +2213,7 @@ class AssetApi:
2193
2213
  source_run_id=source_run_id,
2194
2214
  source_map_index=source_map_index,
2195
2215
  name_pattern=name_pattern,
2216
+ name_prefix_pattern=name_prefix_pattern,
2196
2217
  timestamp_gte=timestamp_gte,
2197
2218
  timestamp_gt=timestamp_gt,
2198
2219
  timestamp_lte=timestamp_lte,
@@ -2232,7 +2253,8 @@ class AssetApi:
2232
2253
  source_task_id: Optional[StrictStr] = None,
2233
2254
  source_run_id: Optional[StrictStr] = None,
2234
2255
  source_map_index: Optional[StrictInt] = None,
2235
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
2256
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
2257
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
2236
2258
  timestamp_gte: Optional[datetime] = None,
2237
2259
  timestamp_gt: Optional[datetime] = None,
2238
2260
  timestamp_lte: Optional[datetime] = None,
@@ -2270,8 +2292,10 @@ class AssetApi:
2270
2292
  :type source_run_id: str
2271
2293
  :param source_map_index:
2272
2294
  :type source_map_index: int
2273
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
2295
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
2274
2296
  :type name_pattern: str
2297
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
2298
+ :type name_prefix_pattern: str
2275
2299
  :param timestamp_gte:
2276
2300
  :type timestamp_gte: datetime
2277
2301
  :param timestamp_gt:
@@ -2312,6 +2336,7 @@ class AssetApi:
2312
2336
  source_run_id=source_run_id,
2313
2337
  source_map_index=source_map_index,
2314
2338
  name_pattern=name_pattern,
2339
+ name_prefix_pattern=name_prefix_pattern,
2315
2340
  timestamp_gte=timestamp_gte,
2316
2341
  timestamp_gt=timestamp_gt,
2317
2342
  timestamp_lte=timestamp_lte,
@@ -2351,7 +2376,8 @@ class AssetApi:
2351
2376
  source_task_id: Optional[StrictStr] = None,
2352
2377
  source_run_id: Optional[StrictStr] = None,
2353
2378
  source_map_index: Optional[StrictInt] = None,
2354
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
2379
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
2380
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
2355
2381
  timestamp_gte: Optional[datetime] = None,
2356
2382
  timestamp_gt: Optional[datetime] = None,
2357
2383
  timestamp_lte: Optional[datetime] = None,
@@ -2389,8 +2415,10 @@ class AssetApi:
2389
2415
  :type source_run_id: str
2390
2416
  :param source_map_index:
2391
2417
  :type source_map_index: int
2392
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
2418
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
2393
2419
  :type name_pattern: str
2420
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
2421
+ :type name_prefix_pattern: str
2394
2422
  :param timestamp_gte:
2395
2423
  :type timestamp_gte: datetime
2396
2424
  :param timestamp_gt:
@@ -2431,6 +2459,7 @@ class AssetApi:
2431
2459
  source_run_id=source_run_id,
2432
2460
  source_map_index=source_map_index,
2433
2461
  name_pattern=name_pattern,
2462
+ name_prefix_pattern=name_prefix_pattern,
2434
2463
  timestamp_gte=timestamp_gte,
2435
2464
  timestamp_gt=timestamp_gt,
2436
2465
  timestamp_lte=timestamp_lte,
@@ -2466,6 +2495,7 @@ class AssetApi:
2466
2495
  source_run_id,
2467
2496
  source_map_index,
2468
2497
  name_pattern,
2498
+ name_prefix_pattern,
2469
2499
  timestamp_gte,
2470
2500
  timestamp_gt,
2471
2501
  timestamp_lte,
@@ -2529,6 +2559,10 @@ class AssetApi:
2529
2559
 
2530
2560
  _query_params.append(('name_pattern', name_pattern))
2531
2561
 
2562
+ if name_prefix_pattern is not None:
2563
+
2564
+ _query_params.append(('name_prefix_pattern', name_prefix_pattern))
2565
+
2532
2566
  if timestamp_gte is not None:
2533
2567
  if isinstance(timestamp_gte, datetime):
2534
2568
  _query_params.append(
@@ -2912,8 +2946,10 @@ class AssetApi:
2912
2946
  self,
2913
2947
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
2914
2948
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
2915
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
2916
- uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
2949
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
2950
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
2951
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
2952
+ uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
2917
2953
  dag_ids: Optional[List[StrictStr]] = None,
2918
2954
  only_active: Optional[StrictBool] = None,
2919
2955
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
@@ -2938,10 +2974,14 @@ class AssetApi:
2938
2974
  :type limit: int
2939
2975
  :param offset:
2940
2976
  :type offset: int
2941
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
2977
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
2942
2978
  :type name_pattern: str
2943
- :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
2979
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
2980
+ :type name_prefix_pattern: str
2981
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
2944
2982
  :type uri_pattern: str
2983
+ :param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
2984
+ :type uri_prefix_pattern: str
2945
2985
  :param dag_ids:
2946
2986
  :type dag_ids: List[str]
2947
2987
  :param only_active:
@@ -2974,7 +3014,9 @@ class AssetApi:
2974
3014
  limit=limit,
2975
3015
  offset=offset,
2976
3016
  name_pattern=name_pattern,
3017
+ name_prefix_pattern=name_prefix_pattern,
2977
3018
  uri_pattern=uri_pattern,
3019
+ uri_prefix_pattern=uri_prefix_pattern,
2978
3020
  dag_ids=dag_ids,
2979
3021
  only_active=only_active,
2980
3022
  order_by=order_by,
@@ -3007,8 +3049,10 @@ class AssetApi:
3007
3049
  self,
3008
3050
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3009
3051
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3010
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
3011
- uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
3052
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
3053
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
3054
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
3055
+ uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
3012
3056
  dag_ids: Optional[List[StrictStr]] = None,
3013
3057
  only_active: Optional[StrictBool] = None,
3014
3058
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
@@ -3033,10 +3077,14 @@ class AssetApi:
3033
3077
  :type limit: int
3034
3078
  :param offset:
3035
3079
  :type offset: int
3036
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
3080
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
3037
3081
  :type name_pattern: str
3038
- :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
3082
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
3083
+ :type name_prefix_pattern: str
3084
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
3039
3085
  :type uri_pattern: str
3086
+ :param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
3087
+ :type uri_prefix_pattern: str
3040
3088
  :param dag_ids:
3041
3089
  :type dag_ids: List[str]
3042
3090
  :param only_active:
@@ -3069,7 +3117,9 @@ class AssetApi:
3069
3117
  limit=limit,
3070
3118
  offset=offset,
3071
3119
  name_pattern=name_pattern,
3120
+ name_prefix_pattern=name_prefix_pattern,
3072
3121
  uri_pattern=uri_pattern,
3122
+ uri_prefix_pattern=uri_prefix_pattern,
3073
3123
  dag_ids=dag_ids,
3074
3124
  only_active=only_active,
3075
3125
  order_by=order_by,
@@ -3102,8 +3152,10 @@ class AssetApi:
3102
3152
  self,
3103
3153
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3104
3154
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3105
- name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
3106
- uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
3155
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
3156
+ name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
3157
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
3158
+ uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
3107
3159
  dag_ids: Optional[List[StrictStr]] = None,
3108
3160
  only_active: Optional[StrictBool] = None,
3109
3161
  order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
@@ -3128,10 +3180,14 @@ class AssetApi:
3128
3180
  :type limit: int
3129
3181
  :param offset:
3130
3182
  :type offset: int
3131
- :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
3183
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
3132
3184
  :type name_pattern: str
3133
- :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
3185
+ :param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
3186
+ :type name_prefix_pattern: str
3187
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
3134
3188
  :type uri_pattern: str
3189
+ :param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
3190
+ :type uri_prefix_pattern: str
3135
3191
  :param dag_ids:
3136
3192
  :type dag_ids: List[str]
3137
3193
  :param only_active:
@@ -3164,7 +3220,9 @@ class AssetApi:
3164
3220
  limit=limit,
3165
3221
  offset=offset,
3166
3222
  name_pattern=name_pattern,
3223
+ name_prefix_pattern=name_prefix_pattern,
3167
3224
  uri_pattern=uri_pattern,
3225
+ uri_prefix_pattern=uri_prefix_pattern,
3168
3226
  dag_ids=dag_ids,
3169
3227
  only_active=only_active,
3170
3228
  order_by=order_by,
@@ -3193,7 +3251,9 @@ class AssetApi:
3193
3251
  limit,
3194
3252
  offset,
3195
3253
  name_pattern,
3254
+ name_prefix_pattern,
3196
3255
  uri_pattern,
3256
+ uri_prefix_pattern,
3197
3257
  dag_ids,
3198
3258
  only_active,
3199
3259
  order_by,
@@ -3233,10 +3293,18 @@ class AssetApi:
3233
3293
 
3234
3294
  _query_params.append(('name_pattern', name_pattern))
3235
3295
 
3296
+ if name_prefix_pattern is not None:
3297
+
3298
+ _query_params.append(('name_prefix_pattern', name_prefix_pattern))
3299
+
3236
3300
  if uri_pattern is not None:
3237
3301
 
3238
3302
  _query_params.append(('uri_pattern', uri_pattern))
3239
3303
 
3304
+ if uri_prefix_pattern is not None:
3305
+
3306
+ _query_params.append(('uri_prefix_pattern', uri_prefix_pattern))
3307
+
3240
3308
  if dag_ids is not None:
3241
3309
 
3242
3310
  _query_params.append(('dag_ids', dag_ids))
@@ -3308,7 +3376,7 @@ class AssetApi:
3308
3376
  ) -> QueuedEventResponse:
3309
3377
  """Get Dag Asset Queued Event
3310
3378
 
3311
- Get a queued asset event for a DAG.
3379
+ Get a queued asset event for a Dag.
3312
3380
 
3313
3381
  :param dag_id: (required)
3314
3382
  :type dag_id: str
@@ -3387,7 +3455,7 @@ class AssetApi:
3387
3455
  ) -> ApiResponse[QueuedEventResponse]:
3388
3456
  """Get Dag Asset Queued Event
3389
3457
 
3390
- Get a queued asset event for a DAG.
3458
+ Get a queued asset event for a Dag.
3391
3459
 
3392
3460
  :param dag_id: (required)
3393
3461
  :type dag_id: str
@@ -3466,7 +3534,7 @@ class AssetApi:
3466
3534
  ) -> RESTResponseType:
3467
3535
  """Get Dag Asset Queued Event
3468
3536
 
3469
- Get a queued asset event for a DAG.
3537
+ Get a queued asset event for a Dag.
3470
3538
 
3471
3539
  :param dag_id: (required)
3472
3540
  :type dag_id: str
@@ -3613,7 +3681,7 @@ class AssetApi:
3613
3681
  ) -> QueuedEventCollectionResponse:
3614
3682
  """Get Dag Asset Queued Events
3615
3683
 
3616
- Get queued asset events for a DAG.
3684
+ Get queued asset events for a Dag.
3617
3685
 
3618
3686
  :param dag_id: (required)
3619
3687
  :type dag_id: str
@@ -3687,7 +3755,7 @@ class AssetApi:
3687
3755
  ) -> ApiResponse[QueuedEventCollectionResponse]:
3688
3756
  """Get Dag Asset Queued Events
3689
3757
 
3690
- Get queued asset events for a DAG.
3758
+ Get queued asset events for a Dag.
3691
3759
 
3692
3760
  :param dag_id: (required)
3693
3761
  :type dag_id: str
@@ -3761,7 +3829,7 @@ class AssetApi:
3761
3829
  ) -> RESTResponseType:
3762
3830
  """Get Dag Asset Queued Events
3763
3831
 
3764
- Get queued asset events for a DAG.
3832
+ Get queued asset events for a Dag.
3765
3833
 
3766
3834
  :param dag_id: (required)
3767
3835
  :type dag_id: str
@@ -3901,7 +3969,7 @@ class AssetApi:
3901
3969
  ) -> DAGRunResponse:
3902
3970
  """Materialize Asset
3903
3971
 
3904
- Materialize an asset by triggering a DAG run that produces it.
3972
+ Materialize an asset by triggering a Dag run that produces it.
3905
3973
 
3906
3974
  :param asset_id: (required)
3907
3975
  :type asset_id: int
@@ -3978,7 +4046,7 @@ class AssetApi:
3978
4046
  ) -> ApiResponse[DAGRunResponse]:
3979
4047
  """Materialize Asset
3980
4048
 
3981
- Materialize an asset by triggering a DAG run that produces it.
4049
+ Materialize an asset by triggering a Dag run that produces it.
3982
4050
 
3983
4051
  :param asset_id: (required)
3984
4052
  :type asset_id: int
@@ -4055,7 +4123,7 @@ class AssetApi:
4055
4123
  ) -> RESTResponseType:
4056
4124
  """Materialize Asset
4057
4125
 
4058
- Materialize an asset by triggering a DAG run that produces it.
4126
+ Materialize an asset by triggering a Dag run that produces it.
4059
4127
 
4060
4128
  :param asset_id: (required)
4061
4129
  :type asset_id: int