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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d535d71ca76a0d83ff9deaf4677fab0c27b14eae0eb166a0e847a4532db4d3af
4
- data.tar.gz: ed637e86633da1fff6473fb2b05f82ffd8f183b8d22dd4f1d232bc4d95c2c409
3
+ metadata.gz: 6a913226235d199ff2b9433596493a76a3d83b0de8554405656e117f40d17490
4
+ data.tar.gz: 531f468d4b9d9cd2311c3c232cc1e9905b41b054de77ffaf3aff44aae22bf33d
5
5
  SHA512:
6
- metadata.gz: c618b146a7168bd06b7d5a934d5154e848947e6954727940a23f1296e338f4a7366a89d490f192e807075650272992a19060f6c3d30574a44cdc174774fa23c2
7
- data.tar.gz: 34c5ef0487043bd9e0c55517d6bedc1041df2acddb1e4062f6390fae984558bbd1661db91f3fe6c7099bfe1c3117d484c6d880b1a8896d10a758f80757f892e2
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.74.0
1
+ 1.76.0
@@ -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. This is default value if
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` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
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.74.0'
1591
+ context[:gem_version] = '1.76.0'
1584
1592
  Seahorse::Client::Request.new(handlers, context)
1585
1593
  end
1586
1594
 
@@ -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
@@ -54,7 +54,7 @@ module Aws::MWAA
54
54
  autoload :EndpointProvider, 'aws-sdk-mwaa/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mwaa/endpoints'
56
56
 
57
- GEM_VERSION = '1.74.0'
57
+ GEM_VERSION = '1.76.0'
58
58
 
59
59
  end
60
60
 
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.74.0
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.247.0
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.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement