This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from d1245cd0771 Only run ARM collection tests in main branch (#45068)
add 60b04ae724b Implement AlloyDB operators: create/update/delete clusters
(#45027)
No new revisions were added by this update.
Summary of changes:
.../operators/cloud/alloy_db.rst | 73 ++
docs/spelling_wordlist.txt | 1 +
generated/provider_dependencies.json | 1 +
.../providers/google/cloud/hooks/alloy_db.py | 289 ++++++++
.../cloud/links/{bigquery_dts.py => alloy_db.py} | 28 +-
.../providers/google/cloud/operators/alloy_db.py | 459 ++++++++++++
.../src/airflow/providers/google/provider.yaml | 13 +
.../tests/google/cloud/hooks/test_alloy_db.py | 309 ++++++++
.../tests/google/cloud/links/test_alloy_db.py | 59 ++
.../tests/google/cloud/operators/test_alloy_db.py | 790 +++++++++++++++++++++
.../system/google/cloud/alloy_db}/__init__.py | 0
.../google/cloud/alloy_db/example_alloy_db.py | 134 ++++
tests/always/test_project_structure.py | 2 +
13 files changed, 2145 insertions(+), 13 deletions(-)
create mode 100644
docs/apache-airflow-providers-google/operators/cloud/alloy_db.rst
create mode 100644
providers/src/airflow/providers/google/cloud/hooks/alloy_db.py
copy providers/src/airflow/providers/google/cloud/links/{bigquery_dts.py =>
alloy_db.py} (64%)
create mode 100644
providers/src/airflow/providers/google/cloud/operators/alloy_db.py
create mode 100644 providers/tests/google/cloud/hooks/test_alloy_db.py
create mode 100644 providers/tests/google/cloud/links/test_alloy_db.py
create mode 100644 providers/tests/google/cloud/operators/test_alloy_db.py
copy {airflow/api_connexion =>
providers/tests/system/google/cloud/alloy_db}/__init__.py (100%)
create mode 100644
providers/tests/system/google/cloud/alloy_db/example_alloy_db.py