aws-sdk-ec2 1.59.0 → 1.60.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 +1902 -298
- data/lib/aws-sdk-ec2/client_api.rb +670 -1
- data/lib/aws-sdk-ec2/resource.rb +20 -12
- data/lib/aws-sdk-ec2/route.rb +10 -1
- data/lib/aws-sdk-ec2/route_table.rb +3 -0
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +2225 -76
- data/lib/aws-sdk-ec2/volume.rb +8 -3
- data/lib/aws-sdk-ec2/vpc.rb +4 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -90,8 +90,13 @@ module Aws::EC2
|
|
90
90
|
# credits, and bursting, see [Amazon EBS Volume Types][1] in the *Amazon
|
91
91
|
# Elastic Compute Cloud User Guide*.
|
92
92
|
#
|
93
|
-
#
|
94
|
-
# for `
|
93
|
+
# Constraints: Range is 100-10,000 IOPS for `gp2` volumes and 100 to
|
94
|
+
# 64,000IOPS for `io1` volumes in most regions. Maximum `io1`IOPS of
|
95
|
+
# 64,000 is guaranteed only on [Nitro-based
|
96
|
+
# instances](AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances).
|
97
|
+
# Other instance families guarantee performance up to 32,000 IOPS. For
|
98
|
+
# more information, see [Amazon EBS Volume Types][1] in the *Amazon
|
99
|
+
# Elastic Compute Cloud User Guide*.
|
95
100
|
#
|
96
101
|
# Condition: This parameter is required for requests to create `io1`
|
97
102
|
# volumes; it is not used in requests to create `gp2`, `st1`, `sc1`, or
|
@@ -281,7 +286,7 @@ module Aws::EC2
|
|
281
286
|
# description: "String",
|
282
287
|
# tag_specifications: [
|
283
288
|
# {
|
284
|
-
# resource_type: "customer-gateway", # accepts customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-instances-request, subnet, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
289
|
+
# resource_type: "customer-gateway", # accepts customer-gateway, dedicated-host, dhcp-options, elastic-ip, fleet, fpga-image, image, instance, internet-gateway, launch-template, natgateway, network-acl, network-interface, reserved-instances, route-table, security-group, snapshot, spot-instances-request, subnet, transit-gateway, transit-gateway-attachment, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway
|
285
290
|
# tags: [
|
286
291
|
# {
|
287
292
|
# key: "String",
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1525,6 +1525,8 @@ module Aws::EC2
|
|
1525
1525
|
#
|
1526
1526
|
# * `route.nat-gateway-id` - The ID of a NAT gateway.
|
1527
1527
|
#
|
1528
|
+
# * `route.transit-gateway-id` - The ID of a transit gateway.
|
1529
|
+
#
|
1528
1530
|
# * `route.origin` - Describes how the route was created.
|
1529
1531
|
# `CreateRouteTable` indicates that the route was automatically
|
1530
1532
|
# created when the route table was created; `CreateRoute` indicates
|
@@ -1551,6 +1553,8 @@ module Aws::EC2
|
|
1551
1553
|
# filter to find all resources assigned a tag with a specific key,
|
1552
1554
|
# regardless of the tag value.
|
1553
1555
|
#
|
1556
|
+
# * `transit-gateway-id` - The ID of a transit gateway.
|
1557
|
+
#
|
1554
1558
|
# * `vpc-id` - The ID of the VPC for the route table.
|
1555
1559
|
# @option options [Boolean] :dry_run
|
1556
1560
|
# Checks whether you have the required permissions for the action,
|
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.60.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: 2018-11-
|
11
|
+
date: 2018-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|