aws-sdk-ec2 1.473.0 → 1.475.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +11 -5
- data/lib/aws-sdk-ec2/endpoints.rb +627 -2508
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05bbc0f730682995ad337710a4f4dd7c93ec362858bb27f7b67f01d64265cf55
|
4
|
+
data.tar.gz: 0bb528fa01650f71549bef9704c44696f43a366d103c59590ad3f48f8df4f253
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28fc329f904fc36ee75c076929ecadcd9b6627635c583fa4a71c0c422ab06a363c1208c8a7baca9ead0d5c21a34006a0400a7f46cfe7a0cbeada347a10aa7237
|
7
|
+
data.tar.gz: 8092f48d21b8227601649fc5da91268c6f4b997412c390d972ae471f0bbd2b853266dc19608ff7efbdfa5637b7431b8aa4468caff00ee5b54696ad415b53e712
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.475.0 (2024-09-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.474.0 (2024-09-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.473.0 (2024-09-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.475.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -134,13 +134,15 @@ module Aws::EC2
|
|
134
134
|
# locations will be searched for credentials:
|
135
135
|
#
|
136
136
|
# * `Aws.config[:credentials]`
|
137
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
138
|
-
#
|
137
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
138
|
+
# `:account_id` options.
|
139
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
140
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
139
141
|
# * `~/.aws/credentials`
|
140
142
|
# * `~/.aws/config`
|
141
143
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
142
144
|
# are very aggressive. Construct and pass an instance of
|
143
|
-
# `Aws::
|
145
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
144
146
|
# enable retries and extended timeouts. Instance profile credential
|
145
147
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
146
148
|
# to true.
|
@@ -159,6 +161,8 @@ module Aws::EC2
|
|
159
161
|
#
|
160
162
|
# @option options [String] :access_key_id
|
161
163
|
#
|
164
|
+
# @option options [String] :account_id
|
165
|
+
#
|
162
166
|
# @option options [Boolean] :active_endpoint_cache (false)
|
163
167
|
# When set to `true`, a thread polling for endpoints will be running in
|
164
168
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -373,7 +377,9 @@ module Aws::EC2
|
|
373
377
|
# sending the request.
|
374
378
|
#
|
375
379
|
# @option options [Aws::EC2::EndpointProvider] :endpoint_provider
|
376
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
380
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
381
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
382
|
+
# `Aws::EC2::EndpointParameters`.
|
377
383
|
#
|
378
384
|
# @option options [Float] :http_continue_timeout (1)
|
379
385
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -60132,7 +60138,7 @@ module Aws::EC2
|
|
60132
60138
|
tracer: tracer
|
60133
60139
|
)
|
60134
60140
|
context[:gem_name] = 'aws-sdk-ec2'
|
60135
|
-
context[:gem_version] = '1.
|
60141
|
+
context[:gem_version] = '1.475.0'
|
60136
60142
|
Seahorse::Client::Request.new(handlers, context)
|
60137
60143
|
end
|
60138
60144
|
|