This is an automated email from the ASF dual-hosted git repository.
feluelle pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from a6434a5 Fix bash command in performance test dag (#8812)
add 0c3db84 [AIRFLOW-7068] Create EC2 Hook, Operator and Sensor (#7731)
No new revisions were added by this update.
Summary of changes:
airflow/providers/amazon/aws/hooks/ec2.py | 88 ++++++++++++++
.../amazon/aws/operators/ec2_start_instance.py | 72 ++++++++++++
.../amazon/aws/operators/ec2_stop_instance.py | 72 ++++++++++++
.../amazon/aws/sensors/ec2_instance_state.py | 70 +++++++++++
docs/operators-and-hooks-ref.rst | 7 ++
tests/providers/amazon/aws/hooks/test_ec2.py | 71 ++++++++++++
.../aws/operators/test_ec2_start_instance.py | 64 +++++++++++
.../amazon/aws/operators/test_ec2_stop_instance.py | 64 +++++++++++
.../amazon/aws/sensors/test_ec2_instance_state.py | 128 +++++++++++++++++++++
9 files changed, 636 insertions(+)
create mode 100644 airflow/providers/amazon/aws/hooks/ec2.py
create mode 100644 airflow/providers/amazon/aws/operators/ec2_start_instance.py
create mode 100644 airflow/providers/amazon/aws/operators/ec2_stop_instance.py
create mode 100644 airflow/providers/amazon/aws/sensors/ec2_instance_state.py
create mode 100644 tests/providers/amazon/aws/hooks/test_ec2.py
create mode 100644
tests/providers/amazon/aws/operators/test_ec2_start_instance.py
create mode 100644
tests/providers/amazon/aws/operators/test_ec2_stop_instance.py
create mode 100644
tests/providers/amazon/aws/sensors/test_ec2_instance_state.py