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 2021/06/18 09:58:06 UTC

[airflow] branch main updated (fa953ba -> db10c68)

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 fa953ba  Add docs index to README.md (#16495)
     add db10c68  Add AWS DMS replication task operators (#15850)

No new revisions were added by this update.

Summary of changes:
 .../aws/example_dags/example_dms_full_load_task.py |  99 ++++++++++
 airflow/providers/amazon/aws/hooks/dms.py          | 215 +++++++++++++++++++++
 .../amazon/aws/operators/dms_create_task.py        | 114 +++++++++++
 .../amazon/aws/operators/dms_delete_task.py        |  68 +++++++
 .../amazon/aws/operators/dms_describe_tasks.py     |  64 ++++++
 .../amazon/aws/operators/dms_start_task.py         |  86 +++++++++
 .../amazon/aws/operators/dms_stop_task.py          |  64 ++++++
 airflow/providers/amazon/aws/sensors/dms_task.py   | 120 ++++++++++++
 airflow/providers/amazon/provider.yaml             |  19 ++
 .../operators/dms.rst                              |  95 +++++++++
 .../aws/AWS-Database-Migration-Service_64@5x.png   | Bin 0 -> 150946 bytes
 docs/spelling_wordlist.txt                         |   3 +
 tests/providers/amazon/aws/hooks/test_dms_task.py  | 197 +++++++++++++++++++
 .../amazon/aws/operators/test_dms_create_task.py   |  84 ++++++++
 .../amazon/aws/operators/test_dms_delete_task.py   |  55 ++++++
 .../aws/operators/test_dms_describe_tasks.py       |  96 +++++++++
 .../amazon/aws/operators/test_dms_start_task.py    |  59 ++++++
 .../amazon/aws/operators/test_dms_stop_task.py     |  55 ++++++
 .../providers/amazon/aws/sensors/test_dms_task.py  |  70 +++++++
 19 files changed, 1563 insertions(+)
 create mode 100644 airflow/providers/amazon/aws/example_dags/example_dms_full_load_task.py
 create mode 100644 airflow/providers/amazon/aws/hooks/dms.py
 create mode 100644 airflow/providers/amazon/aws/operators/dms_create_task.py
 create mode 100644 airflow/providers/amazon/aws/operators/dms_delete_task.py
 create mode 100644 airflow/providers/amazon/aws/operators/dms_describe_tasks.py
 create mode 100644 airflow/providers/amazon/aws/operators/dms_start_task.py
 create mode 100644 airflow/providers/amazon/aws/operators/dms_stop_task.py
 create mode 100644 airflow/providers/amazon/aws/sensors/dms_task.py
 create mode 100644 docs/apache-airflow-providers-amazon/operators/dms.rst
 create mode 100644 docs/integration-logos/aws/AWS-Database-Migration-Service_64@5x.png
 create mode 100644 tests/providers/amazon/aws/hooks/test_dms_task.py
 create mode 100644 tests/providers/amazon/aws/operators/test_dms_create_task.py
 create mode 100644 tests/providers/amazon/aws/operators/test_dms_delete_task.py
 create mode 100644 tests/providers/amazon/aws/operators/test_dms_describe_tasks.py
 create mode 100644 tests/providers/amazon/aws/operators/test_dms_start_task.py
 create mode 100644 tests/providers/amazon/aws/operators/test_dms_stop_task.py
 create mode 100644 tests/providers/amazon/aws/sensors/test_dms_task.py