aws-sdk-ec2 1.324.0 → 1.325.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +64 -7
- data/lib/aws-sdk-ec2/resource.rb +2 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -1
- data/lib/aws-sdk-ec2/types.rb +49 -20
- data/lib/aws-sdk-ec2.rb +1 -1
- 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: cc27ade041e8e106722da1d1d80510c819541b702cb7331cce2cada9a5e8a890
|
4
|
+
data.tar.gz: '084469d2fc76f828e79b5fc1fe478e0637659ad0176b7edecbda40b7eb31eb2b'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 225a5daeb82db733dea4a9dff959e08ae69717846b5699f8481811cff66f082584497527227f45cfb190ae6d721793a9825af653a112e76366dd9651af807901
|
7
|
+
data.tar.gz: 7602ba2d6f7424c6dbc604597e3f277b411a60b35ae506913f8216b99c2965606e82d3b74ed68be3cceb92f43d5d684a9bd0005deaba3c6ecfd3e740e64d1d1d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.325.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -2744,7 +2744,9 @@ module Aws::EC2
|
|
2744
2744
|
#
|
2745
2745
|
# An outbound rule permits instances to send traffic to the specified
|
2746
2746
|
# IPv4 or IPv6 CIDR address ranges, or to the instances that are
|
2747
|
-
# associated with the specified source security groups.
|
2747
|
+
# associated with the specified source security groups. When specifying
|
2748
|
+
# an outbound rule for your security group in a VPC, the `IpPermissions`
|
2749
|
+
# must include a destination for the traffic.
|
2748
2750
|
#
|
2749
2751
|
# You specify a protocol for each rule (for example, TCP). For the TCP
|
2750
2752
|
# and UDP protocols, you must also specify the destination port or port
|
@@ -2950,7 +2952,9 @@ module Aws::EC2
|
|
2950
2952
|
#
|
2951
2953
|
# An inbound rule permits instances to receive traffic from the
|
2952
2954
|
# specified IPv4 or IPv6 CIDR address range, or from the instances that
|
2953
|
-
# are associated with the specified destination security groups.
|
2955
|
+
# are associated with the specified destination security groups. When
|
2956
|
+
# specifying an inbound rule for your security group in a VPC, the
|
2957
|
+
# `IpPermissions` must include a source for the traffic.
|
2954
2958
|
#
|
2955
2959
|
# You specify a protocol for each rule (for example, TCP). For TCP and
|
2956
2960
|
# UDP, you must also specify the destination port or port range. For
|
@@ -2963,9 +2967,17 @@ module Aws::EC2
|
|
2963
2967
|
# For more information about VPC security group quotas, see [Amazon VPC
|
2964
2968
|
# quotas][1].
|
2965
2969
|
#
|
2970
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
2971
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
2972
|
+
# from EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud
|
2973
|
+
# User Guide*.
|
2974
|
+
#
|
2975
|
+
# </note>
|
2976
|
+
#
|
2966
2977
|
#
|
2967
2978
|
#
|
2968
2979
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html
|
2980
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
2969
2981
|
#
|
2970
2982
|
# @option params [String] :cidr_ip
|
2971
2983
|
# The IPv4 address range, in CIDR format. You can't specify this
|
@@ -9998,11 +10010,19 @@ module Aws::EC2
|
|
9998
10010
|
# For more information about VPC security group limits, see [Amazon VPC
|
9999
10011
|
# Limits][3].
|
10000
10012
|
#
|
10013
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
10014
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
10015
|
+
# from EC2-Classic to a VPC][4] in the *Amazon Elastic Compute Cloud
|
10016
|
+
# User Guide*.
|
10017
|
+
#
|
10018
|
+
# </note>
|
10019
|
+
#
|
10001
10020
|
#
|
10002
10021
|
#
|
10003
10022
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html
|
10004
10023
|
# [2]: https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html
|
10005
10024
|
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html
|
10025
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
10006
10026
|
#
|
10007
10027
|
# @option params [required, String] :description
|
10008
10028
|
# A description for the security group. This is informational only.
|
@@ -15130,6 +15150,17 @@ module Aws::EC2
|
|
15130
15150
|
# fails with `InvalidGroup.InUse` in EC2-Classic or
|
15131
15151
|
# `DependencyViolation` in EC2-VPC.
|
15132
15152
|
#
|
15153
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
15154
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
15155
|
+
# from EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud
|
15156
|
+
# User Guide*.
|
15157
|
+
#
|
15158
|
+
# </note>
|
15159
|
+
#
|
15160
|
+
#
|
15161
|
+
#
|
15162
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
15163
|
+
#
|
15133
15164
|
# @option params [String] :group_id
|
15134
15165
|
# The ID of the security group. Required for a nondefault VPC.
|
15135
15166
|
#
|
@@ -16824,9 +16855,16 @@ module Aws::EC2
|
|
16824
16855
|
# * `vpc-max-elastic-ips`\: The maximum number of Elastic IP addresses
|
16825
16856
|
# that you can allocate for use with EC2-VPC.
|
16826
16857
|
#
|
16858
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
16859
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
16860
|
+
# from EC2-Classic to a VPC][2] in the *Amazon EC2 User Guide*.
|
16861
|
+
#
|
16862
|
+
# </note>
|
16863
|
+
#
|
16827
16864
|
#
|
16828
16865
|
#
|
16829
16866
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-on-demand-instances.html#ec2-on-demand-instances-limits
|
16867
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
16830
16868
|
#
|
16831
16869
|
# @option params [Array<String>] :attribute_names
|
16832
16870
|
# The account attribute names.
|
@@ -27513,10 +27551,18 @@ module Aws::EC2
|
|
27513
27551
|
# and [Security groups for your VPC][2] in the *Amazon Virtual Private
|
27514
27552
|
# Cloud User Guide*.
|
27515
27553
|
#
|
27554
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
27555
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
27556
|
+
# from EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud
|
27557
|
+
# User Guide*.
|
27558
|
+
#
|
27559
|
+
# </note>
|
27560
|
+
#
|
27516
27561
|
#
|
27517
27562
|
#
|
27518
27563
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html
|
27519
27564
|
# [2]: https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html
|
27565
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
27520
27566
|
#
|
27521
27567
|
# @option params [Array<Types::Filter>] :filters
|
27522
27568
|
# The filters. If using multiple filters for rules, the results include
|
@@ -34957,9 +35003,8 @@ module Aws::EC2
|
|
34957
35003
|
# The ID of the image.
|
34958
35004
|
#
|
34959
35005
|
# @option params [required, Types::ExportTaskS3LocationRequest] :s3_export_location
|
34960
|
-
#
|
34961
|
-
# exist
|
34962
|
-
# Services account vm-import-export@amazon.com.
|
35006
|
+
# The Amazon S3 bucket for the destination image. The destination bucket
|
35007
|
+
# must exist.
|
34963
35008
|
#
|
34964
35009
|
# @option params [String] :role_name
|
34965
35010
|
# The name of the role that grants VM Import/Export permission to export
|
@@ -47607,6 +47652,17 @@ module Aws::EC2
|
|
47607
47652
|
# Rule changes are propagated to instances within the security group as
|
47608
47653
|
# quickly as possible. However, a small delay might occur.
|
47609
47654
|
#
|
47655
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
47656
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
47657
|
+
# from EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud
|
47658
|
+
# User Guide*.
|
47659
|
+
#
|
47660
|
+
# </note>
|
47661
|
+
#
|
47662
|
+
#
|
47663
|
+
#
|
47664
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
47665
|
+
#
|
47610
47666
|
# @option params [String] :cidr_ip
|
47611
47667
|
# The CIDR IP address range. You can't specify this parameter when
|
47612
47668
|
# specifying a source security group.
|
@@ -48119,7 +48175,8 @@ module Aws::EC2
|
|
48119
48175
|
# information, see [Burstable performance instances][2] in the *Amazon
|
48120
48176
|
# EC2 User Guide*.
|
48121
48177
|
#
|
48122
|
-
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a
|
48178
|
+
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a/T4g
|
48179
|
+
# instances)
|
48123
48180
|
#
|
48124
48181
|
# For T3 instances with `host` tenancy, only `standard` is supported.
|
48125
48182
|
#
|
@@ -50477,7 +50534,7 @@ module Aws::EC2
|
|
50477
50534
|
params: params,
|
50478
50535
|
config: config)
|
50479
50536
|
context[:gem_name] = 'aws-sdk-ec2'
|
50480
|
-
context[:gem_version] = '1.
|
50537
|
+
context[:gem_version] = '1.325.0'
|
50481
50538
|
Seahorse::Client::Request.new(handlers, context)
|
50482
50539
|
end
|
50483
50540
|
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -521,7 +521,8 @@ module Aws::EC2
|
|
521
521
|
# information, see [Burstable performance instances][2] in the *Amazon
|
522
522
|
# EC2 User Guide*.
|
523
523
|
#
|
524
|
-
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a
|
524
|
+
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a/T4g
|
525
|
+
# instances)
|
525
526
|
#
|
526
527
|
# For T3 instances with `host` tenancy, only `standard` is supported.
|
527
528
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -740,7 +740,8 @@ module Aws::EC2
|
|
740
740
|
# information, see [Burstable performance instances][2] in the *Amazon
|
741
741
|
# EC2 User Guide*.
|
742
742
|
#
|
743
|
-
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a
|
743
|
+
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a/T4g
|
744
|
+
# instances)
|
744
745
|
#
|
745
746
|
# For T3 instances with `host` tenancy, only `standard` is supported.
|
746
747
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -33488,9 +33488,8 @@ module Aws::EC2
|
|
33488
33488
|
# @return [String]
|
33489
33489
|
#
|
33490
33490
|
# @!attribute [rw] s3_export_location
|
33491
|
-
#
|
33492
|
-
#
|
33493
|
-
# Services account vm-import-export@amazon.com.
|
33491
|
+
# The Amazon S3 bucket for the destination image. The destination
|
33492
|
+
# bucket must exist.
|
33494
33493
|
# @return [Types::ExportTaskS3LocationRequest]
|
33495
33494
|
#
|
33496
33495
|
# @!attribute [rw] role_name
|
@@ -33730,8 +33729,14 @@ module Aws::EC2
|
|
33730
33729
|
#
|
33731
33730
|
# @!attribute [rw] s3_bucket
|
33732
33731
|
# The Amazon S3 bucket for the destination image. The destination
|
33733
|
-
# bucket must exist and
|
33734
|
-
#
|
33732
|
+
# bucket must exist and have an access control list (ACL) attached
|
33733
|
+
# that specifies the Region-specific canonical account ID for the
|
33734
|
+
# `Grantee`. For more information about the ACL to your S3 bucket, see
|
33735
|
+
# [Prerequisites][1] in the VM Import/Export User Guide.
|
33736
|
+
#
|
33737
|
+
#
|
33738
|
+
#
|
33739
|
+
# [1]: https://docs.aws.amazon.com/vm-import/latest/userguide/vmexport.html#vmexport-prerequisites
|
33735
33740
|
# @return [String]
|
33736
33741
|
#
|
33737
33742
|
# @!attribute [rw] s3_key
|
@@ -33772,8 +33777,14 @@ module Aws::EC2
|
|
33772
33777
|
#
|
33773
33778
|
# @!attribute [rw] s3_bucket
|
33774
33779
|
# The Amazon S3 bucket for the destination image. The destination
|
33775
|
-
# bucket must exist and
|
33776
|
-
#
|
33780
|
+
# bucket must exist and have an access control list (ACL) attached
|
33781
|
+
# that specifies the Region-specific canonical account ID for the
|
33782
|
+
# `Grantee`. For more information about the ACL to your S3 bucket, see
|
33783
|
+
# [Prerequisites][1] in the VM Import/Export User Guide.
|
33784
|
+
#
|
33785
|
+
#
|
33786
|
+
#
|
33787
|
+
# [1]: https://docs.aws.amazon.com/vm-import/latest/userguide/vmexport.html#vmexport-prerequisites
|
33777
33788
|
# @return [String]
|
33778
33789
|
#
|
33779
33790
|
# @!attribute [rw] s3_prefix
|
@@ -38845,8 +38856,9 @@ module Aws::EC2
|
|
38845
38856
|
#
|
38846
38857
|
# @!attribute [rw] last_launched_time
|
38847
38858
|
# The date and time, in [ISO 8601 date-time format][1], when the AMI
|
38848
|
-
# was last used to launch an EC2 instance. When the AMI is used
|
38849
|
-
# is a 24-hour delay before that usage is
|
38859
|
+
# was last used to launch an EC2 instance. When the AMI is used to
|
38860
|
+
# launch an instance, there is a 24-hour delay before that usage is
|
38861
|
+
# reported.
|
38850
38862
|
#
|
38851
38863
|
# <note markdown="1"> `lastLaunchedTime` data is available starting April 2017.
|
38852
38864
|
#
|
@@ -40712,8 +40724,9 @@ module Aws::EC2
|
|
40712
40724
|
# @return [String]
|
40713
40725
|
#
|
40714
40726
|
# @!attribute [rw] cpu_credits
|
40715
|
-
# The credit option for CPU usage of the instance.
|
40716
|
-
#
|
40727
|
+
# The credit option for CPU usage of the instance.
|
40728
|
+
#
|
40729
|
+
# Valid values: `standard` \| `unlimited`
|
40717
40730
|
# @return [String]
|
40718
40731
|
#
|
40719
40732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceCreditSpecification AWS API Documentation
|
@@ -40741,8 +40754,9 @@ module Aws::EC2
|
|
40741
40754
|
# @return [String]
|
40742
40755
|
#
|
40743
40756
|
# @!attribute [rw] cpu_credits
|
40744
|
-
# The credit option for CPU usage of the instance.
|
40745
|
-
#
|
40757
|
+
# The credit option for CPU usage of the instance.
|
40758
|
+
#
|
40759
|
+
# Valid values: `standard` \| `unlimited`
|
40746
40760
|
#
|
40747
40761
|
# T3 instances with `host` tenancy do not support the `unlimited` CPU
|
40748
40762
|
# credit option.
|
@@ -41685,8 +41699,12 @@ module Aws::EC2
|
|
41685
41699
|
#
|
41686
41700
|
# You can only assign a carrier IP address to a network interface that
|
41687
41701
|
# is in a subnet in a Wavelength Zone. For more information about
|
41688
|
-
# carrier IP addresses, see Carrier IP
|
41689
|
-
# Services Wavelength Developer Guide
|
41702
|
+
# carrier IP addresses, see [Carrier IP address][1] in the *Amazon Web
|
41703
|
+
# Services Wavelength Developer Guide*.
|
41704
|
+
#
|
41705
|
+
#
|
41706
|
+
#
|
41707
|
+
# [1]: https://docs.aws.amazon.com/wavelength/latest/developerguide/how-wavelengths-work.html#provider-owned-ip
|
41690
41708
|
# @return [Boolean]
|
41691
41709
|
#
|
41692
41710
|
# @!attribute [rw] interface_type
|
@@ -57373,10 +57391,9 @@ module Aws::EC2
|
|
57373
57391
|
# @return [Array<String>]
|
57374
57392
|
#
|
57375
57393
|
# @!attribute [rw] security_groups
|
57376
|
-
#
|
57377
|
-
#
|
57378
|
-
#
|
57379
|
-
# request.
|
57394
|
+
# One or more security group names. For a nondefault VPC, you must use
|
57395
|
+
# security group IDs instead. You cannot specify both a security group
|
57396
|
+
# ID and security name in the same request.
|
57380
57397
|
# @return [Array<String>]
|
57381
57398
|
#
|
57382
57399
|
# @!attribute [rw] instance_market_options
|
@@ -60842,7 +60859,8 @@ module Aws::EC2
|
|
60842
60859
|
# ModifyInstanceCreditSpecification][1]. For more information, see
|
60843
60860
|
# [Burstable performance instances][2] in the *Amazon EC2 User Guide*.
|
60844
60861
|
#
|
60845
|
-
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a
|
60862
|
+
# Default: `standard` (T2 instances) or `unlimited` (T3/T3a/T4g
|
60863
|
+
# instances)
|
60846
60864
|
#
|
60847
60865
|
# For T3 instances with `host` tenancy, only `standard` is supported.
|
60848
60866
|
#
|
@@ -68948,6 +68966,17 @@ module Aws::EC2
|
|
68948
68966
|
|
68949
68967
|
# Describes a security group and Amazon Web Services account ID pair.
|
68950
68968
|
#
|
68969
|
+
# <note markdown="1"> We are retiring EC2-Classic on August 15, 2022. We recommend that you
|
68970
|
+
# migrate from EC2-Classic to a VPC. For more information, see [Migrate
|
68971
|
+
# from EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud
|
68972
|
+
# User Guide*.
|
68973
|
+
#
|
68974
|
+
# </note>
|
68975
|
+
#
|
68976
|
+
#
|
68977
|
+
#
|
68978
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
68979
|
+
#
|
68951
68980
|
# @note When making an API call, you may pass UserIdGroupPair
|
68952
68981
|
# data as a hash:
|
68953
68982
|
#
|
data/lib/aws-sdk-ec2.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.325.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: 2022-07-
|
11
|
+
date: 2022-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|