aws-sdk-ec2 1.573.0 → 1.575.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 +54 -1
- data/lib/aws-sdk-ec2/client_api.rb +31 -0
- data/lib/aws-sdk-ec2/types.rb +90 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/types.rbs +22 -0
- 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: 69f8898f04c9437087026b71db792aa441ab3711d3ab27322cb2b34f91ab66e2
|
|
4
|
+
data.tar.gz: e753c771a878d6f399c7494f239cb47c698baa1ae7cc5680c2df46f2af337485
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea578468ecea7ae8865893210e0a9bbcd806bdb4df59a7ba75f71baa7f7828392aad1611f090fd3763fb6b2b463e57d38268a7ac58d991d56952bb3a6493540a
|
|
7
|
+
data.tar.gz: 98696d6bbfec52b92c7a756d55b5cdef9b3a37868c4240bf55f1c8029bf73e91bdaae40c49531cd1338bb604ac63b3c5d8d76acdf2620c89f71dc4fc9f5b95fa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.575.0 (2025-11-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds complete AMI ancestry tracing from immediate parent through each preceding generation back to the root AMI
|
|
8
|
+
|
|
9
|
+
1.574.0 (2025-11-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS Site-to-Site VPN now supports VPN connections with up to 5 Gbps bandwidth per tunnel, a 4x improvement from existing limit of 1.25 Gbps.
|
|
13
|
+
|
|
4
14
|
1.573.0 (2025-11-10)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.575.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -18163,6 +18163,7 @@ module Aws::EC2
|
|
|
18163
18163
|
# remote_ipv_6_network_cidr: "String",
|
|
18164
18164
|
# outside_ip_address_type: "String",
|
|
18165
18165
|
# transport_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
|
|
18166
|
+
# tunnel_bandwidth: "standard", # accepts standard, large
|
|
18166
18167
|
# static_routes_only: false,
|
|
18167
18168
|
# },
|
|
18168
18169
|
# })
|
|
@@ -18214,6 +18215,7 @@ module Aws::EC2
|
|
|
18214
18215
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
18215
18216
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
18216
18217
|
# resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
18218
|
+
# resp.vpn_connection.options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
18217
18219
|
# resp.vpn_connection.routes #=> Array
|
|
18218
18220
|
# resp.vpn_connection.routes[0].destination_cidr_block #=> String
|
|
18219
18221
|
# resp.vpn_connection.routes[0].source #=> String, one of "Static"
|
|
@@ -44223,6 +44225,7 @@ module Aws::EC2
|
|
|
44223
44225
|
# resp.vpn_connections[0].options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
44224
44226
|
# resp.vpn_connections[0].options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
44225
44227
|
# resp.vpn_connections[0].options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
44228
|
+
# resp.vpn_connections[0].options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
44226
44229
|
# resp.vpn_connections[0].routes #=> Array
|
|
44227
44230
|
# resp.vpn_connections[0].routes[0].destination_cidr_block #=> String
|
|
44228
44231
|
# resp.vpn_connections[0].routes[0].source #=> String, one of "Static"
|
|
@@ -49250,6 +49253,52 @@ module Aws::EC2
|
|
|
49250
49253
|
req.send_request(options)
|
|
49251
49254
|
end
|
|
49252
49255
|
|
|
49256
|
+
# Retrieves the ancestry chain of the specified AMI, tracing its lineage
|
|
49257
|
+
# back to the root AMI. For more information, see [AMI ancestry][1] in
|
|
49258
|
+
# *Amazon EC2 User Guide*.
|
|
49259
|
+
#
|
|
49260
|
+
#
|
|
49261
|
+
#
|
|
49262
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-ancestry.html
|
|
49263
|
+
#
|
|
49264
|
+
# @option params [required, String] :image_id
|
|
49265
|
+
# The ID of the AMI whose ancestry you want to trace.
|
|
49266
|
+
#
|
|
49267
|
+
# @option params [Boolean] :dry_run
|
|
49268
|
+
# Checks whether you have the required permissions for the action,
|
|
49269
|
+
# without actually making the request, and provides an error response.
|
|
49270
|
+
# If you have the required permissions, the error response is
|
|
49271
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
49272
|
+
#
|
|
49273
|
+
# @return [Types::GetImageAncestryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
49274
|
+
#
|
|
49275
|
+
# * {Types::GetImageAncestryResult#image_ancestry_entries #image_ancestry_entries} => Array<Types::ImageAncestryEntry>
|
|
49276
|
+
#
|
|
49277
|
+
# @example Request syntax with placeholder values
|
|
49278
|
+
#
|
|
49279
|
+
# resp = client.get_image_ancestry({
|
|
49280
|
+
# image_id: "ImageId", # required
|
|
49281
|
+
# dry_run: false,
|
|
49282
|
+
# })
|
|
49283
|
+
#
|
|
49284
|
+
# @example Response structure
|
|
49285
|
+
#
|
|
49286
|
+
# resp.image_ancestry_entries #=> Array
|
|
49287
|
+
# resp.image_ancestry_entries[0].creation_date #=> Time
|
|
49288
|
+
# resp.image_ancestry_entries[0].image_id #=> String
|
|
49289
|
+
# resp.image_ancestry_entries[0].image_owner_alias #=> String
|
|
49290
|
+
# resp.image_ancestry_entries[0].source_image_id #=> String
|
|
49291
|
+
# resp.image_ancestry_entries[0].source_image_region #=> String
|
|
49292
|
+
#
|
|
49293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetImageAncestry AWS API Documentation
|
|
49294
|
+
#
|
|
49295
|
+
# @overload get_image_ancestry(params = {})
|
|
49296
|
+
# @param [Hash] params ({})
|
|
49297
|
+
def get_image_ancestry(params = {}, options = {})
|
|
49298
|
+
req = build_request(:get_image_ancestry, params)
|
|
49299
|
+
req.send_request(options)
|
|
49300
|
+
end
|
|
49301
|
+
|
|
49253
49302
|
# Gets the current state of *block public access for AMIs* at the
|
|
49254
49303
|
# account level in the specified Amazon Web Services Region.
|
|
49255
49304
|
#
|
|
@@ -60467,6 +60516,7 @@ module Aws::EC2
|
|
|
60467
60516
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
60468
60517
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
60469
60518
|
# resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
60519
|
+
# resp.vpn_connection.options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
60470
60520
|
# resp.vpn_connection.routes #=> Array
|
|
60471
60521
|
# resp.vpn_connection.routes[0].destination_cidr_block #=> String
|
|
60472
60522
|
# resp.vpn_connection.routes[0].source #=> String, one of "Static"
|
|
@@ -60598,6 +60648,7 @@ module Aws::EC2
|
|
|
60598
60648
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
60599
60649
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
60600
60650
|
# resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
60651
|
+
# resp.vpn_connection.options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
60601
60652
|
# resp.vpn_connection.routes #=> Array
|
|
60602
60653
|
# resp.vpn_connection.routes[0].destination_cidr_block #=> String
|
|
60603
60654
|
# resp.vpn_connection.routes[0].source #=> String, one of "Static"
|
|
@@ -60702,6 +60753,7 @@ module Aws::EC2
|
|
|
60702
60753
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
60703
60754
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
60704
60755
|
# resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
60756
|
+
# resp.vpn_connection.options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
60705
60757
|
# resp.vpn_connection.routes #=> Array
|
|
60706
60758
|
# resp.vpn_connection.routes[0].destination_cidr_block #=> String
|
|
60707
60759
|
# resp.vpn_connection.routes[0].source #=> String, one of "Static"
|
|
@@ -60887,6 +60939,7 @@ module Aws::EC2
|
|
|
60887
60939
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_group_arn #=> String
|
|
60888
60940
|
# resp.vpn_connection.options.tunnel_options[0].log_options.cloud_watch_log_options.log_output_format #=> String
|
|
60889
60941
|
# resp.vpn_connection.options.tunnel_options[0].enable_tunnel_lifecycle_control #=> Boolean
|
|
60942
|
+
# resp.vpn_connection.options.tunnel_bandwidth #=> String, one of "standard", "large"
|
|
60890
60943
|
# resp.vpn_connection.routes #=> Array
|
|
60891
60944
|
# resp.vpn_connection.routes[0].destination_cidr_block #=> String
|
|
60892
60945
|
# resp.vpn_connection.routes[0].source #=> String, one of "Static"
|
|
@@ -69158,7 +69211,7 @@ module Aws::EC2
|
|
|
69158
69211
|
tracer: tracer
|
|
69159
69212
|
)
|
|
69160
69213
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
69161
|
-
context[:gem_version] = '1.
|
|
69214
|
+
context[:gem_version] = '1.575.0'
|
|
69162
69215
|
Seahorse::Client::Request.new(handlers, context)
|
|
69163
69216
|
end
|
|
69164
69217
|
|
|
@@ -1727,6 +1727,8 @@ module Aws::EC2
|
|
|
1727
1727
|
GetGroupsForCapacityReservationResult = Shapes::StructureShape.new(name: 'GetGroupsForCapacityReservationResult')
|
|
1728
1728
|
GetHostReservationPurchasePreviewRequest = Shapes::StructureShape.new(name: 'GetHostReservationPurchasePreviewRequest')
|
|
1729
1729
|
GetHostReservationPurchasePreviewResult = Shapes::StructureShape.new(name: 'GetHostReservationPurchasePreviewResult')
|
|
1730
|
+
GetImageAncestryRequest = Shapes::StructureShape.new(name: 'GetImageAncestryRequest')
|
|
1731
|
+
GetImageAncestryResult = Shapes::StructureShape.new(name: 'GetImageAncestryResult')
|
|
1730
1732
|
GetImageBlockPublicAccessStateRequest = Shapes::StructureShape.new(name: 'GetImageBlockPublicAccessStateRequest')
|
|
1731
1733
|
GetImageBlockPublicAccessStateResult = Shapes::StructureShape.new(name: 'GetImageBlockPublicAccessStateResult')
|
|
1732
1734
|
GetInstanceMetadataDefaultsRequest = Shapes::StructureShape.new(name: 'GetInstanceMetadataDefaultsRequest')
|
|
@@ -1875,6 +1877,8 @@ module Aws::EC2
|
|
|
1875
1877
|
IdFormatList = Shapes::ListShape.new(name: 'IdFormatList')
|
|
1876
1878
|
Igmpv2SupportValue = Shapes::StringShape.new(name: 'Igmpv2SupportValue')
|
|
1877
1879
|
Image = Shapes::StructureShape.new(name: 'Image')
|
|
1880
|
+
ImageAncestryEntry = Shapes::StructureShape.new(name: 'ImageAncestryEntry')
|
|
1881
|
+
ImageAncestryEntryList = Shapes::ListShape.new(name: 'ImageAncestryEntryList')
|
|
1878
1882
|
ImageAttribute = Shapes::StructureShape.new(name: 'ImageAttribute')
|
|
1879
1883
|
ImageAttributeName = Shapes::StringShape.new(name: 'ImageAttributeName')
|
|
1880
1884
|
ImageBlockPublicAccessDisabledState = Shapes::StringShape.new(name: 'ImageBlockPublicAccessDisabledState')
|
|
@@ -3741,6 +3745,7 @@ module Aws::EC2
|
|
|
3741
3745
|
VpnStaticRoute = Shapes::StructureShape.new(name: 'VpnStaticRoute')
|
|
3742
3746
|
VpnStaticRouteList = Shapes::ListShape.new(name: 'VpnStaticRouteList')
|
|
3743
3747
|
VpnStaticRouteSource = Shapes::StringShape.new(name: 'VpnStaticRouteSource')
|
|
3748
|
+
VpnTunnelBandwidth = Shapes::StringShape.new(name: 'VpnTunnelBandwidth')
|
|
3744
3749
|
VpnTunnelLogOptions = Shapes::StructureShape.new(name: 'VpnTunnelLogOptions')
|
|
3745
3750
|
VpnTunnelLogOptionsSpecification = Shapes::StructureShape.new(name: 'VpnTunnelLogOptionsSpecification')
|
|
3746
3751
|
VpnTunnelOptionsSpecification = Shapes::StructureShape.new(name: 'VpnTunnelOptionsSpecification')
|
|
@@ -10800,6 +10805,13 @@ module Aws::EC2
|
|
|
10800
10805
|
GetHostReservationPurchasePreviewResult.add_member(:total_upfront_price, Shapes::ShapeRef.new(shape: String, location_name: "totalUpfrontPrice"))
|
|
10801
10806
|
GetHostReservationPurchasePreviewResult.struct_class = Types::GetHostReservationPurchasePreviewResult
|
|
10802
10807
|
|
|
10808
|
+
GetImageAncestryRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, required: true, location_name: "ImageId"))
|
|
10809
|
+
GetImageAncestryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
10810
|
+
GetImageAncestryRequest.struct_class = Types::GetImageAncestryRequest
|
|
10811
|
+
|
|
10812
|
+
GetImageAncestryResult.add_member(:image_ancestry_entries, Shapes::ShapeRef.new(shape: ImageAncestryEntryList, location_name: "imageAncestryEntrySet"))
|
|
10813
|
+
GetImageAncestryResult.struct_class = Types::GetImageAncestryResult
|
|
10814
|
+
|
|
10803
10815
|
GetImageBlockPublicAccessStateRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
10804
10816
|
GetImageBlockPublicAccessStateRequest.struct_class = Types::GetImageBlockPublicAccessStateRequest
|
|
10805
10817
|
|
|
@@ -11452,6 +11464,15 @@ module Aws::EC2
|
|
|
11452
11464
|
Image.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformValues, location_name: "platform"))
|
|
11453
11465
|
Image.struct_class = Types::Image
|
|
11454
11466
|
|
|
11467
|
+
ImageAncestryEntry.add_member(:creation_date, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationDate"))
|
|
11468
|
+
ImageAncestryEntry.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "imageId"))
|
|
11469
|
+
ImageAncestryEntry.add_member(:image_owner_alias, Shapes::ShapeRef.new(shape: String, location_name: "imageOwnerAlias"))
|
|
11470
|
+
ImageAncestryEntry.add_member(:source_image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "sourceImageId"))
|
|
11471
|
+
ImageAncestryEntry.add_member(:source_image_region, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageRegion"))
|
|
11472
|
+
ImageAncestryEntry.struct_class = Types::ImageAncestryEntry
|
|
11473
|
+
|
|
11474
|
+
ImageAncestryEntryList.member = Shapes::ShapeRef.new(shape: ImageAncestryEntry, location_name: "item")
|
|
11475
|
+
|
|
11455
11476
|
ImageAttribute.add_member(:description, Shapes::ShapeRef.new(shape: AttributeValue, location_name: "description"))
|
|
11456
11477
|
ImageAttribute.add_member(:kernel_id, Shapes::ShapeRef.new(shape: AttributeValue, location_name: "kernel"))
|
|
11457
11478
|
ImageAttribute.add_member(:ramdisk_id, Shapes::ShapeRef.new(shape: AttributeValue, location_name: "ramdisk"))
|
|
@@ -18383,6 +18404,7 @@ module Aws::EC2
|
|
|
18383
18404
|
VpnConnectionOptions.add_member(:transport_transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: String, location_name: "transportTransitGatewayAttachmentId"))
|
|
18384
18405
|
VpnConnectionOptions.add_member(:tunnel_inside_ip_version, Shapes::ShapeRef.new(shape: TunnelInsideIpVersion, location_name: "tunnelInsideIpVersion"))
|
|
18385
18406
|
VpnConnectionOptions.add_member(:tunnel_options, Shapes::ShapeRef.new(shape: TunnelOptionsList, location_name: "tunnelOptionSet"))
|
|
18407
|
+
VpnConnectionOptions.add_member(:tunnel_bandwidth, Shapes::ShapeRef.new(shape: VpnTunnelBandwidth, location_name: "tunnelBandwidth"))
|
|
18386
18408
|
VpnConnectionOptions.struct_class = Types::VpnConnectionOptions
|
|
18387
18409
|
|
|
18388
18410
|
VpnConnectionOptionsSpecification.add_member(:enable_acceleration, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableAcceleration"))
|
|
@@ -18394,6 +18416,7 @@ module Aws::EC2
|
|
|
18394
18416
|
VpnConnectionOptionsSpecification.add_member(:remote_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "RemoteIpv6NetworkCidr"))
|
|
18395
18417
|
VpnConnectionOptionsSpecification.add_member(:outside_ip_address_type, Shapes::ShapeRef.new(shape: String, location_name: "OutsideIpAddressType"))
|
|
18396
18418
|
VpnConnectionOptionsSpecification.add_member(:transport_transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, location_name: "TransportTransitGatewayAttachmentId"))
|
|
18419
|
+
VpnConnectionOptionsSpecification.add_member(:tunnel_bandwidth, Shapes::ShapeRef.new(shape: VpnTunnelBandwidth, location_name: "TunnelBandwidth"))
|
|
18397
18420
|
VpnConnectionOptionsSpecification.add_member(:static_routes_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "staticRoutesOnly"))
|
|
18398
18421
|
VpnConnectionOptionsSpecification.struct_class = Types::VpnConnectionOptionsSpecification
|
|
18399
18422
|
|
|
@@ -23407,6 +23430,14 @@ module Aws::EC2
|
|
|
23407
23430
|
o.output = Shapes::ShapeRef.new(shape: GetHostReservationPurchasePreviewResult)
|
|
23408
23431
|
end)
|
|
23409
23432
|
|
|
23433
|
+
api.add_operation(:get_image_ancestry, Seahorse::Model::Operation.new.tap do |o|
|
|
23434
|
+
o.name = "GetImageAncestry"
|
|
23435
|
+
o.http_method = "POST"
|
|
23436
|
+
o.http_request_uri = "/"
|
|
23437
|
+
o.input = Shapes::ShapeRef.new(shape: GetImageAncestryRequest)
|
|
23438
|
+
o.output = Shapes::ShapeRef.new(shape: GetImageAncestryResult)
|
|
23439
|
+
end)
|
|
23440
|
+
|
|
23410
23441
|
api.add_operation(:get_image_block_public_access_state, Seahorse::Model::Operation.new.tap do |o|
|
|
23411
23442
|
o.name = "GetImageBlockPublicAccessState"
|
|
23412
23443
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -41941,6 +41941,39 @@ module Aws::EC2
|
|
|
41941
41941
|
include Aws::Structure
|
|
41942
41942
|
end
|
|
41943
41943
|
|
|
41944
|
+
# @!attribute [rw] image_id
|
|
41945
|
+
# The ID of the AMI whose ancestry you want to trace.
|
|
41946
|
+
# @return [String]
|
|
41947
|
+
#
|
|
41948
|
+
# @!attribute [rw] dry_run
|
|
41949
|
+
# Checks whether you have the required permissions for the action,
|
|
41950
|
+
# without actually making the request, and provides an error response.
|
|
41951
|
+
# If you have the required permissions, the error response is
|
|
41952
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
41953
|
+
# @return [Boolean]
|
|
41954
|
+
#
|
|
41955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetImageAncestryRequest AWS API Documentation
|
|
41956
|
+
#
|
|
41957
|
+
class GetImageAncestryRequest < Struct.new(
|
|
41958
|
+
:image_id,
|
|
41959
|
+
:dry_run)
|
|
41960
|
+
SENSITIVE = []
|
|
41961
|
+
include Aws::Structure
|
|
41962
|
+
end
|
|
41963
|
+
|
|
41964
|
+
# @!attribute [rw] image_ancestry_entries
|
|
41965
|
+
# A list of entries in the AMI ancestry chain, from the specified AMI
|
|
41966
|
+
# to the root AMI.
|
|
41967
|
+
# @return [Array<Types::ImageAncestryEntry>]
|
|
41968
|
+
#
|
|
41969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetImageAncestryResult AWS API Documentation
|
|
41970
|
+
#
|
|
41971
|
+
class GetImageAncestryResult < Struct.new(
|
|
41972
|
+
:image_ancestry_entries)
|
|
41973
|
+
SENSITIVE = []
|
|
41974
|
+
include Aws::Structure
|
|
41975
|
+
end
|
|
41976
|
+
|
|
41944
41977
|
# @!attribute [rw] dry_run
|
|
41945
41978
|
# Checks whether you have the required permissions for the action,
|
|
41946
41979
|
# without actually making the request, and provides an error response.
|
|
@@ -45368,6 +45401,42 @@ module Aws::EC2
|
|
|
45368
45401
|
include Aws::Structure
|
|
45369
45402
|
end
|
|
45370
45403
|
|
|
45404
|
+
# Information about a single AMI in the ancestry chain and its source
|
|
45405
|
+
# (parent) AMI.
|
|
45406
|
+
#
|
|
45407
|
+
# @!attribute [rw] creation_date
|
|
45408
|
+
# The date and time when this AMI was created.
|
|
45409
|
+
# @return [Time]
|
|
45410
|
+
#
|
|
45411
|
+
# @!attribute [rw] image_id
|
|
45412
|
+
# The ID of this AMI.
|
|
45413
|
+
# @return [String]
|
|
45414
|
+
#
|
|
45415
|
+
# @!attribute [rw] image_owner_alias
|
|
45416
|
+
# The owner alias (`amazon` \| `aws-backup-vault` \| `aws-marketplace`
|
|
45417
|
+
# ) of this AMI, if one is assigned. Otherwise, the value is `null`.
|
|
45418
|
+
# @return [String]
|
|
45419
|
+
#
|
|
45420
|
+
# @!attribute [rw] source_image_id
|
|
45421
|
+
# The ID of the parent AMI.
|
|
45422
|
+
# @return [String]
|
|
45423
|
+
#
|
|
45424
|
+
# @!attribute [rw] source_image_region
|
|
45425
|
+
# The Amazon Web Services Region of the parent AMI.
|
|
45426
|
+
# @return [String]
|
|
45427
|
+
#
|
|
45428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageAncestryEntry AWS API Documentation
|
|
45429
|
+
#
|
|
45430
|
+
class ImageAncestryEntry < Struct.new(
|
|
45431
|
+
:creation_date,
|
|
45432
|
+
:image_id,
|
|
45433
|
+
:image_owner_alias,
|
|
45434
|
+
:source_image_id,
|
|
45435
|
+
:source_image_region)
|
|
45436
|
+
SENSITIVE = []
|
|
45437
|
+
include Aws::Structure
|
|
45438
|
+
end
|
|
45439
|
+
|
|
45371
45440
|
# Describes an image attribute.
|
|
45372
45441
|
#
|
|
45373
45442
|
# @!attribute [rw] description
|
|
@@ -82104,6 +82173,15 @@ module Aws::EC2
|
|
|
82104
82173
|
# Indicates the VPN tunnel options.
|
|
82105
82174
|
# @return [Array<Types::TunnelOption>]
|
|
82106
82175
|
#
|
|
82176
|
+
# @!attribute [rw] tunnel_bandwidth
|
|
82177
|
+
# The configured bandwidth for the VPN tunnel. Represents the current
|
|
82178
|
+
# throughput capacity setting for the tunnel connection. `standard`
|
|
82179
|
+
# tunnel bandwidth supports up to 1.25 Gbps per tunnel while `large`
|
|
82180
|
+
# supports up to 5 Gbps per tunnel. If no tunnel bandwidth was
|
|
82181
|
+
# specified for the connection, `standard` is used as the default
|
|
82182
|
+
# value.
|
|
82183
|
+
# @return [String]
|
|
82184
|
+
#
|
|
82107
82185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConnectionOptions AWS API Documentation
|
|
82108
82186
|
#
|
|
82109
82187
|
class VpnConnectionOptions < Struct.new(
|
|
@@ -82116,7 +82194,8 @@ module Aws::EC2
|
|
|
82116
82194
|
:outside_ip_address_type,
|
|
82117
82195
|
:transport_transit_gateway_attachment_id,
|
|
82118
82196
|
:tunnel_inside_ip_version,
|
|
82119
|
-
:tunnel_options
|
|
82197
|
+
:tunnel_options,
|
|
82198
|
+
:tunnel_bandwidth)
|
|
82120
82199
|
SENSITIVE = []
|
|
82121
82200
|
include Aws::Structure
|
|
82122
82201
|
end
|
|
@@ -82180,6 +82259,15 @@ module Aws::EC2
|
|
|
82180
82259
|
# Required if `OutsideIpAddressType` is set to `PrivateIpv4`.
|
|
82181
82260
|
# @return [String]
|
|
82182
82261
|
#
|
|
82262
|
+
# @!attribute [rw] tunnel_bandwidth
|
|
82263
|
+
# The desired bandwidth specification for the VPN tunnel, used when
|
|
82264
|
+
# creating or modifying VPN connection options to set the tunnel's
|
|
82265
|
+
# throughput capacity. `standard` supports up to 1.25 Gbps per tunnel,
|
|
82266
|
+
# while `large` supports up to 5 Gbps per tunnel. The default value is
|
|
82267
|
+
# `standard`. Existing VPN connections without a bandwidth setting
|
|
82268
|
+
# will automatically default to `standard`.
|
|
82269
|
+
# @return [String]
|
|
82270
|
+
#
|
|
82183
82271
|
# @!attribute [rw] static_routes_only
|
|
82184
82272
|
# Indicate whether the VPN connection uses static routes only. If you
|
|
82185
82273
|
# are creating a VPN connection for a device that does not support
|
|
@@ -82201,6 +82289,7 @@ module Aws::EC2
|
|
|
82201
82289
|
:remote_ipv_6_network_cidr,
|
|
82202
82290
|
:outside_ip_address_type,
|
|
82203
82291
|
:transport_transit_gateway_attachment_id,
|
|
82292
|
+
:tunnel_bandwidth,
|
|
82204
82293
|
:static_routes_only)
|
|
82205
82294
|
SENSITIVE = []
|
|
82206
82295
|
include Aws::Structure
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -4601,6 +4601,7 @@ module Aws
|
|
|
4601
4601
|
remote_ipv_6_network_cidr: ::String?,
|
|
4602
4602
|
outside_ip_address_type: ::String?,
|
|
4603
4603
|
transport_transit_gateway_attachment_id: ::String?,
|
|
4604
|
+
tunnel_bandwidth: ("standard" | "large")?,
|
|
4604
4605
|
static_routes_only: bool?
|
|
4605
4606
|
}
|
|
4606
4607
|
) -> _CreateVpnConnectionResponseSuccess
|
|
@@ -10186,6 +10187,17 @@ module Aws
|
|
|
10186
10187
|
) -> _GetHostReservationPurchasePreviewResponseSuccess
|
|
10187
10188
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetHostReservationPurchasePreviewResponseSuccess
|
|
10188
10189
|
|
|
10190
|
+
interface _GetImageAncestryResponseSuccess
|
|
10191
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetImageAncestryResult]
|
|
10192
|
+
def image_ancestry_entries: () -> ::Array[Types::ImageAncestryEntry]
|
|
10193
|
+
end
|
|
10194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#get_image_ancestry-instance_method
|
|
10195
|
+
def get_image_ancestry: (
|
|
10196
|
+
image_id: ::String,
|
|
10197
|
+
?dry_run: bool
|
|
10198
|
+
) -> _GetImageAncestryResponseSuccess
|
|
10199
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetImageAncestryResponseSuccess
|
|
10200
|
+
|
|
10189
10201
|
interface _GetImageBlockPublicAccessStateResponseSuccess
|
|
10190
10202
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetImageBlockPublicAccessStateResult]
|
|
10191
10203
|
def image_block_public_access_state: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -9188,6 +9188,17 @@ module Aws::EC2
|
|
|
9188
9188
|
SENSITIVE: []
|
|
9189
9189
|
end
|
|
9190
9190
|
|
|
9191
|
+
class GetImageAncestryRequest
|
|
9192
|
+
attr_accessor image_id: ::String
|
|
9193
|
+
attr_accessor dry_run: bool
|
|
9194
|
+
SENSITIVE: []
|
|
9195
|
+
end
|
|
9196
|
+
|
|
9197
|
+
class GetImageAncestryResult
|
|
9198
|
+
attr_accessor image_ancestry_entries: ::Array[Types::ImageAncestryEntry]
|
|
9199
|
+
SENSITIVE: []
|
|
9200
|
+
end
|
|
9201
|
+
|
|
9191
9202
|
class GetImageBlockPublicAccessStateRequest
|
|
9192
9203
|
attr_accessor dry_run: bool
|
|
9193
9204
|
SENSITIVE: []
|
|
@@ -10018,6 +10029,15 @@ module Aws::EC2
|
|
|
10018
10029
|
SENSITIVE: []
|
|
10019
10030
|
end
|
|
10020
10031
|
|
|
10032
|
+
class ImageAncestryEntry
|
|
10033
|
+
attr_accessor creation_date: ::Time
|
|
10034
|
+
attr_accessor image_id: ::String
|
|
10035
|
+
attr_accessor image_owner_alias: ::String
|
|
10036
|
+
attr_accessor source_image_id: ::String
|
|
10037
|
+
attr_accessor source_image_region: ::String
|
|
10038
|
+
SENSITIVE: []
|
|
10039
|
+
end
|
|
10040
|
+
|
|
10021
10041
|
class ImageAttribute
|
|
10022
10042
|
attr_accessor description: Types::AttributeValue
|
|
10023
10043
|
attr_accessor kernel_id: Types::AttributeValue
|
|
@@ -17718,6 +17738,7 @@ module Aws::EC2
|
|
|
17718
17738
|
attr_accessor transport_transit_gateway_attachment_id: ::String
|
|
17719
17739
|
attr_accessor tunnel_inside_ip_version: ("ipv4" | "ipv6")
|
|
17720
17740
|
attr_accessor tunnel_options: ::Array[Types::TunnelOption]
|
|
17741
|
+
attr_accessor tunnel_bandwidth: ("standard" | "large")
|
|
17721
17742
|
SENSITIVE: []
|
|
17722
17743
|
end
|
|
17723
17744
|
|
|
@@ -17731,6 +17752,7 @@ module Aws::EC2
|
|
|
17731
17752
|
attr_accessor remote_ipv_6_network_cidr: ::String
|
|
17732
17753
|
attr_accessor outside_ip_address_type: ::String
|
|
17733
17754
|
attr_accessor transport_transit_gateway_attachment_id: ::String
|
|
17755
|
+
attr_accessor tunnel_bandwidth: ("standard" | "large")
|
|
17734
17756
|
attr_accessor static_routes_only: bool
|
|
17735
17757
|
SENSITIVE: []
|
|
17736
17758
|
end
|