aws-sdk-support 1.91.0 → 1.93.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: 9121f7814b2aea8d744ceb96b5c7d40c803f3555f7829fe33bb5157b8aaafea7
4
- data.tar.gz: d685fabc09b2ffcad0731b89cb1765258242f89f46fa09ba3ccae5a45adc7776
3
+ metadata.gz: ace184a628f638c237f8a93155a7f0b4b0078683d06dc2764e3b26f97c784e9c
4
+ data.tar.gz: 6448b1af6301d29cdaf14c78c5e71718b8d44156e9a008d01f30d19e101ce416
5
5
  SHA512:
6
- metadata.gz: 780948507617a3f7df5a36ec65e5a0dd120cc79ecff8b34a3ebab8219f87f064abb1acb8ddcca55bd88a190211716a8f95ecf3559e4de3f34ffa70765a52c21d
7
- data.tar.gz: fa2b329d3fa06756e096fc0460e96a7dfa705292f4d99f7ef07979778d80540fecb8c6c4260da77c823aa86ec4cc8f7722c847ca356a7e3b34ab93edd4b6fe1b
6
+ metadata.gz: 5cfaccde8a0773b1b4b5d13d0130e038f4207d00d4ed4ec5a7c3d026ade76cdd7d2834221eb46527251926322167cc638a0bc75d9e90f9d1057cc1029026c9e2
7
+ data.tar.gz: 0dec6b24528db82a671679c10c567223afe6c69e909365ad8cec3c29161136c9c54ccf5b8e2b6f7929cd36e13bfd64d6ed63b9ba523a58cef1331dcdf7d6813a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2026-06-11)
5
+ ------------------
6
+
7
+ * Feature - Adding new BDD representation of endpoint ruleset
8
+
9
+ 1.92.0 (2026-05-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.91.0 (2026-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -199,7 +199,7 @@ module Aws::Support
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::Support
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
@@ -1756,7 +1754,7 @@ module Aws::Support
1756
1754
  tracer: tracer
1757
1755
  )
1758
1756
  context[:gem_name] = 'aws-sdk-support'
1759
- context[:gem_version] = '1.91.0'
1757
+ context[:gem_version] = '1.93.0'
1760
1758
  Seahorse::Client::Request.new(handlers, context)
1761
1759
  end
1762
1760
 
@@ -13,22 +13,22 @@ module Aws::Support
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -54,7 +54,7 @@ module Aws::Support
54
54
  autoload :EndpointProvider, 'aws-sdk-support/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-support/endpoints'
56
56
 
57
- GEM_VERSION = '1.91.0'
57
+ GEM_VERSION = '1.93.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-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.93.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