aws-sdk-s3 1.193.0 → 1.194.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: d0e94777097f81374f7ae8c0f3bd8c76a6ab248137104477cef54bfbb5f88ae0
4
- data.tar.gz: 2d7dac3b84fcba84b3bcc125e75d95183eb129ee7b1728ea6ca579f575cc2061
3
+ metadata.gz: 0dfe2d6194c7b6b3c67de1afe28bd1ea2862c07a6ca613ef46cb2ab2b88a14ad
4
+ data.tar.gz: e18d0a8fec044eb019f316854d5502650bcff3c0772c72501798267eae18e719
5
5
  SHA512:
6
- metadata.gz: 197d9315a2d83377a7870741c01d7e417fc23080bb20e947a5063748e334b07cd268d974129b95e8cc1e3ee7d127596c2e0040e204868cae00f4e8fc9af36f2c
7
- data.tar.gz: eb4a3d2fb4570da19d661649f105bb6697392b45a88779178d786595f127c1a6d3d02bc8a56ab128f50a86afb640d5c22836dcc044d48871ab968fa26dff2c77
6
+ metadata.gz: d54f00907ad99660c41b30f6af57914443f9dec45d22690760f7419d75e98f9591fa36413ece74206f28c827ce8ccee45d62243dba1e65b2907bb6e9a69061f6
7
+ data.tar.gz: 3667b425a4a463097d26d930caa0768a609e75bd84fa395051d9c525dbdb77f32e23ed00c69f5ca7db7682211f334789673d5850c72ce39619a6358767e2653e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.194.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.193.0 (2025-07-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.193.0
1
+ 1.194.0
@@ -137,7 +137,7 @@ module Aws::S3
137
137
  # class name or an instance of a plugin class.
138
138
  #
139
139
  # @option options [required, Aws::CredentialProvider] :credentials
140
- # Your AWS credentials. This can be an instance of any one of the
140
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
141
141
  # following classes:
142
142
  #
143
143
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -170,18 +170,23 @@ module Aws::S3
170
170
  # locations will be searched for credentials:
171
171
  #
172
172
  # * `Aws.config[:credentials]`
173
+ #
173
174
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
174
175
  # `:account_id` options.
175
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
176
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
176
+ #
177
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
178
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
179
+ #
177
180
  # * `~/.aws/credentials`
181
+ #
178
182
  # * `~/.aws/config`
183
+ #
179
184
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
180
185
  # are very aggressive. Construct and pass an instance of
181
186
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
182
187
  # enable retries and extended timeouts. Instance profile credential
183
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
184
- # to true.
188
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
189
+ # to `true`.
185
190
  #
186
191
  # @option options [required, String] :region
187
192
  # The AWS region to connect to. The configured `:region` is
@@ -219,6 +224,11 @@ module Aws::S3
219
224
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
220
225
  # not retry instead of sleeping.
221
226
  #
227
+ # @option options [Array<String>] :auth_scheme_preference
228
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
229
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
230
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
231
+ #
222
232
  # @option options [Boolean] :client_side_monitoring (false)
223
233
  # When `true`, client-side metrics will be collected for all API requests from
224
234
  # this client.
@@ -333,8 +343,8 @@ module Aws::S3
333
343
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
334
344
  #
335
345
  # @option options [String] :profile ("default")
336
- # Used when loading credentials from the shared credentials file
337
- # at HOME/.aws/credentials. When not specified, 'default' is used.
346
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
347
+ # When not specified, 'default' is used.
338
348
  #
339
349
  # @option options [String] :request_checksum_calculation ("when_supported")
340
350
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -466,7 +476,7 @@ module Aws::S3
466
476
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
467
477
  #
468
478
  # @option options [Aws::TokenProvider] :token_provider
469
- # A Bearer Token Provider. This can be an instance of any one of the
479
+ # Your Bearer token used for authentication. This can be an instance of any one of the
470
480
  # following classes:
471
481
  #
472
482
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -21728,7 +21738,7 @@ module Aws::S3
21728
21738
  tracer: tracer
21729
21739
  )
21730
21740
  context[:gem_name] = 'aws-sdk-s3'
21731
- context[:gem_version] = '1.193.0'
21741
+ context[:gem_version] = '1.194.0'
21732
21742
  Seahorse::Client::Request.new(handlers, context)
21733
21743
  end
21734
21744
 
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.193.0'
78
+ GEM_VERSION = '1.194.0'
79
79
 
80
80
  end
81
81
 
data/sig/client.rbs CHANGED
@@ -20,6 +20,7 @@ module Aws
20
20
  ?account_id: String,
21
21
  ?active_endpoint_cache: bool,
22
22
  ?adaptive_retry_wait_to_fill: bool,
23
+ ?auth_scheme_preference: Array[String],
23
24
  ?client_side_monitoring: bool,
24
25
  ?client_side_monitoring_client_id: String,
25
26
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -20,6 +20,7 @@ module Aws
20
20
  ?account_id: String,
21
21
  ?active_endpoint_cache: bool,
22
22
  ?adaptive_retry_wait_to_fill: bool,
23
+ ?auth_scheme_preference: Array[String],
23
24
  ?client_side_monitoring: bool,
24
25
  ?client_side_monitoring_client_id: String,
25
26
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.193.0
4
+ version: 1.194.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -46,7 +46,7 @@ dependencies:
46
46
  version: '3'
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 3.225.0
49
+ version: 3.227.0
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,7 +56,7 @@ dependencies:
56
56
  version: '3'
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: 3.225.0
59
+ version: 3.227.0
60
60
  description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
61
61
  This gem is part of the AWS SDK for Ruby.
62
62
  email: