This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 7a28f29842e AIP-38 Mark DagRun as failed/success (#45968)
add d133130594d Add Bulk API for Pool (#45939)
No new revisions were added by this update.
Summary of changes:
airflow/api_fastapi/core_api/datamodels/common.py | 8 +-
.../api_fastapi/core_api/datamodels/connections.py | 10 +-
airflow/api_fastapi/core_api/datamodels/pools.py | 81 +++-
.../api_fastapi/core_api/datamodels/variables.py | 10 +-
.../api_fastapi/core_api/openapi/v1-generated.yaml | 229 ++++++++---
.../api_fastapi/core_api/routes/public/pools.py | 80 ++--
.../core_api/services/public/connections.py | 19 +-
.../api_fastapi/core_api/services/public/pools.py | 152 ++++++++
.../core_api/services/public/variables.py | 19 +-
airflow/ui/openapi-gen/queries/common.ts | 2 +-
airflow/ui/openapi-gen/queries/queries.ts | 75 ++--
airflow/ui/openapi-gen/requests/schemas.gen.ts | 259 +++++++++---
airflow/ui/openapi-gen/requests/services.gen.ts | 18 +-
airflow/ui/openapi-gen/requests/types.gen.ts | 137 +++++--
.../src/pages/Variables/DeleteVariablesButton.tsx | 2 +-
.../core_api/routes/public/test_connections.py | 14 +-
.../core_api/routes/public/test_pools.py | 434 ++++++++++++++-------
.../core_api/routes/public/test_variables.py | 44 ++-
18 files changed, 1158 insertions(+), 435 deletions(-)
create mode 100644 airflow/api_fastapi/core_api/services/public/pools.py