aws-sdk-importexport 1.63.0 → 1.64.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-importexport/client.rb +10 -13
- data/lib/aws-sdk-importexport.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: 15648078b97be7730d0b6041b82cf1bc7304992d7afa04dcb5f4f9141b21872f
|
4
|
+
data.tar.gz: fe8a68568cc35d0d0f8e35da6a031e3acbcfec66bdbcb83fff1823b66600fcd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f95cf37a79d4e35af3664f42bac699dae441bf2984578b87797be5a0907b53a43deae907485e5fc738eca556f69dce8f1e0a2c63f8e2050e5d1d40f08347c7e
|
7
|
+
data.tar.gz: cbf10eec960aee36971d313615e092b1bfc618dd14e83274f431f699cf59ef3e5d443c2e9c231598eb3d6d13e087d2602e3ae80cc2ce9c0573d611c35f42ea19
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
@@ -94,8 +94,8 @@ module Aws::ImportExport
|
|
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 used for authentication. This can be
|
98
|
-
# following classes:
|
97
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
98
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
99
99
|
#
|
100
100
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
101
101
|
# credentials.
|
@@ -123,8 +123,7 @@ module Aws::ImportExport
|
|
123
123
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
124
124
|
# from the Cognito Identity service.
|
125
125
|
#
|
126
|
-
# When `:credentials` are not configured directly, the following
|
127
|
-
# locations will be searched for credentials:
|
126
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
128
127
|
#
|
129
128
|
# * `Aws.config[:credentials]`
|
130
129
|
#
|
@@ -138,12 +137,10 @@ module Aws::ImportExport
|
|
138
137
|
#
|
139
138
|
# * `~/.aws/config`
|
140
139
|
#
|
141
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
142
|
-
#
|
143
|
-
#
|
144
|
-
#
|
145
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
146
|
-
# to `true`.
|
140
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
141
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
143
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
147
144
|
#
|
148
145
|
# @option options [required, String] :region
|
149
146
|
# The AWS region to connect to. The configured `:region` is
|
@@ -376,8 +373,8 @@ module Aws::ImportExport
|
|
376
373
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
377
374
|
#
|
378
375
|
# @option options [Aws::TokenProvider] :token_provider
|
379
|
-
# Your Bearer token used for authentication. This can be
|
380
|
-
# following classes:
|
376
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
377
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
381
378
|
#
|
382
379
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
383
380
|
# tokens.
|
@@ -829,7 +826,7 @@ module Aws::ImportExport
|
|
829
826
|
tracer: tracer
|
830
827
|
)
|
831
828
|
context[:gem_name] = 'aws-sdk-importexport'
|
832
|
-
context[:gem_version] = '1.
|
829
|
+
context[:gem_version] = '1.64.0'
|
833
830
|
Seahorse::Client::Request.new(handlers, context)
|
834
831
|
end
|
835
832
|
|
data/lib/aws-sdk-importexport.rb
CHANGED