aws-sdk-s3 1.78.0 → 1.79.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/lib/aws-sdk-s3.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +23 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0232fc4ef28ae41e69f589f2b398846918304fd784f15720f1470ba539706b73
|
|
4
|
+
data.tar.gz: 5addd423494cc626b5be39d9329823a0bb27c6e62aeaf2bc3d19ec4064b7c40e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20555cada51bdc0763fc5fe4bfb14b0d23632a17d473ee0eb953abdd974c5e972b227bf19dbff3ee37dd34fb94fc8e6b526b6bea1b40a94409cafcc78916d603
|
|
7
|
+
data.tar.gz: babae742c98d7c24784341bf204b38439dfd01b1cd14260783f18bc361065e7c7c994d59bb00120dc4fb5bdaf034936af9a8caa2b9efca6c2b1202a0d0cebaf3
|
data/lib/aws-sdk-s3.rb
CHANGED
data/lib/aws-sdk-s3/client.rb
CHANGED
|
@@ -119,13 +119,28 @@ module Aws::S3
|
|
|
119
119
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
120
120
|
# credentials.
|
|
121
121
|
#
|
|
122
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
123
|
+
# shared file, such as `~/.aws/config`.
|
|
124
|
+
#
|
|
125
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
126
|
+
#
|
|
127
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
128
|
+
# assume a role after providing credentials via the web.
|
|
129
|
+
#
|
|
130
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
131
|
+
# access token generated from `aws login`.
|
|
132
|
+
#
|
|
133
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
134
|
+
# process that outputs to stdout.
|
|
135
|
+
#
|
|
122
136
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
123
137
|
# from an EC2 IMDS on an EC2 instance.
|
|
124
138
|
#
|
|
125
|
-
# * `Aws::
|
|
126
|
-
#
|
|
139
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
140
|
+
# instances running in ECS.
|
|
127
141
|
#
|
|
128
|
-
# * `Aws::
|
|
142
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
143
|
+
# from the Cognito Identity service.
|
|
129
144
|
#
|
|
130
145
|
# When `:credentials` are not configured directly, the following
|
|
131
146
|
# locations will be searched for credentials:
|
|
@@ -135,10 +150,10 @@ module Aws::S3
|
|
|
135
150
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
136
151
|
# * `~/.aws/credentials`
|
|
137
152
|
# * `~/.aws/config`
|
|
138
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
139
|
-
# very aggressive. Construct and pass an instance of
|
|
140
|
-
# `Aws::InstanceProfileCredentails`
|
|
141
|
-
# timeouts.
|
|
153
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
154
|
+
# are very aggressive. Construct and pass an instance of
|
|
155
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
156
|
+
# enable retries and extended timeouts.
|
|
142
157
|
#
|
|
143
158
|
# @option options [required, String] :region
|
|
144
159
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -11685,7 +11700,7 @@ module Aws::S3
|
|
|
11685
11700
|
params: params,
|
|
11686
11701
|
config: config)
|
|
11687
11702
|
context[:gem_name] = 'aws-sdk-s3'
|
|
11688
|
-
context[:gem_version] = '1.
|
|
11703
|
+
context[:gem_version] = '1.79.0'
|
|
11689
11704
|
Seahorse::Client::Request.new(handlers, context)
|
|
11690
11705
|
end
|
|
11691
11706
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.79.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-kms
|