You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/01/28 19:48:39 UTC

[airflow] branch main updated (2874d9f -> 640c0b6)

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 2874d9f  Remove "remember-last-answer" from Breeze/CI (#21186)
     add 640c0b6  Create CustomJob and Datasets operators for Vertex AI service (#20077)

No new revisions were added by this update.

Summary of changes:
 .../google/cloud/example_dags/example_vertex_ai.py |  313 +++
 .../google/cloud/hooks/vertex_ai}/__init__.py      |    0
 .../google/cloud/hooks/vertex_ai/custom_job.py     | 2032 ++++++++++++++++++++
 .../google/cloud/hooks/vertex_ai/dataset.py        |  460 +++++
 .../google/cloud/operators/vertex_ai}/__init__.py  |    0
 .../google/cloud/operators/vertex_ai/custom_job.py | 1427 ++++++++++++++
 .../google/cloud/operators/vertex_ai/dataset.py    |  644 +++++++
 airflow/providers/google/provider.yaml             |   17 +
 docs/apache-airflow-providers-google/index.rst     |    1 +
 .../operators/cloud/vertex_ai.rst                  |  173 ++
 .../pre_commit_check_provider_yaml_files.py        |    5 +-
 setup.py                                           |    1 +
 .../google/cloud/hooks/vertex_ai}/__init__.py      |    0
 .../cloud/hooks/vertex_ai/test_custom_job.py       |  457 +++++
 .../google/cloud/hooks/vertex_ai/test_dataset.py   |  504 +++++
 .../google/cloud/operators/test_vertex_ai.py       |  613 ++++++
 ...t_pubsub_system.py => test_vertex_ai_system.py} |   24 +-
 .../google/cloud/utils/gcp_authenticator.py        |    1 +
 18 files changed, 6660 insertions(+), 12 deletions(-)
 create mode 100644 airflow/providers/google/cloud/example_dags/example_vertex_ai.py
 copy {tests/timetables => airflow/providers/google/cloud/hooks/vertex_ai}/__init__.py (100%)
 create mode 100644 airflow/providers/google/cloud/hooks/vertex_ai/custom_job.py
 create mode 100644 airflow/providers/google/cloud/hooks/vertex_ai/dataset.py
 copy {tests/timetables => airflow/providers/google/cloud/operators/vertex_ai}/__init__.py (100%)
 create mode 100644 airflow/providers/google/cloud/operators/vertex_ai/custom_job.py
 create mode 100644 airflow/providers/google/cloud/operators/vertex_ai/dataset.py
 create mode 100644 docs/apache-airflow-providers-google/operators/cloud/vertex_ai.rst
 copy tests/{timetables => providers/google/cloud/hooks/vertex_ai}/__init__.py (100%)
 create mode 100644 tests/providers/google/cloud/hooks/vertex_ai/test_custom_job.py
 create mode 100644 tests/providers/google/cloud/hooks/vertex_ai/test_dataset.py
 create mode 100644 tests/providers/google/cloud/operators/test_vertex_ai.py
 copy tests/providers/google/cloud/operators/{test_pubsub_system.py => test_vertex_ai_system.py} (66%)