aws-sdk-s3 1.193.0 → 1.196.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +24 -17
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- 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: 52142f91568fe72f865055a683d9cf9f4a86c0d6446f4c7b2ab491a5b37f2cd9
|
4
|
+
data.tar.gz: 06e34c3d319a400fe08d08b8aed7f49813f4cb99e6129f4eee6a2b8fdbc452a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a73af036ed37f5ed060d993d681e747ec554176bb09d5f4bbb77201b60280c23f47a69e5757cc9fb8f33f3e0bf971bb0fd065376a93f897990d053a157385a97
|
7
|
+
data.tar.gz: d0aac2333813cd782ec4f1d0699288fcc4ed720583883a17ae77f35ccd725b5f3471d931acc2c820928859665ee13c8c8efde428cb4e638840bdb4446bb2161c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.196.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.195.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.194.0 (2025-07-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.193.0 (2025-07-15)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.196.0
|
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -137,8 +137,8 @@ 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
|
141
|
-
# following classes:
|
140
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
141
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
142
142
|
#
|
143
143
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
144
144
|
# credentials.
|
@@ -166,22 +166,24 @@ module Aws::S3
|
|
166
166
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
167
167
|
# from the Cognito Identity service.
|
168
168
|
#
|
169
|
-
# When `:credentials` are not configured directly, the following
|
170
|
-
# locations will be searched for credentials:
|
169
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
171
170
|
#
|
172
171
|
# * `Aws.config[:credentials]`
|
172
|
+
#
|
173
173
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
174
174
|
# `:account_id` options.
|
175
|
-
#
|
176
|
-
#
|
175
|
+
#
|
176
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
177
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
178
|
+
#
|
177
179
|
# * `~/.aws/credentials`
|
180
|
+
#
|
178
181
|
# * `~/.aws/config`
|
179
|
-
#
|
180
|
-
#
|
181
|
-
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
182
|
-
# enable retries and extended timeouts. Instance profile credential
|
183
|
-
#
|
184
|
-
# to true.
|
182
|
+
#
|
183
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
184
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
185
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
186
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
185
187
|
#
|
186
188
|
# @option options [required, String] :region
|
187
189
|
# The AWS region to connect to. The configured `:region` is
|
@@ -219,6 +221,11 @@ module Aws::S3
|
|
219
221
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
220
222
|
# not retry instead of sleeping.
|
221
223
|
#
|
224
|
+
# @option options [Array<String>] :auth_scheme_preference
|
225
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
226
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
227
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
228
|
+
#
|
222
229
|
# @option options [Boolean] :client_side_monitoring (false)
|
223
230
|
# When `true`, client-side metrics will be collected for all API requests from
|
224
231
|
# this client.
|
@@ -333,8 +340,8 @@ module Aws::S3
|
|
333
340
|
# 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
341
|
#
|
335
342
|
# @option options [String] :profile ("default")
|
336
|
-
# Used when loading credentials from the shared credentials file
|
337
|
-
#
|
343
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
344
|
+
# When not specified, 'default' is used.
|
338
345
|
#
|
339
346
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
340
347
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -466,8 +473,8 @@ module Aws::S3
|
|
466
473
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
467
474
|
#
|
468
475
|
# @option options [Aws::TokenProvider] :token_provider
|
469
|
-
#
|
470
|
-
# following classes:
|
476
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
477
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
471
478
|
#
|
472
479
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
473
480
|
# tokens.
|
@@ -21728,7 +21735,7 @@ module Aws::S3
|
|
21728
21735
|
tracer: tracer
|
21729
21736
|
)
|
21730
21737
|
context[:gem_name] = 'aws-sdk-s3'
|
21731
|
-
context[:gem_version] = '1.
|
21738
|
+
context[:gem_version] = '1.196.0'
|
21732
21739
|
Seahorse::Client::Request.new(handlers, context)
|
21733
21740
|
end
|
21734
21741
|
|
data/lib/aws-sdk-s3.rb
CHANGED
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.
|
4
|
+
version: 1.196.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.
|
49
|
+
version: 3.228.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.
|
59
|
+
version: 3.228.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:
|