aws-sdk-ec2 1.177.0 → 1.178.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 +30 -1
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/resource.rb +26 -0
- data/lib/aws-sdk-ec2/types.rb +40 -3
- data/lib/aws-sdk-ec2/vpc.rb +26 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e097f1c67cf0635b0de778d237d4da027a650f0886266a0766a4b0a888c3a87c
|
4
|
+
data.tar.gz: 8f9dd7af8b597f6f692566d5a9b01186ddfc13f44523c4a95e82183a3f98414b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57374ffb2f3640adad2fb7915667445a97d69c353752e482d13398dafbd15f801a3e1aff077dcb067d80676cf7f0b3cb6c273a068ae2623a229df4fd57807507
|
7
|
+
data.tar.gz: d919360ed106a579fe114b9f205f7c8b84620d6afda3aadf91eed2cce6ca4e55d97067dc11d186a97f49f80f7e5f8db16da4c19e1741198c5508bb3ac9c0700a
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -7090,6 +7090,9 @@ module Aws::EC2
|
|
7090
7090
|
# @option params [required, String] :vpc_id
|
7091
7091
|
# The ID of the VPC.
|
7092
7092
|
#
|
7093
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
7094
|
+
# The tags to assign to the route table.
|
7095
|
+
#
|
7093
7096
|
# @return [Types::CreateRouteTableResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7094
7097
|
#
|
7095
7098
|
# * {Types::CreateRouteTableResult#route_table #route_table} => Types::RouteTable
|
@@ -7129,6 +7132,17 @@ module Aws::EC2
|
|
7129
7132
|
# resp = client.create_route_table({
|
7130
7133
|
# dry_run: false,
|
7131
7134
|
# vpc_id: "VpcId", # required
|
7135
|
+
# tag_specifications: [
|
7136
|
+
# {
|
7137
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7138
|
+
# tags: [
|
7139
|
+
# {
|
7140
|
+
# key: "String",
|
7141
|
+
# value: "String",
|
7142
|
+
# },
|
7143
|
+
# ],
|
7144
|
+
# },
|
7145
|
+
# ],
|
7132
7146
|
# })
|
7133
7147
|
#
|
7134
7148
|
# @example Response structure
|
@@ -9543,6 +9557,9 @@ module Aws::EC2
|
|
9543
9557
|
#
|
9544
9558
|
# Default: The Region in which you make the request.
|
9545
9559
|
#
|
9560
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
9561
|
+
# The tags to assign to the peering connection.
|
9562
|
+
#
|
9546
9563
|
# @return [Types::CreateVpcPeeringConnectionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9547
9564
|
#
|
9548
9565
|
# * {Types::CreateVpcPeeringConnectionResult#vpc_peering_connection #vpc_peering_connection} => Types::VpcPeeringConnection
|
@@ -9555,6 +9572,17 @@ module Aws::EC2
|
|
9555
9572
|
# peer_vpc_id: "String",
|
9556
9573
|
# vpc_id: "VpcId",
|
9557
9574
|
# peer_region: "String",
|
9575
|
+
# tag_specifications: [
|
9576
|
+
# {
|
9577
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9578
|
+
# tags: [
|
9579
|
+
# {
|
9580
|
+
# key: "String",
|
9581
|
+
# value: "String",
|
9582
|
+
# },
|
9583
|
+
# ],
|
9584
|
+
# },
|
9585
|
+
# ],
|
9558
9586
|
# })
|
9559
9587
|
#
|
9560
9588
|
# @example Response structure
|
@@ -13661,6 +13689,7 @@ module Aws::EC2
|
|
13661
13689
|
# resp.coip_pools[0].tags #=> Array
|
13662
13690
|
# resp.coip_pools[0].tags[0].key #=> String
|
13663
13691
|
# resp.coip_pools[0].tags[0].value #=> String
|
13692
|
+
# resp.coip_pools[0].pool_arn #=> String
|
13664
13693
|
# resp.next_token #=> String
|
13665
13694
|
#
|
13666
13695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCoipPools AWS API Documentation
|
@@ -37791,7 +37820,7 @@ module Aws::EC2
|
|
37791
37820
|
params: params,
|
37792
37821
|
config: config)
|
37793
37822
|
context[:gem_name] = 'aws-sdk-ec2'
|
37794
|
-
context[:gem_version] = '1.
|
37823
|
+
context[:gem_version] = '1.178.0'
|
37795
37824
|
Seahorse::Client::Request.new(handlers, context)
|
37796
37825
|
end
|
37797
37826
|
|
@@ -2746,6 +2746,7 @@ module Aws::EC2
|
|
2746
2746
|
CoipPool.add_member(:pool_cidrs, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "poolCidrSet"))
|
2747
2747
|
CoipPool.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, location_name: "localGatewayRouteTableId"))
|
2748
2748
|
CoipPool.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
2749
|
+
CoipPool.add_member(:pool_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "poolArn"))
|
2749
2750
|
CoipPool.struct_class = Types::CoipPool
|
2750
2751
|
|
2751
2752
|
CoipPoolIdSet.member = Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "item")
|
@@ -3190,6 +3191,7 @@ module Aws::EC2
|
|
3190
3191
|
|
3191
3192
|
CreateRouteTableRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3192
3193
|
CreateRouteTableRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
|
3194
|
+
CreateRouteTableRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
3193
3195
|
CreateRouteTableRequest.struct_class = Types::CreateRouteTableRequest
|
3194
3196
|
|
3195
3197
|
CreateRouteTableResult.add_member(:route_table, Shapes::ShapeRef.new(shape: RouteTable, location_name: "routeTable"))
|
@@ -3434,6 +3436,7 @@ module Aws::EC2
|
|
3434
3436
|
CreateVpcPeeringConnectionRequest.add_member(:peer_vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "peerVpcId"))
|
3435
3437
|
CreateVpcPeeringConnectionRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
3436
3438
|
CreateVpcPeeringConnectionRequest.add_member(:peer_region, Shapes::ShapeRef.new(shape: String, location_name: "PeerRegion"))
|
3439
|
+
CreateVpcPeeringConnectionRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
3437
3440
|
CreateVpcPeeringConnectionRequest.struct_class = Types::CreateVpcPeeringConnectionRequest
|
3438
3441
|
|
3439
3442
|
CreateVpcPeeringConnectionResult.add_member(:vpc_peering_connection, Shapes::ShapeRef.new(shape: VpcPeeringConnection, location_name: "vpcPeeringConnection"))
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -837,6 +837,17 @@ module Aws::EC2
|
|
837
837
|
# routetable = ec2.create_route_table({
|
838
838
|
# dry_run: false,
|
839
839
|
# vpc_id: "VpcId", # required
|
840
|
+
# tag_specifications: [
|
841
|
+
# {
|
842
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
843
|
+
# tags: [
|
844
|
+
# {
|
845
|
+
# key: "String",
|
846
|
+
# value: "String",
|
847
|
+
# },
|
848
|
+
# ],
|
849
|
+
# },
|
850
|
+
# ],
|
840
851
|
# })
|
841
852
|
# @param [Hash] options ({})
|
842
853
|
# @option options [Boolean] :dry_run
|
@@ -846,6 +857,8 @@ module Aws::EC2
|
|
846
857
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
847
858
|
# @option options [required, String] :vpc_id
|
848
859
|
# The ID of the VPC.
|
860
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
861
|
+
# The tags to assign to the route table.
|
849
862
|
# @return [RouteTable]
|
850
863
|
def create_route_table(options = {})
|
851
864
|
resp = @client.create_route_table(options)
|
@@ -1310,6 +1323,17 @@ module Aws::EC2
|
|
1310
1323
|
# peer_vpc_id: "String",
|
1311
1324
|
# vpc_id: "VpcId",
|
1312
1325
|
# peer_region: "String",
|
1326
|
+
# tag_specifications: [
|
1327
|
+
# {
|
1328
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
1329
|
+
# tags: [
|
1330
|
+
# {
|
1331
|
+
# key: "String",
|
1332
|
+
# value: "String",
|
1333
|
+
# },
|
1334
|
+
# ],
|
1335
|
+
# },
|
1336
|
+
# ],
|
1313
1337
|
# })
|
1314
1338
|
# @param [Hash] options ({})
|
1315
1339
|
# @option options [Boolean] :dry_run
|
@@ -1332,6 +1356,8 @@ module Aws::EC2
|
|
1332
1356
|
# in a Region other than the Region in which you make the request.
|
1333
1357
|
#
|
1334
1358
|
# Default: The Region in which you make the request.
|
1359
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
1360
|
+
# The tags to assign to the peering connection.
|
1335
1361
|
# @return [VpcPeeringConnection]
|
1336
1362
|
def create_vpc_peering_connection(options = {})
|
1337
1363
|
resp = @client.create_vpc_peering_connection(options)
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -3995,13 +3995,18 @@ module Aws::EC2
|
|
3995
3995
|
# The tags.
|
3996
3996
|
# @return [Array<Types::Tag>]
|
3997
3997
|
#
|
3998
|
+
# @!attribute [rw] pool_arn
|
3999
|
+
# The ARN of the address pool.
|
4000
|
+
# @return [String]
|
4001
|
+
#
|
3998
4002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CoipPool AWS API Documentation
|
3999
4003
|
#
|
4000
4004
|
class CoipPool < Struct.new(
|
4001
4005
|
:pool_id,
|
4002
4006
|
:pool_cidrs,
|
4003
4007
|
:local_gateway_route_table_id,
|
4004
|
-
:tags
|
4008
|
+
:tags,
|
4009
|
+
:pool_arn)
|
4005
4010
|
SENSITIVE = []
|
4006
4011
|
include Aws::Structure
|
4007
4012
|
end
|
@@ -7589,6 +7594,17 @@ module Aws::EC2
|
|
7589
7594
|
# {
|
7590
7595
|
# dry_run: false,
|
7591
7596
|
# vpc_id: "VpcId", # required
|
7597
|
+
# tag_specifications: [
|
7598
|
+
# {
|
7599
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7600
|
+
# tags: [
|
7601
|
+
# {
|
7602
|
+
# key: "String",
|
7603
|
+
# value: "String",
|
7604
|
+
# },
|
7605
|
+
# ],
|
7606
|
+
# },
|
7607
|
+
# ],
|
7592
7608
|
# }
|
7593
7609
|
#
|
7594
7610
|
# @!attribute [rw] dry_run
|
@@ -7602,11 +7618,16 @@ module Aws::EC2
|
|
7602
7618
|
# The ID of the VPC.
|
7603
7619
|
# @return [String]
|
7604
7620
|
#
|
7621
|
+
# @!attribute [rw] tag_specifications
|
7622
|
+
# The tags to assign to the route table.
|
7623
|
+
# @return [Array<Types::TagSpecification>]
|
7624
|
+
#
|
7605
7625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTableRequest AWS API Documentation
|
7606
7626
|
#
|
7607
7627
|
class CreateRouteTableRequest < Struct.new(
|
7608
7628
|
:dry_run,
|
7609
|
-
:vpc_id
|
7629
|
+
:vpc_id,
|
7630
|
+
:tag_specifications)
|
7610
7631
|
SENSITIVE = []
|
7611
7632
|
include Aws::Structure
|
7612
7633
|
end
|
@@ -9452,6 +9473,17 @@ module Aws::EC2
|
|
9452
9473
|
# peer_vpc_id: "String",
|
9453
9474
|
# vpc_id: "VpcId",
|
9454
9475
|
# peer_region: "String",
|
9476
|
+
# tag_specifications: [
|
9477
|
+
# {
|
9478
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9479
|
+
# tags: [
|
9480
|
+
# {
|
9481
|
+
# key: "String",
|
9482
|
+
# value: "String",
|
9483
|
+
# },
|
9484
|
+
# ],
|
9485
|
+
# },
|
9486
|
+
# ],
|
9455
9487
|
# }
|
9456
9488
|
#
|
9457
9489
|
# @!attribute [rw] dry_run
|
@@ -9484,6 +9516,10 @@ module Aws::EC2
|
|
9484
9516
|
# Default: The Region in which you make the request.
|
9485
9517
|
# @return [String]
|
9486
9518
|
#
|
9519
|
+
# @!attribute [rw] tag_specifications
|
9520
|
+
# The tags to assign to the peering connection.
|
9521
|
+
# @return [Array<Types::TagSpecification>]
|
9522
|
+
#
|
9487
9523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcPeeringConnectionRequest AWS API Documentation
|
9488
9524
|
#
|
9489
9525
|
class CreateVpcPeeringConnectionRequest < Struct.new(
|
@@ -9491,7 +9527,8 @@ module Aws::EC2
|
|
9491
9527
|
:peer_owner_id,
|
9492
9528
|
:peer_vpc_id,
|
9493
9529
|
:vpc_id,
|
9494
|
-
:peer_region
|
9530
|
+
:peer_region,
|
9531
|
+
:tag_specifications)
|
9495
9532
|
SENSITIVE = []
|
9496
9533
|
include Aws::Structure
|
9497
9534
|
end
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -380,6 +380,17 @@ module Aws::EC2
|
|
380
380
|
#
|
381
381
|
# routetable = vpc.create_route_table({
|
382
382
|
# dry_run: false,
|
383
|
+
# tag_specifications: [
|
384
|
+
# {
|
385
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
386
|
+
# tags: [
|
387
|
+
# {
|
388
|
+
# key: "String",
|
389
|
+
# value: "String",
|
390
|
+
# },
|
391
|
+
# ],
|
392
|
+
# },
|
393
|
+
# ],
|
383
394
|
# })
|
384
395
|
# @param [Hash] options ({})
|
385
396
|
# @option options [Boolean] :dry_run
|
@@ -387,6 +398,8 @@ module Aws::EC2
|
|
387
398
|
# without actually making the request, and provides an error response.
|
388
399
|
# If you have the required permissions, the error response is
|
389
400
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
401
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
402
|
+
# The tags to assign to the route table.
|
390
403
|
# @return [RouteTable]
|
391
404
|
def create_route_table(options = {})
|
392
405
|
options = options.merge(vpc_id: @id)
|
@@ -764,6 +777,17 @@ module Aws::EC2
|
|
764
777
|
# peer_owner_id: "String",
|
765
778
|
# peer_vpc_id: "String",
|
766
779
|
# peer_region: "String",
|
780
|
+
# tag_specifications: [
|
781
|
+
# {
|
782
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
783
|
+
# tags: [
|
784
|
+
# {
|
785
|
+
# key: "String",
|
786
|
+
# value: "String",
|
787
|
+
# },
|
788
|
+
# ],
|
789
|
+
# },
|
790
|
+
# ],
|
767
791
|
# })
|
768
792
|
# @param [Hash] options ({})
|
769
793
|
# @option options [Boolean] :dry_run
|
@@ -783,6 +807,8 @@ module Aws::EC2
|
|
783
807
|
# in a Region other than the Region in which you make the request.
|
784
808
|
#
|
785
809
|
# Default: The Region in which you make the request.
|
810
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
811
|
+
# The tags to assign to the peering connection.
|
786
812
|
# @return [VpcPeeringConnection]
|
787
813
|
def request_vpc_peering_connection(options = {})
|
788
814
|
options = options.merge(vpc_id: @id)
|
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.178.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-07-
|
11
|
+
date: 2020-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|