aws-sdk-ec2 1.166.1 → 1.167.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 +3 -1
- data/lib/aws-sdk-ec2/classic_address.rb +2 -0
- data/lib/aws-sdk-ec2/client.rb +67 -38
- data/lib/aws-sdk-ec2/client_api.rb +4 -0
- data/lib/aws-sdk-ec2/dhcp_options.rb +2 -0
- data/lib/aws-sdk-ec2/errors.rb +2 -0
- data/lib/aws-sdk-ec2/image.rb +2 -0
- data/lib/aws-sdk-ec2/instance.rb +2 -0
- data/lib/aws-sdk-ec2/internet_gateway.rb +2 -0
- data/lib/aws-sdk-ec2/key_pair.rb +2 -0
- data/lib/aws-sdk-ec2/key_pair_info.rb +2 -0
- data/lib/aws-sdk-ec2/nat_gateway.rb +2 -0
- data/lib/aws-sdk-ec2/network_acl.rb +2 -0
- data/lib/aws-sdk-ec2/network_interface.rb +2 -0
- data/lib/aws-sdk-ec2/network_interface_association.rb +2 -0
- data/lib/aws-sdk-ec2/placement_group.rb +2 -0
- data/lib/aws-sdk-ec2/resource.rb +10 -6
- data/lib/aws-sdk-ec2/route.rb +2 -0
- data/lib/aws-sdk-ec2/route_table.rb +2 -0
- data/lib/aws-sdk-ec2/route_table_association.rb +2 -0
- data/lib/aws-sdk-ec2/security_group.rb +2 -0
- data/lib/aws-sdk-ec2/snapshot.rb +6 -4
- data/lib/aws-sdk-ec2/subnet.rb +2 -0
- data/lib/aws-sdk-ec2/tag.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +71 -27
- data/lib/aws-sdk-ec2/volume.rb +10 -6
- data/lib/aws-sdk-ec2/vpc.rb +2 -0
- data/lib/aws-sdk-ec2/vpc_address.rb +2 -0
- data/lib/aws-sdk-ec2/vpc_peering_connection.rb +2 -0
- data/lib/aws-sdk-ec2/waiters.rb +2 -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: 92c77d4d82a5cbb72d08ac4eb5717cdac967da0fb854c7d8417cd6f25e338a87
|
|
4
|
+
data.tar.gz: 7e5b8e48ad1f5f64ad1252c62b8e2afb32aaf6d1745a2f90eb6bd4f17391b689
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45dcf6c6d1ed5349f69641a0168cdd13aa7a29729b53be06e1850f904e3d37cf093f9eff765d6908593c670864667fbbf665fc8b3f1a066419246bd4d0695a33
|
|
7
|
+
data.tar.gz: eff0c0509222319e91ea8a2a75134a324bc24a285a4e2a9369247c4894f62445deccd93cb9bf15cce6ff433853126676eb8f27fbe7f722a9ff1b010bc1eacb21
|
data/lib/aws-sdk-ec2.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -69,6 +71,6 @@ require_relative 'aws-sdk-ec2/customizations'
|
|
|
69
71
|
# @service
|
|
70
72
|
module Aws::EC2
|
|
71
73
|
|
|
72
|
-
GEM_VERSION = '1.
|
|
74
|
+
GEM_VERSION = '1.167.0'
|
|
73
75
|
|
|
74
76
|
end
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -13985,7 +13987,8 @@ module Aws::EC2
|
|
|
13985
13987
|
#
|
|
13986
13988
|
# * `availability-zone`\: The Availability Zone of the snapshot.
|
|
13987
13989
|
#
|
|
13988
|
-
# * `owner-id`\: The ID of the AWS account that
|
|
13990
|
+
# * `owner-id`\: The ID of the AWS account that enabled fast snapshot
|
|
13991
|
+
# restore on the snapshot.
|
|
13989
13992
|
#
|
|
13990
13993
|
# * `snapshot-id`\: The ID of the snapshot.
|
|
13991
13994
|
#
|
|
@@ -16270,6 +16273,10 @@ module Aws::EC2
|
|
|
16270
16273
|
# * `ebs-info.encryption-support` - Indicates whether EBS encryption is
|
|
16271
16274
|
# supported. (`supported` \| `unsupported`)
|
|
16272
16275
|
#
|
|
16276
|
+
# * `ebs-info.nvme-support` - Indicates whether non-volatile memory
|
|
16277
|
+
# express (NVMe) is supported or required. (`required` \| `supported`
|
|
16278
|
+
# \| `unsupported`)
|
|
16279
|
+
#
|
|
16273
16280
|
# * `free-tier-eligible` - Indicates whether the instance type is
|
|
16274
16281
|
# eligible to use in the free tier. (`true` \| `false`)
|
|
16275
16282
|
#
|
|
@@ -16397,6 +16404,7 @@ module Aws::EC2
|
|
|
16397
16404
|
# resp.instance_types[0].ebs_info.ebs_optimized_info.maximum_bandwidth_in_mbps #=> Integer
|
|
16398
16405
|
# resp.instance_types[0].ebs_info.ebs_optimized_info.maximum_throughput_in_m_bps #=> Float
|
|
16399
16406
|
# resp.instance_types[0].ebs_info.ebs_optimized_info.maximum_iops #=> Integer
|
|
16407
|
+
# resp.instance_types[0].ebs_info.nvme_support #=> String, one of "unsupported", "supported", "required"
|
|
16400
16408
|
# resp.instance_types[0].network_info.network_performance #=> String
|
|
16401
16409
|
# resp.instance_types[0].network_info.maximum_network_interfaces #=> Integer
|
|
16402
16410
|
# resp.instance_types[0].network_info.ipv_4_addresses_per_interface #=> Integer
|
|
@@ -20928,13 +20936,13 @@ module Aws::EC2
|
|
|
20928
20936
|
# account IDs (if you own the snapshots), `self` for snapshots for which
|
|
20929
20937
|
# you own or have explicit permissions, or `all` for public snapshots.
|
|
20930
20938
|
#
|
|
20931
|
-
# If you are describing a long list of snapshots,
|
|
20932
|
-
# output to make the list more manageable. The `MaxResults`
|
|
20933
|
-
# sets the maximum number of results returned in a single
|
|
20934
|
-
# list of results exceeds your `MaxResults` value, then
|
|
20935
|
-
# results is returned along with a `NextToken` value that
|
|
20936
|
-
# to a subsequent `DescribeSnapshots` request to retrieve
|
|
20937
|
-
# results.
|
|
20939
|
+
# If you are describing a long list of snapshots, we recommend that you
|
|
20940
|
+
# paginate the output to make the list more manageable. The `MaxResults`
|
|
20941
|
+
# parameter sets the maximum number of results returned in a single
|
|
20942
|
+
# page. If the list of results exceeds your `MaxResults` value, then
|
|
20943
|
+
# that number of results is returned along with a `NextToken` value that
|
|
20944
|
+
# can be passed to a subsequent `DescribeSnapshots` request to retrieve
|
|
20945
|
+
# the remaining results.
|
|
20938
20946
|
#
|
|
20939
20947
|
# To get the state of fast snapshot restores for a snapshot, use
|
|
20940
20948
|
# DescribeFastSnapshotRestores.
|
|
@@ -20954,12 +20962,13 @@ module Aws::EC2
|
|
|
20954
20962
|
# * `encrypted` - Indicates whether the snapshot is encrypted (`true` \|
|
|
20955
20963
|
# `false`)
|
|
20956
20964
|
#
|
|
20957
|
-
# * `owner-alias` -
|
|
20958
|
-
# `
|
|
20959
|
-
#
|
|
20960
|
-
#
|
|
20965
|
+
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
|
20966
|
+
# (`amazon`). This is not the user-configured AWS account alias set
|
|
20967
|
+
# using the IAM console. We recommend that you use the related
|
|
20968
|
+
# parameter instead of this filter.
|
|
20961
20969
|
#
|
|
20962
|
-
# * `owner-id` - The ID of the
|
|
20970
|
+
# * `owner-id` - The AWS account ID of the owner. We recommend that you
|
|
20971
|
+
# use the related parameter instead of this filter.
|
|
20963
20972
|
#
|
|
20964
20973
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
|
20965
20974
|
# example, 80%).
|
|
@@ -21005,7 +21014,8 @@ module Aws::EC2
|
|
|
21005
21014
|
# value. This value is `null` when there are no more results to return.
|
|
21006
21015
|
#
|
|
21007
21016
|
# @option params [Array<String>] :owner_ids
|
|
21008
|
-
#
|
|
21017
|
+
# Scopes the results to snapshots with the specified owners. You can
|
|
21018
|
+
# specify a combination of AWS account IDs, `self`, and `amazon`.
|
|
21009
21019
|
#
|
|
21010
21020
|
# @option params [Array<String>] :restorable_by_user_ids
|
|
21011
21021
|
# The IDs of the AWS accounts that can create volumes from the snapshot.
|
|
@@ -23583,13 +23593,13 @@ module Aws::EC2
|
|
|
23583
23593
|
|
|
23584
23594
|
# Describes the specified EBS volumes or all of your EBS volumes.
|
|
23585
23595
|
#
|
|
23586
|
-
# If you are describing a long list of volumes,
|
|
23587
|
-
# output to make the list more manageable. The `MaxResults`
|
|
23588
|
-
# sets the maximum number of results returned in a single
|
|
23589
|
-
# list of results exceeds your `MaxResults` value, then
|
|
23590
|
-
# results is returned along with a `NextToken` value that
|
|
23591
|
-
# to a subsequent `DescribeVolumes` request to retrieve
|
|
23592
|
-
# results.
|
|
23596
|
+
# If you are describing a long list of volumes, we recommend that you
|
|
23597
|
+
# paginate the output to make the list more manageable. The `MaxResults`
|
|
23598
|
+
# parameter sets the maximum number of results returned in a single
|
|
23599
|
+
# page. If the list of results exceeds your `MaxResults` value, then
|
|
23600
|
+
# that number of results is returned along with a `NextToken` value that
|
|
23601
|
+
# can be passed to a subsequent `DescribeVolumes` request to retrieve
|
|
23602
|
+
# the remaining results.
|
|
23593
23603
|
#
|
|
23594
23604
|
# For more information about EBS volumes, see [Amazon EBS Volumes][1] in
|
|
23595
23605
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
@@ -23830,20 +23840,17 @@ module Aws::EC2
|
|
|
23830
23840
|
req.send_request(options)
|
|
23831
23841
|
end
|
|
23832
23842
|
|
|
23833
|
-
#
|
|
23843
|
+
# Describes the most recent volume modification request for the
|
|
23844
|
+
# specified EBS volumes.
|
|
23834
23845
|
#
|
|
23835
|
-
#
|
|
23836
|
-
#
|
|
23837
|
-
#
|
|
23838
|
-
# from the API or the console to modify a volume, the status of the
|
|
23839
|
-
# modification may be `modifying`, `optimizing`, `completed`, or
|
|
23840
|
-
# `failed`. If a volume has never been modified, then certain elements
|
|
23841
|
-
# of the returned `VolumeModification` objects are null.
|
|
23846
|
+
# If a volume has never been modified, some information in the output
|
|
23847
|
+
# will be null. If a volume has been modified more than once, the output
|
|
23848
|
+
# includes only the most recent modification request.
|
|
23842
23849
|
#
|
|
23843
23850
|
# You can also use CloudWatch Events to check the status of a
|
|
23844
23851
|
# modification to an EBS volume. For information about CloudWatch
|
|
23845
23852
|
# Events, see the [Amazon CloudWatch Events User Guide][1]. For more
|
|
23846
|
-
# information, see [Monitoring Volume Modifications
|
|
23853
|
+
# information, see [Monitoring Volume Modifications][2] in the *Amazon
|
|
23847
23854
|
# Elastic Compute Cloud User Guide*.
|
|
23848
23855
|
#
|
|
23849
23856
|
#
|
|
@@ -23858,15 +23865,37 @@ module Aws::EC2
|
|
|
23858
23865
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
23859
23866
|
#
|
|
23860
23867
|
# @option params [Array<String>] :volume_ids
|
|
23861
|
-
# The IDs of the volumes
|
|
23862
|
-
# described.
|
|
23868
|
+
# The IDs of the volumes.
|
|
23863
23869
|
#
|
|
23864
23870
|
# @option params [Array<Types::Filter>] :filters
|
|
23865
|
-
# The filters.
|
|
23866
|
-
#
|
|
23867
|
-
# `
|
|
23868
|
-
#
|
|
23869
|
-
#
|
|
23871
|
+
# The filters.
|
|
23872
|
+
#
|
|
23873
|
+
# * `modification-state` - The current modification state (modifying \|
|
|
23874
|
+
# optimizing \| completed \| failed).
|
|
23875
|
+
#
|
|
23876
|
+
# * `original-iops` - The original IOPS rate of the volume.
|
|
23877
|
+
#
|
|
23878
|
+
# * `original-size` - The original size of the volume, in GiB.
|
|
23879
|
+
#
|
|
23880
|
+
# * `original-volume-type` - The original volume type of the volume
|
|
23881
|
+
# (standard \| io1 \| gp2 \| sc1 \| st1).
|
|
23882
|
+
#
|
|
23883
|
+
# * `originalMultiAttachEnabled` - Indicates whether Multi-Attach
|
|
23884
|
+
# support was enabled (true \| false).
|
|
23885
|
+
#
|
|
23886
|
+
# * `start-time` - The modification start time.
|
|
23887
|
+
#
|
|
23888
|
+
# * `target-iops` - The target IOPS rate of the volume.
|
|
23889
|
+
#
|
|
23890
|
+
# * `target-size` - The target size of the volume, in GiB.
|
|
23891
|
+
#
|
|
23892
|
+
# * `target-volume-type` - The target volume type of the volume
|
|
23893
|
+
# (standard \| io1 \| gp2 \| sc1 \| st1).
|
|
23894
|
+
#
|
|
23895
|
+
# * `targetMultiAttachEnabled` - Indicates whether Multi-Attach support
|
|
23896
|
+
# is to be enabled (true \| false).
|
|
23897
|
+
#
|
|
23898
|
+
# * `volume-id` - The ID of the volume.
|
|
23870
23899
|
#
|
|
23871
23900
|
# @option params [String] :next_token
|
|
23872
23901
|
# The `nextToken` value returned by a previous paginated request.
|
|
@@ -37023,7 +37052,7 @@ module Aws::EC2
|
|
|
37023
37052
|
params: params,
|
|
37024
37053
|
config: config)
|
|
37025
37054
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
37026
|
-
context[:gem_version] = '1.
|
|
37055
|
+
context[:gem_version] = '1.167.0'
|
|
37027
37056
|
Seahorse::Client::Request.new(handlers, context)
|
|
37028
37057
|
end
|
|
37029
37058
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -801,6 +803,7 @@ module Aws::EC2
|
|
|
801
803
|
EbsInfo = Shapes::StructureShape.new(name: 'EbsInfo')
|
|
802
804
|
EbsInstanceBlockDevice = Shapes::StructureShape.new(name: 'EbsInstanceBlockDevice')
|
|
803
805
|
EbsInstanceBlockDeviceSpecification = Shapes::StructureShape.new(name: 'EbsInstanceBlockDeviceSpecification')
|
|
806
|
+
EbsNvmeSupport = Shapes::StringShape.new(name: 'EbsNvmeSupport')
|
|
804
807
|
EbsOptimizedInfo = Shapes::StructureShape.new(name: 'EbsOptimizedInfo')
|
|
805
808
|
EbsOptimizedSupport = Shapes::StringShape.new(name: 'EbsOptimizedSupport')
|
|
806
809
|
EfaSupportedFlag = Shapes::BooleanShape.new(name: 'EfaSupportedFlag')
|
|
@@ -5243,6 +5246,7 @@ module Aws::EC2
|
|
|
5243
5246
|
EbsInfo.add_member(:ebs_optimized_support, Shapes::ShapeRef.new(shape: EbsOptimizedSupport, location_name: "ebsOptimizedSupport"))
|
|
5244
5247
|
EbsInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: EbsEncryptionSupport, location_name: "encryptionSupport"))
|
|
5245
5248
|
EbsInfo.add_member(:ebs_optimized_info, Shapes::ShapeRef.new(shape: EbsOptimizedInfo, location_name: "ebsOptimizedInfo"))
|
|
5249
|
+
EbsInfo.add_member(:nvme_support, Shapes::ShapeRef.new(shape: EbsNvmeSupport, location_name: "nvmeSupport"))
|
|
5246
5250
|
EbsInfo.struct_class = Types::EbsInfo
|
|
5247
5251
|
|
|
5248
5252
|
EbsInstanceBlockDevice.add_member(:attach_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "attachTime"))
|
data/lib/aws-sdk-ec2/errors.rb
CHANGED
data/lib/aws-sdk-ec2/image.rb
CHANGED
data/lib/aws-sdk-ec2/instance.rb
CHANGED
data/lib/aws-sdk-ec2/key_pair.rb
CHANGED
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -2884,12 +2886,13 @@ module Aws::EC2
|
|
|
2884
2886
|
# * `encrypted` - Indicates whether the snapshot is encrypted (`true` \|
|
|
2885
2887
|
# `false`)
|
|
2886
2888
|
#
|
|
2887
|
-
# * `owner-alias` -
|
|
2888
|
-
# `
|
|
2889
|
-
#
|
|
2890
|
-
#
|
|
2889
|
+
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
|
2890
|
+
# (`amazon`). This is not the user-configured AWS account alias set
|
|
2891
|
+
# using the IAM console. We recommend that you use the related
|
|
2892
|
+
# parameter instead of this filter.
|
|
2891
2893
|
#
|
|
2892
|
-
# * `owner-id` - The ID of the
|
|
2894
|
+
# * `owner-id` - The AWS account ID of the owner. We recommend that you
|
|
2895
|
+
# use the related parameter instead of this filter.
|
|
2893
2896
|
#
|
|
2894
2897
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
|
2895
2898
|
# example, 80%).
|
|
@@ -2915,7 +2918,8 @@ module Aws::EC2
|
|
|
2915
2918
|
#
|
|
2916
2919
|
# * `volume-size` - The size of the volume, in GiB.
|
|
2917
2920
|
# @option options [Array<String>] :owner_ids
|
|
2918
|
-
#
|
|
2921
|
+
# Scopes the results to snapshots with the specified owners. You can
|
|
2922
|
+
# specify a combination of AWS account IDs, `self`, and `amazon`.
|
|
2919
2923
|
# @option options [Array<String>] :restorable_by_user_ids
|
|
2920
2924
|
# The IDs of the AWS accounts that can create volumes from the snapshot.
|
|
2921
2925
|
# @option options [Array<String>] :snapshot_ids
|
data/lib/aws-sdk-ec2/route.rb
CHANGED
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -113,10 +115,10 @@ module Aws::EC2
|
|
|
113
115
|
data[:volume_size]
|
|
114
116
|
end
|
|
115
117
|
|
|
116
|
-
#
|
|
117
|
-
# `
|
|
118
|
-
# confused with the user-configured AWS
|
|
119
|
-
# the IAM console.
|
|
118
|
+
# The AWS owner alias, as maintained by Amazon. The possible values are:
|
|
119
|
+
# `amazon` \| `self` \| `all` \| `aws-marketplace` \| `microsoft`. This
|
|
120
|
+
# AWS owner alias is not to be confused with the user-configured AWS
|
|
121
|
+
# account alias, which is set from the IAM console.
|
|
120
122
|
# @return [String]
|
|
121
123
|
def owner_alias
|
|
122
124
|
data[:owner_alias]
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
data/lib/aws-sdk-ec2/tag.rb
CHANGED
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -13052,11 +13054,13 @@ module Aws::EC2
|
|
|
13052
13054
|
# @return [String]
|
|
13053
13055
|
#
|
|
13054
13056
|
# @!attribute [rw] owner_id
|
|
13055
|
-
# The ID of the AWS account that
|
|
13057
|
+
# The ID of the AWS account that enabled fast snapshot restores on the
|
|
13058
|
+
# snapshot.
|
|
13056
13059
|
# @return [String]
|
|
13057
13060
|
#
|
|
13058
13061
|
# @!attribute [rw] owner_alias
|
|
13059
|
-
# The alias
|
|
13062
|
+
# The AWS owner alias that enabled fast snapshot restores on the
|
|
13063
|
+
# snapshot. This is intended for future use.
|
|
13060
13064
|
# @return [String]
|
|
13061
13065
|
#
|
|
13062
13066
|
# @!attribute [rw] enabling_time
|
|
@@ -13121,7 +13125,8 @@ module Aws::EC2
|
|
|
13121
13125
|
#
|
|
13122
13126
|
# * `availability-zone`\: The Availability Zone of the snapshot.
|
|
13123
13127
|
#
|
|
13124
|
-
# * `owner-id`\: The ID of the AWS account that
|
|
13128
|
+
# * `owner-id`\: The ID of the AWS account that enabled fast snapshot
|
|
13129
|
+
# restore on the snapshot.
|
|
13125
13130
|
#
|
|
13126
13131
|
# * `snapshot-id`\: The ID of the snapshot.
|
|
13127
13132
|
#
|
|
@@ -14932,6 +14937,10 @@ module Aws::EC2
|
|
|
14932
14937
|
# * `ebs-info.encryption-support` - Indicates whether EBS encryption
|
|
14933
14938
|
# is supported. (`supported` \| `unsupported`)
|
|
14934
14939
|
#
|
|
14940
|
+
# * `ebs-info.nvme-support` - Indicates whether non-volatile memory
|
|
14941
|
+
# express (NVMe) is supported or required. (`required` \|
|
|
14942
|
+
# `supported` \| `unsupported`)
|
|
14943
|
+
#
|
|
14935
14944
|
# * `free-tier-eligible` - Indicates whether the instance type is
|
|
14936
14945
|
# eligible to use in the free tier. (`true` \| `false`)
|
|
14937
14946
|
#
|
|
@@ -18388,12 +18397,13 @@ module Aws::EC2
|
|
|
18388
18397
|
# * `encrypted` - Indicates whether the snapshot is encrypted (`true`
|
|
18389
18398
|
# \| `false`)
|
|
18390
18399
|
#
|
|
18391
|
-
# * `owner-alias` -
|
|
18392
|
-
# `
|
|
18393
|
-
#
|
|
18394
|
-
#
|
|
18400
|
+
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
|
18401
|
+
# (`amazon`). This is not the user-configured AWS account alias set
|
|
18402
|
+
# using the IAM console. We recommend that you use the related
|
|
18403
|
+
# parameter instead of this filter.
|
|
18395
18404
|
#
|
|
18396
|
-
# * `owner-id` - The ID of the
|
|
18405
|
+
# * `owner-id` - The AWS account ID of the owner. We recommend that
|
|
18406
|
+
# you use the related parameter instead of this filter.
|
|
18397
18407
|
#
|
|
18398
18408
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
|
18399
18409
|
# example, 80%).
|
|
@@ -18444,7 +18454,8 @@ module Aws::EC2
|
|
|
18444
18454
|
# @return [String]
|
|
18445
18455
|
#
|
|
18446
18456
|
# @!attribute [rw] owner_ids
|
|
18447
|
-
#
|
|
18457
|
+
# Scopes the results to snapshots with the specified owners. You can
|
|
18458
|
+
# specify a combination of AWS account IDs, `self`, and `amazon`.
|
|
18448
18459
|
# @return [Array<String>]
|
|
18449
18460
|
#
|
|
18450
18461
|
# @!attribute [rw] restorable_by_user_ids
|
|
@@ -20304,16 +20315,38 @@ module Aws::EC2
|
|
|
20304
20315
|
# @return [Boolean]
|
|
20305
20316
|
#
|
|
20306
20317
|
# @!attribute [rw] volume_ids
|
|
20307
|
-
# The IDs of the volumes
|
|
20308
|
-
# described.
|
|
20318
|
+
# The IDs of the volumes.
|
|
20309
20319
|
# @return [Array<String>]
|
|
20310
20320
|
#
|
|
20311
20321
|
# @!attribute [rw] filters
|
|
20312
|
-
# The filters.
|
|
20313
|
-
#
|
|
20314
|
-
# `
|
|
20315
|
-
#
|
|
20316
|
-
#
|
|
20322
|
+
# The filters.
|
|
20323
|
+
#
|
|
20324
|
+
# * `modification-state` - The current modification state (modifying
|
|
20325
|
+
# \| optimizing \| completed \| failed).
|
|
20326
|
+
#
|
|
20327
|
+
# * `original-iops` - The original IOPS rate of the volume.
|
|
20328
|
+
#
|
|
20329
|
+
# * `original-size` - The original size of the volume, in GiB.
|
|
20330
|
+
#
|
|
20331
|
+
# * `original-volume-type` - The original volume type of the volume
|
|
20332
|
+
# (standard \| io1 \| gp2 \| sc1 \| st1).
|
|
20333
|
+
#
|
|
20334
|
+
# * `originalMultiAttachEnabled` - Indicates whether Multi-Attach
|
|
20335
|
+
# support was enabled (true \| false).
|
|
20336
|
+
#
|
|
20337
|
+
# * `start-time` - The modification start time.
|
|
20338
|
+
#
|
|
20339
|
+
# * `target-iops` - The target IOPS rate of the volume.
|
|
20340
|
+
#
|
|
20341
|
+
# * `target-size` - The target size of the volume, in GiB.
|
|
20342
|
+
#
|
|
20343
|
+
# * `target-volume-type` - The target volume type of the volume
|
|
20344
|
+
# (standard \| io1 \| gp2 \| sc1 \| st1).
|
|
20345
|
+
#
|
|
20346
|
+
# * `targetMultiAttachEnabled` - Indicates whether Multi-Attach
|
|
20347
|
+
# support is to be enabled (true \| false).
|
|
20348
|
+
#
|
|
20349
|
+
# * `volume-id` - The ID of the volume.
|
|
20317
20350
|
# @return [Array<Types::Filter>]
|
|
20318
20351
|
#
|
|
20319
20352
|
# @!attribute [rw] next_token
|
|
@@ -21999,11 +22032,13 @@ module Aws::EC2
|
|
|
21999
22032
|
# @return [String]
|
|
22000
22033
|
#
|
|
22001
22034
|
# @!attribute [rw] owner_id
|
|
22002
|
-
# The ID of the AWS account that
|
|
22035
|
+
# The ID of the AWS account that enabled fast snapshot restores on the
|
|
22036
|
+
# snapshot.
|
|
22003
22037
|
# @return [String]
|
|
22004
22038
|
#
|
|
22005
22039
|
# @!attribute [rw] owner_alias
|
|
22006
|
-
# The alias
|
|
22040
|
+
# The AWS owner alias that enabled fast snapshot restores on the
|
|
22041
|
+
# snapshot. This is intended for future use.
|
|
22007
22042
|
# @return [String]
|
|
22008
22043
|
#
|
|
22009
22044
|
# @!attribute [rw] enabling_time
|
|
@@ -22913,12 +22948,17 @@ module Aws::EC2
|
|
|
22913
22948
|
# Describes the optimized EBS performance for the instance type.
|
|
22914
22949
|
# @return [Types::EbsOptimizedInfo]
|
|
22915
22950
|
#
|
|
22951
|
+
# @!attribute [rw] nvme_support
|
|
22952
|
+
# Indicates whether non-volatile memory express (NVMe) is supported.
|
|
22953
|
+
# @return [String]
|
|
22954
|
+
#
|
|
22916
22955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInfo AWS API Documentation
|
|
22917
22956
|
#
|
|
22918
22957
|
class EbsInfo < Struct.new(
|
|
22919
22958
|
:ebs_optimized_support,
|
|
22920
22959
|
:encryption_support,
|
|
22921
|
-
:ebs_optimized_info
|
|
22960
|
+
:ebs_optimized_info,
|
|
22961
|
+
:nvme_support)
|
|
22922
22962
|
include Aws::Structure
|
|
22923
22963
|
end
|
|
22924
22964
|
|
|
@@ -23187,7 +23227,8 @@ module Aws::EC2
|
|
|
23187
23227
|
#
|
|
23188
23228
|
# @!attribute [rw] type
|
|
23189
23229
|
# The type of elastic inference accelerator. The possible values are
|
|
23190
|
-
# `eia1.medium`, `eia1.large`,
|
|
23230
|
+
# `eia1.medium`, `eia1.large`, `eia1.xlarge`, `eia2.medium`,
|
|
23231
|
+
# `eia2.large`, and `eia2.xlarge`.
|
|
23191
23232
|
# @return [String]
|
|
23192
23233
|
#
|
|
23193
23234
|
# @!attribute [rw] count
|
|
@@ -23350,11 +23391,13 @@ module Aws::EC2
|
|
|
23350
23391
|
# @return [String]
|
|
23351
23392
|
#
|
|
23352
23393
|
# @!attribute [rw] owner_id
|
|
23353
|
-
# The ID of the AWS account that
|
|
23394
|
+
# The ID of the AWS account that enabled fast snapshot restores on the
|
|
23395
|
+
# snapshot.
|
|
23354
23396
|
# @return [String]
|
|
23355
23397
|
#
|
|
23356
23398
|
# @!attribute [rw] owner_alias
|
|
23357
|
-
# The alias
|
|
23399
|
+
# The AWS owner alias that enabled fast snapshot restores on the
|
|
23400
|
+
# snapshot. This is intended for future use.
|
|
23358
23401
|
# @return [String]
|
|
23359
23402
|
#
|
|
23360
23403
|
# @!attribute [rw] enabling_time
|
|
@@ -42893,10 +42936,11 @@ module Aws::EC2
|
|
|
42893
42936
|
# @return [Integer]
|
|
42894
42937
|
#
|
|
42895
42938
|
# @!attribute [rw] owner_alias
|
|
42896
|
-
#
|
|
42897
|
-
# `
|
|
42898
|
-
#
|
|
42899
|
-
# from the IAM
|
|
42939
|
+
# The AWS owner alias, as maintained by Amazon. The possible values
|
|
42940
|
+
# are: `amazon` \| `self` \| `all` \| `aws-marketplace` \|
|
|
42941
|
+
# `microsoft`. This AWS owner alias is not to be confused with the
|
|
42942
|
+
# user-configured AWS account alias, which is set from the IAM
|
|
42943
|
+
# console.
|
|
42900
42944
|
# @return [String]
|
|
42901
42945
|
#
|
|
42902
42946
|
# @!attribute [rw] tags
|
|
@@ -47410,7 +47454,7 @@ module Aws::EC2
|
|
|
47410
47454
|
# @return [String]
|
|
47411
47455
|
#
|
|
47412
47456
|
# @!attribute [rw] original_size
|
|
47413
|
-
# The original size of the volume.
|
|
47457
|
+
# The original size of the volume, in GiB.
|
|
47414
47458
|
# @return [Integer]
|
|
47415
47459
|
#
|
|
47416
47460
|
# @!attribute [rw] original_iops
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -634,12 +636,13 @@ module Aws::EC2
|
|
|
634
636
|
# * `encrypted` - Indicates whether the snapshot is encrypted (`true` \|
|
|
635
637
|
# `false`)
|
|
636
638
|
#
|
|
637
|
-
# * `owner-alias` -
|
|
638
|
-
# `
|
|
639
|
-
#
|
|
640
|
-
#
|
|
639
|
+
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
|
640
|
+
# (`amazon`). This is not the user-configured AWS account alias set
|
|
641
|
+
# using the IAM console. We recommend that you use the related
|
|
642
|
+
# parameter instead of this filter.
|
|
641
643
|
#
|
|
642
|
-
# * `owner-id` - The ID of the
|
|
644
|
+
# * `owner-id` - The AWS account ID of the owner. We recommend that you
|
|
645
|
+
# use the related parameter instead of this filter.
|
|
643
646
|
#
|
|
644
647
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
|
645
648
|
# example, 80%).
|
|
@@ -665,7 +668,8 @@ module Aws::EC2
|
|
|
665
668
|
#
|
|
666
669
|
# * `volume-size` - The size of the volume, in GiB.
|
|
667
670
|
# @option options [Array<String>] :owner_ids
|
|
668
|
-
#
|
|
671
|
+
# Scopes the results to snapshots with the specified owners. You can
|
|
672
|
+
# specify a combination of AWS account IDs, `self`, and `amazon`.
|
|
669
673
|
# @option options [Array<String>] :restorable_by_user_ids
|
|
670
674
|
# The IDs of the AWS accounts that can create volumes from the snapshot.
|
|
671
675
|
# @option options [Array<String>] :snapshot_ids
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
data/lib/aws-sdk-ec2/waiters.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.167.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-06-
|
|
11
|
+
date: 2020-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|