apache-airflow-client 3.2.2__tar.gz → 3.3.0__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 (651) hide show
  1. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/PKG-INFO +3 -3
  2. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/README.md +2 -2
  3. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/__init__.py +57 -3
  4. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/__init__.py +2 -0
  5. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/asset_api.py +24 -24
  6. apache_airflow_client-3.3.0/airflow_client/client/api/asset_state_store_api.py +1517 -0
  7. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/connection_api.py +570 -6
  8. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_api.py +24 -24
  9. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_run_api.py +996 -81
  10. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/event_log_api.py +30 -30
  11. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/experimental_api.py +6 -6
  12. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/import_error_api.py +40 -6
  13. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/login_api.py +3 -0
  14. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/pool_api.py +6 -9
  15. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/task_instance_api.py +793 -102
  16. apache_airflow_client-3.3.0/airflow_client/client/api/task_state_store_api.py +2134 -0
  17. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/variable_api.py +6 -6
  18. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/x_com_api.py +24 -24
  19. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api_client.py +1 -1
  20. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/configuration.py +1 -1
  21. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/__init__.py +26 -1
  22. apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner.py +151 -0
  23. apache_airflow_client-3.2.2/airflow_client/client/models/actions_inner.py → apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner1.py +8 -8
  24. apache_airflow_client-3.2.2/airflow_client/client/models/actions_inner1.py → apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner2.py +8 -8
  25. apache_airflow_client-3.2.2/airflow_client/client/models/actions_inner2.py → apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner3.py +8 -8
  26. apache_airflow_client-3.2.2/airflow_client/client/models/actions_inner3.py → apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner4.py +8 -8
  27. apache_airflow_client-3.3.0/airflow_client/client/models/asset_event_access_control.py +90 -0
  28. apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_body.py +93 -0
  29. apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_collection_response.py +98 -0
  30. apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_last_updated_by.py +97 -0
  31. apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_response.py +104 -0
  32. apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_writer_kind.py +38 -0
  33. apache_airflow_client-3.3.0/airflow_client/client/models/async_connection_test_response.py +97 -0
  34. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_post_body.py +2 -2
  35. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_body_bulk_dag_run_body.py +96 -0
  36. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_bulk_task_instance_body.py +3 -3
  37. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_connection_body.py +3 -3
  38. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_pool_body.py +3 -3
  39. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_variable_body.py +3 -3
  40. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_create_action_bulk_dag_run_body.py +108 -0
  41. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_dag_run_body.py +96 -0
  42. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_dag_run_clear_body.py +114 -0
  43. apache_airflow_client-3.2.2/airflow_client/client/models/bulk_delete_action_bulk_task_instance_body.py → apache_airflow_client-3.3.0/airflow_client/client/models/bulk_delete_action_bulk_dag_run_body.py +4 -4
  44. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_delete_action_bulk_task_instance_body.py +108 -0
  45. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_connection_body.py +3 -3
  46. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_pool_body.py +3 -3
  47. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_variable_body.py +3 -3
  48. apache_airflow_client-3.3.0/airflow_client/client/models/bulk_update_action_bulk_dag_run_body.py +110 -0
  49. apache_airflow_client-3.3.0/airflow_client/client/models/clear_partitions_body.py +99 -0
  50. apache_airflow_client-3.3.0/airflow_client/client/models/clear_partitions_response.py +92 -0
  51. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/clear_task_instances_body.py +6 -3
  52. apache_airflow_client-3.3.0/airflow_client/client/models/connection_test_queued_response.py +92 -0
  53. apache_airflow_client-3.3.0/airflow_client/client/models/connection_test_request_body.py +123 -0
  54. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_test_response.py +1 -1
  55. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/create_asset_events_body.py +7 -1
  56. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_details_response.py +9 -1
  57. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_response.py +7 -1
  58. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_clear_body.py +7 -4
  59. apache_airflow_client-3.2.2/airflow_client/client/models/dag_run_patch_states.py → apache_airflow_client-3.3.0/airflow_client/client/models/dag_run_mutable_states.py +3 -3
  60. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_patch_body.py +2 -2
  61. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_response.py +3 -1
  62. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_type.py +1 -0
  63. apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner.py +136 -0
  64. apache_airflow_client-3.2.2/airflow_client/client/models/entities_inner.py → apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner1.py +6 -6
  65. apache_airflow_client-3.2.2/airflow_client/client/models/entities_inner1.py → apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner2.py +6 -6
  66. apache_airflow_client-3.2.2/airflow_client/client/models/entities_inner2.py → apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner3.py +6 -6
  67. apache_airflow_client-3.2.2/airflow_client/client/models/entities_inner3.py → apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner4.py +6 -6
  68. apache_airflow_client-3.3.0/airflow_client/client/models/expires_at.py +145 -0
  69. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/external_view_response.py +4 -2
  70. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/patch_task_instance_body.py +1 -1
  71. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/react_app_response.py +4 -2
  72. apache_airflow_client-3.3.0/airflow_client/client/models/response_clear_dag_runs.py +134 -0
  73. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_state.py +1 -0
  74. apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_body.py +104 -0
  75. apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_collection_response.py +98 -0
  76. apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_patch_body.py +93 -0
  77. apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_response.py +100 -0
  78. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_response.py +1 -1
  79. apache_airflow_client-3.3.0/docs/ActionsInner4.md +33 -0
  80. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetApi.md +8 -8
  81. apache_airflow_client-3.3.0/docs/AssetEventAccessControl.md +31 -0
  82. apache_airflow_client-3.3.0/docs/AssetStateStoreApi.md +442 -0
  83. apache_airflow_client-3.3.0/docs/AssetStateStoreBody.md +30 -0
  84. apache_airflow_client-3.3.0/docs/AssetStateStoreCollectionResponse.md +31 -0
  85. apache_airflow_client-3.3.0/docs/AssetStateStoreLastUpdatedBy.md +34 -0
  86. apache_airflow_client-3.3.0/docs/AssetStateStoreResponse.md +33 -0
  87. apache_airflow_client-3.3.0/docs/AssetStateStoreWriterKind.md +15 -0
  88. apache_airflow_client-3.3.0/docs/AsyncConnectionTestResponse.md +34 -0
  89. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillPostBody.md +1 -1
  90. apache_airflow_client-3.3.0/docs/BulkBodyBulkDAGRunBody.md +29 -0
  91. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyBulkTaskInstanceBody.md +1 -1
  92. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyConnectionBody.md +1 -1
  93. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyPoolBody.md +1 -1
  94. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyVariableBody.md +1 -1
  95. apache_airflow_client-3.3.0/docs/BulkCreateActionBulkDAGRunBody.md +31 -0
  96. apache_airflow_client-3.3.0/docs/BulkDAGRunBody.md +33 -0
  97. apache_airflow_client-3.3.0/docs/BulkDAGRunClearBody.md +38 -0
  98. apache_airflow_client-3.3.0/docs/BulkDeleteActionBulkDAGRunBody.md +31 -0
  99. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionBulkTaskInstanceBody.md +1 -1
  100. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionConnectionBody.md +1 -1
  101. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionPoolBody.md +1 -1
  102. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionVariableBody.md +1 -1
  103. apache_airflow_client-3.3.0/docs/BulkUpdateActionBulkDAGRunBody.md +32 -0
  104. apache_airflow_client-3.3.0/docs/ClearPartitionsBody.md +35 -0
  105. apache_airflow_client-3.3.0/docs/ClearPartitionsResponse.md +32 -0
  106. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstancesBody.md +2 -1
  107. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionApi.md +175 -2
  108. apache_airflow_client-3.3.0/docs/ConnectionTestQueuedResponse.md +32 -0
  109. apache_airflow_client-3.3.0/docs/ConnectionTestRequestBody.md +42 -0
  110. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionTestResponse.md +1 -1
  111. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/CreateAssetEventsBody.md +1 -0
  112. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGApi.md +8 -8
  113. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGDetailsResponse.md +3 -0
  114. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGResponse.md +2 -0
  115. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunClearBody.md +3 -2
  116. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunPatchBody.md +1 -1
  117. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunResponse.md +1 -0
  118. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunApi.md +280 -12
  119. apache_airflow_client-3.2.2/docs/DAGRunPatchStates.md → apache_airflow_client-3.3.0/docs/DagRunMutableStates.md +2 -2
  120. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunType.md +2 -0
  121. apache_airflow_client-3.3.0/docs/EntitiesInner.md +32 -0
  122. apache_airflow_client-3.2.2/docs/EntitiesInner.md → apache_airflow_client-3.3.0/docs/EntitiesInner1.md +8 -8
  123. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EntitiesInner2.md +8 -3
  124. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EntitiesInner3.md +3 -2
  125. apache_airflow_client-3.3.0/docs/EntitiesInner4.md +32 -0
  126. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogApi.md +10 -10
  127. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExperimentalApi.md +2 -2
  128. apache_airflow_client-3.3.0/docs/ExpiresAt.md +28 -0
  129. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExternalViewResponse.md +1 -0
  130. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorApi.md +8 -4
  131. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LoginApi.md +1 -0
  132. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PatchTaskInstanceBody.md +1 -1
  133. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolApi.md +2 -3
  134. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ReactAppResponse.md +1 -0
  135. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ResponseClearDagRun.md +1 -0
  136. apache_airflow_client-3.3.0/docs/ResponseClearDagRuns.md +33 -0
  137. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceApi.md +225 -34
  138. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceState.md +2 -0
  139. apache_airflow_client-3.3.0/docs/TaskStateStoreApi.md +573 -0
  140. apache_airflow_client-3.3.0/docs/TaskStateStoreBody.md +31 -0
  141. apache_airflow_client-3.3.0/docs/TaskStateStoreCollectionResponse.md +31 -0
  142. apache_airflow_client-3.3.0/docs/TaskStateStorePatchBody.md +30 -0
  143. apache_airflow_client-3.3.0/docs/TaskStateStoreResponse.md +33 -0
  144. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableApi.md +2 -2
  145. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableResponse.md +1 -1
  146. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComApi.md +8 -8
  147. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/pyproject.toml +2 -2
  148. apache_airflow_client-3.3.0/test/test_actions_inner4.py +63 -0
  149. apache_airflow_client-3.3.0/test/test_asset_event_access_control.py +54 -0
  150. apache_airflow_client-3.3.0/test/test_asset_state_store_api.py +66 -0
  151. apache_airflow_client-3.3.0/test/test_asset_state_store_body.py +52 -0
  152. apache_airflow_client-3.3.0/test/test_asset_state_store_collection_response.py +66 -0
  153. apache_airflow_client-3.3.0/test/test_asset_state_store_last_updated_by.py +56 -0
  154. apache_airflow_client-3.3.0/test/test_asset_state_store_response.py +62 -0
  155. apache_airflow_client-3.3.0/test/test_asset_state_store_writer_kind.py +33 -0
  156. apache_airflow_client-3.3.0/test/test_async_connection_test_response.py +59 -0
  157. apache_airflow_client-3.3.0/test/test_bulk_body_bulk_dag_run_body.py +56 -0
  158. apache_airflow_client-3.3.0/test/test_bulk_create_action_bulk_dag_run_body.py +67 -0
  159. apache_airflow_client-3.3.0/test/test_bulk_dag_run_body.py +55 -0
  160. apache_airflow_client-3.3.0/test/test_bulk_dag_run_clear_body.py +65 -0
  161. apache_airflow_client-3.3.0/test/test_bulk_delete_action_bulk_dag_run_body.py +59 -0
  162. apache_airflow_client-3.3.0/test/test_bulk_update_action_bulk_dag_run_body.py +70 -0
  163. apache_airflow_client-3.3.0/test/test_clear_partitions_body.py +56 -0
  164. apache_airflow_client-3.3.0/test/test_clear_partitions_response.py +56 -0
  165. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instances_body.py +1 -0
  166. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_api.py +14 -0
  167. apache_airflow_client-3.3.0/test/test_connection_test_queued_response.py +56 -0
  168. apache_airflow_client-3.3.0/test/test_connection_test_request_body.py +65 -0
  169. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_create_asset_events_body.py +5 -0
  170. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_collection_response.py +4 -0
  171. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_details_response.py +5 -0
  172. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_response.py +4 -0
  173. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_api.py +21 -0
  174. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_clear_body.py +1 -0
  175. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_collection_response.py +2 -0
  176. apache_airflow_client-3.2.2/test/test_dag_run_patch_states.py → apache_airflow_client-3.3.0/test/test_dag_run_mutable_states.py +6 -6
  177. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_response.py +1 -0
  178. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner.py +2 -8
  179. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner1.py +11 -12
  180. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner2.py +10 -5
  181. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner3.py +6 -5
  182. apache_airflow_client-3.3.0/test/test_entities_inner4.py +56 -0
  183. apache_airflow_client-3.3.0/test/test_expires_at.py +50 -0
  184. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_external_view_response.py +1 -0
  185. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_react_app_response.py +1 -0
  186. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_response_clear_dag_run.py +1 -0
  187. apache_airflow_client-3.3.0/test/test_response_clear_dag_runs.py +130 -0
  188. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_api.py +14 -0
  189. apache_airflow_client-3.3.0/test/test_task_state_store_api.py +73 -0
  190. apache_airflow_client-3.3.0/test/test_task_state_store_body.py +53 -0
  191. apache_airflow_client-3.3.0/test/test_task_state_store_collection_response.py +66 -0
  192. apache_airflow_client-3.3.0/test/test_task_state_store_patch_body.py +52 -0
  193. apache_airflow_client-3.3.0/test/test_task_state_store_response.py +57 -0
  194. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_response.py +0 -1
  195. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/v2.yaml +2107 -427
  196. apache_airflow_client-3.3.0/version.txt +1 -0
  197. apache_airflow_client-3.2.2/docs/EntitiesInner1.md +0 -38
  198. apache_airflow_client-3.2.2/version.txt +0 -1
  199. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/.gitignore +0 -0
  200. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/INSTALL +0 -0
  201. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/LICENSE +0 -0
  202. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/NOTICE +0 -0
  203. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/backfill_api.py +0 -0
  204. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/config_api.py +0 -0
  205. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_parsing_api.py +0 -0
  206. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_source_api.py +0 -0
  207. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_stats_api.py +0 -0
  208. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_version_api.py +0 -0
  209. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_warning_api.py +0 -0
  210. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/extra_links_api.py +0 -0
  211. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/job_api.py +0 -0
  212. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/monitor_api.py +0 -0
  213. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/plugin_api.py +0 -0
  214. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/provider_api.py +0 -0
  215. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/task_api.py +0 -0
  216. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/version_api.py +0 -0
  217. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api_response.py +0 -0
  218. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/exceptions.py +0 -0
  219. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/app_builder_menu_item_response.py +0 -0
  220. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/app_builder_view_response.py +0 -0
  221. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_alias_collection_response.py +0 -0
  222. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_alias_response.py +0 -0
  223. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_collection_response.py +0 -0
  224. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_event_collection_response.py +0 -0
  225. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_event_response.py +0 -0
  226. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_response.py +0 -0
  227. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_watcher_response.py +0 -0
  228. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_collection_response.py +0 -0
  229. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_response.py +0 -0
  230. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/base_info_response.py +0 -0
  231. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_not_on_existence.py +0 -0
  232. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_on_existence.py +0 -0
  233. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_response.py +0 -0
  234. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_bulk_task_instance_body.py +0 -0
  235. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_connection_body.py +0 -0
  236. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_pool_body.py +0 -0
  237. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_variable_body.py +0 -0
  238. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_response.py +0 -0
  239. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_task_instance_body.py +0 -0
  240. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_bulk_task_instance_body.py +0 -0
  241. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_connection_body.py +0 -0
  242. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_pool_body.py +0 -0
  243. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_variable_body.py +0 -0
  244. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/clear_task_instance_collection_response.py +0 -0
  245. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/clear_task_instances_body_task_ids_inner.py +0 -0
  246. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config.py +0 -0
  247. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config_option.py +0 -0
  248. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config_section.py +0 -0
  249. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_body.py +0 -0
  250. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_collection_response.py +0 -0
  251. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_response.py +0 -0
  252. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/content.py +0 -0
  253. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_collection_response.py +0 -0
  254. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_patch_body.py +0 -0
  255. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_processor_info_response.py +0 -0
  256. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_asset_reference.py +0 -0
  257. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_collection_response.py +0 -0
  258. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_state.py +0 -0
  259. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_triggered_by_type.py +0 -0
  260. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_runs_batch_body.py +0 -0
  261. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_schedule_asset_reference.py +0 -0
  262. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_source_response.py +0 -0
  263. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_collection_response.py +0 -0
  264. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_response.py +0 -0
  265. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_state_response.py +0 -0
  266. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_tag_collection_response.py +0 -0
  267. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_tag_response.py +0 -0
  268. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_version_collection_response.py +0 -0
  269. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_version_response.py +0 -0
  270. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_collection_response.py +0 -0
  271. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_response.py +0 -0
  272. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_type.py +0 -0
  273. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/detail.py +0 -0
  274. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dry_run_backfill_collection_response.py +0 -0
  275. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dry_run_backfill_response.py +0 -0
  276. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/event_log_collection_response.py +0 -0
  277. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/event_log_response.py +0 -0
  278. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/external_log_url_response.py +0 -0
  279. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/extra_link_collection_response.py +0 -0
  280. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/fast_api_app_response.py +0 -0
  281. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/fast_api_root_middleware_response.py +0 -0
  282. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/health_info_response.py +0 -0
  283. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail.py +0 -0
  284. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_collection.py +0 -0
  285. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_history.py +0 -0
  286. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_response.py +0 -0
  287. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_user.py +0 -0
  288. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/http_exception_response.py +0 -0
  289. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/http_validation_error.py +0 -0
  290. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/import_error_collection_response.py +0 -0
  291. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/import_error_response.py +0 -0
  292. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/job_collection_response.py +0 -0
  293. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/job_response.py +0 -0
  294. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/last_asset_event_response.py +0 -0
  295. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/location_inner.py +0 -0
  296. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/materialize_asset_body.py +0 -0
  297. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/new_task_response.py +0 -0
  298. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_collection_response.py +0 -0
  299. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_import_error_collection_response.py +0 -0
  300. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_import_error_response.py +0 -0
  301. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_response.py +0 -0
  302. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_body.py +0 -0
  303. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_collection_response.py +0 -0
  304. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_patch_body.py +0 -0
  305. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_response.py +0 -0
  306. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/provider_collection_response.py +0 -0
  307. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/provider_response.py +0 -0
  308. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/queued_event_collection_response.py +0 -0
  309. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/queued_event_response.py +0 -0
  310. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/reprocess_behavior.py +0 -0
  311. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/response_clear_dag_run.py +0 -0
  312. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/response_get_xcom_entry.py +0 -0
  313. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/scheduler_info_response.py +0 -0
  314. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/structured_log_message.py +0 -0
  315. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_collection_response.py +0 -0
  316. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_dependency_collection_response.py +0 -0
  317. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_dependency_response.py +0 -0
  318. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_inlet_asset_reference.py +0 -0
  319. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_collection_response.py +0 -0
  320. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_history_collection_response.py +0 -0
  321. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_history_response.py +0 -0
  322. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_response.py +0 -0
  323. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_batch_body.py +0 -0
  324. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_inner.py +0 -0
  325. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_log_response.py +0 -0
  326. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_outlet_asset_reference.py +0 -0
  327. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_response.py +0 -0
  328. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/time_delta.py +0 -0
  329. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/trigger_dag_run_post_body.py +0 -0
  330. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/trigger_response.py +0 -0
  331. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/triggerer_info_response.py +0 -0
  332. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/update_hitl_detail_payload.py +0 -0
  333. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/validation_error.py +0 -0
  334. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/value.py +0 -0
  335. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_body.py +0 -0
  336. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_collection_response.py +0 -0
  337. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/version_info.py +0 -0
  338. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_collection_response.py +0 -0
  339. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_create_body.py +0 -0
  340. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response.py +0 -0
  341. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response_native.py +0 -0
  342. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response_string.py +0 -0
  343. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_update_body.py +0 -0
  344. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/py.typed +0 -0
  345. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/rest.py +0 -0
  346. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner.md +0 -0
  347. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner1.md +0 -0
  348. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner2.md +0 -0
  349. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner3.md +0 -0
  350. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AppBuilderMenuItemResponse.md +0 -0
  351. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AppBuilderViewResponse.md +0 -0
  352. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetAliasCollectionResponse.md +0 -0
  353. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetAliasResponse.md +0 -0
  354. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetCollectionResponse.md +0 -0
  355. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetEventCollectionResponse.md +0 -0
  356. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetEventResponse.md +0 -0
  357. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetResponse.md +0 -0
  358. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetWatcherResponse.md +0 -0
  359. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillApi.md +0 -0
  360. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillCollectionResponse.md +0 -0
  361. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillResponse.md +0 -0
  362. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BaseInfoResponse.md +0 -0
  363. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionNotOnExistence.md +0 -0
  364. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionOnExistence.md +0 -0
  365. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionResponse.md +0 -0
  366. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionBulkTaskInstanceBody.md +0 -0
  367. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionConnectionBody.md +0 -0
  368. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionPoolBody.md +0 -0
  369. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionVariableBody.md +0 -0
  370. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkResponse.md +0 -0
  371. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkTaskInstanceBody.md +0 -0
  372. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionBulkTaskInstanceBody.md +0 -0
  373. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionConnectionBody.md +0 -0
  374. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionPoolBody.md +0 -0
  375. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionVariableBody.md +0 -0
  376. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstanceCollectionResponse.md +0 -0
  377. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstancesBodyTaskIdsInner.md +0 -0
  378. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Config.md +0 -0
  379. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigApi.md +0 -0
  380. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigOption.md +0 -0
  381. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigSection.md +0 -0
  382. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionBody.md +0 -0
  383. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionCollectionResponse.md +0 -0
  384. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionResponse.md +0 -0
  385. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Content.md +0 -0
  386. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGCollectionResponse.md +0 -0
  387. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGParsingApi.md +0 -0
  388. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGPatchBody.md +0 -0
  389. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunCollectionResponse.md +0 -0
  390. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunsBatchBody.md +0 -0
  391. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGSourceResponse.md +0 -0
  392. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGTagCollectionResponse.md +0 -0
  393. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGVersionCollectionResponse.md +0 -0
  394. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGWarningCollectionResponse.md +0 -0
  395. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGWarningResponse.md +0 -0
  396. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagProcessorInfoResponse.md +0 -0
  397. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunAssetReference.md +0 -0
  398. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunState.md +0 -0
  399. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunTriggeredByType.md +0 -0
  400. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagScheduleAssetReference.md +0 -0
  401. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagSourceApi.md +0 -0
  402. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsApi.md +0 -0
  403. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsCollectionResponse.md +0 -0
  404. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsResponse.md +0 -0
  405. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsStateResponse.md +0 -0
  406. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagTagResponse.md +0 -0
  407. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagVersionApi.md +0 -0
  408. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagVersionResponse.md +0 -0
  409. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagWarningApi.md +0 -0
  410. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagWarningType.md +0 -0
  411. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Detail.md +0 -0
  412. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DryRunBackfillCollectionResponse.md +0 -0
  413. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DryRunBackfillResponse.md +0 -0
  414. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogCollectionResponse.md +0 -0
  415. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogResponse.md +0 -0
  416. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExternalLogUrlResponse.md +0 -0
  417. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExtraLinkCollectionResponse.md +0 -0
  418. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExtraLinksApi.md +0 -0
  419. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/FastAPIAppResponse.md +0 -0
  420. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/FastAPIRootMiddlewareResponse.md +0 -0
  421. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetail.md +0 -0
  422. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailCollection.md +0 -0
  423. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailHistory.md +0 -0
  424. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailResponse.md +0 -0
  425. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLUser.md +0 -0
  426. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HTTPExceptionResponse.md +0 -0
  427. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HTTPValidationError.md +0 -0
  428. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HealthInfoResponse.md +0 -0
  429. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorCollectionResponse.md +0 -0
  430. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorResponse.md +0 -0
  431. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobApi.md +0 -0
  432. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobCollectionResponse.md +0 -0
  433. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobResponse.md +0 -0
  434. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LastAssetEventResponse.md +0 -0
  435. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LocationInner.md +0 -0
  436. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/MaterializeAssetBody.md +0 -0
  437. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/MonitorApi.md +0 -0
  438. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/NewTaskResponse.md +0 -0
  439. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginApi.md +0 -0
  440. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginCollectionResponse.md +0 -0
  441. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginImportErrorCollectionResponse.md +0 -0
  442. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginImportErrorResponse.md +0 -0
  443. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginResponse.md +0 -0
  444. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolBody.md +0 -0
  445. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolCollectionResponse.md +0 -0
  446. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolPatchBody.md +0 -0
  447. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolResponse.md +0 -0
  448. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderApi.md +0 -0
  449. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderCollectionResponse.md +0 -0
  450. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderResponse.md +0 -0
  451. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/QueuedEventCollectionResponse.md +0 -0
  452. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/QueuedEventResponse.md +0 -0
  453. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ReprocessBehavior.md +0 -0
  454. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ResponseGetXcomEntry.md +0 -0
  455. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/SchedulerInfoResponse.md +0 -0
  456. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/StructuredLogMessage.md +0 -0
  457. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskApi.md +0 -0
  458. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskCollectionResponse.md +0 -0
  459. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskDependencyCollectionResponse.md +0 -0
  460. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskDependencyResponse.md +0 -0
  461. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInletAssetReference.md +0 -0
  462. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceCollectionResponse.md +0 -0
  463. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceHistoryCollectionResponse.md +0 -0
  464. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceHistoryResponse.md +0 -0
  465. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceResponse.md +0 -0
  466. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesBatchBody.md +0 -0
  467. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesInner.md +0 -0
  468. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesLogResponse.md +0 -0
  469. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskOutletAssetReference.md +0 -0
  470. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskResponse.md +0 -0
  471. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TimeDelta.md +0 -0
  472. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggerDAGRunPostBody.md +0 -0
  473. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggerResponse.md +0 -0
  474. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggererInfoResponse.md +0 -0
  475. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/UpdateHITLDetailPayload.md +0 -0
  476. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ValidationError.md +0 -0
  477. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Value.md +0 -0
  478. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableBody.md +0 -0
  479. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableCollectionResponse.md +0 -0
  480. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VersionApi.md +0 -0
  481. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VersionInfo.md +0 -0
  482. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComCollectionResponse.md +0 -0
  483. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComCreateBody.md +0 -0
  484. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponse.md +0 -0
  485. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponseNative.md +0 -0
  486. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponseString.md +0 -0
  487. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComUpdateBody.md +0 -0
  488. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/__init__.py +0 -0
  489. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner.py +0 -0
  490. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner1.py +0 -0
  491. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner2.py +0 -0
  492. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner3.py +0 -0
  493. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_app_builder_menu_item_response.py +0 -0
  494. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_app_builder_view_response.py +0 -0
  495. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_alias_collection_response.py +0 -0
  496. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_alias_response.py +0 -0
  497. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_api.py +0 -0
  498. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_collection_response.py +0 -0
  499. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_event_collection_response.py +0 -0
  500. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_event_response.py +0 -0
  501. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_response.py +0 -0
  502. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_watcher_response.py +0 -0
  503. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_api.py +0 -0
  504. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_collection_response.py +0 -0
  505. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_post_body.py +0 -0
  506. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_response.py +0 -0
  507. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_base_info_response.py +0 -0
  508. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_not_on_existence.py +0 -0
  509. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_on_existence.py +0 -0
  510. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_response.py +0 -0
  511. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_bulk_task_instance_body.py +0 -0
  512. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_connection_body.py +0 -0
  513. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_pool_body.py +0 -0
  514. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_variable_body.py +0 -0
  515. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_bulk_task_instance_body.py +0 -0
  516. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_connection_body.py +0 -0
  517. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_pool_body.py +0 -0
  518. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_variable_body.py +0 -0
  519. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_bulk_task_instance_body.py +0 -0
  520. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_connection_body.py +0 -0
  521. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_pool_body.py +0 -0
  522. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_variable_body.py +0 -0
  523. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_response.py +0 -0
  524. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_task_instance_body.py +0 -0
  525. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_bulk_task_instance_body.py +0 -0
  526. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_connection_body.py +0 -0
  527. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_pool_body.py +0 -0
  528. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_variable_body.py +0 -0
  529. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instance_collection_response.py +0 -0
  530. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instances_body_task_ids_inner.py +0 -0
  531. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config.py +0 -0
  532. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_api.py +0 -0
  533. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_option.py +0 -0
  534. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_section.py +0 -0
  535. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_body.py +0 -0
  536. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_collection_response.py +0 -0
  537. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_response.py +0 -0
  538. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_test_response.py +0 -0
  539. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_content.py +0 -0
  540. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_api.py +0 -0
  541. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_parsing_api.py +0 -0
  542. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_patch_body.py +0 -0
  543. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_processor_info_response.py +0 -0
  544. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_asset_reference.py +0 -0
  545. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_patch_body.py +0 -0
  546. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_state.py +0 -0
  547. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_triggered_by_type.py +0 -0
  548. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_type.py +0 -0
  549. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_runs_batch_body.py +0 -0
  550. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_schedule_asset_reference.py +0 -0
  551. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_source_api.py +0 -0
  552. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_source_response.py +0 -0
  553. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_api.py +0 -0
  554. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_collection_response.py +0 -0
  555. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_response.py +0 -0
  556. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_state_response.py +0 -0
  557. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_tag_collection_response.py +0 -0
  558. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_tag_response.py +0 -0
  559. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_api.py +0 -0
  560. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_collection_response.py +0 -0
  561. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_response.py +0 -0
  562. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_api.py +0 -0
  563. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_collection_response.py +0 -0
  564. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_response.py +0 -0
  565. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_type.py +0 -0
  566. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_detail.py +0 -0
  567. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dry_run_backfill_collection_response.py +0 -0
  568. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dry_run_backfill_response.py +0 -0
  569. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_api.py +0 -0
  570. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_collection_response.py +0 -0
  571. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_response.py +0 -0
  572. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_experimental_api.py +0 -0
  573. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_external_log_url_response.py +0 -0
  574. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_extra_link_collection_response.py +0 -0
  575. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_extra_links_api.py +0 -0
  576. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_fast_api_app_response.py +0 -0
  577. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_fast_api_root_middleware_response.py +0 -0
  578. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_health_info_response.py +0 -0
  579. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail.py +0 -0
  580. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_collection.py +0 -0
  581. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_history.py +0 -0
  582. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_response.py +0 -0
  583. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_user.py +0 -0
  584. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_http_exception_response.py +0 -0
  585. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_http_validation_error.py +0 -0
  586. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_api.py +0 -0
  587. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_collection_response.py +0 -0
  588. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_response.py +0 -0
  589. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_api.py +0 -0
  590. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_collection_response.py +0 -0
  591. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_response.py +0 -0
  592. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_last_asset_event_response.py +0 -0
  593. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_location_inner.py +0 -0
  594. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_login_api.py +0 -0
  595. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_materialize_asset_body.py +0 -0
  596. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_monitor_api.py +0 -0
  597. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_new_task_response.py +0 -0
  598. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_patch_task_instance_body.py +0 -0
  599. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_api.py +0 -0
  600. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_collection_response.py +0 -0
  601. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_import_error_collection_response.py +0 -0
  602. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_import_error_response.py +0 -0
  603. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_response.py +0 -0
  604. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_api.py +0 -0
  605. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_body.py +0 -0
  606. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_collection_response.py +0 -0
  607. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_patch_body.py +0 -0
  608. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_response.py +0 -0
  609. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_api.py +0 -0
  610. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_collection_response.py +0 -0
  611. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_response.py +0 -0
  612. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_queued_event_collection_response.py +0 -0
  613. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_queued_event_response.py +0 -0
  614. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_reprocess_behavior.py +0 -0
  615. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_response_get_xcom_entry.py +0 -0
  616. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_scheduler_info_response.py +0 -0
  617. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_structured_log_message.py +0 -0
  618. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_api.py +0 -0
  619. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_collection_response.py +0 -0
  620. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_dependency_collection_response.py +0 -0
  621. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_dependency_response.py +0 -0
  622. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_inlet_asset_reference.py +0 -0
  623. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_collection_response.py +0 -0
  624. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_history_collection_response.py +0 -0
  625. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_history_response.py +0 -0
  626. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_response.py +0 -0
  627. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_state.py +0 -0
  628. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_batch_body.py +0 -0
  629. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_inner.py +0 -0
  630. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_log_response.py +0 -0
  631. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_outlet_asset_reference.py +0 -0
  632. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_response.py +0 -0
  633. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_time_delta.py +0 -0
  634. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_trigger_dag_run_post_body.py +0 -0
  635. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_trigger_response.py +0 -0
  636. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_triggerer_info_response.py +0 -0
  637. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_update_hitl_detail_payload.py +0 -0
  638. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_validation_error.py +0 -0
  639. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_value.py +0 -0
  640. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_api.py +0 -0
  641. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_body.py +0 -0
  642. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_collection_response.py +0 -0
  643. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_version_api.py +0 -0
  644. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_version_info.py +0 -0
  645. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_api.py +0 -0
  646. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_collection_response.py +0 -0
  647. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_create_body.py +0 -0
  648. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response.py +0 -0
  649. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response_native.py +0 -0
  650. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response_string.py +0 -0
  651. {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/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.2
3
+ Version: 3.3.0
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
@@ -174,7 +174,7 @@ the Apache Airflow API.
174
174
  Note that you will need to pass authentication credentials. If your Airflow deployment supports
175
175
  **Bearer token authentication**, you can use the following example:
176
176
 
177
- For example, here is how to pause a DAG with `curl`, using a Bearer token:
177
+ For example, here is how to pause a Dag with `curl`, using a Bearer token:
178
178
 
179
179
  ```bash
180
180
  curl -X PATCH 'https://example.com/api/v2/dags/{dag_id}?update_mask=is_paused' \
@@ -684,7 +684,7 @@ configuration = airflow_client.client.Configuration(host="http://localhost:8080"
684
684
 
685
685
  * Run scheduler (or dag file processor you have setup with standalone dag file processor) for few parsing
686
686
  loops (you can pass --num-runs parameter to it or keep it running in the background). The script relies
687
- on example DAGs being serialized to the DB and this only
687
+ on example Dags being serialized to the DB and this only
688
688
  happens when scheduler runs with ``core/load_examples`` set to True.
689
689
 
690
690
  * Run webserver - reachable at the host/port for the test script you want to run. Make sure it had enough
@@ -141,7 +141,7 @@ the Apache Airflow API.
141
141
  Note that you will need to pass authentication credentials. If your Airflow deployment supports
142
142
  **Bearer token authentication**, you can use the following example:
143
143
 
144
- For example, here is how to pause a DAG with `curl`, using a Bearer token:
144
+ For example, here is how to pause a Dag with `curl`, using a Bearer token:
145
145
 
146
146
  ```bash
147
147
  curl -X PATCH 'https://example.com/api/v2/dags/{dag_id}?update_mask=is_paused' \
@@ -651,7 +651,7 @@ configuration = airflow_client.client.Configuration(host="http://localhost:8080"
651
651
 
652
652
  * Run scheduler (or dag file processor you have setup with standalone dag file processor) for few parsing
653
653
  loops (you can pass --num-runs parameter to it or keep it running in the background). The script relies
654
- on example DAGs being serialized to the DB and this only
654
+ on example Dags being serialized to the DB and this only
655
655
  happens when scheduler runs with ``core/load_examples`` set to True.
656
656
 
657
657
  * Run webserver - reachable at the host/port for the test script you want to run. Make sure it had enough
@@ -14,11 +14,12 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "3.2.2"
17
+ __version__ = "3.3.0"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
21
21
  "AssetApi",
22
+ "AssetStateStoreApi",
22
23
  "BackfillApi",
23
24
  "ConfigApi",
24
25
  "ConnectionApi",
@@ -40,6 +41,7 @@ __all__ = [
40
41
  "ProviderApi",
41
42
  "TaskApi",
42
43
  "TaskInstanceApi",
44
+ "TaskStateStoreApi",
43
45
  "VariableApi",
44
46
  "VersionApi",
45
47
  "XComApi",
@@ -57,15 +59,23 @@ __all__ = [
57
59
  "ActionsInner1",
58
60
  "ActionsInner2",
59
61
  "ActionsInner3",
62
+ "ActionsInner4",
60
63
  "AppBuilderMenuItemResponse",
61
64
  "AppBuilderViewResponse",
62
65
  "AssetAliasCollectionResponse",
63
66
  "AssetAliasResponse",
64
67
  "AssetCollectionResponse",
68
+ "AssetEventAccessControl",
65
69
  "AssetEventCollectionResponse",
66
70
  "AssetEventResponse",
67
71
  "AssetResponse",
72
+ "AssetStateStoreBody",
73
+ "AssetStateStoreCollectionResponse",
74
+ "AssetStateStoreLastUpdatedBy",
75
+ "AssetStateStoreResponse",
76
+ "AssetStateStoreWriterKind",
68
77
  "AssetWatcherResponse",
78
+ "AsyncConnectionTestResponse",
69
79
  "BackfillCollectionResponse",
70
80
  "BackfillPostBody",
71
81
  "BackfillResponse",
@@ -73,24 +83,32 @@ __all__ = [
73
83
  "BulkActionNotOnExistence",
74
84
  "BulkActionOnExistence",
75
85
  "BulkActionResponse",
86
+ "BulkBodyBulkDAGRunBody",
76
87
  "BulkBodyBulkTaskInstanceBody",
77
88
  "BulkBodyConnectionBody",
78
89
  "BulkBodyPoolBody",
79
90
  "BulkBodyVariableBody",
91
+ "BulkCreateActionBulkDAGRunBody",
80
92
  "BulkCreateActionBulkTaskInstanceBody",
81
93
  "BulkCreateActionConnectionBody",
82
94
  "BulkCreateActionPoolBody",
83
95
  "BulkCreateActionVariableBody",
96
+ "BulkDAGRunBody",
97
+ "BulkDAGRunClearBody",
98
+ "BulkDeleteActionBulkDAGRunBody",
84
99
  "BulkDeleteActionBulkTaskInstanceBody",
85
100
  "BulkDeleteActionConnectionBody",
86
101
  "BulkDeleteActionPoolBody",
87
102
  "BulkDeleteActionVariableBody",
88
103
  "BulkResponse",
89
104
  "BulkTaskInstanceBody",
105
+ "BulkUpdateActionBulkDAGRunBody",
90
106
  "BulkUpdateActionBulkTaskInstanceBody",
91
107
  "BulkUpdateActionConnectionBody",
92
108
  "BulkUpdateActionPoolBody",
93
109
  "BulkUpdateActionVariableBody",
110
+ "ClearPartitionsBody",
111
+ "ClearPartitionsResponse",
94
112
  "ClearTaskInstanceCollectionResponse",
95
113
  "ClearTaskInstancesBody",
96
114
  "ClearTaskInstancesBodyTaskIdsInner",
@@ -100,6 +118,8 @@ __all__ = [
100
118
  "ConnectionBody",
101
119
  "ConnectionCollectionResponse",
102
120
  "ConnectionResponse",
121
+ "ConnectionTestQueuedResponse",
122
+ "ConnectionTestRequestBody",
103
123
  "ConnectionTestResponse",
104
124
  "Content",
105
125
  "CreateAssetEventsBody",
@@ -110,7 +130,6 @@ __all__ = [
110
130
  "DAGRunClearBody",
111
131
  "DAGRunCollectionResponse",
112
132
  "DAGRunPatchBody",
113
- "DAGRunPatchStates",
114
133
  "DAGRunResponse",
115
134
  "DAGRunsBatchBody",
116
135
  "DAGSourceResponse",
@@ -120,6 +139,7 @@ __all__ = [
120
139
  "DAGWarningResponse",
121
140
  "DagProcessorInfoResponse",
122
141
  "DagRunAssetReference",
142
+ "DagRunMutableStates",
123
143
  "DagRunState",
124
144
  "DagRunTriggeredByType",
125
145
  "DagRunType",
@@ -137,8 +157,10 @@ __all__ = [
137
157
  "EntitiesInner1",
138
158
  "EntitiesInner2",
139
159
  "EntitiesInner3",
160
+ "EntitiesInner4",
140
161
  "EventLogCollectionResponse",
141
162
  "EventLogResponse",
163
+ "ExpiresAt",
142
164
  "ExternalLogUrlResponse",
143
165
  "ExternalViewResponse",
144
166
  "ExtraLinkCollectionResponse",
@@ -176,6 +198,7 @@ __all__ = [
176
198
  "ReactAppResponse",
177
199
  "ReprocessBehavior",
178
200
  "ResponseClearDagRun",
201
+ "ResponseClearDagRuns",
179
202
  "ResponseGetXcomEntry",
180
203
  "SchedulerInfoResponse",
181
204
  "StructuredLogMessage",
@@ -193,6 +216,10 @@ __all__ = [
193
216
  "TaskInstancesLogResponse",
194
217
  "TaskOutletAssetReference",
195
218
  "TaskResponse",
219
+ "TaskStateStoreBody",
220
+ "TaskStateStoreCollectionResponse",
221
+ "TaskStateStorePatchBody",
222
+ "TaskStateStoreResponse",
196
223
  "TimeDelta",
197
224
  "TriggerDAGRunPostBody",
198
225
  "TriggerResponse",
@@ -214,6 +241,7 @@ __all__ = [
214
241
 
215
242
  # import apis into sdk package
216
243
  from airflow_client.client.api.asset_api import AssetApi as AssetApi
244
+ from airflow_client.client.api.asset_state_store_api import AssetStateStoreApi as AssetStateStoreApi
217
245
  from airflow_client.client.api.backfill_api import BackfillApi as BackfillApi
218
246
  from airflow_client.client.api.config_api import ConfigApi as ConfigApi
219
247
  from airflow_client.client.api.connection_api import ConnectionApi as ConnectionApi
@@ -235,6 +263,7 @@ from airflow_client.client.api.pool_api import PoolApi as PoolApi
235
263
  from airflow_client.client.api.provider_api import ProviderApi as ProviderApi
236
264
  from airflow_client.client.api.task_api import TaskApi as TaskApi
237
265
  from airflow_client.client.api.task_instance_api import TaskInstanceApi as TaskInstanceApi
266
+ from airflow_client.client.api.task_state_store_api import TaskStateStoreApi as TaskStateStoreApi
238
267
  from airflow_client.client.api.variable_api import VariableApi as VariableApi
239
268
  from airflow_client.client.api.version_api import VersionApi as VersionApi
240
269
  from airflow_client.client.api.x_com_api import XComApi as XComApi
@@ -256,15 +285,23 @@ from airflow_client.client.models.actions_inner import ActionsInner as ActionsIn
256
285
  from airflow_client.client.models.actions_inner1 import ActionsInner1 as ActionsInner1
257
286
  from airflow_client.client.models.actions_inner2 import ActionsInner2 as ActionsInner2
258
287
  from airflow_client.client.models.actions_inner3 import ActionsInner3 as ActionsInner3
288
+ from airflow_client.client.models.actions_inner4 import ActionsInner4 as ActionsInner4
259
289
  from airflow_client.client.models.app_builder_menu_item_response import AppBuilderMenuItemResponse as AppBuilderMenuItemResponse
260
290
  from airflow_client.client.models.app_builder_view_response import AppBuilderViewResponse as AppBuilderViewResponse
261
291
  from airflow_client.client.models.asset_alias_collection_response import AssetAliasCollectionResponse as AssetAliasCollectionResponse
262
292
  from airflow_client.client.models.asset_alias_response import AssetAliasResponse as AssetAliasResponse
263
293
  from airflow_client.client.models.asset_collection_response import AssetCollectionResponse as AssetCollectionResponse
294
+ from airflow_client.client.models.asset_event_access_control import AssetEventAccessControl as AssetEventAccessControl
264
295
  from airflow_client.client.models.asset_event_collection_response import AssetEventCollectionResponse as AssetEventCollectionResponse
265
296
  from airflow_client.client.models.asset_event_response import AssetEventResponse as AssetEventResponse
266
297
  from airflow_client.client.models.asset_response import AssetResponse as AssetResponse
298
+ from airflow_client.client.models.asset_state_store_body import AssetStateStoreBody as AssetStateStoreBody
299
+ from airflow_client.client.models.asset_state_store_collection_response import AssetStateStoreCollectionResponse as AssetStateStoreCollectionResponse
300
+ from airflow_client.client.models.asset_state_store_last_updated_by import AssetStateStoreLastUpdatedBy as AssetStateStoreLastUpdatedBy
301
+ from airflow_client.client.models.asset_state_store_response import AssetStateStoreResponse as AssetStateStoreResponse
302
+ from airflow_client.client.models.asset_state_store_writer_kind import AssetStateStoreWriterKind as AssetStateStoreWriterKind
267
303
  from airflow_client.client.models.asset_watcher_response import AssetWatcherResponse as AssetWatcherResponse
304
+ from airflow_client.client.models.async_connection_test_response import AsyncConnectionTestResponse as AsyncConnectionTestResponse
268
305
  from airflow_client.client.models.backfill_collection_response import BackfillCollectionResponse as BackfillCollectionResponse
269
306
  from airflow_client.client.models.backfill_post_body import BackfillPostBody as BackfillPostBody
270
307
  from airflow_client.client.models.backfill_response import BackfillResponse as BackfillResponse
@@ -272,24 +309,32 @@ from airflow_client.client.models.base_info_response import BaseInfoResponse as
272
309
  from airflow_client.client.models.bulk_action_not_on_existence import BulkActionNotOnExistence as BulkActionNotOnExistence
273
310
  from airflow_client.client.models.bulk_action_on_existence import BulkActionOnExistence as BulkActionOnExistence
274
311
  from airflow_client.client.models.bulk_action_response import BulkActionResponse as BulkActionResponse
312
+ from airflow_client.client.models.bulk_body_bulk_dag_run_body import BulkBodyBulkDAGRunBody as BulkBodyBulkDAGRunBody
275
313
  from airflow_client.client.models.bulk_body_bulk_task_instance_body import BulkBodyBulkTaskInstanceBody as BulkBodyBulkTaskInstanceBody
276
314
  from airflow_client.client.models.bulk_body_connection_body import BulkBodyConnectionBody as BulkBodyConnectionBody
277
315
  from airflow_client.client.models.bulk_body_pool_body import BulkBodyPoolBody as BulkBodyPoolBody
278
316
  from airflow_client.client.models.bulk_body_variable_body import BulkBodyVariableBody as BulkBodyVariableBody
317
+ from airflow_client.client.models.bulk_create_action_bulk_dag_run_body import BulkCreateActionBulkDAGRunBody as BulkCreateActionBulkDAGRunBody
279
318
  from airflow_client.client.models.bulk_create_action_bulk_task_instance_body import BulkCreateActionBulkTaskInstanceBody as BulkCreateActionBulkTaskInstanceBody
280
319
  from airflow_client.client.models.bulk_create_action_connection_body import BulkCreateActionConnectionBody as BulkCreateActionConnectionBody
281
320
  from airflow_client.client.models.bulk_create_action_pool_body import BulkCreateActionPoolBody as BulkCreateActionPoolBody
282
321
  from airflow_client.client.models.bulk_create_action_variable_body import BulkCreateActionVariableBody as BulkCreateActionVariableBody
322
+ from airflow_client.client.models.bulk_dag_run_body import BulkDAGRunBody as BulkDAGRunBody
323
+ from airflow_client.client.models.bulk_dag_run_clear_body import BulkDAGRunClearBody as BulkDAGRunClearBody
324
+ from airflow_client.client.models.bulk_delete_action_bulk_dag_run_body import BulkDeleteActionBulkDAGRunBody as BulkDeleteActionBulkDAGRunBody
283
325
  from airflow_client.client.models.bulk_delete_action_bulk_task_instance_body import BulkDeleteActionBulkTaskInstanceBody as BulkDeleteActionBulkTaskInstanceBody
284
326
  from airflow_client.client.models.bulk_delete_action_connection_body import BulkDeleteActionConnectionBody as BulkDeleteActionConnectionBody
285
327
  from airflow_client.client.models.bulk_delete_action_pool_body import BulkDeleteActionPoolBody as BulkDeleteActionPoolBody
286
328
  from airflow_client.client.models.bulk_delete_action_variable_body import BulkDeleteActionVariableBody as BulkDeleteActionVariableBody
287
329
  from airflow_client.client.models.bulk_response import BulkResponse as BulkResponse
288
330
  from airflow_client.client.models.bulk_task_instance_body import BulkTaskInstanceBody as BulkTaskInstanceBody
331
+ from airflow_client.client.models.bulk_update_action_bulk_dag_run_body import BulkUpdateActionBulkDAGRunBody as BulkUpdateActionBulkDAGRunBody
289
332
  from airflow_client.client.models.bulk_update_action_bulk_task_instance_body import BulkUpdateActionBulkTaskInstanceBody as BulkUpdateActionBulkTaskInstanceBody
290
333
  from airflow_client.client.models.bulk_update_action_connection_body import BulkUpdateActionConnectionBody as BulkUpdateActionConnectionBody
291
334
  from airflow_client.client.models.bulk_update_action_pool_body import BulkUpdateActionPoolBody as BulkUpdateActionPoolBody
292
335
  from airflow_client.client.models.bulk_update_action_variable_body import BulkUpdateActionVariableBody as BulkUpdateActionVariableBody
336
+ from airflow_client.client.models.clear_partitions_body import ClearPartitionsBody as ClearPartitionsBody
337
+ from airflow_client.client.models.clear_partitions_response import ClearPartitionsResponse as ClearPartitionsResponse
293
338
  from airflow_client.client.models.clear_task_instance_collection_response import ClearTaskInstanceCollectionResponse as ClearTaskInstanceCollectionResponse
294
339
  from airflow_client.client.models.clear_task_instances_body import ClearTaskInstancesBody as ClearTaskInstancesBody
295
340
  from airflow_client.client.models.clear_task_instances_body_task_ids_inner import ClearTaskInstancesBodyTaskIdsInner as ClearTaskInstancesBodyTaskIdsInner
@@ -299,6 +344,8 @@ from airflow_client.client.models.config_section import ConfigSection as ConfigS
299
344
  from airflow_client.client.models.connection_body import ConnectionBody as ConnectionBody
300
345
  from airflow_client.client.models.connection_collection_response import ConnectionCollectionResponse as ConnectionCollectionResponse
301
346
  from airflow_client.client.models.connection_response import ConnectionResponse as ConnectionResponse
347
+ from airflow_client.client.models.connection_test_queued_response import ConnectionTestQueuedResponse as ConnectionTestQueuedResponse
348
+ from airflow_client.client.models.connection_test_request_body import ConnectionTestRequestBody as ConnectionTestRequestBody
302
349
  from airflow_client.client.models.connection_test_response import ConnectionTestResponse as ConnectionTestResponse
303
350
  from airflow_client.client.models.content import Content as Content
304
351
  from airflow_client.client.models.create_asset_events_body import CreateAssetEventsBody as CreateAssetEventsBody
@@ -309,7 +356,6 @@ from airflow_client.client.models.dag_response import DAGResponse as DAGResponse
309
356
  from airflow_client.client.models.dag_run_clear_body import DAGRunClearBody as DAGRunClearBody
310
357
  from airflow_client.client.models.dag_run_collection_response import DAGRunCollectionResponse as DAGRunCollectionResponse
311
358
  from airflow_client.client.models.dag_run_patch_body import DAGRunPatchBody as DAGRunPatchBody
312
- from airflow_client.client.models.dag_run_patch_states import DAGRunPatchStates as DAGRunPatchStates
313
359
  from airflow_client.client.models.dag_run_response import DAGRunResponse as DAGRunResponse
314
360
  from airflow_client.client.models.dag_runs_batch_body import DAGRunsBatchBody as DAGRunsBatchBody
315
361
  from airflow_client.client.models.dag_source_response import DAGSourceResponse as DAGSourceResponse
@@ -319,6 +365,7 @@ from airflow_client.client.models.dag_warning_collection_response import DAGWarn
319
365
  from airflow_client.client.models.dag_warning_response import DAGWarningResponse as DAGWarningResponse
320
366
  from airflow_client.client.models.dag_processor_info_response import DagProcessorInfoResponse as DagProcessorInfoResponse
321
367
  from airflow_client.client.models.dag_run_asset_reference import DagRunAssetReference as DagRunAssetReference
368
+ from airflow_client.client.models.dag_run_mutable_states import DagRunMutableStates as DagRunMutableStates
322
369
  from airflow_client.client.models.dag_run_state import DagRunState as DagRunState
323
370
  from airflow_client.client.models.dag_run_triggered_by_type import DagRunTriggeredByType as DagRunTriggeredByType
324
371
  from airflow_client.client.models.dag_run_type import DagRunType as DagRunType
@@ -336,8 +383,10 @@ from airflow_client.client.models.entities_inner import EntitiesInner as Entitie
336
383
  from airflow_client.client.models.entities_inner1 import EntitiesInner1 as EntitiesInner1
337
384
  from airflow_client.client.models.entities_inner2 import EntitiesInner2 as EntitiesInner2
338
385
  from airflow_client.client.models.entities_inner3 import EntitiesInner3 as EntitiesInner3
386
+ from airflow_client.client.models.entities_inner4 import EntitiesInner4 as EntitiesInner4
339
387
  from airflow_client.client.models.event_log_collection_response import EventLogCollectionResponse as EventLogCollectionResponse
340
388
  from airflow_client.client.models.event_log_response import EventLogResponse as EventLogResponse
389
+ from airflow_client.client.models.expires_at import ExpiresAt as ExpiresAt
341
390
  from airflow_client.client.models.external_log_url_response import ExternalLogUrlResponse as ExternalLogUrlResponse
342
391
  from airflow_client.client.models.external_view_response import ExternalViewResponse as ExternalViewResponse
343
392
  from airflow_client.client.models.extra_link_collection_response import ExtraLinkCollectionResponse as ExtraLinkCollectionResponse
@@ -375,6 +424,7 @@ from airflow_client.client.models.queued_event_response import QueuedEventRespon
375
424
  from airflow_client.client.models.react_app_response import ReactAppResponse as ReactAppResponse
376
425
  from airflow_client.client.models.reprocess_behavior import ReprocessBehavior as ReprocessBehavior
377
426
  from airflow_client.client.models.response_clear_dag_run import ResponseClearDagRun as ResponseClearDagRun
427
+ from airflow_client.client.models.response_clear_dag_runs import ResponseClearDagRuns as ResponseClearDagRuns
378
428
  from airflow_client.client.models.response_get_xcom_entry import ResponseGetXcomEntry as ResponseGetXcomEntry
379
429
  from airflow_client.client.models.scheduler_info_response import SchedulerInfoResponse as SchedulerInfoResponse
380
430
  from airflow_client.client.models.structured_log_message import StructuredLogMessage as StructuredLogMessage
@@ -392,6 +442,10 @@ from airflow_client.client.models.task_instances_inner import TaskInstancesInner
392
442
  from airflow_client.client.models.task_instances_log_response import TaskInstancesLogResponse as TaskInstancesLogResponse
393
443
  from airflow_client.client.models.task_outlet_asset_reference import TaskOutletAssetReference as TaskOutletAssetReference
394
444
  from airflow_client.client.models.task_response import TaskResponse as TaskResponse
445
+ from airflow_client.client.models.task_state_store_body import TaskStateStoreBody as TaskStateStoreBody
446
+ from airflow_client.client.models.task_state_store_collection_response import TaskStateStoreCollectionResponse as TaskStateStoreCollectionResponse
447
+ from airflow_client.client.models.task_state_store_patch_body import TaskStateStorePatchBody as TaskStateStorePatchBody
448
+ from airflow_client.client.models.task_state_store_response import TaskStateStoreResponse as TaskStateStoreResponse
395
449
  from airflow_client.client.models.time_delta import TimeDelta as TimeDelta
396
450
  from airflow_client.client.models.trigger_dag_run_post_body import TriggerDAGRunPostBody as TriggerDAGRunPostBody
397
451
  from airflow_client.client.models.trigger_response import TriggerResponse as TriggerResponse
@@ -2,6 +2,7 @@
2
2
 
3
3
  # import apis into api package
4
4
  from airflow_client.client.api.asset_api import AssetApi
5
+ from airflow_client.client.api.asset_state_store_api import AssetStateStoreApi
5
6
  from airflow_client.client.api.backfill_api import BackfillApi
6
7
  from airflow_client.client.api.config_api import ConfigApi
7
8
  from airflow_client.client.api.connection_api import ConnectionApi
@@ -23,6 +24,7 @@ from airflow_client.client.api.pool_api import PoolApi
23
24
  from airflow_client.client.api.provider_api import ProviderApi
24
25
  from airflow_client.client.api.task_api import TaskApi
25
26
  from airflow_client.client.api.task_instance_api import TaskInstanceApi
27
+ from airflow_client.client.api.task_state_store_api import TaskStateStoreApi
26
28
  from airflow_client.client.api.variable_api import VariableApi
27
29
  from airflow_client.client.api.version_api import VersionApi
28
30
  from airflow_client.client.api.x_com_api import XComApi
@@ -1779,7 +1779,7 @@ 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. **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,
1782
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
1784
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,
1785
1785
  _request_timeout: Union[
@@ -1803,7 +1803,7 @@ class AssetApi:
1803
1803
  :type limit: int
1804
1804
  :param offset:
1805
1805
  :type offset: int
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
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
1807
1807
  :type name_pattern: str
1808
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
1809
  :type name_prefix_pattern: str
@@ -1866,7 +1866,7 @@ class AssetApi:
1866
1866
  self,
1867
1867
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1868
1868
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = 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,
1869
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
1871
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,
1872
1872
  _request_timeout: Union[
@@ -1890,7 +1890,7 @@ class AssetApi:
1890
1890
  :type limit: int
1891
1891
  :param offset:
1892
1892
  :type offset: int
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.
1893
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
1894
1894
  :type name_pattern: str
1895
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
1896
  :type name_prefix_pattern: str
@@ -1953,7 +1953,7 @@ class AssetApi:
1953
1953
  self,
1954
1954
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
1955
1955
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = 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,
1956
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
1958
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,
1959
1959
  _request_timeout: Union[
@@ -1977,7 +1977,7 @@ class AssetApi:
1977
1977
  :type limit: int
1978
1978
  :param offset:
1979
1979
  :type offset: int
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.
1980
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
1981
1981
  :type name_pattern: str
1982
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
1983
  :type name_prefix_pattern: str
@@ -2130,7 +2130,7 @@ class AssetApi:
2130
2130
  source_task_id: Optional[StrictStr] = None,
2131
2131
  source_run_id: Optional[StrictStr] = None,
2132
2132
  source_map_index: Optional[StrictInt] = 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,
2133
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
2135
2135
  timestamp_gte: Optional[datetime] = None,
2136
2136
  timestamp_gt: Optional[datetime] = None,
@@ -2169,7 +2169,7 @@ class AssetApi:
2169
2169
  :type source_run_id: str
2170
2170
  :param source_map_index:
2171
2171
  :type source_map_index: int
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.
2172
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
2173
2173
  :type name_pattern: str
2174
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
2175
  :type name_prefix_pattern: str
@@ -2253,7 +2253,7 @@ class AssetApi:
2253
2253
  source_task_id: Optional[StrictStr] = None,
2254
2254
  source_run_id: Optional[StrictStr] = None,
2255
2255
  source_map_index: Optional[StrictInt] = 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,
2256
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
2258
2258
  timestamp_gte: Optional[datetime] = None,
2259
2259
  timestamp_gt: Optional[datetime] = None,
@@ -2292,7 +2292,7 @@ class AssetApi:
2292
2292
  :type source_run_id: str
2293
2293
  :param source_map_index:
2294
2294
  :type source_map_index: int
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.
2295
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
2296
2296
  :type name_pattern: str
2297
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
2298
  :type name_prefix_pattern: str
@@ -2376,7 +2376,7 @@ class AssetApi:
2376
2376
  source_task_id: Optional[StrictStr] = None,
2377
2377
  source_run_id: Optional[StrictStr] = None,
2378
2378
  source_map_index: Optional[StrictInt] = 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,
2379
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
2381
2381
  timestamp_gte: Optional[datetime] = None,
2382
2382
  timestamp_gt: Optional[datetime] = None,
@@ -2415,7 +2415,7 @@ class AssetApi:
2415
2415
  :type source_run_id: str
2416
2416
  :param source_map_index:
2417
2417
  :type source_map_index: int
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.
2418
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
2419
2419
  :type name_pattern: str
2420
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
2421
  :type name_prefix_pattern: str
@@ -2946,9 +2946,9 @@ class AssetApi:
2946
2946
  self,
2947
2947
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
2948
2948
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = 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,
2949
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
2951
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
2953
2953
  dag_ids: Optional[List[StrictStr]] = None,
2954
2954
  only_active: Optional[StrictBool] = None,
@@ -2974,11 +2974,11 @@ class AssetApi:
2974
2974
  :type limit: int
2975
2975
  :param offset:
2976
2976
  :type offset: int
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.
2977
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
2978
2978
  :type name_pattern: str
2979
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
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.
2981
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
2982
2982
  :type uri_pattern: str
2983
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
2984
  :type uri_prefix_pattern: str
@@ -3049,9 +3049,9 @@ class AssetApi:
3049
3049
  self,
3050
3050
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3051
3051
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = 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,
3052
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
3054
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
3056
3056
  dag_ids: Optional[List[StrictStr]] = None,
3057
3057
  only_active: Optional[StrictBool] = None,
@@ -3077,11 +3077,11 @@ class AssetApi:
3077
3077
  :type limit: int
3078
3078
  :param offset:
3079
3079
  :type offset: int
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.
3080
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
3081
3081
  :type name_pattern: str
3082
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
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.
3084
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
3085
3085
  :type uri_pattern: str
3086
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
3087
  :type uri_prefix_pattern: str
@@ -3152,9 +3152,9 @@ class AssetApi:
3152
3152
  self,
3153
3153
  limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
3154
3154
  offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = 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,
3155
+ name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
3157
+ uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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
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,
3159
3159
  dag_ids: Optional[List[StrictStr]] = None,
3160
3160
  only_active: Optional[StrictBool] = None,
@@ -3180,11 +3180,11 @@ class AssetApi:
3180
3180
  :type limit: int
3181
3181
  :param offset:
3182
3182
  :type offset: int
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.
3183
+ :param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
3184
3184
  :type name_pattern: str
3185
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
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.
3187
+ :param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Use 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.
3188
3188
  :type uri_pattern: str
3189
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
3190
  :type uri_prefix_pattern: str