aws-sdk-mwaa 1.74.0 → 1.76.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mwaa/client.rb +16 -8
- data/lib/aws-sdk-mwaa/types.rb +15 -0
- data/lib/aws-sdk-mwaa.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a913226235d199ff2b9433596493a76a3d83b0de8554405656e117f40d17490
|
|
4
|
+
data.tar.gz: 531f468d4b9d9cd2311c3c232cc1e9905b41b054de77ffaf3aff44aae22bf33d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca76fdfe2cc1426337d126d73d63b7aea9064ec467055cc7b8715bdcfeb54091254e33d5d0d4585e75a1fe36ea77f4aadb85b189e0b8f9f40f4d46679a1e9f8b
|
|
7
|
+
data.tar.gz: 8882a147226907b0fee51da9bd398e9cda4d8c7978cd42af2b2ba7b055373e9ab57b933393f74c05e531adc1f8ef905192c225e4549071678b8b53c0731e89cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.76.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.75.0 (2026-05-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Updated API documentation to describe the PublicAndPrivate webserver access mode.
|
|
13
|
+
|
|
4
14
|
1.74.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.76.0
|
data/lib/aws-sdk-mwaa/client.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::MWAA
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::MWAA
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -701,6 +699,11 @@ module Aws::MWAA
|
|
|
701
699
|
# Defines the access mode for the Apache Airflow *web server*. For more
|
|
702
700
|
# information, refer to [Apache Airflow access modes][1].
|
|
703
701
|
#
|
|
702
|
+
# If set to `PUBLIC_AND_PRIVATE`, creates both a public network load
|
|
703
|
+
# balancer (NLB) for browser access and a private VPC endpoint (VPCE)
|
|
704
|
+
# for worker-to-webserver communication. This mode is only available for
|
|
705
|
+
# Apache Airflow version 3.2 and later.
|
|
706
|
+
#
|
|
704
707
|
#
|
|
705
708
|
#
|
|
706
709
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-networking.html
|
|
@@ -1481,6 +1484,11 @@ module Aws::MWAA
|
|
|
1481
1484
|
# The Apache Airflow *Web server* access mode. For more information,
|
|
1482
1485
|
# refer to [Apache Airflow access modes][1].
|
|
1483
1486
|
#
|
|
1487
|
+
# If set to `PUBLIC_AND_PRIVATE`, creates both a public network load
|
|
1488
|
+
# balancer (NLB) for browser access and a private VPC endpoint (VPCE)
|
|
1489
|
+
# for worker-to-webserver communication. This mode is only available for
|
|
1490
|
+
# Apache Airflow version 3.2 and later.
|
|
1491
|
+
#
|
|
1484
1492
|
#
|
|
1485
1493
|
#
|
|
1486
1494
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-networking.html
|
|
@@ -1580,7 +1588,7 @@ module Aws::MWAA
|
|
|
1580
1588
|
tracer: tracer
|
|
1581
1589
|
)
|
|
1582
1590
|
context[:gem_name] = 'aws-sdk-mwaa'
|
|
1583
|
-
context[:gem_version] = '1.
|
|
1591
|
+
context[:gem_version] = '1.76.0'
|
|
1584
1592
|
Seahorse::Client::Request.new(handlers, context)
|
|
1585
1593
|
end
|
|
1586
1594
|
|
data/lib/aws-sdk-mwaa/types.rb
CHANGED
|
@@ -277,6 +277,11 @@ module Aws::MWAA
|
|
|
277
277
|
# Defines the access mode for the Apache Airflow *web server*. For
|
|
278
278
|
# more information, refer to [Apache Airflow access modes][1].
|
|
279
279
|
#
|
|
280
|
+
# If set to `PUBLIC_AND_PRIVATE`, creates both a public network load
|
|
281
|
+
# balancer (NLB) for browser access and a private VPC endpoint (VPCE)
|
|
282
|
+
# for worker-to-webserver communication. This mode is only available
|
|
283
|
+
# for Apache Airflow version 3.2 and later.
|
|
284
|
+
#
|
|
280
285
|
#
|
|
281
286
|
#
|
|
282
287
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-networking.html
|
|
@@ -772,6 +777,11 @@ module Aws::MWAA
|
|
|
772
777
|
# The Apache Airflow *web server* access mode. For more information,
|
|
773
778
|
# refer to [Apache Airflow access modes][1].
|
|
774
779
|
#
|
|
780
|
+
# If set to `PUBLIC_AND_PRIVATE`, creates both a public network load
|
|
781
|
+
# balancer (NLB) for browser access and a private VPC endpoint (VPCE)
|
|
782
|
+
# for worker-to-webserver communication. This mode is only available
|
|
783
|
+
# for Apache Airflow version 3.2 and later.
|
|
784
|
+
#
|
|
775
785
|
#
|
|
776
786
|
#
|
|
777
787
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-networking.html
|
|
@@ -1727,6 +1737,11 @@ module Aws::MWAA
|
|
|
1727
1737
|
# The Apache Airflow *Web server* access mode. For more information,
|
|
1728
1738
|
# refer to [Apache Airflow access modes][1].
|
|
1729
1739
|
#
|
|
1740
|
+
# If set to `PUBLIC_AND_PRIVATE`, creates both a public network load
|
|
1741
|
+
# balancer (NLB) for browser access and a private VPC endpoint (VPCE)
|
|
1742
|
+
# for worker-to-webserver communication. This mode is only available
|
|
1743
|
+
# for Apache Airflow version 3.2 and later.
|
|
1744
|
+
#
|
|
1730
1745
|
#
|
|
1731
1746
|
#
|
|
1732
1747
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-networking.html
|
data/lib/aws-sdk-mwaa.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mwaa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.76.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|