aws-sdk-ec2 1.185.0 → 1.191.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 +2 -2
- data/lib/aws-sdk-ec2/client.rb +670 -127
- data/lib/aws-sdk-ec2/client_api.rb +178 -0
- data/lib/aws-sdk-ec2/instance.rb +4 -4
- data/lib/aws-sdk-ec2/resource.rb +25 -23
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +871 -156
- data/lib/aws-sdk-ec2/volume.rb +11 -10
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -96,17 +96,18 @@ module Aws::EC2
|
|
|
96
96
|
# of IOPS that are provisioned for the volume. For General Purpose SSD
|
|
97
97
|
# volumes, this represents the baseline performance of the volume and
|
|
98
98
|
# the rate at which the volume accumulates I/O credits for bursting. For
|
|
99
|
-
# more information, see [Amazon EBS
|
|
99
|
+
# more information, see [Amazon EBS volume types][1] in the *Amazon
|
|
100
100
|
# Elastic Compute Cloud User Guide*.
|
|
101
101
|
#
|
|
102
102
|
# Constraints: Range is 100-16,000 IOPS for `gp2` volumes and 100 to
|
|
103
|
-
# 64,
|
|
104
|
-
# `io1` of 64,000 is guaranteed only on [Nitro-based
|
|
105
|
-
# Other instance families guarantee performance up to
|
|
103
|
+
# 64,000 IOPS for `io1` and `io2` volumes, in most Regions. The maximum
|
|
104
|
+
# IOPS for `io1` and `io2` of 64,000 is guaranteed only on [Nitro-based
|
|
105
|
+
# instances][2]. Other instance families guarantee performance up to
|
|
106
|
+
# 32,000 IOPS.
|
|
106
107
|
#
|
|
107
|
-
# Condition: This parameter is required for requests to create `io1`
|
|
108
|
-
# volumes; it is not used in requests to create `gp2`, `st1`,
|
|
109
|
-
# `standard` volumes.
|
|
108
|
+
# Condition: This parameter is required for requests to create `io1` and
|
|
109
|
+
# `io2` volumes; it is not used in requests to create `gp2`, `st1`,
|
|
110
|
+
# `sc1`, or `standard` volumes.
|
|
110
111
|
#
|
|
111
112
|
#
|
|
112
113
|
#
|
|
@@ -123,9 +124,9 @@ module Aws::EC2
|
|
|
123
124
|
data[:tags]
|
|
124
125
|
end
|
|
125
126
|
|
|
126
|
-
# The volume type. This can be `gp2` for General Purpose SSD, `io1`
|
|
127
|
-
# Provisioned IOPS SSD, `st1` for Throughput Optimized HDD,
|
|
128
|
-
# Cold HDD, or `standard` for Magnetic volumes.
|
|
127
|
+
# The volume type. This can be `gp2` for General Purpose SSD, `io1` or
|
|
128
|
+
# `io2` for Provisioned IOPS SSD, `st1` for Throughput Optimized HDD,
|
|
129
|
+
# `sc1` for Cold HDD, or `standard` for Magnetic volumes.
|
|
129
130
|
# @return [String]
|
|
130
131
|
def volume_type
|
|
131
132
|
data[:volume_type]
|
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.191.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-08-
|
|
11
|
+
date: 2020-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|