aws-sdk-simpledb 1.65.0 → 1.66.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: 91d10911caa1a0e6a52948ef053e011b293b3ec42a94605c8dde472580a690a9
4
- data.tar.gz: f0236fe91cdc2a9b9e2ef59f36d0d7a5567caf17c12c8235717a574148e9a9de
3
+ metadata.gz: 7e2b029d02e4f26976b30add7c344ccbcbdc9e00eab29b05063d4a160e80357e
4
+ data.tar.gz: 671f49bbe1d36cfa112a0a14fb587199847e34d8750ff6a9dc78ece3ac24ac33
5
5
  SHA512:
6
- metadata.gz: b8d4f1a5cd49b21eca28836587e7d100cb776e797519ade94fe99bb8798a8f6ba1806a4fa4bf6a482b97a7899243454c5fb77b6090eaadca93893fbcd11952ca
7
- data.tar.gz: f087cd35ddf09be0779979fd17c3e9198c8554616177d773d4c47a85198f3c6df1fffcc474f818ea5ce1c5df8154a9e6208a8ed9c843e2ab91875426691bc401
6
+ metadata.gz: 74824f0ffe6d67ddd5714da9afe365f7046969211fe58e30b953572c86b12b783532d76869cebd5ae0e03e2f99bb8725df92ee8d0e2ff5af65e27655528a3194
7
+ data.tar.gz: 728239394e9e7c89193136dbe492fcd1998f057bd9efa74fb7f0860892877a7c374a6ea3dd18412cad3539026ffec7aceba73cc6e0f8886af394439fad01ab03
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.65.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -94,7 +94,7 @@ module Aws::SimpleDB
94
94
  # class name or an instance of a plugin class.
95
95
  #
96
96
  # @option options [required, Aws::CredentialProvider] :credentials
97
- # Your AWS credentials. This can be an instance of any one of the
97
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
98
98
  # following classes:
99
99
  #
100
100
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -127,18 +127,23 @@ module Aws::SimpleDB
127
127
  # locations will be searched for credentials:
128
128
  #
129
129
  # * `Aws.config[:credentials]`
130
+ #
130
131
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
131
132
  # `:account_id` options.
132
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
133
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
133
+ #
134
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
135
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
136
+ #
134
137
  # * `~/.aws/credentials`
138
+ #
135
139
  # * `~/.aws/config`
140
+ #
136
141
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
137
142
  # are very aggressive. Construct and pass an instance of
138
143
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
139
144
  # enable retries and extended timeouts. Instance profile credential
140
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
141
- # to true.
145
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
146
+ # to `true`.
142
147
  #
143
148
  # @option options [required, String] :region
144
149
  # The AWS region to connect to. The configured `:region` is
@@ -166,6 +171,11 @@ module Aws::SimpleDB
166
171
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
167
172
  # not retry instead of sleeping.
168
173
  #
174
+ # @option options [Array<String>] :auth_scheme_preference
175
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
176
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
177
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
178
+ #
169
179
  # @option options [Boolean] :client_side_monitoring (false)
170
180
  # When `true`, client-side metrics will be collected for all API requests from
171
181
  # this client.
@@ -252,8 +262,8 @@ module Aws::SimpleDB
252
262
  # 4 times. Used in `standard` and `adaptive` retry modes.
253
263
  #
254
264
  # @option options [String] :profile ("default")
255
- # Used when loading credentials from the shared credentials file
256
- # at HOME/.aws/credentials. When not specified, 'default' is used.
265
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
266
+ # When not specified, 'default' is used.
257
267
  #
258
268
  # @option options [String] :request_checksum_calculation ("when_supported")
259
269
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -366,7 +376,7 @@ module Aws::SimpleDB
366
376
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
367
377
  #
368
378
  # @option options [Aws::TokenProvider] :token_provider
369
- # A Bearer Token Provider. This can be an instance of any one of the
379
+ # Your Bearer token used for authentication. This can be an instance of any one of the
370
380
  # following classes:
371
381
  #
372
382
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -986,7 +996,7 @@ module Aws::SimpleDB
986
996
  tracer: tracer
987
997
  )
988
998
  context[:gem_name] = 'aws-sdk-simpledb'
989
- context[:gem_version] = '1.65.0'
999
+ context[:gem_version] = '1.66.0'
990
1000
  Seahorse::Client::Request.new(handlers, context)
991
1001
  end
992
1002
 
@@ -47,7 +47,6 @@ module Aws::SimpleDB
47
47
  #
48
48
  # Additionally, error classes are dynamically generated for service errors based on the error code
49
49
  # if they are not defined above.
50
- # Some existing error classes may use a different class name than the one documented.
51
50
  module Errors
52
51
 
53
52
  extend Aws::Errors::DynamicErrors
@@ -48,7 +48,7 @@ module Aws::SimpleDB
48
48
  autoload :Errors, 'aws-sdk-simpledb/errors'
49
49
  autoload :Resource, 'aws-sdk-simpledb/resource'
50
50
 
51
- GEM_VERSION = '1.65.0'
51
+ GEM_VERSION = '1.66.0'
52
52
 
53
53
  end
54
54
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-simpledb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.66.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.225.0
21
+ version: 3.227.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.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv2
34
34
  requirement: !ruby/object:Gem::Requirement