aws-sdk-ec2 1.544.0 → 1.545.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-ec2/client.rb +10 -13
- data/lib/aws-sdk-ec2.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: 11f2309e09f49664b9e704e3355454e0f439a3a61141ec28d2ba6acfb67ea8d3
|
4
|
+
data.tar.gz: ca7074696a8d011730400c6c34f8c14461ed10cdc034fbb0ac3770e69474c3eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '06192b6a8bf2a6758f934d9f81e1650da7083fc0a74154d4484719307b5944be8170c63e9b0b4e9fe46a571505e4a0dd14bbd4c59b9d20f0835de336a1124089'
|
7
|
+
data.tar.gz: c6190333d388d905e5af844aca1aecc6f5a1705b0d72c2654917eddd3c60fb82c8de516f11a4e081d49fa7c1dd1096723a0807b27d4c2af06b7983605d8c7523
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.545.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -99,8 +99,8 @@ module Aws::EC2
|
|
99
99
|
# class name or an instance of a plugin class.
|
100
100
|
#
|
101
101
|
# @option options [required, Aws::CredentialProvider] :credentials
|
102
|
-
# Your AWS credentials used for authentication. This can be
|
103
|
-
# following classes:
|
102
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
103
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
104
104
|
#
|
105
105
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
106
106
|
# credentials.
|
@@ -128,8 +128,7 @@ module Aws::EC2
|
|
128
128
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
129
129
|
# from the Cognito Identity service.
|
130
130
|
#
|
131
|
-
# When `:credentials` are not configured directly, the following
|
132
|
-
# locations will be searched for credentials:
|
131
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
133
132
|
#
|
134
133
|
# * `Aws.config[:credentials]`
|
135
134
|
#
|
@@ -143,12 +142,10 @@ module Aws::EC2
|
|
143
142
|
#
|
144
143
|
# * `~/.aws/config`
|
145
144
|
#
|
146
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
147
|
-
#
|
148
|
-
#
|
149
|
-
#
|
150
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
151
|
-
# to `true`.
|
145
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
146
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
147
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
148
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
152
149
|
#
|
153
150
|
# @option options [required, String] :region
|
154
151
|
# The AWS region to connect to. The configured `:region` is
|
@@ -381,8 +378,8 @@ module Aws::EC2
|
|
381
378
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
382
379
|
#
|
383
380
|
# @option options [Aws::TokenProvider] :token_provider
|
384
|
-
# Your Bearer token used for authentication. This can be
|
385
|
-
# following classes:
|
381
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
382
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
386
383
|
#
|
387
384
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
388
385
|
# tokens.
|
@@ -66421,7 +66418,7 @@ module Aws::EC2
|
|
66421
66418
|
tracer: tracer
|
66422
66419
|
)
|
66423
66420
|
context[:gem_name] = 'aws-sdk-ec2'
|
66424
|
-
context[:gem_version] = '1.
|
66421
|
+
context[:gem_version] = '1.545.0'
|
66425
66422
|
Seahorse::Client::Request.new(handlers, context)
|
66426
66423
|
end
|
66427
66424
|
|
data/lib/aws-sdk-ec2.rb
CHANGED