This is an automated email from the ASF dual-hosted git repository.
turbaszek pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from c713d92 Add health API endpoint (#8144) (#9277)
add 564192c Add AWS StepFunctions integrations to the aws provider (#8749)
No new revisions were added by this update.
Summary of changes:
.../providers/amazon/aws/hooks/step_function.py | 79 +++++++++++++++
.../step_function_get_execution_output.py | 58 +++++++++++
.../aws/operators/step_function_start_execution.py | 72 ++++++++++++++
.../{athena.py => step_function_execution.py} | 53 +++++-----
docs/operators-and-hooks-ref.rst | 7 ++
.../amazon/aws/hooks/test_step_function.py | 63 ++++++++++++
... => test_step_function_get_execution_output.py} | 55 +++++------
.../test_step_function_start_execution.py | 82 ++++++++++++++++
.../aws/sensors/test_step_function_execution.py | 107 +++++++++++++++++++++
9 files changed, 522 insertions(+), 54 deletions(-)
create mode 100644 airflow/providers/amazon/aws/hooks/step_function.py
create mode 100644
airflow/providers/amazon/aws/operators/step_function_get_execution_output.py
create mode 100644
airflow/providers/amazon/aws/operators/step_function_start_execution.py
copy airflow/providers/amazon/aws/sensors/{athena.py =>
step_function_execution.py} (53%)
create mode 100644 tests/providers/amazon/aws/hooks/test_step_function.py
copy tests/providers/amazon/aws/operators/{test_sns.py =>
test_step_function_get_execution_output.py} (50%)
create mode 100644
tests/providers/amazon/aws/operators/test_step_function_start_execution.py
create mode 100644
tests/providers/amazon/aws/sensors/test_step_function_execution.py