aws-sdk-ec2 1.452.0 → 1.454.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 +81 -49
- data/lib/aws-sdk-ec2/types.rb +23 -1
- data/lib/aws-sdk-ec2/volume.rb +12 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- 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: 3434f26b012725ec2fac3a31acb147529ba847ee60228a32f3d70ee95f38283d
|
4
|
+
data.tar.gz: 41d21aeef55038e017ca8b2e7a9d7dfd77f50631dc8c316236b313419662c857
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71cb3bc764e06e53ba73f68648fa11440c72b9cbaf98d4cd188358d2750628000e522586969faba1ff4c2937d29e58dd4c6b29e71cc94859994fa54109bff5a1
|
7
|
+
data.tar.gz: a70ae56d4ff810917fbe26cc8bbf94b11b528e0b28a7556bd0c1557477ec9e0fa1ede81b50ae4f788254c5e24d65a061b5fde18c55cf53c6b806f8fbc56c24e3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.454.0 (2024-05-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon EC2.
|
8
|
+
|
9
|
+
1.453.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.452.0 (2024-04-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.454.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -74,6 +75,7 @@ module Aws::EC2
|
|
74
75
|
add_plugin(Aws::Plugins::ResponsePaging)
|
75
76
|
add_plugin(Aws::Plugins::StubResponses)
|
76
77
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
78
|
+
add_plugin(Aws::Plugins::InvocationId)
|
77
79
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
78
80
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
79
81
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -200,10 +202,17 @@ module Aws::EC2
|
|
200
202
|
# When set to 'true' the request body will not be compressed
|
201
203
|
# for supported operations.
|
202
204
|
#
|
203
|
-
# @option options [String] :endpoint
|
204
|
-
#
|
205
|
-
#
|
206
|
-
#
|
205
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
206
|
+
# Normally you should not configure the `:endpoint` option
|
207
|
+
# directly. This is normally constructed from the `:region`
|
208
|
+
# option. Configuring `:endpoint` is normally reserved for
|
209
|
+
# connecting to test or custom endpoints. The endpoint should
|
210
|
+
# be a URI formatted like:
|
211
|
+
#
|
212
|
+
# 'http://example.com'
|
213
|
+
# 'https://example.com'
|
214
|
+
# 'http://example.com:123'
|
215
|
+
#
|
207
216
|
#
|
208
217
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
209
218
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -341,50 +350,65 @@ module Aws::EC2
|
|
341
350
|
# @option options [Aws::EC2::EndpointProvider] :endpoint_provider
|
342
351
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::EC2::EndpointParameters`
|
343
352
|
#
|
344
|
-
# @option options [
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
# @option options [Float] :
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
353
|
+
# @option options [Float] :http_continue_timeout (1)
|
354
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
355
|
+
# request body. This option has no effect unless the request has "Expect"
|
356
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
357
|
+
# behaviour. This value can safely be set per request on the session.
|
358
|
+
#
|
359
|
+
# @option options [Float] :http_idle_timeout (5)
|
360
|
+
# The number of seconds a connection is allowed to sit idle before it
|
361
|
+
# is considered stale. Stale connections are closed and removed from the
|
362
|
+
# pool before making a request.
|
363
|
+
#
|
364
|
+
# @option options [Float] :http_open_timeout (15)
|
365
|
+
# The default number of seconds to wait for response data.
|
366
|
+
# This value can safely be set per-request on the session.
|
367
|
+
#
|
368
|
+
# @option options [URI::HTTP,String] :http_proxy
|
369
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
370
|
+
#
|
371
|
+
# @option options [Float] :http_read_timeout (60)
|
372
|
+
# The default number of seconds to wait for response data.
|
373
|
+
# This value can safely be set per-request on the session.
|
374
|
+
#
|
375
|
+
# @option options [Boolean] :http_wire_trace (false)
|
376
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
377
|
+
#
|
378
|
+
# @option options [Proc] :on_chunk_received
|
379
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
380
|
+
# of the response body is received. It provides three arguments: the chunk,
|
381
|
+
# the number of bytes received, and the total number of
|
382
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_sent
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes read from the body, and the total number of
|
388
|
+
# bytes in the body.
|
389
|
+
#
|
390
|
+
# @option options [Boolean] :raise_response_errors (true)
|
391
|
+
# When `true`, response errors are raised.
|
392
|
+
#
|
393
|
+
# @option options [String] :ssl_ca_bundle
|
394
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
395
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
396
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
397
|
+
#
|
398
|
+
# @option options [String] :ssl_ca_directory
|
399
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
400
|
+
# authority files for verifying peer certificates. If you do
|
401
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
402
|
+
# default will be used if available.
|
372
403
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# connection.
|
404
|
+
# @option options [String] :ssl_ca_store
|
405
|
+
# Sets the X509::Store to verify peer certificate.
|
376
406
|
#
|
377
|
-
# @option options [
|
378
|
-
#
|
379
|
-
# verifying peer certificates. If you do not pass
|
380
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
381
|
-
# will be used if available.
|
407
|
+
# @option options [Float] :ssl_timeout
|
408
|
+
# Sets the SSL timeout in seconds
|
382
409
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# authority files for verifying peer certificates. If you do
|
386
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
387
|
-
# system default will be used if available.
|
410
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
411
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
388
412
|
#
|
389
413
|
def initialize(*args)
|
390
414
|
super
|
@@ -18205,9 +18229,11 @@ module Aws::EC2
|
|
18205
18229
|
req.send_request(options)
|
18206
18230
|
end
|
18207
18231
|
|
18208
|
-
# Deletes the specified transit gateway route table.
|
18209
|
-
#
|
18210
|
-
# before you can delete
|
18232
|
+
# Deletes the specified transit gateway route table. If there are any
|
18233
|
+
# route tables associated with the transit gateway route table, you must
|
18234
|
+
# first run DisassociateRouteTable before you can delete the transit
|
18235
|
+
# gateway route table. This removes any route tables associated with the
|
18236
|
+
# transit gateway route table.
|
18211
18237
|
#
|
18212
18238
|
# @option params [required, String] :transit_gateway_route_table_id
|
18213
18239
|
# The ID of the transit gateway route table.
|
@@ -35193,6 +35219,12 @@ module Aws::EC2
|
|
35193
35219
|
#
|
35194
35220
|
# * `transit-gateway-id` - The ID of the transit gateway.
|
35195
35221
|
#
|
35222
|
+
# * `tag-key `- The key/value combination of a tag assigned to the
|
35223
|
+
# resource. Use the tag key in the filter name and the tag value as
|
35224
|
+
# the filter value. For example, to find all resources that have a tag
|
35225
|
+
# with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
|
35226
|
+
# the filter name and `TeamA` for the filter value.
|
35227
|
+
#
|
35196
35228
|
# @option params [Integer] :max_results
|
35197
35229
|
# The maximum number of results to return with a single call. To
|
35198
35230
|
# retrieve the remaining results, make another call with the returned
|
@@ -59270,7 +59302,7 @@ module Aws::EC2
|
|
59270
59302
|
params: params,
|
59271
59303
|
config: config)
|
59272
59304
|
context[:gem_name] = 'aws-sdk-ec2'
|
59273
|
-
context[:gem_version] = '1.
|
59305
|
+
context[:gem_version] = '1.454.0'
|
59274
59306
|
Seahorse::Client::Request.new(handlers, context)
|
59275
59307
|
end
|
59276
59308
|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -26399,6 +26399,12 @@ module Aws::EC2
|
|
26399
26399
|
# `deleted` \| `deleting` \| `modifying` \| `pending`).
|
26400
26400
|
#
|
26401
26401
|
# * `transit-gateway-id` - The ID of the transit gateway.
|
26402
|
+
#
|
26403
|
+
# * `tag-key `- The key/value combination of a tag assigned to the
|
26404
|
+
# resource. Use the tag key in the filter name and the tag value as
|
26405
|
+
# the filter value. For example, to find all resources that have a
|
26406
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
26407
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26402
26408
|
# @return [Array<Types::Filter>]
|
26403
26409
|
#
|
26404
26410
|
# @!attribute [rw] max_results
|
@@ -44928,7 +44934,11 @@ module Aws::EC2
|
|
44928
44934
|
# @return [String]
|
44929
44935
|
#
|
44930
44936
|
# @!attribute [rw] device_index
|
44931
|
-
# The device index for the network interface attachment.
|
44937
|
+
# The device index for the network interface attachment. Each network
|
44938
|
+
# interface requires a device index. If you create a launch template
|
44939
|
+
# that includes secondary network interfaces but not a primary network
|
44940
|
+
# interface, then you must add a primary network interface as a launch
|
44941
|
+
# parameter when you launch an instance from the template.
|
44932
44942
|
# @return [Integer]
|
44933
44943
|
#
|
44934
44944
|
# @!attribute [rw] groups
|
@@ -67418,6 +67428,10 @@ module Aws::EC2
|
|
67418
67428
|
# Describes a volume.
|
67419
67429
|
#
|
67420
67430
|
# @!attribute [rw] attachments
|
67431
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
67432
|
+
#
|
67433
|
+
# </note>
|
67434
|
+
#
|
67421
67435
|
# Information about the volume attachments.
|
67422
67436
|
# @return [Array<Types::VolumeAttachment>]
|
67423
67437
|
#
|
@@ -67476,6 +67490,10 @@ module Aws::EC2
|
|
67476
67490
|
# @return [String]
|
67477
67491
|
#
|
67478
67492
|
# @!attribute [rw] fast_restored
|
67493
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
67494
|
+
#
|
67495
|
+
# </note>
|
67496
|
+
#
|
67479
67497
|
# Indicates whether the volume was created using fast snapshot
|
67480
67498
|
# restore.
|
67481
67499
|
# @return [Boolean]
|
@@ -67489,6 +67507,10 @@ module Aws::EC2
|
|
67489
67507
|
# @return [Integer]
|
67490
67508
|
#
|
67491
67509
|
# @!attribute [rw] sse_type
|
67510
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
67511
|
+
#
|
67512
|
+
# </note>
|
67513
|
+
#
|
67492
67514
|
# Reserved for future use.
|
67493
67515
|
# @return [String]
|
67494
67516
|
#
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -35,6 +35,10 @@ module Aws::EC2
|
|
35
35
|
end
|
36
36
|
alias :volume_id :id
|
37
37
|
|
38
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
39
|
+
#
|
40
|
+
# </note>
|
41
|
+
#
|
38
42
|
# Information about the volume attachments.
|
39
43
|
# @return [Array<Types::VolumeAttachment>]
|
40
44
|
def attachments
|
@@ -112,6 +116,10 @@ module Aws::EC2
|
|
112
116
|
data[:volume_type]
|
113
117
|
end
|
114
118
|
|
119
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
120
|
+
#
|
121
|
+
# </note>
|
122
|
+
#
|
115
123
|
# Indicates whether the volume was created using fast snapshot restore.
|
116
124
|
# @return [Boolean]
|
117
125
|
def fast_restored
|
@@ -130,6 +138,10 @@ module Aws::EC2
|
|
130
138
|
data[:throughput]
|
131
139
|
end
|
132
140
|
|
141
|
+
# <note markdown="1"> This parameter is not returned by CreateVolume.
|
142
|
+
#
|
143
|
+
# </note>
|
144
|
+
#
|
133
145
|
# Reserved for future use.
|
134
146
|
# @return [String]
|
135
147
|
def sse_type
|
data/lib/aws-sdk-ec2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.454.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: 2024-
|
11
|
+
date: 2024-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|