aws-sdk-ec2 1.336.0 → 1.337.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 +147 -102
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/instance.rb +8 -1
- data/lib/aws-sdk-ec2/network_interface.rb +3 -3
- data/lib/aws-sdk-ec2/resource.rb +46 -29
- data/lib/aws-sdk-ec2/security_group.rb +7 -3
- data/lib/aws-sdk-ec2/subnet.rb +42 -24
- data/lib/aws-sdk-ec2/types.rb +118 -84
- data/lib/aws-sdk-ec2/vpc.rb +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -1215,6 +1215,8 @@ module Aws::EC2
|
|
|
1215
1215
|
#
|
|
1216
1216
|
# @!attribute [rw] disallowed_cidrs
|
|
1217
1217
|
# Exclude a particular CIDR range from being returned by the pool.
|
|
1218
|
+
# Disallowed CIDRs are only allowed if using netmask length for
|
|
1219
|
+
# allocation.
|
|
1218
1220
|
# @return [Array<String>]
|
|
1219
1221
|
#
|
|
1220
1222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateIpamPoolCidrRequest AWS API Documentation
|
|
@@ -1640,9 +1642,9 @@ module Aws::EC2
|
|
|
1640
1642
|
# @return [Integer]
|
|
1641
1643
|
#
|
|
1642
1644
|
# @!attribute [rw] ipv_6_addresses
|
|
1643
|
-
#
|
|
1644
|
-
#
|
|
1645
|
-
#
|
|
1645
|
+
# The IPv6 addresses to be assigned to the network interface. You
|
|
1646
|
+
# can't use this option if you're specifying a number of IPv6
|
|
1647
|
+
# addresses.
|
|
1646
1648
|
# @return [Array<String>]
|
|
1647
1649
|
#
|
|
1648
1650
|
# @!attribute [rw] ipv_6_prefix_count
|
|
@@ -1721,9 +1723,9 @@ module Aws::EC2
|
|
|
1721
1723
|
# @return [String]
|
|
1722
1724
|
#
|
|
1723
1725
|
# @!attribute [rw] private_ip_addresses
|
|
1724
|
-
#
|
|
1725
|
-
#
|
|
1726
|
-
#
|
|
1726
|
+
# The IP addresses to be assigned as a secondary private IP address to
|
|
1727
|
+
# the network interface. You can't specify this parameter when also
|
|
1728
|
+
# specifying a number of secondary IP addresses.
|
|
1727
1729
|
#
|
|
1728
1730
|
# If you don't specify an IP address, Amazon EC2 automatically
|
|
1729
1731
|
# selects an IP address within the subnet range.
|
|
@@ -3377,7 +3379,8 @@ module Aws::EC2
|
|
|
3377
3379
|
# @!attribute [rw] group_name
|
|
3378
3380
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
|
3379
3381
|
# must specify either the security group ID or the security group name
|
|
3380
|
-
# in the request.
|
|
3382
|
+
# in the request. For security groups in a nondefault VPC, you must
|
|
3383
|
+
# specify the security group ID.
|
|
3381
3384
|
# @return [String]
|
|
3382
3385
|
#
|
|
3383
3386
|
# @!attribute [rw] ip_permissions
|
|
@@ -10951,8 +10954,6 @@ module Aws::EC2
|
|
|
10951
10954
|
include Aws::Structure
|
|
10952
10955
|
end
|
|
10953
10956
|
|
|
10954
|
-
# Contains the parameters for CreateNetworkInterface.
|
|
10955
|
-
#
|
|
10956
10957
|
# @note When making an API call, you may pass CreateNetworkInterfaceRequest
|
|
10957
10958
|
# data as a hash:
|
|
10958
10959
|
#
|
|
@@ -11020,16 +11021,23 @@ module Aws::EC2
|
|
|
11020
11021
|
# @!attribute [rw] ipv_6_address_count
|
|
11021
11022
|
# The number of IPv6 addresses to assign to a network interface.
|
|
11022
11023
|
# Amazon EC2 automatically selects the IPv6 addresses from the subnet
|
|
11023
|
-
# range.
|
|
11024
|
-
#
|
|
11025
|
-
#
|
|
11026
|
-
#
|
|
11024
|
+
# range.
|
|
11025
|
+
#
|
|
11026
|
+
# You can't specify a count of IPv6 addresses using this parameter if
|
|
11027
|
+
# you've specified one of the following: specific IPv6 addresses,
|
|
11028
|
+
# specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
11029
|
+
#
|
|
11030
|
+
# If your subnet has the `AssignIpv6AddressOnCreation` attribute set,
|
|
11031
|
+
# you can override that setting by specifying 0 as the IPv6 address
|
|
11032
|
+
# count.
|
|
11027
11033
|
# @return [Integer]
|
|
11028
11034
|
#
|
|
11029
11035
|
# @!attribute [rw] ipv_6_addresses
|
|
11030
|
-
#
|
|
11031
|
-
#
|
|
11032
|
-
#
|
|
11036
|
+
# The IPv6 addresses from the IPv6 CIDR block range of your subnet.
|
|
11037
|
+
#
|
|
11038
|
+
# You can't specify IPv6 addresses using this parameter if you've
|
|
11039
|
+
# specified one of the following: a count of IPv6 addresses, specific
|
|
11040
|
+
# IPv6 prefixes, or a count of IPv6 prefixes.
|
|
11033
11041
|
# @return [Array<Types::InstanceIpv6Address>]
|
|
11034
11042
|
#
|
|
11035
11043
|
# @!attribute [rw] private_ip_address
|
|
@@ -11041,7 +11049,11 @@ module Aws::EC2
|
|
|
11041
11049
|
# @return [String]
|
|
11042
11050
|
#
|
|
11043
11051
|
# @!attribute [rw] private_ip_addresses
|
|
11044
|
-
#
|
|
11052
|
+
# The private IPv4 addresses.
|
|
11053
|
+
#
|
|
11054
|
+
# You can't specify private IPv4 addresses if you've specified one
|
|
11055
|
+
# of the following: a count of private IPv4 addresses, specific IPv4
|
|
11056
|
+
# prefixes, or a count of IPv4 prefixes.
|
|
11045
11057
|
# @return [Array<Types::PrivateIpAddressSpecification>]
|
|
11046
11058
|
#
|
|
11047
11059
|
# @!attribute [rw] secondary_private_ip_address_count
|
|
@@ -11051,36 +11063,43 @@ module Aws::EC2
|
|
|
11051
11063
|
# subnet's IPv4 CIDR range. You can't specify this option and
|
|
11052
11064
|
# specify more than one private IP address using `privateIpAddresses`.
|
|
11053
11065
|
#
|
|
11054
|
-
#
|
|
11055
|
-
#
|
|
11056
|
-
#
|
|
11057
|
-
# Guide*.
|
|
11058
|
-
#
|
|
11059
|
-
#
|
|
11060
|
-
#
|
|
11061
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
|
11066
|
+
# You can't specify a count of private IPv4 addresses if you've
|
|
11067
|
+
# specified one of the following: specific private IPv4 addresses,
|
|
11068
|
+
# specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
11062
11069
|
# @return [Integer]
|
|
11063
11070
|
#
|
|
11064
11071
|
# @!attribute [rw] ipv_4_prefixes
|
|
11065
|
-
#
|
|
11066
|
-
#
|
|
11072
|
+
# The IPv4 prefixes assigned to the network interface.
|
|
11073
|
+
#
|
|
11074
|
+
# You can't specify IPv4 prefixes if you've specified one of the
|
|
11075
|
+
# following: a count of IPv4 prefixes, specific private IPv4
|
|
11076
|
+
# addresses, or a count of private IPv4 addresses.
|
|
11067
11077
|
# @return [Array<Types::Ipv4PrefixSpecificationRequest>]
|
|
11068
11078
|
#
|
|
11069
11079
|
# @!attribute [rw] ipv_4_prefix_count
|
|
11070
11080
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
|
11071
|
-
# assigns to the network interface.
|
|
11072
|
-
#
|
|
11081
|
+
# assigns to the network interface.
|
|
11082
|
+
#
|
|
11083
|
+
# You can't specify a count of IPv4 prefixes if you've specified one
|
|
11084
|
+
# of the following: specific IPv4 prefixes, specific private IPv4
|
|
11085
|
+
# addresses, or a count of private IPv4 addresses.
|
|
11073
11086
|
# @return [Integer]
|
|
11074
11087
|
#
|
|
11075
11088
|
# @!attribute [rw] ipv_6_prefixes
|
|
11076
|
-
#
|
|
11077
|
-
#
|
|
11089
|
+
# The IPv6 prefixes assigned to the network interface.
|
|
11090
|
+
#
|
|
11091
|
+
# You can't specify IPv6 prefixes if you've specified one of the
|
|
11092
|
+
# following: a count of IPv6 prefixes, specific IPv6 addresses, or a
|
|
11093
|
+
# count of IPv6 addresses.
|
|
11078
11094
|
# @return [Array<Types::Ipv6PrefixSpecificationRequest>]
|
|
11079
11095
|
#
|
|
11080
11096
|
# @!attribute [rw] ipv_6_prefix_count
|
|
11081
11097
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
|
11082
|
-
# assigns to the network interface.
|
|
11083
|
-
#
|
|
11098
|
+
# assigns to the network interface.
|
|
11099
|
+
#
|
|
11100
|
+
# You can't specify a count of IPv6 prefixes if you've specified one
|
|
11101
|
+
# of the following: specific IPv6 prefixes, specific IPv6 addresses,
|
|
11102
|
+
# or a count of IPv6 addresses.
|
|
11084
11103
|
# @return [Integer]
|
|
11085
11104
|
#
|
|
11086
11105
|
# @!attribute [rw] interface_type
|
|
@@ -11133,8 +11152,6 @@ module Aws::EC2
|
|
|
11133
11152
|
include Aws::Structure
|
|
11134
11153
|
end
|
|
11135
11154
|
|
|
11136
|
-
# Contains the output of CreateNetworkInterface.
|
|
11137
|
-
#
|
|
11138
11155
|
# @!attribute [rw] network_interface
|
|
11139
11156
|
# Information about the network interface.
|
|
11140
11157
|
# @return [Types::NetworkInterface]
|
|
@@ -16614,7 +16631,9 @@ module Aws::EC2
|
|
|
16614
16631
|
#
|
|
16615
16632
|
# @!attribute [rw] group_name
|
|
16616
16633
|
# \[EC2-Classic, default VPC\] The name of the security group. You can
|
|
16617
|
-
# specify either the security group name or the security group ID.
|
|
16634
|
+
# specify either the security group name or the security group ID. For
|
|
16635
|
+
# security groups in a nondefault VPC, you must specify the security
|
|
16636
|
+
# group ID.
|
|
16618
16637
|
# @return [String]
|
|
16619
16638
|
#
|
|
16620
16639
|
# @!attribute [rw] dry_run
|
|
@@ -21470,13 +21489,12 @@ module Aws::EC2
|
|
|
21470
21489
|
# @return [Array<String>]
|
|
21471
21490
|
#
|
|
21472
21491
|
# @!attribute [rw] include_deprecated
|
|
21473
|
-
#
|
|
21474
|
-
#
|
|
21475
|
-
#
|
|
21492
|
+
# Specifies whether to include deprecated AMIs.
|
|
21493
|
+
#
|
|
21494
|
+
# Default: No deprecated AMIs are included in the response.
|
|
21476
21495
|
#
|
|
21477
21496
|
# <note markdown="1"> If you are the AMI owner, all deprecated AMIs appear in the response
|
|
21478
|
-
# regardless of
|
|
21479
|
-
# parameter.
|
|
21497
|
+
# regardless of what you specify for this parameter.
|
|
21480
21498
|
#
|
|
21481
21499
|
# </note>
|
|
21482
21500
|
# @return [Boolean]
|
|
@@ -24759,7 +24777,7 @@ module Aws::EC2
|
|
|
24759
24777
|
# }
|
|
24760
24778
|
#
|
|
24761
24779
|
# @!attribute [rw] network_interface_permission_ids
|
|
24762
|
-
#
|
|
24780
|
+
# The network interface permission IDs.
|
|
24763
24781
|
# @return [Array<String>]
|
|
24764
24782
|
#
|
|
24765
24783
|
# @!attribute [rw] filters
|
|
@@ -24968,7 +24986,7 @@ module Aws::EC2
|
|
|
24968
24986
|
# @return [Boolean]
|
|
24969
24987
|
#
|
|
24970
24988
|
# @!attribute [rw] network_interface_ids
|
|
24971
|
-
#
|
|
24989
|
+
# The network interface IDs.
|
|
24972
24990
|
#
|
|
24973
24991
|
# Default: Describes all your network interfaces.
|
|
24974
24992
|
# @return [Array<String>]
|
|
@@ -39851,11 +39869,12 @@ module Aws::EC2
|
|
|
39851
39869
|
# The license type to be used for the Amazon Machine Image (AMI) after
|
|
39852
39870
|
# importing.
|
|
39853
39871
|
#
|
|
39854
|
-
#
|
|
39855
|
-
#
|
|
39856
|
-
#
|
|
39857
|
-
#
|
|
39858
|
-
#
|
|
39872
|
+
# Specify `AWS` to replace the source-system license with an Amazon
|
|
39873
|
+
# Web Services license or `BYOL` to retain the source-system license.
|
|
39874
|
+
# Leaving this parameter undefined is the same as choosing `AWS` when
|
|
39875
|
+
# importing a Windows Server operating system, and the same as
|
|
39876
|
+
# choosing `BYOL` when importing a Windows client operating system
|
|
39877
|
+
# (such as Windows 10) or a Linux operating system.
|
|
39859
39878
|
#
|
|
39860
39879
|
# To use `BYOL`, you must have existing licenses with rights to use
|
|
39861
39880
|
# these licenses in a third party cloud, such as Amazon Web Services.
|
|
@@ -42027,11 +42046,11 @@ module Aws::EC2
|
|
|
42027
42046
|
# @return [String]
|
|
42028
42047
|
#
|
|
42029
42048
|
# @!attribute [rw] groups
|
|
42030
|
-
#
|
|
42049
|
+
# The security groups.
|
|
42031
42050
|
# @return [Array<Types::GroupIdentifier>]
|
|
42032
42051
|
#
|
|
42033
42052
|
# @!attribute [rw] ipv_6_addresses
|
|
42034
|
-
#
|
|
42053
|
+
# The IPv6 addresses associated with the network interface.
|
|
42035
42054
|
# @return [Array<Types::InstanceIpv6Address>]
|
|
42036
42055
|
#
|
|
42037
42056
|
# @!attribute [rw] mac_address
|
|
@@ -42056,8 +42075,7 @@ module Aws::EC2
|
|
|
42056
42075
|
# @return [String]
|
|
42057
42076
|
#
|
|
42058
42077
|
# @!attribute [rw] private_ip_addresses
|
|
42059
|
-
#
|
|
42060
|
-
# interface.
|
|
42078
|
+
# The private IPv4 addresses associated with the network interface.
|
|
42061
42079
|
# @return [Array<Types::InstancePrivateIpAddress>]
|
|
42062
42080
|
#
|
|
42063
42081
|
# @!attribute [rw] source_dest_check
|
|
@@ -42279,8 +42297,8 @@ module Aws::EC2
|
|
|
42279
42297
|
# @return [Integer]
|
|
42280
42298
|
#
|
|
42281
42299
|
# @!attribute [rw] ipv_6_addresses
|
|
42282
|
-
#
|
|
42283
|
-
#
|
|
42300
|
+
# The IPv6 addresses to assign to the network interface. You cannot
|
|
42301
|
+
# specify this option and the option to assign a number of IPv6
|
|
42284
42302
|
# addresses in the same request. You cannot specify this option if
|
|
42285
42303
|
# you've specified a minimum number of instances to launch.
|
|
42286
42304
|
# @return [Array<Types::InstanceIpv6Address>]
|
|
@@ -42304,10 +42322,10 @@ module Aws::EC2
|
|
|
42304
42322
|
# @return [String]
|
|
42305
42323
|
#
|
|
42306
42324
|
# @!attribute [rw] private_ip_addresses
|
|
42307
|
-
#
|
|
42308
|
-
#
|
|
42309
|
-
#
|
|
42310
|
-
#
|
|
42325
|
+
# The private IPv4 addresses to assign to the network interface. Only
|
|
42326
|
+
# one private IPv4 address can be designated as primary. You cannot
|
|
42327
|
+
# specify this option if you're launching more than one instance in a
|
|
42328
|
+
# [RunInstances][1] request.
|
|
42311
42329
|
#
|
|
42312
42330
|
#
|
|
42313
42331
|
#
|
|
@@ -42368,9 +42386,8 @@ module Aws::EC2
|
|
|
42368
42386
|
# @return [Integer]
|
|
42369
42387
|
#
|
|
42370
42388
|
# @!attribute [rw] ipv_4_prefixes
|
|
42371
|
-
#
|
|
42372
|
-
#
|
|
42373
|
-
# `Ipv4PrefixCount` option.
|
|
42389
|
+
# The IPv4 delegated prefixes to be assigned to the network interface.
|
|
42390
|
+
# You cannot use this option if you use the `Ipv4PrefixCount` option.
|
|
42374
42391
|
# @return [Array<Types::Ipv4PrefixSpecificationRequest>]
|
|
42375
42392
|
#
|
|
42376
42393
|
# @!attribute [rw] ipv_4_prefix_count
|
|
@@ -42380,9 +42397,8 @@ module Aws::EC2
|
|
|
42380
42397
|
# @return [Integer]
|
|
42381
42398
|
#
|
|
42382
42399
|
# @!attribute [rw] ipv_6_prefixes
|
|
42383
|
-
#
|
|
42384
|
-
#
|
|
42385
|
-
# `Ipv6PrefixCount` option.
|
|
42400
|
+
# The IPv6 delegated prefixes to be assigned to the network interface.
|
|
42401
|
+
# You cannot use this option if you use the `Ipv6PrefixCount` option.
|
|
42386
42402
|
# @return [Array<Types::Ipv6PrefixSpecificationRequest>]
|
|
42387
42403
|
#
|
|
42388
42404
|
# @!attribute [rw] ipv_6_prefix_count
|
|
@@ -42814,7 +42830,7 @@ module Aws::EC2
|
|
|
42814
42830
|
#
|
|
42815
42831
|
# * For instance types with Xilinx VU9P FPGAs, specify `vu9p`.
|
|
42816
42832
|
#
|
|
42817
|
-
# * For instance types with Amazon Web Services Inferentia
|
|
42833
|
+
# * For instance types with Amazon Web Services Inferentia chips,
|
|
42818
42834
|
# specify `inferentia`.
|
|
42819
42835
|
#
|
|
42820
42836
|
# * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
|
|
@@ -43222,7 +43238,7 @@ module Aws::EC2
|
|
|
43222
43238
|
#
|
|
43223
43239
|
# * For instance types with Xilinx VU9P FPGAs, specify ` vu9p`.
|
|
43224
43240
|
#
|
|
43225
|
-
# * For instance types with Amazon Web Services Inferentia
|
|
43241
|
+
# * For instance types with Amazon Web Services Inferentia chips,
|
|
43226
43242
|
# specify `inferentia`.
|
|
43227
43243
|
#
|
|
43228
43244
|
# * For instance types with NVIDIA GRID K520 GPUs, specify `k520`.
|
|
@@ -43370,6 +43386,12 @@ module Aws::EC2
|
|
|
43370
43386
|
# @return [Boolean]
|
|
43371
43387
|
#
|
|
43372
43388
|
# @!attribute [rw] exclude_data_volume_ids
|
|
43389
|
+
# The IDs of the data (non-root) volumes to exclude from the
|
|
43390
|
+
# multi-volume snapshot set. If you specify the ID of the root volume,
|
|
43391
|
+
# the request fails. To exclude the root volume, use
|
|
43392
|
+
# **ExcludeBootVolume**.
|
|
43393
|
+
#
|
|
43394
|
+
# You can specify up to 40 volume IDs per request.
|
|
43373
43395
|
# @return [Array<String>]
|
|
43374
43396
|
#
|
|
43375
43397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceSpecification AWS API Documentation
|
|
@@ -44837,8 +44859,7 @@ module Aws::EC2
|
|
|
44837
44859
|
# interface.
|
|
44838
44860
|
#
|
|
44839
44861
|
# @!attribute [rw] ipv_4_prefix
|
|
44840
|
-
#
|
|
44841
|
-
# interface.
|
|
44862
|
+
# The IPv4 delegated prefixes assigned to the network interface.
|
|
44842
44863
|
# @return [String]
|
|
44843
44864
|
#
|
|
44844
44865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationResponse AWS API Documentation
|
|
@@ -44950,8 +44971,7 @@ module Aws::EC2
|
|
|
44950
44971
|
# interface.
|
|
44951
44972
|
#
|
|
44952
44973
|
# @!attribute [rw] ipv_6_prefix
|
|
44953
|
-
#
|
|
44954
|
-
# interface.
|
|
44974
|
+
# The IPv6 delegated prefixes assigned to the network interface.
|
|
44955
44975
|
# @return [String]
|
|
44956
44976
|
#
|
|
44957
44977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationResponse AWS API Documentation
|
|
@@ -49220,7 +49240,14 @@ module Aws::EC2
|
|
|
49220
49240
|
# @return [Types::AttributeBooleanValue]
|
|
49221
49241
|
#
|
|
49222
49242
|
# @!attribute [rw] attribute
|
|
49223
|
-
# The name of the attribute.
|
|
49243
|
+
# The name of the attribute to modify.
|
|
49244
|
+
#
|
|
49245
|
+
# You can modify the following attributes only:
|
|
49246
|
+
# `disableApiTermination` \| `instanceType` \| `kernel` \| `ramdisk`
|
|
49247
|
+
# \| `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
|
49248
|
+
# `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
|
|
49249
|
+
# `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \|
|
|
49250
|
+
# `disableApiStop` \| `enclaveOptions`
|
|
49224
49251
|
# @return [String]
|
|
49225
49252
|
#
|
|
49226
49253
|
# @!attribute [rw] block_device_mappings
|
|
@@ -51380,6 +51407,11 @@ module Aws::EC2
|
|
|
51380
51407
|
# A private Autonomous System Number (ASN) for the Amazon side of a
|
|
51381
51408
|
# BGP session. The range is 64512 to 65534 for 16-bit ASNs and
|
|
51382
51409
|
# 4200000000 to 4294967294 for 32-bit ASNs.
|
|
51410
|
+
#
|
|
51411
|
+
# The modify ASN operation is not allowed on a transit gateway with
|
|
51412
|
+
# active BGP sessions. You must first delete all transit gateway
|
|
51413
|
+
# attachments that have BGP configured prior to modifying the ASN on
|
|
51414
|
+
# the transit gateway.
|
|
51383
51415
|
# @return [Integer]
|
|
51384
51416
|
#
|
|
51385
51417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayOptions AWS API Documentation
|
|
@@ -53025,10 +53057,10 @@ module Aws::EC2
|
|
|
53025
53057
|
|
|
53026
53058
|
# Describes the status of a moving Elastic IP address.
|
|
53027
53059
|
#
|
|
53028
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
53029
|
-
#
|
|
53030
|
-
#
|
|
53031
|
-
#
|
|
53060
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
53061
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
53062
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
53063
|
+
# Guide*.
|
|
53032
53064
|
#
|
|
53033
53065
|
# </note>
|
|
53034
53066
|
#
|
|
@@ -55541,7 +55573,7 @@ module Aws::EC2
|
|
|
55541
55573
|
# @return [Boolean]
|
|
55542
55574
|
#
|
|
55543
55575
|
# @!attribute [rw] private_ip_address
|
|
55544
|
-
# The private IPv4
|
|
55576
|
+
# The private IPv4 address.
|
|
55545
55577
|
# @return [String]
|
|
55546
55578
|
#
|
|
55547
55579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateIpAddressSpecification AWS API Documentation
|
|
@@ -58073,7 +58105,7 @@ module Aws::EC2
|
|
|
58073
58105
|
# The instance type. For more information, see [Instance types][1] in
|
|
58074
58106
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
58075
58107
|
#
|
|
58076
|
-
# If you specify `
|
|
58108
|
+
# If you specify `InstanceType`, you can't specify
|
|
58077
58109
|
# `InstanceRequirements`.
|
|
58078
58110
|
#
|
|
58079
58111
|
#
|
|
@@ -60842,7 +60874,8 @@ module Aws::EC2
|
|
|
60842
60874
|
# @!attribute [rw] group_name
|
|
60843
60875
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
|
60844
60876
|
# must specify either the security group ID or the security group name
|
|
60845
|
-
# in the request.
|
|
60877
|
+
# in the request. For security groups in a nondefault VPC, you must
|
|
60878
|
+
# specify the security group ID.
|
|
60846
60879
|
# @return [String]
|
|
60847
60880
|
#
|
|
60848
60881
|
# @!attribute [rw] ip_permissions
|
|
@@ -69337,7 +69370,7 @@ module Aws::EC2
|
|
|
69337
69370
|
# @return [Array<String>]
|
|
69338
69371
|
#
|
|
69339
69372
|
# @!attribute [rw] ipv_6_prefixes
|
|
69340
|
-
#
|
|
69373
|
+
# The IPv6 prefixes to unassign from the network interface.
|
|
69341
69374
|
# @return [Array<String>]
|
|
69342
69375
|
#
|
|
69343
69376
|
# @!attribute [rw] network_interface_id
|
|
@@ -69709,7 +69742,8 @@ module Aws::EC2
|
|
|
69709
69742
|
# @!attribute [rw] group_name
|
|
69710
69743
|
# \[EC2-Classic, default VPC\] The name of the security group. You
|
|
69711
69744
|
# must specify either the security group ID or the security group name
|
|
69712
|
-
# in the request.
|
|
69745
|
+
# in the request. For security groups in a nondefault VPC, you must
|
|
69746
|
+
# specify the security group ID.
|
|
69713
69747
|
# @return [String]
|
|
69714
69748
|
#
|
|
69715
69749
|
# @!attribute [rw] ip_permissions
|
|
@@ -69818,10 +69852,10 @@ module Aws::EC2
|
|
|
69818
69852
|
|
|
69819
69853
|
# Describes a security group and Amazon Web Services account ID pair.
|
|
69820
69854
|
#
|
|
69821
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
69822
|
-
#
|
|
69823
|
-
#
|
|
69824
|
-
#
|
|
69855
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
69856
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
69857
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
69858
|
+
# Guide*.
|
|
69825
69859
|
#
|
|
69826
69860
|
# </note>
|
|
69827
69861
|
#
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -1563,7 +1563,7 @@ module Aws::EC2
|
|
|
1563
1563
|
# If you have the required permissions, the error response is
|
|
1564
1564
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
1565
1565
|
# @option options [Array<String>] :network_interface_ids
|
|
1566
|
-
#
|
|
1566
|
+
# The network interface IDs.
|
|
1567
1567
|
#
|
|
1568
1568
|
# Default: Describes all your network interfaces.
|
|
1569
1569
|
# @return [NetworkInterface::Collection]
|
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.337.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-09-
|
|
11
|
+
date: 2022-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|