apache-airflow-providers-amazon 9.8.0rc1__py3-none-any.whl → 9.9.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. airflow/providers/amazon/__init__.py +1 -1
  2. airflow/providers/amazon/aws/executors/aws_lambda/__init__.py +21 -0
  3. airflow/providers/amazon/aws/executors/aws_lambda/docker/Dockerfile +107 -0
  4. airflow/providers/amazon/aws/executors/aws_lambda/docker/__init__.py +16 -0
  5. airflow/providers/amazon/aws/executors/aws_lambda/docker/app.py +129 -0
  6. airflow/providers/amazon/aws/executors/aws_lambda/lambda_executor.py +479 -0
  7. airflow/providers/amazon/aws/executors/aws_lambda/utils.py +70 -0
  8. airflow/providers/amazon/aws/executors/ecs/ecs_executor.py +1 -1
  9. airflow/providers/amazon/aws/executors/ecs/ecs_executor_config.py +4 -8
  10. airflow/providers/amazon/aws/hooks/base_aws.py +20 -4
  11. airflow/providers/amazon/aws/hooks/eks.py +14 -5
  12. airflow/providers/amazon/aws/hooks/s3.py +101 -34
  13. airflow/providers/amazon/aws/hooks/sns.py +10 -1
  14. airflow/providers/amazon/aws/log/cloudwatch_task_handler.py +12 -5
  15. airflow/providers/amazon/aws/operators/batch.py +1 -2
  16. airflow/providers/amazon/aws/operators/cloud_formation.py +0 -2
  17. airflow/providers/amazon/aws/operators/comprehend.py +0 -2
  18. airflow/providers/amazon/aws/operators/dms.py +0 -2
  19. airflow/providers/amazon/aws/operators/ecs.py +1 -1
  20. airflow/providers/amazon/aws/operators/eks.py +13 -0
  21. airflow/providers/amazon/aws/operators/emr.py +4 -4
  22. airflow/providers/amazon/aws/operators/glue.py +0 -6
  23. airflow/providers/amazon/aws/operators/rds.py +0 -4
  24. airflow/providers/amazon/aws/operators/redshift_cluster.py +90 -63
  25. airflow/providers/amazon/aws/operators/sns.py +15 -1
  26. airflow/providers/amazon/aws/sensors/redshift_cluster.py +13 -10
  27. airflow/providers/amazon/get_provider_info.py +68 -0
  28. {apache_airflow_providers_amazon-9.8.0rc1.dist-info → apache_airflow_providers_amazon-9.9.0rc1.dist-info}/METADATA +15 -19
  29. {apache_airflow_providers_amazon-9.8.0rc1.dist-info → apache_airflow_providers_amazon-9.9.0rc1.dist-info}/RECORD +31 -25
  30. {apache_airflow_providers_amazon-9.8.0rc1.dist-info → apache_airflow_providers_amazon-9.9.0rc1.dist-info}/WHEEL +0 -0
  31. {apache_airflow_providers_amazon-9.8.0rc1.dist-info → apache_airflow_providers_amazon-9.9.0rc1.dist-info}/entry_points.txt +0 -0
@@ -1152,6 +1152,74 @@ def get_provider_info():
1152
1152
  },
1153
1153
  },
1154
1154
  },
1155
+ "aws_lambda_executor": {
1156
+ "description": "This section only applies if you are using the AwsLambdaExecutor in\nAirflow's ``[core.executor]`` configuration.\nFor more information see:\nhttps://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda/client/invoke.html\nhttps://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html\nhttps://airflow.apache.org/docs/apache-airflow-providers-amazon/stable/executors/lambda-executor.html\n",
1157
+ "options": {
1158
+ "conn_id": {
1159
+ "description": "The Airflow connection (i.e. credentials) used by the Lambda executor to make API calls.\n",
1160
+ "version_added": "9.9.0",
1161
+ "type": "string",
1162
+ "example": "aws_default",
1163
+ "default": "aws_default",
1164
+ },
1165
+ "region_name": {
1166
+ "description": "The name of the AWS Region where Amazon Lambda is configured.\n",
1167
+ "version_added": "9.9.0",
1168
+ "type": "string",
1169
+ "example": "us-east-1",
1170
+ "default": None,
1171
+ },
1172
+ "check_health_on_startup": {
1173
+ "description": "Whether or not to check the Lambda Executor health on startup.\n",
1174
+ "version_added": "9.9.0",
1175
+ "type": "boolean",
1176
+ "example": "True",
1177
+ "default": "True",
1178
+ },
1179
+ "max_run_task_attempts": {
1180
+ "description": "The maximum number of times the Lambda Executor should attempt to start an Airflow task.\n",
1181
+ "version_added": "9.9.0",
1182
+ "type": "integer",
1183
+ "example": "3",
1184
+ "default": "3",
1185
+ },
1186
+ "queue_url": {
1187
+ "description": "The URL of the SQS queue to use for the Lambda executor. Required.\nThe Lambda executor will poll this queue for results of the lambda function's Airflow Task.\n",
1188
+ "version_added": "9.9.0",
1189
+ "type": "string",
1190
+ "example": "airflow-lambda-executor-results-queue",
1191
+ "default": None,
1192
+ },
1193
+ "dead_letter_queue_url": {
1194
+ "description": "The URL of the SQS dead letter queue to use for the Lambda function. The Lambda executor\nwill poll this queue for timeout/exception results of the lambda function. Required\n",
1195
+ "version_added": "9.9.0",
1196
+ "type": "string",
1197
+ "example": "airflow-lambda-executor-dlq",
1198
+ "default": None,
1199
+ },
1200
+ "function_name": {
1201
+ "description": "The name of the Lambda function to invoke. Required.\n",
1202
+ "version_added": "9.9.0",
1203
+ "type": "string",
1204
+ "example": "airflow-lambda-executor-function",
1205
+ "default": None,
1206
+ },
1207
+ "qualifier": {
1208
+ "description": "The version or alias of the Lambda function to invoke. If not specified, the latest version is used.\n",
1209
+ "version_added": "9.9.0",
1210
+ "type": "string",
1211
+ "example": "1",
1212
+ "default": None,
1213
+ },
1214
+ "end_wait_timeout": {
1215
+ "description": "The number of seconds to wait for all lambda executor invocations to complete when terminating the\nexecutor/scheduler. Default of 0 means wait indefinitely.\n",
1216
+ "version_added": "9.9.0",
1217
+ "type": "integer",
1218
+ "example": "500",
1219
+ "default": "0",
1220
+ },
1221
+ },
1222
+ },
1155
1223
  "aws_ecs_executor": {
1156
1224
  "description": "This section only applies if you are using the AwsEcsExecutor in\nAirflow's ``[core]`` configuration.\nFor more information on any of these execution parameters, see the link below:\nhttps://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ecs/client/run_task.html\nFor boto3 credential management, see\nhttps://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html\n",
1157
1225
  "options": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-amazon
3
- Version: 9.8.0rc1
3
+ Version: 9.9.0rc1
4
4
  Summary: Provider package apache-airflow-providers-amazon for Apache Airflow
5
5
  Keywords: airflow-provider,amazon,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -24,8 +24,8 @@ Requires-Dist: apache-airflow>=2.10.0rc1
24
24
  Requires-Dist: apache-airflow-providers-common-compat>=1.6.1rc1
25
25
  Requires-Dist: apache-airflow-providers-common-sql>=1.27.0rc1
26
26
  Requires-Dist: apache-airflow-providers-http
27
- Requires-Dist: boto3>=1.37.0
28
- Requires-Dist: botocore>=1.37.0
27
+ Requires-Dist: boto3>=1.37.2
28
+ Requires-Dist: botocore>=1.37.2
29
29
  Requires-Dist: inflection>=0.5.1
30
30
  Requires-Dist: watchtower>=3.3.1,<4
31
31
  Requires-Dist: jsonpath_ng>=1.5.3
@@ -33,9 +33,6 @@ Requires-Dist: redshift_connector>=2.1.3
33
33
  Requires-Dist: asgiref>=2.3.0
34
34
  Requires-Dist: PyAthena>=3.10.0
35
35
  Requires-Dist: jmespath>=0.7.0
36
- Requires-Dist: python3-saml>=1.16.0
37
- Requires-Dist: xmlsec!=1.3.15,>=1.3.14
38
- Requires-Dist: lxml<5.4.0,>=5.3.2
39
36
  Requires-Dist: sagemaker-studio>=1.0.9
40
37
  Requires-Dist: marshmallow>=3
41
38
  Requires-Dist: aiobotocore[boto3]>=2.21.1 ; extra == "aiobotocore"
@@ -51,13 +48,15 @@ Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-az
51
48
  Requires-Dist: apache-airflow-providers-mongo ; extra == "mongo"
52
49
  Requires-Dist: apache-airflow-providers-openlineage>=2.3.0rc1 ; extra == "openlineage"
53
50
  Requires-Dist: python3-saml>=1.16.0 ; extra == "python3-saml"
51
+ Requires-Dist: xmlsec!=1.3.15,>=1.3.14 ; extra == "python3-saml"
52
+ Requires-Dist: lxml<5.4.0,>=5.3.2 ; extra == "python3-saml"
54
53
  Requires-Dist: s3fs>=2023.10.0 ; extra == "s3fs"
55
54
  Requires-Dist: apache-airflow-providers-salesforce ; extra == "salesforce"
56
55
  Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
57
56
  Requires-Dist: apache-airflow-providers-standard ; extra == "standard"
58
57
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
59
- Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-amazon/9.8.0/changelog.html
60
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-amazon/9.8.0
58
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-amazon/9.9.0/changelog.html
59
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-amazon/9.9.0
61
60
  Project-URL: Mastodon, https://fosstodon.org/@airflow
62
61
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
63
62
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -105,7 +104,7 @@ Provides-Extra: standard
105
104
 
106
105
  Package ``apache-airflow-providers-amazon``
107
106
 
108
- Release: ``9.8.0``
107
+ Release: ``9.9.0``
109
108
 
110
109
 
111
110
  Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).
@@ -118,7 +117,7 @@ This is a provider package for ``amazon`` provider. All classes for this provide
118
117
  are in ``airflow.providers.amazon`` python package.
119
118
 
120
119
  You can find package information and changelog for the provider
121
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.8.0/>`_.
120
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.9.0/>`_.
122
121
 
123
122
  Installation
124
123
  ------------
@@ -132,15 +131,15 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
132
131
  Requirements
133
132
  ------------
134
133
 
135
- ========================================== =====================
134
+ ========================================== ==================
136
135
  PIP package Version required
137
- ========================================== =====================
136
+ ========================================== ==================
138
137
  ``apache-airflow`` ``>=2.10.0``
139
138
  ``apache-airflow-providers-common-compat`` ``>=1.6.1``
140
139
  ``apache-airflow-providers-common-sql`` ``>=1.27.0``
141
140
  ``apache-airflow-providers-http``
142
- ``boto3`` ``>=1.37.0``
143
- ``botocore`` ``>=1.37.0``
141
+ ``boto3`` ``>=1.37.2``
142
+ ``botocore`` ``>=1.37.2``
144
143
  ``inflection`` ``>=0.5.1``
145
144
  ``watchtower`` ``>=3.3.1,<4``
146
145
  ``jsonpath_ng`` ``>=1.5.3``
@@ -148,12 +147,9 @@ PIP package Version required
148
147
  ``asgiref`` ``>=2.3.0``
149
148
  ``PyAthena`` ``>=3.10.0``
150
149
  ``jmespath`` ``>=0.7.0``
151
- ``python3-saml`` ``>=1.16.0``
152
- ``xmlsec`` ``>=1.3.14,!=1.3.15``
153
- ``lxml`` ``>=5.3.2,<5.4.0``
154
150
  ``sagemaker-studio`` ``>=1.0.9``
155
151
  ``marshmallow`` ``>=3``
156
- ========================================== =====================
152
+ ========================================== ==================
157
153
 
158
154
  Cross provider package dependencies
159
155
  -----------------------------------
@@ -189,5 +185,5 @@ Dependent package
189
185
  ======================================================================================================================== ====================
190
186
 
191
187
  The changelog for the provider package can be found in the
192
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.8.0/changelog.html>`_.
188
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.9.0/changelog.html>`_.
193
189
 
@@ -1,6 +1,6 @@
1
1
  airflow/providers/amazon/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/amazon/__init__.py,sha256=_CZ_wEd1ln7ijiK7yeMFFxlJFhkSQb_T-U1QhAjBiH8,1495
3
- airflow/providers/amazon/get_provider_info.py,sha256=iXOUQZQkWSX6JDGZnqaQp7B7RzYyyW0RoLgS8qXFRl0,68490
2
+ airflow/providers/amazon/__init__.py,sha256=NAJBpzaMfFo0ReVmTJSF1IIE9bP8-XC0qsy9BJcKg08,1495
3
+ airflow/providers/amazon/get_provider_info.py,sha256=TV5uNdxIE2kTx-CJJAkfApueVYUXBscm8jdwA8MQYV8,72655
4
4
  airflow/providers/amazon/version_compat.py,sha256=j5PCtXvZ71aBjixu-EFTNtVDPsngzzs7os0ZQDgFVDk,1536
5
5
  airflow/providers/amazon/aws/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
6
6
  airflow/providers/amazon/aws/exceptions.py,sha256=uRGNMgXvgdzfphpOTiyj74lQhjzb70J-X8n6fsx5Jog,1864
@@ -23,6 +23,12 @@ airflow/providers/amazon/aws/auth_manager/routes/__init__.py,sha256=9hdXHABrVpkb
23
23
  airflow/providers/amazon/aws/auth_manager/routes/login.py,sha256=gfEhqrrTIIzktTZe_kwOryRloURmZdzSUJDoj23_cLM,6061
24
24
  airflow/providers/amazon/aws/executors/Dockerfile,sha256=VZ-YOR59KSMoztJV_g7v5hUwetKR0Ii4wNNaKqDIfyQ,4275
25
25
  airflow/providers/amazon/aws/executors/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
26
+ airflow/providers/amazon/aws/executors/aws_lambda/__init__.py,sha256=1PebDNZ6KXaXd3Zojp8lhULD6Elk-Pi_NiK3qi4G45s,950
27
+ airflow/providers/amazon/aws/executors/aws_lambda/lambda_executor.py,sha256=WGQZ1fo3v2ghMgpog4DZYrauhCDKUfEmKaD4jrPGODo,21304
28
+ airflow/providers/amazon/aws/executors/aws_lambda/utils.py,sha256=6Shcr1_kMxQK9-IslzMbTK_O526PF9D2Z5CGyUrA4sA,2255
29
+ airflow/providers/amazon/aws/executors/aws_lambda/docker/Dockerfile,sha256=_Oy_AHxEM-_BwtaL0iwWwD8Lm2RFSFGCBsiBUzzM7Dg,5043
30
+ airflow/providers/amazon/aws/executors/aws_lambda/docker/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
31
+ airflow/providers/amazon/aws/executors/aws_lambda/docker/app.py,sha256=-qw38fir2vc73VcuGgZ-dwoMeCCeQMbJ-QNIis4CDCc,4758
26
32
  airflow/providers/amazon/aws/executors/batch/__init__.py,sha256=TPSNZJ6E3zqN7mvdrMrarqwHeFYN9Efd2jD3hpN7tr0,970
27
33
  airflow/providers/amazon/aws/executors/batch/batch_executor.py,sha256=DgK9bUvdxlZCV2lY9GBHECMtwfWf5yRRY-OggvkTNEs,20795
28
34
  airflow/providers/amazon/aws/executors/batch/batch_executor_config.py,sha256=7yYLKB1jRoBy0AeW5chcpz7i2UfvSQob9QLvMhYUWDQ,3223
@@ -30,8 +36,8 @@ airflow/providers/amazon/aws/executors/batch/boto_schema.py,sha256=Rqr_uk6Tx6hNV
30
36
  airflow/providers/amazon/aws/executors/batch/utils.py,sha256=QXaKyrUMCYr_Oz7Hq5b7A-gppP61fQtaOX7wip1J7ho,5274
31
37
  airflow/providers/amazon/aws/executors/ecs/__init__.py,sha256=J_B7TIPPQmn67Y7kzr4pgzcpFRr0wUp6gVsyfz5GKc4,962
32
38
  airflow/providers/amazon/aws/executors/ecs/boto_schema.py,sha256=c_2BJu6pC9xjRuPfufqSMYPZVDAbma0JO71JKSBRMSg,3760
33
- airflow/providers/amazon/aws/executors/ecs/ecs_executor.py,sha256=9dfumiP7whZeFJ2peAQm5hp1rtAwJtBvKu6oODzgXMU,26839
34
- airflow/providers/amazon/aws/executors/ecs/ecs_executor_config.py,sha256=g8e6X9I5jT6mo0PqO2S82jqW9KgO9yJGnuMLJxhhAPg,6001
39
+ airflow/providers/amazon/aws/executors/ecs/ecs_executor.py,sha256=NDambx-tjmlhQnQhhKr5FM0leMr3nnIKXmXxXJC60hQ,26843
40
+ airflow/providers/amazon/aws/executors/ecs/ecs_executor_config.py,sha256=HkQDNKKNQKYjbCWP8MKoMjF2DRp1NLleajZpJcQ6gVw,5875
35
41
  airflow/providers/amazon/aws/executors/ecs/utils.py,sha256=4_umt71x8QKAnXyUxF80nV-LqQ4VaI5Wkc9jS6WKJC8,9759
36
42
  airflow/providers/amazon/aws/executors/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
37
43
  airflow/providers/amazon/aws/executors/utils/base_config_keys.py,sha256=q-xDVM8_iiygte8PK1khJjX7442sTNe72xJGwngtdV8,1169
@@ -42,7 +48,7 @@ airflow/providers/amazon/aws/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2
42
48
  airflow/providers/amazon/aws/hooks/appflow.py,sha256=-le6RsIMWIqTav7KGknsph9Td42znSm_eIYztxc_RsE,5263
43
49
  airflow/providers/amazon/aws/hooks/athena.py,sha256=ubpgNafkIRzFh1h7Bexhj4L83SLvyZf-yDcmGmAIVt8,13463
44
50
  airflow/providers/amazon/aws/hooks/athena_sql.py,sha256=q0LJE4RvBgHGtTx_YkxcPZ8VFoLYDsHQnWJEbVOwEus,6844
45
- airflow/providers/amazon/aws/hooks/base_aws.py,sha256=-WXqEXTusuzMEa56rnYkbXtXr1VrF7hmcYQ-yoJAvY0,45410
51
+ airflow/providers/amazon/aws/hooks/base_aws.py,sha256=F0Bt2-cdIAd5_e_q0rkxs0RH3uVY574x8hlFjK7826U,46061
46
52
  airflow/providers/amazon/aws/hooks/batch_client.py,sha256=MotdN5R1lpfcadGWWYp3BlU9C9ktEOQmpLWQFk-r9VI,21989
47
53
  airflow/providers/amazon/aws/hooks/batch_waiters.json,sha256=eoN5YDgeTNZ2Xz17TrbKBPhd7z9-6KD3RhaDKXXOvqU,2511
48
54
  airflow/providers/amazon/aws/hooks/batch_waiters.py,sha256=93NNCtiTWCOwNRnVJudyuzrZ1EJWp2TRpV5drQjqvMQ,10954
@@ -56,7 +62,7 @@ airflow/providers/amazon/aws/hooks/dynamodb.py,sha256=gS0KlQFvHh74DEt3gyQaGdXcb0
56
62
  airflow/providers/amazon/aws/hooks/ec2.py,sha256=zFNv0gRkhC1zimyr9sSo6lGZoXz2chC2p7AA9p8lgHI,8100
57
63
  airflow/providers/amazon/aws/hooks/ecr.py,sha256=vTPUVCEz1x2DHA6-N0bbOcRXxP8JblXq_r0II5wtDyE,4015
58
64
  airflow/providers/amazon/aws/hooks/ecs.py,sha256=I8xmqa8X1kakh5QpaIT55qRfihnJCjzWPm1dmPxXrVU,6687
59
- airflow/providers/amazon/aws/hooks/eks.py,sha256=qcxYVMRBB3qjYtS5lPEjhnuD1mWGcY1f6xp-9DibXqM,24827
65
+ airflow/providers/amazon/aws/hooks/eks.py,sha256=dqaKKAcziyZqG9RKIBju60daF4tN9FOuAsU0arHf1Hs,25135
60
66
  airflow/providers/amazon/aws/hooks/elasticache_replication_group.py,sha256=x6kkaR2nzDF8w1kqolbaS3-XCbHl5qlJMcpGYmlsxuU,12089
61
67
  airflow/providers/amazon/aws/hooks/emr.py,sha256=B8vNVLOFCkCEXnongySjcFH2fqnK3sBN8d6LbJrAYNA,22240
62
68
  airflow/providers/amazon/aws/hooks/eventbridge.py,sha256=dSaKbFB8ueOUJGl6YLIz70zXy0Xzr3yMflKS2wGFDSM,3364
@@ -77,12 +83,12 @@ airflow/providers/amazon/aws/hooks/rds.py,sha256=h7NF3GZ42RKeh70rlg2BQFVpa8vNadS
77
83
  airflow/providers/amazon/aws/hooks/redshift_cluster.py,sha256=hyX_ldjn_gNOehcPV-3M3wzO1HdIdujG8JjrUZmCnNg,7962
78
84
  airflow/providers/amazon/aws/hooks/redshift_data.py,sha256=JxyXEyFeJHUtMxjjtMlCMJSW9P-cnixISd3R4Ob7fy8,11841
79
85
  airflow/providers/amazon/aws/hooks/redshift_sql.py,sha256=MzFW0erCvc3pJ-_1PPrp-H3gYcwRpMvY31xx09GvQts,10980
80
- airflow/providers/amazon/aws/hooks/s3.py,sha256=3qodX1DamLwqzMKFGfk2nspnb6fdDz3avdEtAMA5QHg,61654
86
+ airflow/providers/amazon/aws/hooks/s3.py,sha256=gUfxsqmsoy7Puieoil9CeYY29P5WsTF-87T0gXfCSYg,63882
81
87
  airflow/providers/amazon/aws/hooks/sagemaker.py,sha256=dokBBtS9nn9NnBefYUmq-TjjcRi54de34g4U_KOpTFw,60418
82
88
  airflow/providers/amazon/aws/hooks/sagemaker_unified_studio.py,sha256=pP_CA8PLzNAYZaIgJ9h0hLKBZCQBAYngRKPsYNM1hzc,7968
83
89
  airflow/providers/amazon/aws/hooks/secrets_manager.py,sha256=6srh3jUeSGoqyrSj1M6aSOaA9xT5kna0VGUC0kzH-q0,2690
84
90
  airflow/providers/amazon/aws/hooks/ses.py,sha256=DuCJwFhtg3D3mu0RSjRrebyUpwBAhrWSr-kdu8VR9qU,4174
85
- airflow/providers/amazon/aws/hooks/sns.py,sha256=VNbhqXZv-tw9IqWhgrAsJPgT9mm9LJ4L3EJIfp3c97w,3436
91
+ airflow/providers/amazon/aws/hooks/sns.py,sha256=SwhLeurqaV8TLhgCGsZgtf98D0_kLVLlhXer_96Anv4,4101
86
92
  airflow/providers/amazon/aws/hooks/sqs.py,sha256=306cpNAgRVuu1Dg8lrsg9o3aWsEJ9ELxxl7GhG-AbLA,3380
87
93
  airflow/providers/amazon/aws/hooks/ssm.py,sha256=-CWsIMbk0XiFK5D_dlZNqAjT7mQvimGqNnncGtMr1Rk,2637
88
94
  airflow/providers/amazon/aws/hooks/step_function.py,sha256=TSmPPF-CFR76a-K9f2yGtgdgd98UKZS71SP6crC_pIY,3964
@@ -102,7 +108,7 @@ airflow/providers/amazon/aws/links/sagemaker.py,sha256=RTQubIIpmjTWEGrJiRI2MyF4C
102
108
  airflow/providers/amazon/aws/links/sagemaker_unified_studio.py,sha256=pHbO14OmkqqjrjnZpt2tO3LISdBbitd9E00DV3ucfTI,1202
103
109
  airflow/providers/amazon/aws/links/step_function.py,sha256=xSL4vfKLnCn-QboRtruajpH5elRrNfw0XkY7eSfPpE4,2099
104
110
  airflow/providers/amazon/aws/log/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
105
- airflow/providers/amazon/aws/log/cloudwatch_task_handler.py,sha256=n1dd4UUAAqGLb61gIeUdqOueqHFqp2HEMMzj0HshsUI,11161
111
+ airflow/providers/amazon/aws/log/cloudwatch_task_handler.py,sha256=Y1OCcG11rIuNkHnZIgp-XlIL5g2UMobIVZhKn1d5Qtg,11615
106
112
  airflow/providers/amazon/aws/log/s3_task_handler.py,sha256=R-Qtpc6uZVb_aXpqbKsFx_WKeyEHOiSKxoMfYAVV5GI,9648
107
113
  airflow/providers/amazon/aws/notifications/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
108
114
  airflow/providers/amazon/aws/notifications/chime.py,sha256=bpaQtR5IG4ZlBmTdlfrHOZQo4WSQYs_HRm4DWDCkFWE,2127
@@ -112,19 +118,19 @@ airflow/providers/amazon/aws/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39k
112
118
  airflow/providers/amazon/aws/operators/appflow.py,sha256=A5SHSt5KO-3vw-fJFgu2cWOpDjQ5oAhKYN0mAwGMWK8,20856
113
119
  airflow/providers/amazon/aws/operators/athena.py,sha256=OPNQbBNuIbnfWTEFCeudMBJxYa86fKr3ITqlJNgSXUc,14807
114
120
  airflow/providers/amazon/aws/operators/base_aws.py,sha256=QvhTIgCZOB3Ai-nP9dYYlCVIjOTgC9IxyCne-qUGf7k,3873
115
- airflow/providers/amazon/aws/operators/batch.py,sha256=Ug2crn3cARb57OK57HEEn4CPr1pNSeXTalBJFzvBgZg,22745
121
+ airflow/providers/amazon/aws/operators/batch.py,sha256=ugU-cDQpDGWW94jq9CC0tj9wkmSswST11-CpYDWaX0M,22670
116
122
  airflow/providers/amazon/aws/operators/bedrock.py,sha256=jDr87UjL1buRgD8LgcQuaRfBh0ufYKpsG6hdXhjy5Ew,45762
117
- airflow/providers/amazon/aws/operators/cloud_formation.py,sha256=8apqdOR9KpAvtep5yJbakFTQySGvtFtcFh3aOtgUvKQ,5093
118
- airflow/providers/amazon/aws/operators/comprehend.py,sha256=5eQEJSoOQKcwVPa8Qmp7_VX4-uBsBLziJi35iAg029U,17695
123
+ airflow/providers/amazon/aws/operators/cloud_formation.py,sha256=bDzAHcs2QjrnwE3Z9w4s6JFeu5Xl74JWKR8Y5Ez03C4,5005
124
+ airflow/providers/amazon/aws/operators/comprehend.py,sha256=Vkdw0i2iW9_WRQLSDKNncNkVIQaNWG8jz-DxHy47Fmg,17607
119
125
  airflow/providers/amazon/aws/operators/datasync.py,sha256=mpq3-JcF7tqEm3BpwnEd3qemvTVVyWyq40DUaHrpne8,20321
120
- airflow/providers/amazon/aws/operators/dms.py,sha256=20xp5mn5AM-aNPIQZdsMU6x-16so8o6vKR-JKS6co3o,34746
126
+ airflow/providers/amazon/aws/operators/dms.py,sha256=XmIcXpkp_--PBQF1m7NFfeHDTp4aRV4lnXUu5h6kEa4,34658
121
127
  airflow/providers/amazon/aws/operators/ec2.py,sha256=SclBzOLo3GbQe3kw4S3MKf8zLm8IaKNSiGTc_U-OxRo,19700
122
- airflow/providers/amazon/aws/operators/ecs.py,sha256=CKGtMKgioCEJy29rCHNoLkb-_VLNk4R0_oMPtx7PqWo,33225
123
- airflow/providers/amazon/aws/operators/eks.py,sha256=ZWvVlbRXpsD4XkXtx4oG95XBB_a6-0y9ktNpHNwXDUI,50807
124
- airflow/providers/amazon/aws/operators/emr.py,sha256=8JpXfeY_Ujl3hvsaoLPWu6UQPnYYEjZYG4WRvgpLj1U,75884
128
+ airflow/providers/amazon/aws/operators/ecs.py,sha256=R56j5x-83fNWkLTDSH7mTM4hMx57s8egWQRlQ-ppwaw,33259
129
+ airflow/providers/amazon/aws/operators/eks.py,sha256=KXcsb8ZvBsnBiI0Z2Hn_AI4lpCYqEh7T5eFuRDI2t5Y,51372
130
+ airflow/providers/amazon/aws/operators/emr.py,sha256=eMAZjklENP7bNDwWKTKgrrkHLObPSvMDfpukOFCrNTQ,75908
125
131
  airflow/providers/amazon/aws/operators/eventbridge.py,sha256=NacTdvRzZZFizSzC3rb0Z7g8dHQWkKQEXGYzFKOp3fc,10421
126
132
  airflow/providers/amazon/aws/operators/glacier.py,sha256=6TFC07B0EOmtRxLs7Bok4jwV84po2yVDa-DnlbnAOVg,3681
127
- airflow/providers/amazon/aws/operators/glue.py,sha256=NxqlgNr-sRgtQ5RiW4Ai6aUl_sh79vn7Jun3QGPa2XA,29606
133
+ airflow/providers/amazon/aws/operators/glue.py,sha256=W0a6VnF4Urr9tPpenZX7nHs7_Nu7gnA2HIcEKfPSRbM,29342
128
134
  airflow/providers/amazon/aws/operators/glue_crawler.py,sha256=lO9xbliRKkPhrVemGyEBr0kTcpkQU5ovQ3IItCr2Iyo,5310
129
135
  airflow/providers/amazon/aws/operators/glue_databrew.py,sha256=SZQmTpVK2_fSxyD_lgK0B0oJ6zDZFrAgIsc28mGOnN0,6169
130
136
  airflow/providers/amazon/aws/operators/kinesis_analytics.py,sha256=uO8_IEYYzDt6A_BEHJr-J88FpCaZL7nM3E0xOTZjSiU,15920
@@ -132,13 +138,13 @@ airflow/providers/amazon/aws/operators/lambda_function.py,sha256=MgqXfxf9v7FJcSO
132
138
  airflow/providers/amazon/aws/operators/mwaa.py,sha256=lJuQ3kZ1Gh_udmeSE4j-HNnXcEZTHCAJczBhATKC_4w,8170
133
139
  airflow/providers/amazon/aws/operators/neptune.py,sha256=vLuPro1yIoPY_8YlAD-PTKnzb-JQLY4E7653QYfMFLg,14774
134
140
  airflow/providers/amazon/aws/operators/quicksight.py,sha256=LNZRW8N4yIXLUgVb0vmJekjG1NFS70yGyeKtinNATMk,4116
135
- airflow/providers/amazon/aws/operators/rds.py,sha256=cib-k2aHpa-DeYL92HqRMa5x9O8mS6PPKPNlxOsSIgc,44015
136
- airflow/providers/amazon/aws/operators/redshift_cluster.py,sha256=dXakMyZV5vvEh0-20FOolMU5xEDugnMrvwwbLvuYc3o,37168
141
+ airflow/providers/amazon/aws/operators/rds.py,sha256=tiRxWVtx2trpeCEzgD7h7_xzsequg2jUA71okYCfSYQ,43848
142
+ airflow/providers/amazon/aws/operators/redshift_cluster.py,sha256=-9JYfjKmj4IHrBm2fhnfg7uxWHj7XMgR5HRnJXr5JXk,39136
137
143
  airflow/providers/amazon/aws/operators/redshift_data.py,sha256=dcPEYGgXn9M1zS2XP7szm_kYO2xWD2CiUqsmlygf0_k,10854
138
144
  airflow/providers/amazon/aws/operators/s3.py,sha256=Imd3siCtmtaPWRmmSd382dJHhr49WRd-_aP6Tx5T7ac,38389
139
145
  airflow/providers/amazon/aws/operators/sagemaker.py,sha256=54RsCEJ735MsAmXh3Z0hWVQFOP4X98kSeeKKXdWijaU,91293
140
146
  airflow/providers/amazon/aws/operators/sagemaker_unified_studio.py,sha256=J-huObn3pZ_fg0gEy-BLsX298CX_n7qWV2YwjfpFnrw,6867
141
- airflow/providers/amazon/aws/operators/sns.py,sha256=uVcSJBbqy7YCOeiCrMvFFn9F9xTzMRpfrEygqEIhWEM,3757
147
+ airflow/providers/amazon/aws/operators/sns.py,sha256=C5QEvwEZ70uuRdGs90MRtIbb3jj9bs-PH5k0ceLZCMI,4623
142
148
  airflow/providers/amazon/aws/operators/sqs.py,sha256=o9rH2Pm5DNmccLh5I2wr96hZiuxOPi6YGZ2QluOeVb0,4764
143
149
  airflow/providers/amazon/aws/operators/step_function.py,sha256=isee1oy4X3YnpoJInPI6sYq67E5kIYj9zhhBpHwvDJI,9582
144
150
  airflow/providers/amazon/aws/queues/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
@@ -169,7 +175,7 @@ airflow/providers/amazon/aws/sensors/mwaa.py,sha256=FK6qPOkV6fZKt4-3ayUyr9O8Q-RZ
169
175
  airflow/providers/amazon/aws/sensors/opensearch_serverless.py,sha256=cSaZvCvAC7zhFqBYNympTiQHtgCZ7srC5-TrbS4l2GQ,5508
170
176
  airflow/providers/amazon/aws/sensors/quicksight.py,sha256=lm1omzh01BKh0KHU3g2I1yH9LAXtddUDiuIS3uIeOrE,3575
171
177
  airflow/providers/amazon/aws/sensors/rds.py,sha256=HWYQOQ7n9s48Ci2WxBOtrAp17aB-at5werAljq3NDYE,7420
172
- airflow/providers/amazon/aws/sensors/redshift_cluster.py,sha256=8JxB23ifahmqrso6j8JPmiqYLcHZmFznE79aSeSHrJs,4086
178
+ airflow/providers/amazon/aws/sensors/redshift_cluster.py,sha256=JZK03IPrPiXLnysps7kK0Pm19SJahTWLFZx_5oo4MbE,4609
173
179
  airflow/providers/amazon/aws/sensors/s3.py,sha256=y118-NM72oMrUQhSO9shdemqIIgBv-qJJa8BDXqHzsA,17344
174
180
  airflow/providers/amazon/aws/sensors/sagemaker.py,sha256=dVQntJNRyUYCLQ7cIkeHesgZxf-1yS_BBAiVBzCwaHI,13795
175
181
  airflow/providers/amazon/aws/sensors/sagemaker_unified_studio.py,sha256=REPtB8BXcGu5xX-n-y_IAZXYpZ9d1nKiJAVqnMW3ayY,2865
@@ -269,7 +275,7 @@ airflow/providers/amazon/aws/waiters/rds.json,sha256=HNmNQm5J-VaFHzjWb1pE5P7-Ix-
269
275
  airflow/providers/amazon/aws/waiters/redshift.json,sha256=jOBotCgbkko1b_CHcGEbhhRvusgt0YSzVuFiZrqVP30,1742
270
276
  airflow/providers/amazon/aws/waiters/sagemaker.json,sha256=JPHuQtUFZ1B7EMLfVmCRevNZ9jgpB71LM0dva8ZEO9A,5254
271
277
  airflow/providers/amazon/aws/waiters/stepfunctions.json,sha256=GsOH-emGerKGBAUFmI5lpMfNGH4c0ol_PSiea25DCEY,1033
272
- apache_airflow_providers_amazon-9.8.0rc1.dist-info/entry_points.txt,sha256=vlc0ZzhBkMrav1maTRofgksnAw4SwoQLFX9cmnTgktk,102
273
- apache_airflow_providers_amazon-9.8.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
274
- apache_airflow_providers_amazon-9.8.0rc1.dist-info/METADATA,sha256=4tfW46Y4El9haP5LZt0H4_TJSc3CgwPS3jl854NFIcg,10220
275
- apache_airflow_providers_amazon-9.8.0rc1.dist-info/RECORD,,
278
+ apache_airflow_providers_amazon-9.9.0rc1.dist-info/entry_points.txt,sha256=vlc0ZzhBkMrav1maTRofgksnAw4SwoQLFX9cmnTgktk,102
279
+ apache_airflow_providers_amazon-9.9.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
280
+ apache_airflow_providers_amazon-9.9.0rc1.dist-info/METADATA,sha256=EylD1M9n-Vfid8MIl3IAYl7swR9qhdUEFPm7qtZNQVA,10041
281
+ apache_airflow_providers_amazon-9.9.0rc1.dist-info/RECORD,,