aws-sdk-ec2 1.130.0 → 1.131.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +50 -1
- data/lib/aws-sdk-ec2/client_api.rb +8 -0
- data/lib/aws-sdk-ec2/types.rb +64 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46a96716f46603b98fc964ad7c44fed247b07f33
|
|
4
|
+
data.tar.gz: c3669ad6f64f8d27182dbfaa90f76f8b0a081467
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43c8c7d6a573c20518c2afaf7e0ca909c66a123e0f323f96660ca3bc404e15d50a91276600489feee76c2d82e2efc5830e7594be50414145564d2b76b60643d3
|
|
7
|
+
data.tar.gz: 41aee12a7c91e995676ad46bcaf1c9b732eddf8679b83356ba9ec607f0b29e1080b4983417c6840ac6ff1d16ebd5a513a5572e153c0077a8d7e9e02313c6095b
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -4252,6 +4252,9 @@ module Aws::EC2
|
|
|
4252
4252
|
# resp.egress_only_internet_gateway.attachments[0].state #=> String, one of "attaching", "attached", "detaching", "detached"
|
|
4253
4253
|
# resp.egress_only_internet_gateway.attachments[0].vpc_id #=> String
|
|
4254
4254
|
# resp.egress_only_internet_gateway.egress_only_internet_gateway_id #=> String
|
|
4255
|
+
# resp.egress_only_internet_gateway.tags #=> Array
|
|
4256
|
+
# resp.egress_only_internet_gateway.tags[0].key #=> String
|
|
4257
|
+
# resp.egress_only_internet_gateway.tags[0].value #=> String
|
|
4255
4258
|
#
|
|
4256
4259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateEgressOnlyInternetGateway AWS API Documentation
|
|
4257
4260
|
#
|
|
@@ -5705,6 +5708,9 @@ module Aws::EC2
|
|
|
5705
5708
|
# resp.local_gateway_route_table_vpc_association.local_gateway_id #=> String
|
|
5706
5709
|
# resp.local_gateway_route_table_vpc_association.vpc_id #=> String
|
|
5707
5710
|
# resp.local_gateway_route_table_vpc_association.state #=> String
|
|
5711
|
+
# resp.local_gateway_route_table_vpc_association.tags #=> Array
|
|
5712
|
+
# resp.local_gateway_route_table_vpc_association.tags[0].key #=> String
|
|
5713
|
+
# resp.local_gateway_route_table_vpc_association.tags[0].value #=> String
|
|
5708
5714
|
#
|
|
5709
5715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteTableVpcAssociation AWS API Documentation
|
|
5710
5716
|
#
|
|
@@ -9937,6 +9943,9 @@ module Aws::EC2
|
|
|
9937
9943
|
# resp.local_gateway_route_table_vpc_association.local_gateway_id #=> String
|
|
9938
9944
|
# resp.local_gateway_route_table_vpc_association.vpc_id #=> String
|
|
9939
9945
|
# resp.local_gateway_route_table_vpc_association.state #=> String
|
|
9946
|
+
# resp.local_gateway_route_table_vpc_association.tags #=> Array
|
|
9947
|
+
# resp.local_gateway_route_table_vpc_association.tags[0].key #=> String
|
|
9948
|
+
# resp.local_gateway_route_table_vpc_association.tags[0].value #=> String
|
|
9940
9949
|
#
|
|
9941
9950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteTableVpcAssociation AWS API Documentation
|
|
9942
9951
|
#
|
|
@@ -13171,6 +13180,19 @@ module Aws::EC2
|
|
|
13171
13180
|
# @option params [String] :next_token
|
|
13172
13181
|
# The token for the next page of results.
|
|
13173
13182
|
#
|
|
13183
|
+
# @option params [Array<Types::Filter>] :filters
|
|
13184
|
+
# One or more filters.
|
|
13185
|
+
#
|
|
13186
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
|
13187
|
+
# the resource. Use the tag key in the filter name and the tag value
|
|
13188
|
+
# as the filter value. For example, to find all resources that have a
|
|
13189
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
|
13190
|
+
# for the filter name and `TeamA` for the filter value.
|
|
13191
|
+
#
|
|
13192
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
13193
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
13194
|
+
# regardless of the tag value.
|
|
13195
|
+
#
|
|
13174
13196
|
# @return [Types::DescribeEgressOnlyInternetGatewaysResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13175
13197
|
#
|
|
13176
13198
|
# * {Types::DescribeEgressOnlyInternetGatewaysResult#egress_only_internet_gateways #egress_only_internet_gateways} => Array<Types::EgressOnlyInternetGateway>
|
|
@@ -13183,6 +13205,12 @@ module Aws::EC2
|
|
|
13183
13205
|
# egress_only_internet_gateway_ids: ["EgressOnlyInternetGatewayId"],
|
|
13184
13206
|
# max_results: 1,
|
|
13185
13207
|
# next_token: "String",
|
|
13208
|
+
# filters: [
|
|
13209
|
+
# {
|
|
13210
|
+
# name: "String",
|
|
13211
|
+
# values: ["String"],
|
|
13212
|
+
# },
|
|
13213
|
+
# ],
|
|
13186
13214
|
# })
|
|
13187
13215
|
#
|
|
13188
13216
|
# @example Response structure
|
|
@@ -13192,6 +13220,9 @@ module Aws::EC2
|
|
|
13192
13220
|
# resp.egress_only_internet_gateways[0].attachments[0].state #=> String, one of "attaching", "attached", "detaching", "detached"
|
|
13193
13221
|
# resp.egress_only_internet_gateways[0].attachments[0].vpc_id #=> String
|
|
13194
13222
|
# resp.egress_only_internet_gateways[0].egress_only_internet_gateway_id #=> String
|
|
13223
|
+
# resp.egress_only_internet_gateways[0].tags #=> Array
|
|
13224
|
+
# resp.egress_only_internet_gateways[0].tags[0].key #=> String
|
|
13225
|
+
# resp.egress_only_internet_gateways[0].tags[0].value #=> String
|
|
13195
13226
|
# resp.next_token #=> String
|
|
13196
13227
|
#
|
|
13197
13228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGateways AWS API Documentation
|
|
@@ -16872,6 +16903,9 @@ module Aws::EC2
|
|
|
16872
16903
|
# resp.local_gateway_route_table_virtual_interface_group_associations[0].local_gateway_id #=> String
|
|
16873
16904
|
# resp.local_gateway_route_table_virtual_interface_group_associations[0].local_gateway_route_table_id #=> String
|
|
16874
16905
|
# resp.local_gateway_route_table_virtual_interface_group_associations[0].state #=> String
|
|
16906
|
+
# resp.local_gateway_route_table_virtual_interface_group_associations[0].tags #=> Array
|
|
16907
|
+
# resp.local_gateway_route_table_virtual_interface_group_associations[0].tags[0].key #=> String
|
|
16908
|
+
# resp.local_gateway_route_table_virtual_interface_group_associations[0].tags[0].value #=> String
|
|
16875
16909
|
# resp.next_token #=> String
|
|
16876
16910
|
#
|
|
16877
16911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations AWS API Documentation
|
|
@@ -16934,6 +16968,9 @@ module Aws::EC2
|
|
|
16934
16968
|
# resp.local_gateway_route_table_vpc_associations[0].local_gateway_id #=> String
|
|
16935
16969
|
# resp.local_gateway_route_table_vpc_associations[0].vpc_id #=> String
|
|
16936
16970
|
# resp.local_gateway_route_table_vpc_associations[0].state #=> String
|
|
16971
|
+
# resp.local_gateway_route_table_vpc_associations[0].tags #=> Array
|
|
16972
|
+
# resp.local_gateway_route_table_vpc_associations[0].tags[0].key #=> String
|
|
16973
|
+
# resp.local_gateway_route_table_vpc_associations[0].tags[0].value #=> String
|
|
16937
16974
|
# resp.next_token #=> String
|
|
16938
16975
|
#
|
|
16939
16976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayRouteTableVpcAssociations AWS API Documentation
|
|
@@ -16996,6 +17033,9 @@ module Aws::EC2
|
|
|
16996
17033
|
# resp.local_gateway_route_tables[0].local_gateway_id #=> String
|
|
16997
17034
|
# resp.local_gateway_route_tables[0].outpost_arn #=> String
|
|
16998
17035
|
# resp.local_gateway_route_tables[0].state #=> String
|
|
17036
|
+
# resp.local_gateway_route_tables[0].tags #=> Array
|
|
17037
|
+
# resp.local_gateway_route_tables[0].tags[0].key #=> String
|
|
17038
|
+
# resp.local_gateway_route_tables[0].tags[0].value #=> String
|
|
16999
17039
|
# resp.next_token #=> String
|
|
17000
17040
|
#
|
|
17001
17041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayRouteTables AWS API Documentation
|
|
@@ -17056,6 +17096,9 @@ module Aws::EC2
|
|
|
17056
17096
|
# resp.local_gateway_virtual_interface_groups[0].local_gateway_virtual_interface_ids #=> Array
|
|
17057
17097
|
# resp.local_gateway_virtual_interface_groups[0].local_gateway_virtual_interface_ids[0] #=> String
|
|
17058
17098
|
# resp.local_gateway_virtual_interface_groups[0].local_gateway_id #=> String
|
|
17099
|
+
# resp.local_gateway_virtual_interface_groups[0].tags #=> Array
|
|
17100
|
+
# resp.local_gateway_virtual_interface_groups[0].tags[0].key #=> String
|
|
17101
|
+
# resp.local_gateway_virtual_interface_groups[0].tags[0].value #=> String
|
|
17059
17102
|
# resp.next_token #=> String
|
|
17060
17103
|
#
|
|
17061
17104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayVirtualInterfaceGroups AWS API Documentation
|
|
@@ -17119,6 +17162,9 @@ module Aws::EC2
|
|
|
17119
17162
|
# resp.local_gateway_virtual_interfaces[0].peer_address #=> String
|
|
17120
17163
|
# resp.local_gateway_virtual_interfaces[0].local_bgp_asn #=> Integer
|
|
17121
17164
|
# resp.local_gateway_virtual_interfaces[0].peer_bgp_asn #=> Integer
|
|
17165
|
+
# resp.local_gateway_virtual_interfaces[0].tags #=> Array
|
|
17166
|
+
# resp.local_gateway_virtual_interfaces[0].tags[0].key #=> String
|
|
17167
|
+
# resp.local_gateway_virtual_interfaces[0].tags[0].value #=> String
|
|
17122
17168
|
# resp.next_token #=> String
|
|
17123
17169
|
#
|
|
17124
17170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayVirtualInterfaces AWS API Documentation
|
|
@@ -17180,6 +17226,9 @@ module Aws::EC2
|
|
|
17180
17226
|
# resp.local_gateways[0].outpost_arn #=> String
|
|
17181
17227
|
# resp.local_gateways[0].owner_id #=> String
|
|
17182
17228
|
# resp.local_gateways[0].state #=> String
|
|
17229
|
+
# resp.local_gateways[0].tags #=> Array
|
|
17230
|
+
# resp.local_gateways[0].tags[0].key #=> String
|
|
17231
|
+
# resp.local_gateways[0].tags[0].value #=> String
|
|
17183
17232
|
# resp.next_token #=> String
|
|
17184
17233
|
#
|
|
17185
17234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGateways AWS API Documentation
|
|
@@ -35584,7 +35633,7 @@ module Aws::EC2
|
|
|
35584
35633
|
params: params,
|
|
35585
35634
|
config: config)
|
|
35586
35635
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
35587
|
-
context[:gem_version] = '1.
|
|
35636
|
+
context[:gem_version] = '1.131.0'
|
|
35588
35637
|
Seahorse::Client::Request.new(handlers, context)
|
|
35589
35638
|
end
|
|
35590
35639
|
|
|
@@ -3811,6 +3811,7 @@ module Aws::EC2
|
|
|
3811
3811
|
DescribeEgressOnlyInternetGatewaysRequest.add_member(:egress_only_internet_gateway_ids, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayIdList, location_name: "EgressOnlyInternetGatewayId"))
|
|
3812
3812
|
DescribeEgressOnlyInternetGatewaysRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeEgressOnlyInternetGatewaysMaxResults, location_name: "MaxResults"))
|
|
3813
3813
|
DescribeEgressOnlyInternetGatewaysRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
3814
|
+
DescribeEgressOnlyInternetGatewaysRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
|
3814
3815
|
DescribeEgressOnlyInternetGatewaysRequest.struct_class = Types::DescribeEgressOnlyInternetGatewaysRequest
|
|
3815
3816
|
|
|
3816
3817
|
DescribeEgressOnlyInternetGatewaysResult.add_member(:egress_only_internet_gateways, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayList, location_name: "egressOnlyInternetGatewaySet"))
|
|
@@ -5081,6 +5082,7 @@ module Aws::EC2
|
|
|
5081
5082
|
|
|
5082
5083
|
EgressOnlyInternetGateway.add_member(:attachments, Shapes::ShapeRef.new(shape: InternetGatewayAttachmentList, location_name: "attachmentSet"))
|
|
5083
5084
|
EgressOnlyInternetGateway.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
|
|
5085
|
+
EgressOnlyInternetGateway.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
5084
5086
|
EgressOnlyInternetGateway.struct_class = Types::EgressOnlyInternetGateway
|
|
5085
5087
|
|
|
5086
5088
|
EgressOnlyInternetGatewayIdList.member = Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "item")
|
|
@@ -6637,6 +6639,7 @@ module Aws::EC2
|
|
|
6637
6639
|
LocalGateway.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
|
6638
6640
|
LocalGateway.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
6639
6641
|
LocalGateway.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
|
6642
|
+
LocalGateway.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6640
6643
|
LocalGateway.struct_class = Types::LocalGateway
|
|
6641
6644
|
|
|
6642
6645
|
LocalGatewayIdSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
|
@@ -6654,6 +6657,7 @@ module Aws::EC2
|
|
|
6654
6657
|
LocalGatewayRouteTable.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayId"))
|
|
6655
6658
|
LocalGatewayRouteTable.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
|
6656
6659
|
LocalGatewayRouteTable.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
|
6660
|
+
LocalGatewayRouteTable.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6657
6661
|
LocalGatewayRouteTable.struct_class = Types::LocalGatewayRouteTable
|
|
6658
6662
|
|
|
6659
6663
|
LocalGatewayRouteTableIdSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
|
@@ -6665,6 +6669,7 @@ module Aws::EC2
|
|
|
6665
6669
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayId"))
|
|
6666
6670
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayRouteTableId"))
|
|
6667
6671
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
|
6672
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociation.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6668
6673
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation.struct_class = Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation
|
|
6669
6674
|
|
|
6670
6675
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
|
@@ -6676,6 +6681,7 @@ module Aws::EC2
|
|
|
6676
6681
|
LocalGatewayRouteTableVpcAssociation.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayId"))
|
|
6677
6682
|
LocalGatewayRouteTableVpcAssociation.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
|
|
6678
6683
|
LocalGatewayRouteTableVpcAssociation.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
|
6684
|
+
LocalGatewayRouteTableVpcAssociation.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6679
6685
|
LocalGatewayRouteTableVpcAssociation.struct_class = Types::LocalGatewayRouteTableVpcAssociation
|
|
6680
6686
|
|
|
6681
6687
|
LocalGatewayRouteTableVpcAssociationIdSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
|
@@ -6691,11 +6697,13 @@ module Aws::EC2
|
|
|
6691
6697
|
LocalGatewayVirtualInterface.add_member(:peer_address, Shapes::ShapeRef.new(shape: String, location_name: "peerAddress"))
|
|
6692
6698
|
LocalGatewayVirtualInterface.add_member(:local_bgp_asn, Shapes::ShapeRef.new(shape: Integer, location_name: "localBgpAsn"))
|
|
6693
6699
|
LocalGatewayVirtualInterface.add_member(:peer_bgp_asn, Shapes::ShapeRef.new(shape: Integer, location_name: "peerBgpAsn"))
|
|
6700
|
+
LocalGatewayVirtualInterface.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6694
6701
|
LocalGatewayVirtualInterface.struct_class = Types::LocalGatewayVirtualInterface
|
|
6695
6702
|
|
|
6696
6703
|
LocalGatewayVirtualInterfaceGroup.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayVirtualInterfaceGroupId"))
|
|
6697
6704
|
LocalGatewayVirtualInterfaceGroup.add_member(:local_gateway_virtual_interface_ids, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceIdSet, location_name: "localGatewayVirtualInterfaceIdSet"))
|
|
6698
6705
|
LocalGatewayVirtualInterfaceGroup.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "localGatewayId"))
|
|
6706
|
+
LocalGatewayVirtualInterfaceGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
6699
6707
|
LocalGatewayVirtualInterfaceGroup.struct_class = Types::LocalGatewayVirtualInterfaceGroup
|
|
6700
6708
|
|
|
6701
6709
|
LocalGatewayVirtualInterfaceGroupIdSet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -12271,6 +12271,12 @@ module Aws::EC2
|
|
|
12271
12271
|
# egress_only_internet_gateway_ids: ["EgressOnlyInternetGatewayId"],
|
|
12272
12272
|
# max_results: 1,
|
|
12273
12273
|
# next_token: "String",
|
|
12274
|
+
# filters: [
|
|
12275
|
+
# {
|
|
12276
|
+
# name: "String",
|
|
12277
|
+
# values: ["String"],
|
|
12278
|
+
# },
|
|
12279
|
+
# ],
|
|
12274
12280
|
# }
|
|
12275
12281
|
#
|
|
12276
12282
|
# @!attribute [rw] dry_run
|
|
@@ -12294,13 +12300,28 @@ module Aws::EC2
|
|
|
12294
12300
|
# The token for the next page of results.
|
|
12295
12301
|
# @return [String]
|
|
12296
12302
|
#
|
|
12303
|
+
# @!attribute [rw] filters
|
|
12304
|
+
# One or more filters.
|
|
12305
|
+
#
|
|
12306
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned
|
|
12307
|
+
# to the resource. Use the tag key in the filter name and the tag
|
|
12308
|
+
# value as the filter value. For example, to find all resources that
|
|
12309
|
+
# have a tag with the key `Owner` and the value `TeamA`, specify
|
|
12310
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
|
12311
|
+
#
|
|
12312
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
12313
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
12314
|
+
# regardless of the tag value.
|
|
12315
|
+
# @return [Array<Types::Filter>]
|
|
12316
|
+
#
|
|
12297
12317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGatewaysRequest AWS API Documentation
|
|
12298
12318
|
#
|
|
12299
12319
|
class DescribeEgressOnlyInternetGatewaysRequest < Struct.new(
|
|
12300
12320
|
:dry_run,
|
|
12301
12321
|
:egress_only_internet_gateway_ids,
|
|
12302
12322
|
:max_results,
|
|
12303
|
-
:next_token
|
|
12323
|
+
:next_token,
|
|
12324
|
+
:filters)
|
|
12304
12325
|
include Aws::Structure
|
|
12305
12326
|
end
|
|
12306
12327
|
|
|
@@ -22180,11 +22201,16 @@ module Aws::EC2
|
|
|
22180
22201
|
# The ID of the egress-only internet gateway.
|
|
22181
22202
|
# @return [String]
|
|
22182
22203
|
#
|
|
22204
|
+
# @!attribute [rw] tags
|
|
22205
|
+
# The tags assigned to the egress-only internet gateway.
|
|
22206
|
+
# @return [Array<Types::Tag>]
|
|
22207
|
+
#
|
|
22183
22208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EgressOnlyInternetGateway AWS API Documentation
|
|
22184
22209
|
#
|
|
22185
22210
|
class EgressOnlyInternetGateway < Struct.new(
|
|
22186
22211
|
:attachments,
|
|
22187
|
-
:egress_only_internet_gateway_id
|
|
22212
|
+
:egress_only_internet_gateway_id,
|
|
22213
|
+
:tags)
|
|
22188
22214
|
include Aws::Structure
|
|
22189
22215
|
end
|
|
22190
22216
|
|
|
@@ -30425,13 +30451,18 @@ module Aws::EC2
|
|
|
30425
30451
|
# The state of the local gateway.
|
|
30426
30452
|
# @return [String]
|
|
30427
30453
|
#
|
|
30454
|
+
# @!attribute [rw] tags
|
|
30455
|
+
# The tags assigned to the local gateway.
|
|
30456
|
+
# @return [Array<Types::Tag>]
|
|
30457
|
+
#
|
|
30428
30458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGateway AWS API Documentation
|
|
30429
30459
|
#
|
|
30430
30460
|
class LocalGateway < Struct.new(
|
|
30431
30461
|
:local_gateway_id,
|
|
30432
30462
|
:outpost_arn,
|
|
30433
30463
|
:owner_id,
|
|
30434
|
-
:state
|
|
30464
|
+
:state,
|
|
30465
|
+
:tags)
|
|
30435
30466
|
include Aws::Structure
|
|
30436
30467
|
end
|
|
30437
30468
|
|
|
@@ -30486,13 +30517,18 @@ module Aws::EC2
|
|
|
30486
30517
|
# The state of the local gateway route table.
|
|
30487
30518
|
# @return [String]
|
|
30488
30519
|
#
|
|
30520
|
+
# @!attribute [rw] tags
|
|
30521
|
+
# The tags assigned to the local gateway route table.
|
|
30522
|
+
# @return [Array<Types::Tag>]
|
|
30523
|
+
#
|
|
30489
30524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTable AWS API Documentation
|
|
30490
30525
|
#
|
|
30491
30526
|
class LocalGatewayRouteTable < Struct.new(
|
|
30492
30527
|
:local_gateway_route_table_id,
|
|
30493
30528
|
:local_gateway_id,
|
|
30494
30529
|
:outpost_arn,
|
|
30495
|
-
:state
|
|
30530
|
+
:state,
|
|
30531
|
+
:tags)
|
|
30496
30532
|
include Aws::Structure
|
|
30497
30533
|
end
|
|
30498
30534
|
|
|
@@ -30519,6 +30555,10 @@ module Aws::EC2
|
|
|
30519
30555
|
# The state of the association.
|
|
30520
30556
|
# @return [String]
|
|
30521
30557
|
#
|
|
30558
|
+
# @!attribute [rw] tags
|
|
30559
|
+
# The tags assigned to the association.
|
|
30560
|
+
# @return [Array<Types::Tag>]
|
|
30561
|
+
#
|
|
30522
30562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTableVirtualInterfaceGroupAssociation AWS API Documentation
|
|
30523
30563
|
#
|
|
30524
30564
|
class LocalGatewayRouteTableVirtualInterfaceGroupAssociation < Struct.new(
|
|
@@ -30526,7 +30566,8 @@ module Aws::EC2
|
|
|
30526
30566
|
:local_gateway_virtual_interface_group_id,
|
|
30527
30567
|
:local_gateway_id,
|
|
30528
30568
|
:local_gateway_route_table_id,
|
|
30529
|
-
:state
|
|
30569
|
+
:state,
|
|
30570
|
+
:tags)
|
|
30530
30571
|
include Aws::Structure
|
|
30531
30572
|
end
|
|
30532
30573
|
|
|
@@ -30553,6 +30594,10 @@ module Aws::EC2
|
|
|
30553
30594
|
# The state of the association.
|
|
30554
30595
|
# @return [String]
|
|
30555
30596
|
#
|
|
30597
|
+
# @!attribute [rw] tags
|
|
30598
|
+
# The tags assigned to the association.
|
|
30599
|
+
# @return [Array<Types::Tag>]
|
|
30600
|
+
#
|
|
30556
30601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTableVpcAssociation AWS API Documentation
|
|
30557
30602
|
#
|
|
30558
30603
|
class LocalGatewayRouteTableVpcAssociation < Struct.new(
|
|
@@ -30560,7 +30605,8 @@ module Aws::EC2
|
|
|
30560
30605
|
:local_gateway_route_table_id,
|
|
30561
30606
|
:local_gateway_id,
|
|
30562
30607
|
:vpc_id,
|
|
30563
|
-
:state
|
|
30608
|
+
:state,
|
|
30609
|
+
:tags)
|
|
30564
30610
|
include Aws::Structure
|
|
30565
30611
|
end
|
|
30566
30612
|
|
|
@@ -30595,6 +30641,10 @@ module Aws::EC2
|
|
|
30595
30641
|
# The peer BGP ASN.
|
|
30596
30642
|
# @return [Integer]
|
|
30597
30643
|
#
|
|
30644
|
+
# @!attribute [rw] tags
|
|
30645
|
+
# The tags assigned to the virtual interface.
|
|
30646
|
+
# @return [Array<Types::Tag>]
|
|
30647
|
+
#
|
|
30598
30648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayVirtualInterface AWS API Documentation
|
|
30599
30649
|
#
|
|
30600
30650
|
class LocalGatewayVirtualInterface < Struct.new(
|
|
@@ -30604,7 +30654,8 @@ module Aws::EC2
|
|
|
30604
30654
|
:local_address,
|
|
30605
30655
|
:peer_address,
|
|
30606
30656
|
:local_bgp_asn,
|
|
30607
|
-
:peer_bgp_asn
|
|
30657
|
+
:peer_bgp_asn,
|
|
30658
|
+
:tags)
|
|
30608
30659
|
include Aws::Structure
|
|
30609
30660
|
end
|
|
30610
30661
|
|
|
@@ -30622,12 +30673,17 @@ module Aws::EC2
|
|
|
30622
30673
|
# The ID of the local gateway.
|
|
30623
30674
|
# @return [String]
|
|
30624
30675
|
#
|
|
30676
|
+
# @!attribute [rw] tags
|
|
30677
|
+
# The tags assigned to the virtual interface group.
|
|
30678
|
+
# @return [Array<Types::Tag>]
|
|
30679
|
+
#
|
|
30625
30680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayVirtualInterfaceGroup AWS API Documentation
|
|
30626
30681
|
#
|
|
30627
30682
|
class LocalGatewayVirtualInterfaceGroup < Struct.new(
|
|
30628
30683
|
:local_gateway_virtual_interface_group_id,
|
|
30629
30684
|
:local_gateway_virtual_interface_ids,
|
|
30630
|
-
:local_gateway_id
|
|
30685
|
+
:local_gateway_id,
|
|
30686
|
+
:tags)
|
|
30631
30687
|
include Aws::Structure
|
|
30632
30688
|
end
|
|
30633
30689
|
|
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.131.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: 2020-01-
|
|
11
|
+
date: 2020-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|