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 9409446097 Add cli cmd to list the provider trigger info (#30822)
add 62ea0ff21c Add support for deferrable operators in AMPP (#30032)
No new revisions were added by this update.
Summary of changes:
airflow/providers/amazon/aws/hooks/base_aws.py | 111 ++++++++++++---
.../providers/amazon/aws/hooks/batch_waiters.py | 4 +-
.../amazon/aws/operators/redshift_cluster.py | 23 +++-
airflow/providers/amazon/aws/triggers/README.md | 153 +++++++++++++++++++++
.../amazon/aws/triggers/redshift_cluster.py | 54 +++++++-
.../providers/amazon/aws/waiters/base_waiter.py | 13 +-
airflow/providers/amazon/provider.yaml | 1 +
generated/provider_dependencies.json | 1 +
tests/providers/amazon/aws/hooks/test_base_aws.py | 92 +++++++++++--
.../amazon/aws/hooks/test_emr_containers.py | 12 +-
.../amazon/aws/operators/test_cloud_formation.py | 10 +-
.../amazon/aws/operators/test_emr_add_steps.py | 15 +-
.../amazon/aws/operators/test_emr_containers.py | 10 +-
.../aws/operators/test_emr_create_job_flow.py | 15 +-
.../aws/operators/test_emr_modify_cluster.py | 10 +-
.../aws/operators/test_emr_terminate_job_flow.py | 5 +-
.../amazon/aws/operators/test_redshift_cluster.py | 15 ++
.../amazon/aws/sensors/test_cloud_formation.py | 20 ++-
.../amazon/aws/sensors/test_emr_job_flow.py | 15 +-
.../providers/amazon/aws/sensors/test_emr_step.py | 20 ++-
.../providers/amazon/aws/triggers}/__init__.py | 0
.../amazon/aws/triggers/test_redshift_cluster.py | 74 ++++++++++
22 files changed, 611 insertions(+), 62 deletions(-)
create mode 100644 airflow/providers/amazon/aws/triggers/README.md
copy {airflow/api_connexion =>
tests/providers/amazon/aws/triggers}/__init__.py (100%)
create mode 100644 tests/providers/amazon/aws/triggers/test_redshift_cluster.py