apache-airflow-client 3.2.1__tar.gz → 3.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/PKG-INFO +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/__init__.py +7 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/asset_api.py +104 -36
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/connection_api.py +23 -6
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_api.py +119 -51
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_parsing_api.py +3 -3
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_run_api.py +144 -42
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_version_api.py +3 -3
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_warning_api.py +3 -3
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/event_log_api.py +115 -30
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/experimental_api.py +3 -3
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/extra_links_api.py +17 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/import_error_api.py +23 -6
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/pool_api.py +23 -6
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/task_api.py +3 -3
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/task_instance_api.py +370 -81
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/variable_api.py +23 -6
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/x_com_api.py +114 -28
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api_client.py +15 -19
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/configuration.py +2 -2
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/__init__.py +3 -0
- apache_airflow_client-3.2.1/airflow_client/client/models/task_instance_collection_response.py → apache_airflow_client-3.2.2/airflow_client/client/models/clear_task_instance_collection_response.py +7 -7
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_body.py +3 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_collection_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_details_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_clear_body.py +4 -2
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_collection_response.py +9 -5
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_patch_body.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_patch_states.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_runs_batch_body.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_schedule_asset_reference.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_source_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_collection_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_tag_collection_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_tag_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_version_collection_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_collection_response.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_response.py +1 -1
- apache_airflow_client-3.2.2/airflow_client/client/models/new_task_response.py +90 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/response_clear_dag_run.py +14 -14
- apache_airflow_client-3.2.2/airflow_client/client/models/task_instance_collection_response.py +102 -0
- apache_airflow_client-3.2.2/airflow_client/client/models/task_instances_inner.py +137 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/trigger_dag_run_post_body.py +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetApi.md +26 -18
- apache_airflow_client-3.2.2/docs/ClearTaskInstanceCollectionResponse.md +31 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionApi.md +6 -4
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGApi.md +35 -23
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGCollectionResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGDetailsResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGParsingApi.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunClearBody.md +2 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunCollectionResponse.md +4 -2
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunPatchBody.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunPatchStates.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGRunsBatchBody.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGSourceResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGTagCollectionResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGVersionCollectionResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGWarningCollectionResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGWarningResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunApi.md +38 -17
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagScheduleAssetReference.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsCollectionResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagTagResponse.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagVersionApi.md +2 -2
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagWarningApi.md +1 -1
- apache_airflow_client-3.2.2/docs/EventLogApi.md +223 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExperimentalApi.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExtraLinksApi.md +4 -2
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorApi.md +6 -4
- apache_airflow_client-3.2.2/docs/NewTaskResponse.md +31 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolApi.md +6 -4
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ResponseClearDagRun.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskApi.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceApi.md +79 -36
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceCollectionResponse.md +4 -2
- apache_airflow_client-3.2.2/docs/TaskInstancesInner.md +62 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggerDAGRunPostBody.md +1 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableApi.md +6 -4
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComApi.md +21 -11
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/pyproject.toml +3 -3
- apache_airflow_client-3.2.2/test/test_clear_task_instance_collection_response.py +58 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_clear_body.py +1 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_collection_response.py +2 -1
- apache_airflow_client-3.2.2/test/test_new_task_response.py +54 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_response_clear_dag_run.py +2 -70
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_collection_response.py +2 -1
- apache_airflow_client-3.2.2/test/test_task_instances_inner.py +122 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/v2.yaml +937 -95
- apache_airflow_client-3.2.2/version.txt +1 -0
- apache_airflow_client-3.2.1/docs/EventLogApi.md +0 -213
- apache_airflow_client-3.2.1/version.txt +0 -1
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/.gitignore +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/INSTALL +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/LICENSE +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/NOTICE +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/README.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/__init__.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/backfill_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/config_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_source_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/dag_stats_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/job_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/login_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/monitor_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/plugin_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/provider_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/version_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/exceptions.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner1.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner2.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/actions_inner3.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/app_builder_menu_item_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/app_builder_view_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_alias_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_alias_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/asset_watcher_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_post_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/backfill_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/base_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_not_on_existence.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_on_existence.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_action_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_body_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_create_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_delete_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/bulk_update_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/clear_task_instances_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/clear_task_instances_body_task_ids_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config_option.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/config_section.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/connection_test_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/content.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/create_asset_events_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_patch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_processor_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_state.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_triggered_by_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_run_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_stats_state_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_version_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dag_warning_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/detail.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dry_run_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/dry_run_backfill_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner1.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner2.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/entities_inner3.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/event_log_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/event_log_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/external_log_url_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/external_view_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/extra_link_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/fast_api_app_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/fast_api_root_middleware_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/health_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_collection.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_history.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_detail_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/hitl_user.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/http_exception_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/http_validation_error.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/import_error_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/job_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/job_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/last_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/location_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/materialize_asset_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/patch_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_import_error_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/plugin_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_patch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/pool_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/provider_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/provider_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/queued_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/queued_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/react_app_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/reprocess_behavior.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/response_get_xcom_entry.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/scheduler_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/structured_log_message.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_dependency_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_dependency_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_inlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_history_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_history_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instance_state.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instances_batch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_instances_log_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_outlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/task_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/time_delta.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/trigger_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/triggerer_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/update_hitl_detail_payload.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/validation_error.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/value.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/variable_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/version_info.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_create_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response_native.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_response_string.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/models/x_com_update_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/py.typed +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/rest.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner1.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner2.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ActionsInner3.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AppBuilderMenuItemResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AppBuilderViewResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetAliasCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetAliasResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetEventCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetEventResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/AssetWatcherResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillPostBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BackfillResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BaseInfoResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionNotOnExistence.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionOnExistence.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkActionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyConnectionBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyPoolBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkBodyVariableBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionConnectionBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionPoolBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkCreateActionVariableBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionConnectionBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionPoolBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkDeleteActionVariableBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionBulkTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionConnectionBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionPoolBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/BulkUpdateActionVariableBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ClearTaskInstancesBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ClearTaskInstancesBodyTaskIdsInner.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Config.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigOption.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConfigSection.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ConnectionTestResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Content.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/CreateAssetEventsBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DAGPatchBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagProcessorInfoResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunAssetReference.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunState.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunTriggeredByType.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagRunType.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagSourceApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagStatsStateResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagVersionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DagWarningType.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Detail.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DryRunBackfillCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/DryRunBackfillResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner1.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner2.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EntitiesInner3.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EventLogCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/EventLogResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExternalLogUrlResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExternalViewResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ExtraLinkCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/FastAPIAppResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/FastAPIRootMiddlewareResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetail.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailCollection.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailHistory.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLDetailResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HITLUser.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HTTPExceptionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HTTPValidationError.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/HealthInfoResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ImportErrorResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/JobResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LastAssetEventResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LocationInner.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/LoginApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/MaterializeAssetBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/MonitorApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PatchTaskInstanceBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginImportErrorCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginImportErrorResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PluginResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolPatchBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/PoolResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ProviderResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/QueuedEventCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/QueuedEventResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ReactAppResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ReprocessBehavior.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ResponseGetXcomEntry.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/SchedulerInfoResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/StructuredLogMessage.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskDependencyCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskDependencyResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInletAssetReference.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceHistoryCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceHistoryResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstanceState.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstancesBatchBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskInstancesLogResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskOutletAssetReference.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TaskResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TimeDelta.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggerResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/TriggererInfoResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/UpdateHITLDetailPayload.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/ValidationError.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/Value.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VariableResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VersionApi.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/VersionInfo.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComCollectionResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComCreateBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponse.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponseNative.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComResponseString.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/docs/XComUpdateBody.md +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/__init__.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner1.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner2.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_actions_inner3.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_app_builder_menu_item_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_app_builder_view_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_alias_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_alias_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_asset_watcher_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_post_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_backfill_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_base_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_not_on_existence.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_on_existence.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_action_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_body_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_create_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_delete_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_bulk_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_bulk_update_action_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_clear_task_instances_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_clear_task_instances_body_task_ids_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_option.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_config_section.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_connection_test_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_content.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_create_asset_events_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_details_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_parsing_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_patch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_processor_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_patch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_patch_states.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_state.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_triggered_by_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_run_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_runs_batch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_schedule_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_source_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_source_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_stats_state_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_tag_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_tag_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_version_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dag_warning_type.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_detail.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dry_run_backfill_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_dry_run_backfill_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner1.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner2.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_entities_inner3.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_event_log_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_experimental_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_external_log_url_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_external_view_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_extra_link_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_extra_links_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_fast_api_app_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_fast_api_root_middleware_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_health_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_collection.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_history.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_detail_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_hitl_user.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_http_exception_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_http_validation_error.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_import_error_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_job_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_last_asset_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_location_inner.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_login_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_materialize_asset_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_monitor_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_patch_task_instance_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_import_error_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_import_error_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_plugin_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_patch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_pool_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_provider_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_queued_event_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_queued_event_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_react_app_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_reprocess_behavior.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_response_get_xcom_entry.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_scheduler_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_structured_log_message.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_dependency_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_dependency_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_inlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_history_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_history_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instance_state.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instances_batch_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_instances_log_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_outlet_asset_reference.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_task_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_time_delta.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_trigger_dag_run_post_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_trigger_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_triggerer_info_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_update_hitl_detail_payload.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_validation_error.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_value.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_variable_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_version_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_version_info.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_api.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_collection_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_create_body.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response_native.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_response_string.py +0 -0
- {apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/test/test_x_com_update_body.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-client
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: Apache Airflow API (Stable)
|
|
5
5
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
6
6
|
Project-URL: Changelog, https://github.com/apache/airflow-client-python/blob/main/CHANGELOG.md
|
{apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/__init__.py
RENAMED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "3.2.
|
|
17
|
+
__version__ = "3.2.2"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -91,6 +91,7 @@ __all__ = [
|
|
|
91
91
|
"BulkUpdateActionConnectionBody",
|
|
92
92
|
"BulkUpdateActionPoolBody",
|
|
93
93
|
"BulkUpdateActionVariableBody",
|
|
94
|
+
"ClearTaskInstanceCollectionResponse",
|
|
94
95
|
"ClearTaskInstancesBody",
|
|
95
96
|
"ClearTaskInstancesBodyTaskIdsInner",
|
|
96
97
|
"Config",
|
|
@@ -158,6 +159,7 @@ __all__ = [
|
|
|
158
159
|
"LastAssetEventResponse",
|
|
159
160
|
"LocationInner",
|
|
160
161
|
"MaterializeAssetBody",
|
|
162
|
+
"NewTaskResponse",
|
|
161
163
|
"PatchTaskInstanceBody",
|
|
162
164
|
"PluginCollectionResponse",
|
|
163
165
|
"PluginImportErrorCollectionResponse",
|
|
@@ -187,6 +189,7 @@ __all__ = [
|
|
|
187
189
|
"TaskInstanceResponse",
|
|
188
190
|
"TaskInstanceState",
|
|
189
191
|
"TaskInstancesBatchBody",
|
|
192
|
+
"TaskInstancesInner",
|
|
190
193
|
"TaskInstancesLogResponse",
|
|
191
194
|
"TaskOutletAssetReference",
|
|
192
195
|
"TaskResponse",
|
|
@@ -287,6 +290,7 @@ from airflow_client.client.models.bulk_update_action_bulk_task_instance_body imp
|
|
|
287
290
|
from airflow_client.client.models.bulk_update_action_connection_body import BulkUpdateActionConnectionBody as BulkUpdateActionConnectionBody
|
|
288
291
|
from airflow_client.client.models.bulk_update_action_pool_body import BulkUpdateActionPoolBody as BulkUpdateActionPoolBody
|
|
289
292
|
from airflow_client.client.models.bulk_update_action_variable_body import BulkUpdateActionVariableBody as BulkUpdateActionVariableBody
|
|
293
|
+
from airflow_client.client.models.clear_task_instance_collection_response import ClearTaskInstanceCollectionResponse as ClearTaskInstanceCollectionResponse
|
|
290
294
|
from airflow_client.client.models.clear_task_instances_body import ClearTaskInstancesBody as ClearTaskInstancesBody
|
|
291
295
|
from airflow_client.client.models.clear_task_instances_body_task_ids_inner import ClearTaskInstancesBodyTaskIdsInner as ClearTaskInstancesBodyTaskIdsInner
|
|
292
296
|
from airflow_client.client.models.config import Config as Config
|
|
@@ -354,6 +358,7 @@ from airflow_client.client.models.job_response import JobResponse as JobResponse
|
|
|
354
358
|
from airflow_client.client.models.last_asset_event_response import LastAssetEventResponse as LastAssetEventResponse
|
|
355
359
|
from airflow_client.client.models.location_inner import LocationInner as LocationInner
|
|
356
360
|
from airflow_client.client.models.materialize_asset_body import MaterializeAssetBody as MaterializeAssetBody
|
|
361
|
+
from airflow_client.client.models.new_task_response import NewTaskResponse as NewTaskResponse
|
|
357
362
|
from airflow_client.client.models.patch_task_instance_body import PatchTaskInstanceBody as PatchTaskInstanceBody
|
|
358
363
|
from airflow_client.client.models.plugin_collection_response import PluginCollectionResponse as PluginCollectionResponse
|
|
359
364
|
from airflow_client.client.models.plugin_import_error_collection_response import PluginImportErrorCollectionResponse as PluginImportErrorCollectionResponse
|
|
@@ -383,6 +388,7 @@ from airflow_client.client.models.task_instance_history_response import TaskInst
|
|
|
383
388
|
from airflow_client.client.models.task_instance_response import TaskInstanceResponse as TaskInstanceResponse
|
|
384
389
|
from airflow_client.client.models.task_instance_state import TaskInstanceState as TaskInstanceState
|
|
385
390
|
from airflow_client.client.models.task_instances_batch_body import TaskInstancesBatchBody as TaskInstancesBatchBody
|
|
391
|
+
from airflow_client.client.models.task_instances_inner import TaskInstancesInner as TaskInstancesInner
|
|
386
392
|
from airflow_client.client.models.task_instances_log_response import TaskInstancesLogResponse as TaskInstancesLogResponse
|
|
387
393
|
from airflow_client.client.models.task_outlet_asset_reference import TaskOutletAssetReference as TaskOutletAssetReference
|
|
388
394
|
from airflow_client.client.models.task_response import TaskResponse as TaskResponse
|
{apache_airflow_client-3.2.1 → apache_airflow_client-3.2.2}/airflow_client/client/api/asset_api.py
RENAMED
|
@@ -647,7 +647,7 @@ class AssetApi:
|
|
|
647
647
|
) -> None:
|
|
648
648
|
"""Delete Dag Asset Queued Event
|
|
649
649
|
|
|
650
|
-
Delete a queued asset event for a
|
|
650
|
+
Delete a queued asset event for a Dag.
|
|
651
651
|
|
|
652
652
|
:param dag_id: (required)
|
|
653
653
|
:type dag_id: str
|
|
@@ -727,7 +727,7 @@ class AssetApi:
|
|
|
727
727
|
) -> ApiResponse[None]:
|
|
728
728
|
"""Delete Dag Asset Queued Event
|
|
729
729
|
|
|
730
|
-
Delete a queued asset event for a
|
|
730
|
+
Delete a queued asset event for a Dag.
|
|
731
731
|
|
|
732
732
|
:param dag_id: (required)
|
|
733
733
|
:type dag_id: str
|
|
@@ -807,7 +807,7 @@ class AssetApi:
|
|
|
807
807
|
) -> RESTResponseType:
|
|
808
808
|
"""Delete Dag Asset Queued Event
|
|
809
809
|
|
|
810
|
-
Delete a queued asset event for a
|
|
810
|
+
Delete a queued asset event for a Dag.
|
|
811
811
|
|
|
812
812
|
:param dag_id: (required)
|
|
813
813
|
:type dag_id: str
|
|
@@ -1779,7 +1779,8 @@ class AssetApi:
|
|
|
1779
1779
|
self,
|
|
1780
1780
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1781
1781
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1782
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
1782
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
1783
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
1783
1784
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
|
|
1784
1785
|
_request_timeout: Union[
|
|
1785
1786
|
None,
|
|
@@ -1802,8 +1803,10 @@ class AssetApi:
|
|
|
1802
1803
|
:type limit: int
|
|
1803
1804
|
:param offset:
|
|
1804
1805
|
:type offset: int
|
|
1805
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
1806
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
1806
1807
|
:type name_pattern: str
|
|
1808
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
1809
|
+
:type name_prefix_pattern: str
|
|
1807
1810
|
:param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
|
|
1808
1811
|
:type order_by: List[str]
|
|
1809
1812
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1832,6 +1835,7 @@ class AssetApi:
|
|
|
1832
1835
|
limit=limit,
|
|
1833
1836
|
offset=offset,
|
|
1834
1837
|
name_pattern=name_pattern,
|
|
1838
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
1835
1839
|
order_by=order_by,
|
|
1836
1840
|
_request_auth=_request_auth,
|
|
1837
1841
|
_content_type=_content_type,
|
|
@@ -1862,7 +1866,8 @@ class AssetApi:
|
|
|
1862
1866
|
self,
|
|
1863
1867
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1864
1868
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1865
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
1869
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
1870
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
1866
1871
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
|
|
1867
1872
|
_request_timeout: Union[
|
|
1868
1873
|
None,
|
|
@@ -1885,8 +1890,10 @@ class AssetApi:
|
|
|
1885
1890
|
:type limit: int
|
|
1886
1891
|
:param offset:
|
|
1887
1892
|
:type offset: int
|
|
1888
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
1893
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
1889
1894
|
:type name_pattern: str
|
|
1895
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
1896
|
+
:type name_prefix_pattern: str
|
|
1890
1897
|
:param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
|
|
1891
1898
|
:type order_by: List[str]
|
|
1892
1899
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1915,6 +1922,7 @@ class AssetApi:
|
|
|
1915
1922
|
limit=limit,
|
|
1916
1923
|
offset=offset,
|
|
1917
1924
|
name_pattern=name_pattern,
|
|
1925
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
1918
1926
|
order_by=order_by,
|
|
1919
1927
|
_request_auth=_request_auth,
|
|
1920
1928
|
_content_type=_content_type,
|
|
@@ -1945,7 +1953,8 @@ class AssetApi:
|
|
|
1945
1953
|
self,
|
|
1946
1954
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1947
1955
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
1948
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
1956
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
1957
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
1949
1958
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`")] = None,
|
|
1950
1959
|
_request_timeout: Union[
|
|
1951
1960
|
None,
|
|
@@ -1968,8 +1977,10 @@ class AssetApi:
|
|
|
1968
1977
|
:type limit: int
|
|
1969
1978
|
:param offset:
|
|
1970
1979
|
:type offset: int
|
|
1971
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
1980
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
1972
1981
|
:type name_pattern: str
|
|
1982
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
1983
|
+
:type name_prefix_pattern: str
|
|
1973
1984
|
:param order_by: Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name`
|
|
1974
1985
|
:type order_by: List[str]
|
|
1975
1986
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1998,6 +2009,7 @@ class AssetApi:
|
|
|
1998
2009
|
limit=limit,
|
|
1999
2010
|
offset=offset,
|
|
2000
2011
|
name_pattern=name_pattern,
|
|
2012
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
2001
2013
|
order_by=order_by,
|
|
2002
2014
|
_request_auth=_request_auth,
|
|
2003
2015
|
_content_type=_content_type,
|
|
@@ -2024,6 +2036,7 @@ class AssetApi:
|
|
|
2024
2036
|
limit,
|
|
2025
2037
|
offset,
|
|
2026
2038
|
name_pattern,
|
|
2039
|
+
name_prefix_pattern,
|
|
2027
2040
|
order_by,
|
|
2028
2041
|
_request_auth,
|
|
2029
2042
|
_content_type,
|
|
@@ -2060,6 +2073,10 @@ class AssetApi:
|
|
|
2060
2073
|
|
|
2061
2074
|
_query_params.append(('name_pattern', name_pattern))
|
|
2062
2075
|
|
|
2076
|
+
if name_prefix_pattern is not None:
|
|
2077
|
+
|
|
2078
|
+
_query_params.append(('name_prefix_pattern', name_prefix_pattern))
|
|
2079
|
+
|
|
2063
2080
|
if order_by is not None:
|
|
2064
2081
|
|
|
2065
2082
|
_query_params.append(('order_by', order_by))
|
|
@@ -2113,7 +2130,8 @@ class AssetApi:
|
|
|
2113
2130
|
source_task_id: Optional[StrictStr] = None,
|
|
2114
2131
|
source_run_id: Optional[StrictStr] = None,
|
|
2115
2132
|
source_map_index: Optional[StrictInt] = None,
|
|
2116
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
2133
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
2134
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
2117
2135
|
timestamp_gte: Optional[datetime] = None,
|
|
2118
2136
|
timestamp_gt: Optional[datetime] = None,
|
|
2119
2137
|
timestamp_lte: Optional[datetime] = None,
|
|
@@ -2151,8 +2169,10 @@ class AssetApi:
|
|
|
2151
2169
|
:type source_run_id: str
|
|
2152
2170
|
:param source_map_index:
|
|
2153
2171
|
:type source_map_index: int
|
|
2154
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
2172
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
2155
2173
|
:type name_pattern: str
|
|
2174
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
2175
|
+
:type name_prefix_pattern: str
|
|
2156
2176
|
:param timestamp_gte:
|
|
2157
2177
|
:type timestamp_gte: datetime
|
|
2158
2178
|
:param timestamp_gt:
|
|
@@ -2193,6 +2213,7 @@ class AssetApi:
|
|
|
2193
2213
|
source_run_id=source_run_id,
|
|
2194
2214
|
source_map_index=source_map_index,
|
|
2195
2215
|
name_pattern=name_pattern,
|
|
2216
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
2196
2217
|
timestamp_gte=timestamp_gte,
|
|
2197
2218
|
timestamp_gt=timestamp_gt,
|
|
2198
2219
|
timestamp_lte=timestamp_lte,
|
|
@@ -2232,7 +2253,8 @@ class AssetApi:
|
|
|
2232
2253
|
source_task_id: Optional[StrictStr] = None,
|
|
2233
2254
|
source_run_id: Optional[StrictStr] = None,
|
|
2234
2255
|
source_map_index: Optional[StrictInt] = None,
|
|
2235
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
2256
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
2257
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
2236
2258
|
timestamp_gte: Optional[datetime] = None,
|
|
2237
2259
|
timestamp_gt: Optional[datetime] = None,
|
|
2238
2260
|
timestamp_lte: Optional[datetime] = None,
|
|
@@ -2270,8 +2292,10 @@ class AssetApi:
|
|
|
2270
2292
|
:type source_run_id: str
|
|
2271
2293
|
:param source_map_index:
|
|
2272
2294
|
:type source_map_index: int
|
|
2273
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
2295
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
2274
2296
|
:type name_pattern: str
|
|
2297
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
2298
|
+
:type name_prefix_pattern: str
|
|
2275
2299
|
:param timestamp_gte:
|
|
2276
2300
|
:type timestamp_gte: datetime
|
|
2277
2301
|
:param timestamp_gt:
|
|
@@ -2312,6 +2336,7 @@ class AssetApi:
|
|
|
2312
2336
|
source_run_id=source_run_id,
|
|
2313
2337
|
source_map_index=source_map_index,
|
|
2314
2338
|
name_pattern=name_pattern,
|
|
2339
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
2315
2340
|
timestamp_gte=timestamp_gte,
|
|
2316
2341
|
timestamp_gt=timestamp_gt,
|
|
2317
2342
|
timestamp_lte=timestamp_lte,
|
|
@@ -2351,7 +2376,8 @@ class AssetApi:
|
|
|
2351
2376
|
source_task_id: Optional[StrictStr] = None,
|
|
2352
2377
|
source_run_id: Optional[StrictStr] = None,
|
|
2353
2378
|
source_map_index: Optional[StrictInt] = None,
|
|
2354
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
2379
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
2380
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
2355
2381
|
timestamp_gte: Optional[datetime] = None,
|
|
2356
2382
|
timestamp_gt: Optional[datetime] = None,
|
|
2357
2383
|
timestamp_lte: Optional[datetime] = None,
|
|
@@ -2389,8 +2415,10 @@ class AssetApi:
|
|
|
2389
2415
|
:type source_run_id: str
|
|
2390
2416
|
:param source_map_index:
|
|
2391
2417
|
:type source_map_index: int
|
|
2392
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
2418
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
2393
2419
|
:type name_pattern: str
|
|
2420
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
2421
|
+
:type name_prefix_pattern: str
|
|
2394
2422
|
:param timestamp_gte:
|
|
2395
2423
|
:type timestamp_gte: datetime
|
|
2396
2424
|
:param timestamp_gt:
|
|
@@ -2431,6 +2459,7 @@ class AssetApi:
|
|
|
2431
2459
|
source_run_id=source_run_id,
|
|
2432
2460
|
source_map_index=source_map_index,
|
|
2433
2461
|
name_pattern=name_pattern,
|
|
2462
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
2434
2463
|
timestamp_gte=timestamp_gte,
|
|
2435
2464
|
timestamp_gt=timestamp_gt,
|
|
2436
2465
|
timestamp_lte=timestamp_lte,
|
|
@@ -2466,6 +2495,7 @@ class AssetApi:
|
|
|
2466
2495
|
source_run_id,
|
|
2467
2496
|
source_map_index,
|
|
2468
2497
|
name_pattern,
|
|
2498
|
+
name_prefix_pattern,
|
|
2469
2499
|
timestamp_gte,
|
|
2470
2500
|
timestamp_gt,
|
|
2471
2501
|
timestamp_lte,
|
|
@@ -2529,6 +2559,10 @@ class AssetApi:
|
|
|
2529
2559
|
|
|
2530
2560
|
_query_params.append(('name_pattern', name_pattern))
|
|
2531
2561
|
|
|
2562
|
+
if name_prefix_pattern is not None:
|
|
2563
|
+
|
|
2564
|
+
_query_params.append(('name_prefix_pattern', name_prefix_pattern))
|
|
2565
|
+
|
|
2532
2566
|
if timestamp_gte is not None:
|
|
2533
2567
|
if isinstance(timestamp_gte, datetime):
|
|
2534
2568
|
_query_params.append(
|
|
@@ -2912,8 +2946,10 @@ class AssetApi:
|
|
|
2912
2946
|
self,
|
|
2913
2947
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
2914
2948
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
2915
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
2916
|
-
|
|
2949
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
2950
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
2951
|
+
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
|
|
2952
|
+
uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
2917
2953
|
dag_ids: Optional[List[StrictStr]] = None,
|
|
2918
2954
|
only_active: Optional[StrictBool] = None,
|
|
2919
2955
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
|
|
@@ -2938,10 +2974,14 @@ class AssetApi:
|
|
|
2938
2974
|
:type limit: int
|
|
2939
2975
|
:param offset:
|
|
2940
2976
|
:type offset: int
|
|
2941
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
2977
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
2942
2978
|
:type name_pattern: str
|
|
2943
|
-
:param
|
|
2979
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
2980
|
+
:type name_prefix_pattern: str
|
|
2981
|
+
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
|
|
2944
2982
|
:type uri_pattern: str
|
|
2983
|
+
:param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
2984
|
+
:type uri_prefix_pattern: str
|
|
2945
2985
|
:param dag_ids:
|
|
2946
2986
|
:type dag_ids: List[str]
|
|
2947
2987
|
:param only_active:
|
|
@@ -2974,7 +3014,9 @@ class AssetApi:
|
|
|
2974
3014
|
limit=limit,
|
|
2975
3015
|
offset=offset,
|
|
2976
3016
|
name_pattern=name_pattern,
|
|
3017
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
2977
3018
|
uri_pattern=uri_pattern,
|
|
3019
|
+
uri_prefix_pattern=uri_prefix_pattern,
|
|
2978
3020
|
dag_ids=dag_ids,
|
|
2979
3021
|
only_active=only_active,
|
|
2980
3022
|
order_by=order_by,
|
|
@@ -3007,8 +3049,10 @@ class AssetApi:
|
|
|
3007
3049
|
self,
|
|
3008
3050
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
3009
3051
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
3010
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
3011
|
-
|
|
3052
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
3053
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
3054
|
+
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
|
|
3055
|
+
uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
3012
3056
|
dag_ids: Optional[List[StrictStr]] = None,
|
|
3013
3057
|
only_active: Optional[StrictBool] = None,
|
|
3014
3058
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
|
|
@@ -3033,10 +3077,14 @@ class AssetApi:
|
|
|
3033
3077
|
:type limit: int
|
|
3034
3078
|
:param offset:
|
|
3035
3079
|
:type offset: int
|
|
3036
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
3080
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
3037
3081
|
:type name_pattern: str
|
|
3038
|
-
:param
|
|
3082
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
3083
|
+
:type name_prefix_pattern: str
|
|
3084
|
+
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
|
|
3039
3085
|
:type uri_pattern: str
|
|
3086
|
+
:param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
3087
|
+
:type uri_prefix_pattern: str
|
|
3040
3088
|
:param dag_ids:
|
|
3041
3089
|
:type dag_ids: List[str]
|
|
3042
3090
|
:param only_active:
|
|
@@ -3069,7 +3117,9 @@ class AssetApi:
|
|
|
3069
3117
|
limit=limit,
|
|
3070
3118
|
offset=offset,
|
|
3071
3119
|
name_pattern=name_pattern,
|
|
3120
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
3072
3121
|
uri_pattern=uri_pattern,
|
|
3122
|
+
uri_prefix_pattern=uri_prefix_pattern,
|
|
3073
3123
|
dag_ids=dag_ids,
|
|
3074
3124
|
only_active=only_active,
|
|
3075
3125
|
order_by=order_by,
|
|
@@ -3102,8 +3152,10 @@ class AssetApi:
|
|
|
3102
3152
|
self,
|
|
3103
3153
|
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
3104
3154
|
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
|
|
3105
|
-
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.")] = None,
|
|
3106
|
-
|
|
3155
|
+
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.")] = None,
|
|
3156
|
+
name_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
3157
|
+
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.")] = None,
|
|
3158
|
+
uri_prefix_pattern: Annotated[Optional[StrictStr], Field(description="Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.")] = None,
|
|
3107
3159
|
dag_ids: Optional[List[StrictStr]] = None,
|
|
3108
3160
|
only_active: Optional[StrictBool] = None,
|
|
3109
3161
|
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, name, uri, created_at, updated_at`")] = None,
|
|
@@ -3128,10 +3180,14 @@ class AssetApi:
|
|
|
3128
3180
|
:type limit: int
|
|
3129
3181
|
:param offset:
|
|
3130
3182
|
:type offset: int
|
|
3131
|
-
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported.
|
|
3183
|
+
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``name_prefix_pattern`` parameter when possible.
|
|
3132
3184
|
:type name_pattern: str
|
|
3133
|
-
:param
|
|
3185
|
+
:param name_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
3186
|
+
:type name_prefix_pattern: str
|
|
3187
|
+
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). or the pipe `|` operator for OR logic (e.g. `dag1 | dag2`). Regular expressions are **not** supported. **Performance note:** this full-match pattern is evaluated as ``ILIKE '%term%'`` and most of the time prevents the database from using B-tree indexes, which can be very slow on large tables. Prefer the equivalent ``uri_prefix_pattern`` parameter when possible.
|
|
3134
3188
|
:type uri_pattern: str
|
|
3189
|
+
:param uri_prefix_pattern: Prefix match — returns items whose value starts with the given string (case-sensitive, index-friendly). Use the pipe `|` operator for OR logic (e.g. `dag1|dag2`). Use `~` to match all. Wildcard characters (`%`, `_`) are treated as literal characters. Trailing non-alphanumeric characters in the prefix are stripped before matching so the range scan stays index-compatible under locale-aware collations — e.g. `test_` effectively matches items starting with `test`, and `s3://` matches items starting with `s3`.
|
|
3190
|
+
:type uri_prefix_pattern: str
|
|
3135
3191
|
:param dag_ids:
|
|
3136
3192
|
:type dag_ids: List[str]
|
|
3137
3193
|
:param only_active:
|
|
@@ -3164,7 +3220,9 @@ class AssetApi:
|
|
|
3164
3220
|
limit=limit,
|
|
3165
3221
|
offset=offset,
|
|
3166
3222
|
name_pattern=name_pattern,
|
|
3223
|
+
name_prefix_pattern=name_prefix_pattern,
|
|
3167
3224
|
uri_pattern=uri_pattern,
|
|
3225
|
+
uri_prefix_pattern=uri_prefix_pattern,
|
|
3168
3226
|
dag_ids=dag_ids,
|
|
3169
3227
|
only_active=only_active,
|
|
3170
3228
|
order_by=order_by,
|
|
@@ -3193,7 +3251,9 @@ class AssetApi:
|
|
|
3193
3251
|
limit,
|
|
3194
3252
|
offset,
|
|
3195
3253
|
name_pattern,
|
|
3254
|
+
name_prefix_pattern,
|
|
3196
3255
|
uri_pattern,
|
|
3256
|
+
uri_prefix_pattern,
|
|
3197
3257
|
dag_ids,
|
|
3198
3258
|
only_active,
|
|
3199
3259
|
order_by,
|
|
@@ -3233,10 +3293,18 @@ class AssetApi:
|
|
|
3233
3293
|
|
|
3234
3294
|
_query_params.append(('name_pattern', name_pattern))
|
|
3235
3295
|
|
|
3296
|
+
if name_prefix_pattern is not None:
|
|
3297
|
+
|
|
3298
|
+
_query_params.append(('name_prefix_pattern', name_prefix_pattern))
|
|
3299
|
+
|
|
3236
3300
|
if uri_pattern is not None:
|
|
3237
3301
|
|
|
3238
3302
|
_query_params.append(('uri_pattern', uri_pattern))
|
|
3239
3303
|
|
|
3304
|
+
if uri_prefix_pattern is not None:
|
|
3305
|
+
|
|
3306
|
+
_query_params.append(('uri_prefix_pattern', uri_prefix_pattern))
|
|
3307
|
+
|
|
3240
3308
|
if dag_ids is not None:
|
|
3241
3309
|
|
|
3242
3310
|
_query_params.append(('dag_ids', dag_ids))
|
|
@@ -3308,7 +3376,7 @@ class AssetApi:
|
|
|
3308
3376
|
) -> QueuedEventResponse:
|
|
3309
3377
|
"""Get Dag Asset Queued Event
|
|
3310
3378
|
|
|
3311
|
-
Get a queued asset event for a
|
|
3379
|
+
Get a queued asset event for a Dag.
|
|
3312
3380
|
|
|
3313
3381
|
:param dag_id: (required)
|
|
3314
3382
|
:type dag_id: str
|
|
@@ -3387,7 +3455,7 @@ class AssetApi:
|
|
|
3387
3455
|
) -> ApiResponse[QueuedEventResponse]:
|
|
3388
3456
|
"""Get Dag Asset Queued Event
|
|
3389
3457
|
|
|
3390
|
-
Get a queued asset event for a
|
|
3458
|
+
Get a queued asset event for a Dag.
|
|
3391
3459
|
|
|
3392
3460
|
:param dag_id: (required)
|
|
3393
3461
|
:type dag_id: str
|
|
@@ -3466,7 +3534,7 @@ class AssetApi:
|
|
|
3466
3534
|
) -> RESTResponseType:
|
|
3467
3535
|
"""Get Dag Asset Queued Event
|
|
3468
3536
|
|
|
3469
|
-
Get a queued asset event for a
|
|
3537
|
+
Get a queued asset event for a Dag.
|
|
3470
3538
|
|
|
3471
3539
|
:param dag_id: (required)
|
|
3472
3540
|
:type dag_id: str
|
|
@@ -3613,7 +3681,7 @@ class AssetApi:
|
|
|
3613
3681
|
) -> QueuedEventCollectionResponse:
|
|
3614
3682
|
"""Get Dag Asset Queued Events
|
|
3615
3683
|
|
|
3616
|
-
Get queued asset events for a
|
|
3684
|
+
Get queued asset events for a Dag.
|
|
3617
3685
|
|
|
3618
3686
|
:param dag_id: (required)
|
|
3619
3687
|
:type dag_id: str
|
|
@@ -3687,7 +3755,7 @@ class AssetApi:
|
|
|
3687
3755
|
) -> ApiResponse[QueuedEventCollectionResponse]:
|
|
3688
3756
|
"""Get Dag Asset Queued Events
|
|
3689
3757
|
|
|
3690
|
-
Get queued asset events for a
|
|
3758
|
+
Get queued asset events for a Dag.
|
|
3691
3759
|
|
|
3692
3760
|
:param dag_id: (required)
|
|
3693
3761
|
:type dag_id: str
|
|
@@ -3761,7 +3829,7 @@ class AssetApi:
|
|
|
3761
3829
|
) -> RESTResponseType:
|
|
3762
3830
|
"""Get Dag Asset Queued Events
|
|
3763
3831
|
|
|
3764
|
-
Get queued asset events for a
|
|
3832
|
+
Get queued asset events for a Dag.
|
|
3765
3833
|
|
|
3766
3834
|
:param dag_id: (required)
|
|
3767
3835
|
:type dag_id: str
|
|
@@ -3901,7 +3969,7 @@ class AssetApi:
|
|
|
3901
3969
|
) -> DAGRunResponse:
|
|
3902
3970
|
"""Materialize Asset
|
|
3903
3971
|
|
|
3904
|
-
Materialize an asset by triggering a
|
|
3972
|
+
Materialize an asset by triggering a Dag run that produces it.
|
|
3905
3973
|
|
|
3906
3974
|
:param asset_id: (required)
|
|
3907
3975
|
:type asset_id: int
|
|
@@ -3978,7 +4046,7 @@ class AssetApi:
|
|
|
3978
4046
|
) -> ApiResponse[DAGRunResponse]:
|
|
3979
4047
|
"""Materialize Asset
|
|
3980
4048
|
|
|
3981
|
-
Materialize an asset by triggering a
|
|
4049
|
+
Materialize an asset by triggering a Dag run that produces it.
|
|
3982
4050
|
|
|
3983
4051
|
:param asset_id: (required)
|
|
3984
4052
|
:type asset_id: int
|
|
@@ -4055,7 +4123,7 @@ class AssetApi:
|
|
|
4055
4123
|
) -> RESTResponseType:
|
|
4056
4124
|
"""Materialize Asset
|
|
4057
4125
|
|
|
4058
|
-
Materialize an asset by triggering a
|
|
4126
|
+
Materialize an asset by triggering a Dag run that produces it.
|
|
4059
4127
|
|
|
4060
4128
|
:param asset_id: (required)
|
|
4061
4129
|
:type asset_id: int
|