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/09/19 08:31:33 UTC

[airflow] branch main updated (7e7304e -> 11e3453)

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 7e7304e  Add Changelog and other 2.1.4 details (#18353)
     add 11e3453  Creating ADF pipeline run operator, sensor + ADF custom conn fields (#17885)

No new revisions were added by this update.

Summary of changes:
 .../azure/example_dags/example_adf_run_pipeline.py |  69 ++
 .../microsoft/azure/hooks/azure_data_factory.py    | 771 +--------------------
 .../{azure_data_factory.py => data_factory.py}     | 162 +++--
 .../microsoft/azure/operators/data_factory.py      | 174 +++++
 airflow/providers/microsoft/azure/provider.yaml    |  13 +-
 .../microsoft/azure/sensors/data_factory.py        |  75 ++
 dev/provider_packages/prepare_provider_packages.py |   1 +
 .../connections/adf.rst                            |  30 +-
 .../operators/adf_run_pipeline.rst                 |  57 ++
 .../azure/hooks/test_azure_data_factory.py         |  60 +-
 .../azure/operators/test_azure_data_factory.py     | 177 +++++
 .../azure/sensors/test_azure_data_factory.py       |  76 ++
 12 files changed, 835 insertions(+), 830 deletions(-)
 create mode 100644 airflow/providers/microsoft/azure/example_dags/example_adf_run_pipeline.py
 copy airflow/providers/microsoft/azure/hooks/{azure_data_factory.py => data_factory.py} (84%)
 create mode 100644 airflow/providers/microsoft/azure/operators/data_factory.py
 create mode 100644 airflow/providers/microsoft/azure/sensors/data_factory.py
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/operators/adf_run_pipeline.rst
 create mode 100644 tests/providers/microsoft/azure/operators/test_azure_data_factory.py
 create mode 100644 tests/providers/microsoft/azure/sensors/test_azure_data_factory.py