aws-sdk-s3 1.195.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +10 -13
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +1 -1
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
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 used for authentication. 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,8 +166,7 @@ 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]`
|
173
172
|
#
|
@@ -181,12 +180,10 @@ module Aws::S3
|
|
181
180
|
#
|
182
181
|
# * `~/.aws/config`
|
183
182
|
#
|
184
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
185
|
-
#
|
186
|
-
#
|
187
|
-
#
|
188
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
189
|
-
# to `true`.
|
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`.
|
190
187
|
#
|
191
188
|
# @option options [required, String] :region
|
192
189
|
# The AWS region to connect to. The configured `:region` is
|
@@ -476,8 +473,8 @@ module Aws::S3
|
|
476
473
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
477
474
|
#
|
478
475
|
# @option options [Aws::TokenProvider] :token_provider
|
479
|
-
# Your Bearer token used for authentication. This can be
|
480
|
-
# 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:
|
481
478
|
#
|
482
479
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
483
480
|
# tokens.
|
@@ -21738,7 +21735,7 @@ module Aws::S3
|
|
21738
21735
|
tracer: tracer
|
21739
21736
|
)
|
21740
21737
|
context[:gem_name] = 'aws-sdk-s3'
|
21741
|
-
context[:gem_version] = '1.
|
21738
|
+
context[:gem_version] = '1.196.0'
|
21742
21739
|
Seahorse::Client::Request.new(handlers, context)
|
21743
21740
|
end
|
21744
21741
|
|
data/lib/aws-sdk-s3.rb
CHANGED