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.
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/PKG-INFO +3 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/README.md +2 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/__init__.py +57 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/__init__.py +2 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/asset_api.py +24 -24
- apache_airflow_client-3.3.0/airflow_client/client/api/asset_state_store_api.py +1517 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/connection_api.py +570 -6
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_api.py +24 -24
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_run_api.py +996 -81
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/event_log_api.py +30 -30
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/experimental_api.py +6 -6
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/import_error_api.py +40 -6
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/login_api.py +3 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/pool_api.py +6 -9
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/task_instance_api.py +793 -102
- apache_airflow_client-3.3.0/airflow_client/client/api/task_state_store_api.py +2134 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/variable_api.py +6 -6
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/x_com_api.py +24 -24
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api_client.py +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/configuration.py +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/__init__.py +26 -1
- apache_airflow_client-3.3.0/airflow_client/client/models/actions_inner.py +151 -0
- 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
- 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
- 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
- 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
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_event_access_control.py +90 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_body.py +93 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_collection_response.py +98 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_last_updated_by.py +97 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_response.py +104 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/asset_state_store_writer_kind.py +38 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/async_connection_test_response.py +97 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_post_body.py +2 -2
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_body_bulk_dag_run_body.py +96 -0
- {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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_connection_body.py +3 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_pool_body.py +3 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_body_variable_body.py +3 -3
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_create_action_bulk_dag_run_body.py +108 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_dag_run_body.py +96 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_dag_run_clear_body.py +114 -0
- 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
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_delete_action_bulk_task_instance_body.py +108 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_connection_body.py +3 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_pool_body.py +3 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_delete_action_variable_body.py +3 -3
- apache_airflow_client-3.3.0/airflow_client/client/models/bulk_update_action_bulk_dag_run_body.py +110 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/clear_partitions_body.py +99 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/clear_partitions_response.py +92 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/clear_task_instances_body.py +6 -3
- apache_airflow_client-3.3.0/airflow_client/client/models/connection_test_queued_response.py +92 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/connection_test_request_body.py +123 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_test_response.py +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/create_asset_events_body.py +7 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_details_response.py +9 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_response.py +7 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_clear_body.py +7 -4
- 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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_patch_body.py +2 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_response.py +3 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_type.py +1 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/entities_inner.py +136 -0
- 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
- 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
- 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
- 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
- apache_airflow_client-3.3.0/airflow_client/client/models/expires_at.py +145 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/external_view_response.py +4 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/patch_task_instance_body.py +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/react_app_response.py +4 -2
- apache_airflow_client-3.3.0/airflow_client/client/models/response_clear_dag_runs.py +134 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_state.py +1 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_body.py +104 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_collection_response.py +98 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_patch_body.py +93 -0
- apache_airflow_client-3.3.0/airflow_client/client/models/task_state_store_response.py +100 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_response.py +1 -1
- apache_airflow_client-3.3.0/docs/ActionsInner4.md +33 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetApi.md +8 -8
- apache_airflow_client-3.3.0/docs/AssetEventAccessControl.md +31 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreApi.md +442 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreBody.md +30 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreCollectionResponse.md +31 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreLastUpdatedBy.md +34 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreResponse.md +33 -0
- apache_airflow_client-3.3.0/docs/AssetStateStoreWriterKind.md +15 -0
- apache_airflow_client-3.3.0/docs/AsyncConnectionTestResponse.md +34 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillPostBody.md +1 -1
- apache_airflow_client-3.3.0/docs/BulkBodyBulkDAGRunBody.md +29 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyBulkTaskInstanceBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyConnectionBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyPoolBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkBodyVariableBody.md +1 -1
- apache_airflow_client-3.3.0/docs/BulkCreateActionBulkDAGRunBody.md +31 -0
- apache_airflow_client-3.3.0/docs/BulkDAGRunBody.md +33 -0
- apache_airflow_client-3.3.0/docs/BulkDAGRunClearBody.md +38 -0
- apache_airflow_client-3.3.0/docs/BulkDeleteActionBulkDAGRunBody.md +31 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionBulkTaskInstanceBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionConnectionBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionPoolBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkDeleteActionVariableBody.md +1 -1
- apache_airflow_client-3.3.0/docs/BulkUpdateActionBulkDAGRunBody.md +32 -0
- apache_airflow_client-3.3.0/docs/ClearPartitionsBody.md +35 -0
- apache_airflow_client-3.3.0/docs/ClearPartitionsResponse.md +32 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstancesBody.md +2 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionApi.md +175 -2
- apache_airflow_client-3.3.0/docs/ConnectionTestQueuedResponse.md +32 -0
- apache_airflow_client-3.3.0/docs/ConnectionTestRequestBody.md +42 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionTestResponse.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/CreateAssetEventsBody.md +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGApi.md +8 -8
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGDetailsResponse.md +3 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGResponse.md +2 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunClearBody.md +3 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunPatchBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunResponse.md +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunApi.md +280 -12
- apache_airflow_client-3.2.2/docs/DAGRunPatchStates.md → apache_airflow_client-3.3.0/docs/DagRunMutableStates.md +2 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunType.md +2 -0
- apache_airflow_client-3.3.0/docs/EntitiesInner.md +32 -0
- apache_airflow_client-3.2.2/docs/EntitiesInner.md → apache_airflow_client-3.3.0/docs/EntitiesInner1.md +8 -8
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EntitiesInner2.md +8 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EntitiesInner3.md +3 -2
- apache_airflow_client-3.3.0/docs/EntitiesInner4.md +32 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogApi.md +10 -10
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExperimentalApi.md +2 -2
- apache_airflow_client-3.3.0/docs/ExpiresAt.md +28 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExternalViewResponse.md +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorApi.md +8 -4
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LoginApi.md +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PatchTaskInstanceBody.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolApi.md +2 -3
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ReactAppResponse.md +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ResponseClearDagRun.md +1 -0
- apache_airflow_client-3.3.0/docs/ResponseClearDagRuns.md +33 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceApi.md +225 -34
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceState.md +2 -0
- apache_airflow_client-3.3.0/docs/TaskStateStoreApi.md +573 -0
- apache_airflow_client-3.3.0/docs/TaskStateStoreBody.md +31 -0
- apache_airflow_client-3.3.0/docs/TaskStateStoreCollectionResponse.md +31 -0
- apache_airflow_client-3.3.0/docs/TaskStateStorePatchBody.md +30 -0
- apache_airflow_client-3.3.0/docs/TaskStateStoreResponse.md +33 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableApi.md +2 -2
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableResponse.md +1 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComApi.md +8 -8
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/pyproject.toml +2 -2
- apache_airflow_client-3.3.0/test/test_actions_inner4.py +63 -0
- apache_airflow_client-3.3.0/test/test_asset_event_access_control.py +54 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_api.py +66 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_body.py +52 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_collection_response.py +66 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_last_updated_by.py +56 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_response.py +62 -0
- apache_airflow_client-3.3.0/test/test_asset_state_store_writer_kind.py +33 -0
- apache_airflow_client-3.3.0/test/test_async_connection_test_response.py +59 -0
- apache_airflow_client-3.3.0/test/test_bulk_body_bulk_dag_run_body.py +56 -0
- apache_airflow_client-3.3.0/test/test_bulk_create_action_bulk_dag_run_body.py +67 -0
- apache_airflow_client-3.3.0/test/test_bulk_dag_run_body.py +55 -0
- apache_airflow_client-3.3.0/test/test_bulk_dag_run_clear_body.py +65 -0
- apache_airflow_client-3.3.0/test/test_bulk_delete_action_bulk_dag_run_body.py +59 -0
- apache_airflow_client-3.3.0/test/test_bulk_update_action_bulk_dag_run_body.py +70 -0
- apache_airflow_client-3.3.0/test/test_clear_partitions_body.py +56 -0
- apache_airflow_client-3.3.0/test/test_clear_partitions_response.py +56 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instances_body.py +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_api.py +14 -0
- apache_airflow_client-3.3.0/test/test_connection_test_queued_response.py +56 -0
- apache_airflow_client-3.3.0/test/test_connection_test_request_body.py +65 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_create_asset_events_body.py +5 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_collection_response.py +4 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_details_response.py +5 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_response.py +4 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_api.py +21 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_clear_body.py +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_collection_response.py +2 -0
- 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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_response.py +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner.py +2 -8
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner1.py +11 -12
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner2.py +10 -5
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_entities_inner3.py +6 -5
- apache_airflow_client-3.3.0/test/test_entities_inner4.py +56 -0
- apache_airflow_client-3.3.0/test/test_expires_at.py +50 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_external_view_response.py +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_react_app_response.py +1 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_response_clear_dag_run.py +1 -0
- apache_airflow_client-3.3.0/test/test_response_clear_dag_runs.py +130 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_api.py +14 -0
- apache_airflow_client-3.3.0/test/test_task_state_store_api.py +73 -0
- apache_airflow_client-3.3.0/test/test_task_state_store_body.py +53 -0
- apache_airflow_client-3.3.0/test/test_task_state_store_collection_response.py +66 -0
- apache_airflow_client-3.3.0/test/test_task_state_store_patch_body.py +52 -0
- apache_airflow_client-3.3.0/test/test_task_state_store_response.py +57 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_response.py +0 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/v2.yaml +2107 -427
- apache_airflow_client-3.3.0/version.txt +1 -0
- apache_airflow_client-3.2.2/docs/EntitiesInner1.md +0 -38
- apache_airflow_client-3.2.2/version.txt +0 -1
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/.gitignore +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/INSTALL +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/LICENSE +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/NOTICE +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/backfill_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/config_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_parsing_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_source_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_stats_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_version_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/dag_warning_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/extra_links_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/job_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/monitor_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/plugin_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/provider_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/task_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/version_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/exceptions.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/app_builder_menu_item_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/app_builder_view_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_alias_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_alias_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/asset_watcher_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/backfill_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/base_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_not_on_existence.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_on_existence.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_action_response.py +0 -0
- {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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_create_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_task_instance_body.py +0 -0
- {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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/bulk_update_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/clear_task_instance_collection_response.py +0 -0
- {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
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config_option.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/config_section.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/connection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/content.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_patch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_processor_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_state.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_run_triggered_by_type.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_runs_batch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_schedule_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_source_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_stats_state_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_tag_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_tag_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_version_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_version_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dag_warning_type.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/detail.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dry_run_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/dry_run_backfill_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/event_log_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/event_log_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/external_log_url_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/extra_link_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/fast_api_app_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/fast_api_root_middleware_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/health_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_collection.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_history.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_detail_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/hitl_user.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/http_exception_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/http_validation_error.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/import_error_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/job_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/job_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/last_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/location_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/materialize_asset_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/new_task_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_import_error_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/plugin_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_patch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/pool_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/provider_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/provider_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/queued_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/queued_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/reprocess_behavior.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/response_clear_dag_run.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/response_get_xcom_entry.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/scheduler_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/structured_log_message.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_dependency_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_dependency_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_inlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_history_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_history_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instance_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_batch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_instances_log_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_outlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/task_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/time_delta.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/trigger_dag_run_post_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/trigger_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/triggerer_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/update_hitl_detail_payload.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/validation_error.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/value.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/variable_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/version_info.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_create_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response_native.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_response_string.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/models/x_com_update_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/py.typed +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/rest.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner1.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner2.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ActionsInner3.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AppBuilderMenuItemResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AppBuilderViewResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetAliasCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetAliasResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetEventCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetEventResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/AssetWatcherResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BackfillResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BaseInfoResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionNotOnExistence.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionOnExistence.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkActionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionConnectionBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionPoolBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkCreateActionVariableBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionConnectionBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionPoolBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/BulkUpdateActionVariableBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstanceCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ClearTaskInstancesBodyTaskIdsInner.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Config.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigOption.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConfigSection.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ConnectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Content.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGParsingApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGPatchBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGRunsBatchBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGSourceResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGTagCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGVersionCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGWarningCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DAGWarningResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagProcessorInfoResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunAssetReference.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunState.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagRunTriggeredByType.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagScheduleAssetReference.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagSourceApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagStatsStateResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagTagResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagVersionApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagVersionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagWarningApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DagWarningType.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Detail.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DryRunBackfillCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/DryRunBackfillResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/EventLogResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExternalLogUrlResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExtraLinkCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ExtraLinksApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/FastAPIAppResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/FastAPIRootMiddlewareResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetail.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailCollection.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailHistory.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLDetailResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HITLUser.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HTTPExceptionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HTTPValidationError.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/HealthInfoResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ImportErrorResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/JobResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LastAssetEventResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/LocationInner.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/MaterializeAssetBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/MonitorApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/NewTaskResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginImportErrorCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginImportErrorResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PluginResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolPatchBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/PoolResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ProviderResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/QueuedEventCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/QueuedEventResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ReprocessBehavior.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ResponseGetXcomEntry.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/SchedulerInfoResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/StructuredLogMessage.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskDependencyCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskDependencyResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInletAssetReference.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceHistoryCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceHistoryResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstanceResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesBatchBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesInner.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskInstancesLogResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskOutletAssetReference.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TaskResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TimeDelta.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggerDAGRunPostBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggerResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/TriggererInfoResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/UpdateHITLDetailPayload.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/ValidationError.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/Value.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VariableCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VersionApi.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/VersionInfo.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComCreateBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponse.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponseNative.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComResponseString.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/docs/XComUpdateBody.md +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/__init__.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner1.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner2.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_actions_inner3.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_app_builder_menu_item_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_app_builder_view_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_alias_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_alias_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_asset_watcher_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_post_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_backfill_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_base_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_not_on_existence.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_on_existence.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_action_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_body_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_create_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_delete_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_bulk_update_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instance_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_clear_task_instances_body_task_ids_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_option.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_config_section.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_connection_test_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_content.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_parsing_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_patch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_processor_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_patch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_state.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_triggered_by_type.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_run_type.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_runs_batch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_schedule_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_source_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_source_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_stats_state_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_tag_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_tag_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_version_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dag_warning_type.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_detail.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dry_run_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_dry_run_backfill_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_event_log_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_experimental_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_external_log_url_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_extra_link_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_extra_links_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_fast_api_app_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_fast_api_root_middleware_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_health_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_collection.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_history.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_detail_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_hitl_user.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_http_exception_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_http_validation_error.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_import_error_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_job_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_last_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_location_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_login_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_materialize_asset_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_monitor_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_new_task_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_patch_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_import_error_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_plugin_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_patch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_pool_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_provider_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_queued_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_queued_event_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_reprocess_behavior.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_response_get_xcom_entry.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_scheduler_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_structured_log_message.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_dependency_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_dependency_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_inlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_history_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_history_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instance_state.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_batch_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_inner.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_instances_log_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_outlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_task_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_time_delta.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_trigger_dag_run_post_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_trigger_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_triggerer_info_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_update_hitl_detail_payload.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_validation_error.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_value.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_variable_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_version_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_version_info.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_api.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_collection_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_create_body.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response_native.py +0 -0
- {apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/test/test_x_com_response_string.py +0 -0
- {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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
{apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/__init__.py
RENAMED
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "3.
|
|
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
|
{apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/__init__.py
RENAMED
|
@@ -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
|
{apache_airflow_client-3.2.2 → apache_airflow_client-3.3.0}/airflow_client/client/api/asset_api.py
RENAMED
|
@@ -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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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_%`).
|
|
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
|