aws-sdk-ec2 1.335.0 → 1.336.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 +817 -9
- data/lib/aws-sdk-ec2/client_api.rb +7 -0
- data/lib/aws-sdk-ec2/resource.rb +34 -0
- data/lib/aws-sdk-ec2/types.rb +73 -12
- data/lib/aws-sdk-ec2/vpc.rb +34 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
@@ -321,6 +321,8 @@ module Aws::EC2
|
|
321
321
|
CoipPoolIdSet = Shapes::ListShape.new(name: 'CoipPoolIdSet')
|
322
322
|
CoipPoolMaxResults = Shapes::IntegerShape.new(name: 'CoipPoolMaxResults')
|
323
323
|
CoipPoolSet = Shapes::ListShape.new(name: 'CoipPoolSet')
|
324
|
+
ComponentAccount = Shapes::StringShape.new(name: 'ComponentAccount')
|
325
|
+
ComponentRegion = Shapes::StringShape.new(name: 'ComponentRegion')
|
324
326
|
ConfirmProductInstanceRequest = Shapes::StructureShape.new(name: 'ConfirmProductInstanceRequest')
|
325
327
|
ConfirmProductInstanceResult = Shapes::StructureShape.new(name: 'ConfirmProductInstanceResult')
|
326
328
|
ConnectionLogOptions = Shapes::StructureShape.new(name: 'ConnectionLogOptions')
|
@@ -3041,6 +3043,7 @@ module Aws::EC2
|
|
3041
3043
|
AnalysisRouteTableRoute.add_member(:origin, Shapes::ShapeRef.new(shape: String, location_name: "origin"))
|
3042
3044
|
AnalysisRouteTableRoute.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "transitGatewayId"))
|
3043
3045
|
AnalysisRouteTableRoute.add_member(:vpc_peering_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcPeeringConnectionId"))
|
3046
|
+
AnalysisRouteTableRoute.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
3044
3047
|
AnalysisRouteTableRoute.struct_class = Types::AnalysisRouteTableRoute
|
3045
3048
|
|
3046
3049
|
AnalysisSecurityGroupRule.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "cidr"))
|
@@ -7464,6 +7467,8 @@ module Aws::EC2
|
|
7464
7467
|
Explanation.add_member(:transit_gateway_route_table, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGatewayRouteTable"))
|
7465
7468
|
Explanation.add_member(:transit_gateway_route_table_route, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableRoute, location_name: "transitGatewayRouteTableRoute"))
|
7466
7469
|
Explanation.add_member(:transit_gateway_attachment, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGatewayAttachment"))
|
7470
|
+
Explanation.add_member(:component_account, Shapes::ShapeRef.new(shape: ComponentAccount, location_name: "componentAccount"))
|
7471
|
+
Explanation.add_member(:component_region, Shapes::ShapeRef.new(shape: ComponentRegion, location_name: "componentRegion"))
|
7467
7472
|
Explanation.struct_class = Types::Explanation
|
7468
7473
|
|
7469
7474
|
ExplanationList.member = Shapes::ShapeRef.new(shape: Explanation, location_name: "item")
|
@@ -10740,6 +10745,8 @@ module Aws::EC2
|
|
10740
10745
|
PathComponent.add_member(:additional_details, Shapes::ShapeRef.new(shape: AdditionalDetailList, location_name: "additionalDetailSet"))
|
10741
10746
|
PathComponent.add_member(:transit_gateway, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "transitGateway"))
|
10742
10747
|
PathComponent.add_member(:transit_gateway_route_table_route, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableRoute, location_name: "transitGatewayRouteTableRoute"))
|
10748
|
+
PathComponent.add_member(:explanations, Shapes::ShapeRef.new(shape: ExplanationList, location_name: "explanationSet"))
|
10749
|
+
PathComponent.add_member(:elastic_load_balancer_listener, Shapes::ShapeRef.new(shape: AnalysisComponent, location_name: "elasticLoadBalancerListener"))
|
10743
10750
|
PathComponent.struct_class = Types::PathComponent
|
10744
10751
|
|
10745
10752
|
PathComponentList.member = Shapes::ShapeRef.new(shape: PathComponent, location_name: "item")
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -3479,10 +3479,22 @@ module Aws::EC2
|
|
3479
3479
|
# to be returned for the subnet. You can also use `cidr` or
|
3480
3480
|
# `cidrBlock` as the filter names.
|
3481
3481
|
#
|
3482
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
3483
|
+
# associated with the subnet.
|
3484
|
+
#
|
3482
3485
|
# * `default-for-az` - Indicates whether this is the default subnet for
|
3483
3486
|
# the Availability Zone (`true` \| `false`). You can also use
|
3484
3487
|
# `defaultForAz` as the filter name.
|
3485
3488
|
#
|
3489
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
3490
|
+
# Amazon-provided DNS Resolver in this subnet should return synthetic
|
3491
|
+
# IPv6 addresses for IPv4-only destinations.
|
3492
|
+
#
|
3493
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
3494
|
+
# local network interfaces in this subnet. For example, `1` indicates
|
3495
|
+
# local network interfaces in this subnet are the secondary network
|
3496
|
+
# interface (eth1).
|
3497
|
+
#
|
3486
3498
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
3487
3499
|
# associated with the subnet.
|
3488
3500
|
#
|
@@ -3495,11 +3507,33 @@ module Aws::EC2
|
|
3495
3507
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
3496
3508
|
# (`true` \| `false`).
|
3497
3509
|
#
|
3510
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
3511
|
+
# interface created in this subnet (including a network interface
|
3512
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
3513
|
+
#
|
3514
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched in
|
3515
|
+
# this subnet receive a public IPv4 address.
|
3516
|
+
#
|
3498
3517
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
3499
3518
|
#
|
3500
3519
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
3501
3520
|
# subnet.
|
3502
3521
|
#
|
3522
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
3523
|
+
# hostname to assign to instances in the subnet at launch. For
|
3524
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
3525
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
3526
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance DNS
|
3527
|
+
# name must be based on the instance ID (resource-name).
|
3528
|
+
#
|
3529
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
3530
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
3531
|
+
# with DNS A records.
|
3532
|
+
#
|
3533
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
3534
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
3535
|
+
# with DNS AAAA records.
|
3536
|
+
#
|
3503
3537
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
3504
3538
|
#
|
3505
3539
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -1496,6 +1496,14 @@ module Aws::EC2
|
|
1496
1496
|
# The ID of a VPC peering connection.
|
1497
1497
|
# @return [String]
|
1498
1498
|
#
|
1499
|
+
# @!attribute [rw] state
|
1500
|
+
# The state. The following are the possible values:
|
1501
|
+
#
|
1502
|
+
# * active
|
1503
|
+
#
|
1504
|
+
# * blackhole
|
1505
|
+
# @return [String]
|
1506
|
+
#
|
1499
1507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AnalysisRouteTableRoute AWS API Documentation
|
1500
1508
|
#
|
1501
1509
|
class AnalysisRouteTableRoute < Struct.new(
|
@@ -1508,7 +1516,8 @@ module Aws::EC2
|
|
1508
1516
|
:network_interface_id,
|
1509
1517
|
:origin,
|
1510
1518
|
:transit_gateway_id,
|
1511
|
-
:vpc_peering_connection_id
|
1519
|
+
:vpc_peering_connection_id,
|
1520
|
+
:state)
|
1512
1521
|
SENSITIVE = []
|
1513
1522
|
include Aws::Structure
|
1514
1523
|
end
|
@@ -24526,10 +24535,10 @@ module Aws::EC2
|
|
24526
24535
|
# @!attribute [rw] filters
|
24527
24536
|
# The filters. The following are the possible values:
|
24528
24537
|
#
|
24529
|
-
# *
|
24530
|
-
# is found.
|
24538
|
+
# * path-found - A Boolean value that indicates whether a feasible
|
24539
|
+
# path is found.
|
24531
24540
|
#
|
24532
|
-
# *
|
24541
|
+
# * status - The status of the analysis (running \| succeeded \|
|
24533
24542
|
# failed).
|
24534
24543
|
# @return [Array<Types::Filter>]
|
24535
24544
|
#
|
@@ -24606,15 +24615,13 @@ module Aws::EC2
|
|
24606
24615
|
# @!attribute [rw] filters
|
24607
24616
|
# The filters. The following are the possible values:
|
24608
24617
|
#
|
24609
|
-
# *
|
24618
|
+
# * destination - The ID of the resource.
|
24610
24619
|
#
|
24611
|
-
# *
|
24620
|
+
# * destination-port - The destination port.
|
24612
24621
|
#
|
24613
|
-
# *
|
24622
|
+
# * protocol - The protocol.
|
24614
24623
|
#
|
24615
|
-
# *
|
24616
|
-
#
|
24617
|
-
# * Source - The ID of the resource.
|
24624
|
+
# * source - The ID of the resource.
|
24618
24625
|
# @return [Array<Types::Filter>]
|
24619
24626
|
#
|
24620
24627
|
# @!attribute [rw] max_results
|
@@ -27633,10 +27640,22 @@ module Aws::EC2
|
|
27633
27640
|
# information to be returned for the subnet. You can also use `cidr`
|
27634
27641
|
# or `cidrBlock` as the filter names.
|
27635
27642
|
#
|
27643
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
27644
|
+
# associated with the subnet.
|
27645
|
+
#
|
27636
27646
|
# * `default-for-az` - Indicates whether this is the default subnet
|
27637
27647
|
# for the Availability Zone (`true` \| `false`). You can also use
|
27638
27648
|
# `defaultForAz` as the filter name.
|
27639
27649
|
#
|
27650
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
27651
|
+
# Amazon-provided DNS Resolver in this subnet should return
|
27652
|
+
# synthetic IPv6 addresses for IPv4-only destinations.
|
27653
|
+
#
|
27654
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
27655
|
+
# local network interfaces in this subnet. For example, `1`
|
27656
|
+
# indicates local network interfaces in this subnet are the
|
27657
|
+
# secondary network interface (eth1).
|
27658
|
+
#
|
27640
27659
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
27641
27660
|
# associated with the subnet.
|
27642
27661
|
#
|
@@ -27649,11 +27668,33 @@ module Aws::EC2
|
|
27649
27668
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
27650
27669
|
# (`true` \| `false`).
|
27651
27670
|
#
|
27671
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
27672
|
+
# interface created in this subnet (including a network interface
|
27673
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
27674
|
+
#
|
27675
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched
|
27676
|
+
# in this subnet receive a public IPv4 address.
|
27677
|
+
#
|
27652
27678
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
27653
27679
|
#
|
27654
27680
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
27655
27681
|
# the subnet.
|
27656
27682
|
#
|
27683
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
27684
|
+
# hostname to assign to instances in the subnet at launch. For
|
27685
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
27686
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
27687
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance
|
27688
|
+
# DNS name must be based on the instance ID (resource-name).
|
27689
|
+
#
|
27690
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
27691
|
+
# - Indicates whether to respond to DNS queries for instance
|
27692
|
+
# hostnames with DNS A records.
|
27693
|
+
#
|
27694
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
27695
|
+
# - Indicates whether to respond to DNS queries for instance
|
27696
|
+
# hostnames with DNS AAAA records.
|
27697
|
+
#
|
27657
27698
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
27658
27699
|
#
|
27659
27700
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
@@ -33878,6 +33919,14 @@ module Aws::EC2
|
|
33878
33919
|
# The transit gateway attachment.
|
33879
33920
|
# @return [Types::AnalysisComponent]
|
33880
33921
|
#
|
33922
|
+
# @!attribute [rw] component_account
|
33923
|
+
# The Amazon Web Services account for the component.
|
33924
|
+
# @return [String]
|
33925
|
+
#
|
33926
|
+
# @!attribute [rw] component_region
|
33927
|
+
# The Region for the component.
|
33928
|
+
# @return [String]
|
33929
|
+
#
|
33881
33930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Explanation AWS API Documentation
|
33882
33931
|
#
|
33883
33932
|
class Explanation < Struct.new(
|
@@ -33929,7 +33978,9 @@ module Aws::EC2
|
|
33929
33978
|
:transit_gateway,
|
33930
33979
|
:transit_gateway_route_table,
|
33931
33980
|
:transit_gateway_route_table_route,
|
33932
|
-
:transit_gateway_attachment
|
33981
|
+
:transit_gateway_attachment,
|
33982
|
+
:component_account,
|
33983
|
+
:component_region)
|
33933
33984
|
SENSITIVE = []
|
33934
33985
|
include Aws::Structure
|
33935
33986
|
end
|
@@ -54405,6 +54456,14 @@ module Aws::EC2
|
|
54405
54456
|
# The route in a transit gateway route table.
|
54406
54457
|
# @return [Types::TransitGatewayRouteTableRoute]
|
54407
54458
|
#
|
54459
|
+
# @!attribute [rw] explanations
|
54460
|
+
# The explanation codes.
|
54461
|
+
# @return [Array<Types::Explanation>]
|
54462
|
+
#
|
54463
|
+
# @!attribute [rw] elastic_load_balancer_listener
|
54464
|
+
# The load balancer listener.
|
54465
|
+
# @return [Types::AnalysisComponent]
|
54466
|
+
#
|
54408
54467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathComponent AWS API Documentation
|
54409
54468
|
#
|
54410
54469
|
class PathComponent < Struct.new(
|
@@ -54422,7 +54481,9 @@ module Aws::EC2
|
|
54422
54481
|
:vpc,
|
54423
54482
|
:additional_details,
|
54424
54483
|
:transit_gateway,
|
54425
|
-
:transit_gateway_route_table_route
|
54484
|
+
:transit_gateway_route_table_route,
|
54485
|
+
:explanations,
|
54486
|
+
:elastic_load_balancer_listener)
|
54426
54487
|
SENSITIVE = []
|
54427
54488
|
include Aws::Structure
|
54428
54489
|
end
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1955,10 +1955,22 @@ module Aws::EC2
|
|
1955
1955
|
# to be returned for the subnet. You can also use `cidr` or
|
1956
1956
|
# `cidrBlock` as the filter names.
|
1957
1957
|
#
|
1958
|
+
# * `customer-owned-ipv4-pool` - The customer-owned IPv4 address pool
|
1959
|
+
# associated with the subnet.
|
1960
|
+
#
|
1958
1961
|
# * `default-for-az` - Indicates whether this is the default subnet for
|
1959
1962
|
# the Availability Zone (`true` \| `false`). You can also use
|
1960
1963
|
# `defaultForAz` as the filter name.
|
1961
1964
|
#
|
1965
|
+
# * `enable-dns64` - Indicates whether DNS queries made to the
|
1966
|
+
# Amazon-provided DNS Resolver in this subnet should return synthetic
|
1967
|
+
# IPv6 addresses for IPv4-only destinations.
|
1968
|
+
#
|
1969
|
+
# * `enable-lni-at-device-index` - Indicates the device position for
|
1970
|
+
# local network interfaces in this subnet. For example, `1` indicates
|
1971
|
+
# local network interfaces in this subnet are the secondary network
|
1972
|
+
# interface (eth1).
|
1973
|
+
#
|
1962
1974
|
# * `ipv6-cidr-block-association.ipv6-cidr-block` - An IPv6 CIDR block
|
1963
1975
|
# associated with the subnet.
|
1964
1976
|
#
|
@@ -1971,11 +1983,33 @@ module Aws::EC2
|
|
1971
1983
|
# * `ipv6-native` - Indicates whether this is an IPv6 only subnet
|
1972
1984
|
# (`true` \| `false`).
|
1973
1985
|
#
|
1986
|
+
# * `map-customer-owned-ip-on-launch` - Indicates whether a network
|
1987
|
+
# interface created in this subnet (including a network interface
|
1988
|
+
# created by RunInstances) receives a customer-owned IPv4 address.
|
1989
|
+
#
|
1990
|
+
# * `map-public-ip-on-launch` - Indicates whether instances launched in
|
1991
|
+
# this subnet receive a public IPv4 address.
|
1992
|
+
#
|
1974
1993
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
1975
1994
|
#
|
1976
1995
|
# * `owner-id` - The ID of the Amazon Web Services account that owns the
|
1977
1996
|
# subnet.
|
1978
1997
|
#
|
1998
|
+
# * `private-dns-name-options-on-launch.hostname-type` - The type of
|
1999
|
+
# hostname to assign to instances in the subnet at launch. For
|
2000
|
+
# IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS
|
2001
|
+
# name can be based on the instance IPv4 address (ip-name) or the
|
2002
|
+
# instance ID (resource-name). For IPv6 only subnets, an instance DNS
|
2003
|
+
# name must be based on the instance ID (resource-name).
|
2004
|
+
#
|
2005
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-a-record`
|
2006
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
2007
|
+
# with DNS A records.
|
2008
|
+
#
|
2009
|
+
# * `private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record`
|
2010
|
+
# - Indicates whether to respond to DNS queries for instance hostnames
|
2011
|
+
# with DNS AAAA records.
|
2012
|
+
#
|
1979
2013
|
# * `state` - The state of the subnet (`pending` \| `available`).
|
1980
2014
|
#
|
1981
2015
|
# * `subnet-arn` - The Amazon Resource Name (ARN) of the subnet.
|
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.336.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: 2022-09-
|
11
|
+
date: 2022-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|