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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5ab5d8b40812ed922d3811f9c435fcc5fbc7bbe5c4b9addc7e97c1dc270a519
|
|
4
|
+
data.tar.gz: dac7477b23e808b503a4bde62724545fa4bcff8efa16c8159044874a33822291
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6b6933487b7489a2492b5ad2b4ec3678b731acc705865aa478b10386437db1fb47b50929e0e055b567636b8a2b49726168acaa4fec1c964f7e97e8c0044757d
|
|
7
|
+
data.tar.gz: 6b97f84ec67693fc2bd3ff1076e5e22b84345792b72c5f0b988708f49f5439eb4aa6e3fa7a5f43f009cc58d883f9d64af508c9551838bd365244c8307c51abb3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.337.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -764,10 +764,10 @@ module Aws::EC2
|
|
|
764
764
|
# from a telecommunication carrier, to a network interface which resides
|
|
765
765
|
# in a subnet in a Wavelength Zone (for example an EC2 instance).
|
|
766
766
|
#
|
|
767
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
768
|
-
#
|
|
769
|
-
#
|
|
770
|
-
#
|
|
767
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
768
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
769
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
|
770
|
+
# Guide*.
|
|
771
771
|
#
|
|
772
772
|
# </note>
|
|
773
773
|
#
|
|
@@ -1084,6 +1084,8 @@ module Aws::EC2
|
|
|
1084
1084
|
#
|
|
1085
1085
|
# @option params [Array<String>] :disallowed_cidrs
|
|
1086
1086
|
# Exclude a particular CIDR range from being returned by the pool.
|
|
1087
|
+
# Disallowed CIDRs are only allowed if using netmask length for
|
|
1088
|
+
# allocation.
|
|
1087
1089
|
#
|
|
1088
1090
|
# @return [Types::AllocateIpamPoolCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1089
1091
|
#
|
|
@@ -1201,9 +1203,8 @@ module Aws::EC2
|
|
|
1201
1203
|
# specifying specific IPv6 addresses.
|
|
1202
1204
|
#
|
|
1203
1205
|
# @option params [Array<String>] :ipv_6_addresses
|
|
1204
|
-
#
|
|
1205
|
-
#
|
|
1206
|
-
# of IPv6 addresses.
|
|
1206
|
+
# The IPv6 addresses to be assigned to the network interface. You can't
|
|
1207
|
+
# use this option if you're specifying a number of IPv6 addresses.
|
|
1207
1208
|
#
|
|
1208
1209
|
# @option params [Integer] :ipv_6_prefix_count
|
|
1209
1210
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
|
@@ -1295,9 +1296,9 @@ module Aws::EC2
|
|
|
1295
1296
|
# The ID of the network interface.
|
|
1296
1297
|
#
|
|
1297
1298
|
# @option params [Array<String>] :private_ip_addresses
|
|
1298
|
-
#
|
|
1299
|
-
#
|
|
1300
|
-
#
|
|
1299
|
+
# The IP addresses to be assigned as a secondary private IP address to
|
|
1300
|
+
# the network interface. You can't specify this parameter when also
|
|
1301
|
+
# specifying a number of secondary IP addresses.
|
|
1301
1302
|
#
|
|
1302
1303
|
# If you don't specify an IP address, Amazon EC2 automatically selects
|
|
1303
1304
|
# an IP address within the subnet range.
|
|
@@ -1410,10 +1411,10 @@ module Aws::EC2
|
|
|
1410
1411
|
# For more information, see the *Elastic IP Addresses* section of
|
|
1411
1412
|
# [Amazon EC2 Pricing][2].
|
|
1412
1413
|
#
|
|
1413
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
1414
|
-
#
|
|
1415
|
-
#
|
|
1416
|
-
#
|
|
1414
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
1415
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
1416
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
|
1417
|
+
# Guide*.
|
|
1417
1418
|
#
|
|
1418
1419
|
# </note>
|
|
1419
1420
|
#
|
|
@@ -1672,7 +1673,7 @@ module Aws::EC2
|
|
|
1672
1673
|
#
|
|
1673
1674
|
# When the IAM role is associated with the ACM certificate, the
|
|
1674
1675
|
# certificate, certificate chain, and encrypted private key are placed
|
|
1675
|
-
# in an Amazon S3
|
|
1676
|
+
# in an Amazon S3 location that only the associated IAM role can access.
|
|
1676
1677
|
# The private key of the certificate is encrypted with an Amazon Web
|
|
1677
1678
|
# Services managed key that has an attached attestation-based key
|
|
1678
1679
|
# policy.
|
|
@@ -2994,10 +2995,10 @@ module Aws::EC2
|
|
|
2994
2995
|
# For more information about VPC security group quotas, see [Amazon VPC
|
|
2995
2996
|
# quotas][1].
|
|
2996
2997
|
#
|
|
2997
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
2998
|
-
#
|
|
2999
|
-
#
|
|
3000
|
-
#
|
|
2998
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
2999
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
3000
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
|
3001
|
+
# Guide*.
|
|
3001
3002
|
#
|
|
3002
3003
|
# </note>
|
|
3003
3004
|
#
|
|
@@ -3030,7 +3031,8 @@ module Aws::EC2
|
|
|
3030
3031
|
# @option params [String] :group_name
|
|
3031
3032
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
|
3032
3033
|
# specify either the security group ID or the security group name in the
|
|
3033
|
-
# request.
|
|
3034
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
|
3035
|
+
# security group ID.
|
|
3034
3036
|
#
|
|
3035
3037
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
|
3036
3038
|
# The sets of IP permissions.
|
|
@@ -9244,12 +9246,18 @@ module Aws::EC2
|
|
|
9244
9246
|
|
|
9245
9247
|
# Creates a network interface in the specified subnet.
|
|
9246
9248
|
#
|
|
9247
|
-
#
|
|
9248
|
-
#
|
|
9249
|
+
# The number of IP addresses you can assign to a network interface
|
|
9250
|
+
# varies by instance type. For more information, see [IP Addresses Per
|
|
9251
|
+
# ENI Per Instance Type][1] in the *Amazon Virtual Private Cloud User
|
|
9252
|
+
# Guide*.
|
|
9253
|
+
#
|
|
9254
|
+
# For more information about network interfaces, see [Elastic network
|
|
9255
|
+
# interfaces][2] in the *Amazon Elastic Compute Cloud User Guide*.
|
|
9249
9256
|
#
|
|
9250
9257
|
#
|
|
9251
9258
|
#
|
|
9252
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html
|
|
9259
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
|
9260
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html
|
|
9253
9261
|
#
|
|
9254
9262
|
# @option params [String] :description
|
|
9255
9263
|
# A description for the network interface.
|
|
@@ -9266,14 +9274,21 @@ module Aws::EC2
|
|
|
9266
9274
|
# @option params [Integer] :ipv_6_address_count
|
|
9267
9275
|
# The number of IPv6 addresses to assign to a network interface. Amazon
|
|
9268
9276
|
# EC2 automatically selects the IPv6 addresses from the subnet range.
|
|
9269
|
-
#
|
|
9270
|
-
#
|
|
9271
|
-
#
|
|
9277
|
+
#
|
|
9278
|
+
# You can't specify a count of IPv6 addresses using this parameter if
|
|
9279
|
+
# you've specified one of the following: specific IPv6 addresses,
|
|
9280
|
+
# specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
9281
|
+
#
|
|
9282
|
+
# If your subnet has the `AssignIpv6AddressOnCreation` attribute set,
|
|
9283
|
+
# you can override that setting by specifying 0 as the IPv6 address
|
|
9284
|
+
# count.
|
|
9272
9285
|
#
|
|
9273
9286
|
# @option params [Array<Types::InstanceIpv6Address>] :ipv_6_addresses
|
|
9274
|
-
#
|
|
9275
|
-
#
|
|
9276
|
-
#
|
|
9287
|
+
# The IPv6 addresses from the IPv6 CIDR block range of your subnet.
|
|
9288
|
+
#
|
|
9289
|
+
# You can't specify IPv6 addresses using this parameter if you've
|
|
9290
|
+
# specified one of the following: a count of IPv6 addresses, specific
|
|
9291
|
+
# IPv6 prefixes, or a count of IPv6 prefixes.
|
|
9277
9292
|
#
|
|
9278
9293
|
# @option params [String] :private_ip_address
|
|
9279
9294
|
# The primary private IPv4 address of the network interface. If you
|
|
@@ -9283,7 +9298,11 @@ module Aws::EC2
|
|
|
9283
9298
|
# primary (only one IP address can be designated as primary).
|
|
9284
9299
|
#
|
|
9285
9300
|
# @option params [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
|
9286
|
-
#
|
|
9301
|
+
# The private IPv4 addresses.
|
|
9302
|
+
#
|
|
9303
|
+
# You can't specify private IPv4 addresses if you've specified one of
|
|
9304
|
+
# the following: a count of private IPv4 addresses, specific IPv4
|
|
9305
|
+
# prefixes, or a count of IPv4 prefixes.
|
|
9287
9306
|
#
|
|
9288
9307
|
# @option params [Integer] :secondary_private_ip_address_count
|
|
9289
9308
|
# The number of secondary private IPv4 addresses to assign to a network
|
|
@@ -9292,32 +9311,39 @@ module Aws::EC2
|
|
|
9292
9311
|
# range. You can't specify this option and specify more than one
|
|
9293
9312
|
# private IP address using `privateIpAddresses`.
|
|
9294
9313
|
#
|
|
9295
|
-
#
|
|
9296
|
-
#
|
|
9297
|
-
#
|
|
9298
|
-
# Guide*.
|
|
9299
|
-
#
|
|
9300
|
-
#
|
|
9301
|
-
#
|
|
9302
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
|
|
9314
|
+
# You can't specify a count of private IPv4 addresses if you've
|
|
9315
|
+
# specified one of the following: specific private IPv4 addresses,
|
|
9316
|
+
# specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
9303
9317
|
#
|
|
9304
9318
|
# @option params [Array<Types::Ipv4PrefixSpecificationRequest>] :ipv_4_prefixes
|
|
9305
|
-
#
|
|
9306
|
-
#
|
|
9319
|
+
# The IPv4 prefixes assigned to the network interface.
|
|
9320
|
+
#
|
|
9321
|
+
# You can't specify IPv4 prefixes if you've specified one of the
|
|
9322
|
+
# following: a count of IPv4 prefixes, specific private IPv4 addresses,
|
|
9323
|
+
# or a count of private IPv4 addresses.
|
|
9307
9324
|
#
|
|
9308
9325
|
# @option params [Integer] :ipv_4_prefix_count
|
|
9309
9326
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
|
9310
|
-
# assigns to the network interface.
|
|
9311
|
-
#
|
|
9327
|
+
# assigns to the network interface.
|
|
9328
|
+
#
|
|
9329
|
+
# You can't specify a count of IPv4 prefixes if you've specified one
|
|
9330
|
+
# of the following: specific IPv4 prefixes, specific private IPv4
|
|
9331
|
+
# addresses, or a count of private IPv4 addresses.
|
|
9312
9332
|
#
|
|
9313
9333
|
# @option params [Array<Types::Ipv6PrefixSpecificationRequest>] :ipv_6_prefixes
|
|
9314
|
-
#
|
|
9315
|
-
#
|
|
9334
|
+
# The IPv6 prefixes assigned to the network interface.
|
|
9335
|
+
#
|
|
9336
|
+
# You can't specify IPv6 prefixes if you've specified one of the
|
|
9337
|
+
# following: a count of IPv6 prefixes, specific IPv6 addresses, or a
|
|
9338
|
+
# count of IPv6 addresses.
|
|
9316
9339
|
#
|
|
9317
9340
|
# @option params [Integer] :ipv_6_prefix_count
|
|
9318
9341
|
# The number of IPv6 prefixes that Amazon Web Services automatically
|
|
9319
|
-
# assigns to the network interface.
|
|
9320
|
-
#
|
|
9342
|
+
# assigns to the network interface.
|
|
9343
|
+
#
|
|
9344
|
+
# You can't specify a count of IPv6 prefixes if you've specified one
|
|
9345
|
+
# of the following: specific IPv6 prefixes, specific IPv6 addresses, or
|
|
9346
|
+
# a count of IPv6 addresses.
|
|
9321
9347
|
#
|
|
9322
9348
|
# @option params [String] :interface_type
|
|
9323
9349
|
# The type of network interface. The default is `interface`.
|
|
@@ -10287,10 +10313,10 @@ module Aws::EC2
|
|
|
10287
10313
|
# For more information about VPC security group limits, see [Amazon VPC
|
|
10288
10314
|
# Limits][3].
|
|
10289
10315
|
#
|
|
10290
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
10291
|
-
#
|
|
10292
|
-
#
|
|
10293
|
-
#
|
|
10316
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
10317
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
10318
|
+
# EC2-Classic to a VPC][4] in the *Amazon Elastic Compute Cloud User
|
|
10319
|
+
# Guide*.
|
|
10294
10320
|
#
|
|
10295
10321
|
# </note>
|
|
10296
10322
|
#
|
|
@@ -10573,8 +10599,11 @@ module Aws::EC2
|
|
|
10573
10599
|
# Creates crash-consistent snapshots of multiple EBS volumes and stores
|
|
10574
10600
|
# the data in S3. Volumes are chosen by specifying an instance. Any
|
|
10575
10601
|
# attached volumes will produce one snapshot each that is
|
|
10576
|
-
# crash-consistent across the instance.
|
|
10577
|
-
#
|
|
10602
|
+
# crash-consistent across the instance.
|
|
10603
|
+
#
|
|
10604
|
+
# You can include all of the volumes currently attached to the instance,
|
|
10605
|
+
# or you can exclude the root volume or specific data (non-root) volumes
|
|
10606
|
+
# from the multi-volume snapshot set.
|
|
10578
10607
|
#
|
|
10579
10608
|
# You can create multi-volume snapshots of instances in a Region and
|
|
10580
10609
|
# instances on an Outpost. If you create snapshots from an instance in a
|
|
@@ -15616,10 +15645,10 @@ module Aws::EC2
|
|
|
15616
15645
|
# fails with `InvalidGroup.InUse` in EC2-Classic or
|
|
15617
15646
|
# `DependencyViolation` in EC2-VPC.
|
|
15618
15647
|
#
|
|
15619
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
15620
|
-
#
|
|
15621
|
-
#
|
|
15622
|
-
#
|
|
15648
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
15649
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
15650
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
15651
|
+
# Guide*.
|
|
15623
15652
|
#
|
|
15624
15653
|
# </note>
|
|
15625
15654
|
#
|
|
@@ -15632,7 +15661,9 @@ module Aws::EC2
|
|
|
15632
15661
|
#
|
|
15633
15662
|
# @option params [String] :group_name
|
|
15634
15663
|
# \[EC2-Classic, default VPC\] The name of the security group. You can
|
|
15635
|
-
# specify either the security group name or the security group ID.
|
|
15664
|
+
# specify either the security group name or the security group ID. For
|
|
15665
|
+
# security groups in a nondefault VPC, you must specify the security
|
|
15666
|
+
# group ID.
|
|
15636
15667
|
#
|
|
15637
15668
|
# @option params [Boolean] :dry_run
|
|
15638
15669
|
# Checks whether you have the required permissions for the action,
|
|
@@ -17467,10 +17498,10 @@ module Aws::EC2
|
|
|
17467
17498
|
# in a VPC. For more information, see [Elastic IP Addresses][1] in the
|
|
17468
17499
|
# *Amazon Elastic Compute Cloud User Guide*.
|
|
17469
17500
|
#
|
|
17470
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
17471
|
-
#
|
|
17472
|
-
#
|
|
17473
|
-
#
|
|
17501
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
17502
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
17503
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
|
17504
|
+
# Guide*.
|
|
17474
17505
|
#
|
|
17475
17506
|
# </note>
|
|
17476
17507
|
#
|
|
@@ -21272,13 +21303,12 @@ module Aws::EC2
|
|
|
21272
21303
|
# regardless of ownership.
|
|
21273
21304
|
#
|
|
21274
21305
|
# @option params [Boolean] :include_deprecated
|
|
21275
|
-
#
|
|
21276
|
-
#
|
|
21277
|
-
#
|
|
21306
|
+
# Specifies whether to include deprecated AMIs.
|
|
21307
|
+
#
|
|
21308
|
+
# Default: No deprecated AMIs are included in the response.
|
|
21278
21309
|
#
|
|
21279
21310
|
# <note markdown="1"> If you are the AMI owner, all deprecated AMIs appear in the response
|
|
21280
|
-
# regardless of
|
|
21281
|
-
# parameter.
|
|
21311
|
+
# regardless of what you specify for this parameter.
|
|
21282
21312
|
#
|
|
21283
21313
|
# </note>
|
|
21284
21314
|
#
|
|
@@ -26236,7 +26266,7 @@ module Aws::EC2
|
|
|
26236
26266
|
# Describes the permissions for your network interfaces.
|
|
26237
26267
|
#
|
|
26238
26268
|
# @option params [Array<String>] :network_interface_permission_ids
|
|
26239
|
-
#
|
|
26269
|
+
# The network interface permission IDs.
|
|
26240
26270
|
#
|
|
26241
26271
|
# @option params [Array<Types::Filter>] :filters
|
|
26242
26272
|
# One or more filters.
|
|
@@ -26433,7 +26463,7 @@ module Aws::EC2
|
|
|
26433
26463
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
26434
26464
|
#
|
|
26435
26465
|
# @option params [Array<String>] :network_interface_ids
|
|
26436
|
-
#
|
|
26466
|
+
# The network interface IDs.
|
|
26437
26467
|
#
|
|
26438
26468
|
# Default: Describes all your network interfaces.
|
|
26439
26469
|
#
|
|
@@ -28353,10 +28383,10 @@ module Aws::EC2
|
|
|
28353
28383
|
# and [Security groups for your VPC][2] in the *Amazon Virtual Private
|
|
28354
28384
|
# Cloud User Guide*.
|
|
28355
28385
|
#
|
|
28356
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
28357
|
-
#
|
|
28358
|
-
#
|
|
28359
|
-
#
|
|
28386
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
28387
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
28388
|
+
# EC2-Classic to a VPC][3] in the *Amazon Elastic Compute Cloud User
|
|
28389
|
+
# Guide*.
|
|
28360
28390
|
#
|
|
28361
28391
|
# </note>
|
|
28362
28392
|
#
|
|
@@ -34609,10 +34639,10 @@ module Aws::EC2
|
|
|
34609
34639
|
# in a VPC. For more information, see [Elastic IP Addresses][1] in the
|
|
34610
34640
|
# *Amazon Elastic Compute Cloud User Guide*.
|
|
34611
34641
|
#
|
|
34612
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
34613
|
-
#
|
|
34614
|
-
#
|
|
34615
|
-
#
|
|
34642
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
34643
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
34644
|
+
# EC2-Classic to a VPC][2] in the *Amazon Elastic Compute Cloud User
|
|
34645
|
+
# Guide*.
|
|
34616
34646
|
#
|
|
34617
34647
|
# </note>
|
|
34618
34648
|
#
|
|
@@ -39111,6 +39141,11 @@ module Aws::EC2
|
|
|
39111
39141
|
# Import single or multi-volume disk images or EBS snapshots into an
|
|
39112
39142
|
# Amazon Machine Image (AMI).
|
|
39113
39143
|
#
|
|
39144
|
+
# Amazon Web Services VM Import/Export strongly recommends specifying a
|
|
39145
|
+
# value for either the `--license-type` or `--usage-operation` parameter
|
|
39146
|
+
# when you create a new VM Import task. This ensures your operating
|
|
39147
|
+
# system is licensed appropriately and your billing is optimized.
|
|
39148
|
+
#
|
|
39114
39149
|
# For more information, see [Importing a VM as an image using VM
|
|
39115
39150
|
# Import/Export][1] in the *VM Import/Export User Guide*.
|
|
39116
39151
|
#
|
|
@@ -39200,11 +39235,12 @@ module Aws::EC2
|
|
|
39200
39235
|
# The license type to be used for the Amazon Machine Image (AMI) after
|
|
39201
39236
|
# importing.
|
|
39202
39237
|
#
|
|
39203
|
-
#
|
|
39204
|
-
#
|
|
39205
|
-
#
|
|
39206
|
-
#
|
|
39207
|
-
#
|
|
39238
|
+
# Specify `AWS` to replace the source-system license with an Amazon Web
|
|
39239
|
+
# Services license or `BYOL` to retain the source-system license.
|
|
39240
|
+
# Leaving this parameter undefined is the same as choosing `AWS` when
|
|
39241
|
+
# importing a Windows Server operating system, and the same as choosing
|
|
39242
|
+
# `BYOL` when importing a Windows client operating system (such as
|
|
39243
|
+
# Windows 10) or a Linux operating system.
|
|
39208
39244
|
#
|
|
39209
39245
|
# To use `BYOL`, you must have existing licenses with rights to use
|
|
39210
39246
|
# these licenses in a third party cloud, such as Amazon Web Services.
|
|
@@ -41136,7 +41172,14 @@ module Aws::EC2
|
|
|
41136
41172
|
# services such as network address translation, routing, or firewalls.
|
|
41137
41173
|
#
|
|
41138
41174
|
# @option params [String] :attribute
|
|
41139
|
-
# The name of the attribute.
|
|
41175
|
+
# The name of the attribute to modify.
|
|
41176
|
+
#
|
|
41177
|
+
# You can modify the following attributes only: `disableApiTermination`
|
|
41178
|
+
# \| `instanceType` \| `kernel` \| `ramdisk` \|
|
|
41179
|
+
# `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
|
41180
|
+
# `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
|
|
41181
|
+
# `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \| `disableApiStop`
|
|
41182
|
+
# \| `enclaveOptions`
|
|
41140
41183
|
#
|
|
41141
41184
|
# @option params [Array<Types::InstanceBlockDeviceMappingSpecification>] :block_device_mappings
|
|
41142
41185
|
# Modifies the `DeleteOnTermination` attribute for volumes that are
|
|
@@ -45080,10 +45123,10 @@ module Aws::EC2
|
|
|
45080
45123
|
# IP address that was originally allocated for use in the EC2-VPC
|
|
45081
45124
|
# platform to the EC2-Classic platform.
|
|
45082
45125
|
#
|
|
45083
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
45084
|
-
#
|
|
45085
|
-
#
|
|
45086
|
-
#
|
|
45126
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
45127
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
45128
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
45129
|
+
# Guide*.
|
|
45087
45130
|
#
|
|
45088
45131
|
# </note>
|
|
45089
45132
|
#
|
|
@@ -46424,10 +46467,10 @@ module Aws::EC2
|
|
|
46424
46467
|
# with. To disassociate an Elastic IP address without releasing it, use
|
|
46425
46468
|
# DisassociateAddress.
|
|
46426
46469
|
#
|
|
46427
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
46428
|
-
#
|
|
46429
|
-
#
|
|
46430
|
-
#
|
|
46470
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
46471
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
46472
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
46473
|
+
# Guide*.
|
|
46431
46474
|
#
|
|
46432
46475
|
# </note>
|
|
46433
46476
|
#
|
|
@@ -48374,10 +48417,10 @@ module Aws::EC2
|
|
|
48374
48417
|
# The Elastic IP address must not be associated with an instance or
|
|
48375
48418
|
# network interface.
|
|
48376
48419
|
#
|
|
48377
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
48378
|
-
#
|
|
48379
|
-
#
|
|
48380
|
-
#
|
|
48420
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
48421
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
48422
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
48423
|
+
# Guide*.
|
|
48381
48424
|
#
|
|
48382
48425
|
# </note>
|
|
48383
48426
|
#
|
|
@@ -48878,10 +48921,10 @@ module Aws::EC2
|
|
|
48878
48921
|
# Rule changes are propagated to instances within the security group as
|
|
48879
48922
|
# quickly as possible. However, a small delay might occur.
|
|
48880
48923
|
#
|
|
48881
|
-
# <note markdown="1"> We are retiring EC2-Classic
|
|
48882
|
-
#
|
|
48883
|
-
#
|
|
48884
|
-
#
|
|
48924
|
+
# <note markdown="1"> We are retiring EC2-Classic. We recommend that you migrate from
|
|
48925
|
+
# EC2-Classic to a VPC. For more information, see [Migrate from
|
|
48926
|
+
# EC2-Classic to a VPC][1] in the *Amazon Elastic Compute Cloud User
|
|
48927
|
+
# Guide*.
|
|
48885
48928
|
#
|
|
48886
48929
|
# </note>
|
|
48887
48930
|
#
|
|
@@ -48905,7 +48948,8 @@ module Aws::EC2
|
|
|
48905
48948
|
# @option params [String] :group_name
|
|
48906
48949
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
|
48907
48950
|
# specify either the security group ID or the security group name in the
|
|
48908
|
-
# request.
|
|
48951
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
|
48952
|
+
# security group ID.
|
|
48909
48953
|
#
|
|
48910
48954
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
|
48911
48955
|
# The sets of IP permissions. You can't specify a source security group
|
|
@@ -51652,7 +51696,7 @@ module Aws::EC2
|
|
|
51652
51696
|
# The IPv6 addresses to unassign from the network interface.
|
|
51653
51697
|
#
|
|
51654
51698
|
# @option params [Array<String>] :ipv_6_prefixes
|
|
51655
|
-
#
|
|
51699
|
+
# The IPv6 prefixes to unassign from the network interface.
|
|
51656
51700
|
#
|
|
51657
51701
|
# @option params [required, String] :network_interface_id
|
|
51658
51702
|
# The ID of the network interface.
|
|
@@ -51919,7 +51963,8 @@ module Aws::EC2
|
|
|
51919
51963
|
# @option params [String] :group_name
|
|
51920
51964
|
# \[EC2-Classic, default VPC\] The name of the security group. You must
|
|
51921
51965
|
# specify either the security group ID or the security group name in the
|
|
51922
|
-
# request.
|
|
51966
|
+
# request. For security groups in a nondefault VPC, you must specify the
|
|
51967
|
+
# security group ID.
|
|
51923
51968
|
#
|
|
51924
51969
|
# @option params [Array<Types::IpPermission>] :ip_permissions
|
|
51925
51970
|
# The IP permissions for the security group rule. You must specify
|
|
@@ -52081,7 +52126,7 @@ module Aws::EC2
|
|
|
52081
52126
|
params: params,
|
|
52082
52127
|
config: config)
|
|
52083
52128
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
52084
|
-
context[:gem_version] = '1.
|
|
52129
|
+
context[:gem_version] = '1.337.0'
|
|
52085
52130
|
Seahorse::Client::Request.new(handlers, context)
|
|
52086
52131
|
end
|
|
52087
52132
|
|
|
@@ -7190,7 +7190,7 @@ module Aws::EC2
|
|
|
7190
7190
|
EbsBlockDevice.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "snapshotId"))
|
|
7191
7191
|
EbsBlockDevice.add_member(:volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "volumeSize"))
|
|
7192
7192
|
EbsBlockDevice.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
7193
|
-
EbsBlockDevice.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "
|
|
7193
|
+
EbsBlockDevice.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
|
|
7194
7194
|
EbsBlockDevice.add_member(:throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "throughput"))
|
|
7195
7195
|
EbsBlockDevice.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
|
7196
7196
|
EbsBlockDevice.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "encrypted"))
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -1010,7 +1010,14 @@ module Aws::EC2
|
|
|
1010
1010
|
# You must disable source/destination checks if the instance runs
|
|
1011
1011
|
# services such as network address translation, routing, or firewalls.
|
|
1012
1012
|
# @option options [String] :attribute
|
|
1013
|
-
# The name of the attribute.
|
|
1013
|
+
# The name of the attribute to modify.
|
|
1014
|
+
#
|
|
1015
|
+
# You can modify the following attributes only: `disableApiTermination`
|
|
1016
|
+
# \| `instanceType` \| `kernel` \| `ramdisk` \|
|
|
1017
|
+
# `instanceInitiatedShutdownBehavior` \| `blockDeviceMapping` \|
|
|
1018
|
+
# `userData` \| `sourceDestCheck` \| `groupSet` \| `ebsOptimized` \|
|
|
1019
|
+
# `sriovNetSupport` \| `enaSupport` \| `nvmeSupport` \| `disableApiStop`
|
|
1020
|
+
# \| `enclaveOptions`
|
|
1014
1021
|
# @option options [Array<Types::InstanceBlockDeviceMappingSpecification>] :block_device_mappings
|
|
1015
1022
|
# Modifies the `DeleteOnTermination` attribute for volumes that are
|
|
1016
1023
|
# currently attached. The volume must be owned by the caller. If no
|
|
@@ -337,9 +337,9 @@ module Aws::EC2
|
|
|
337
337
|
# another network interface or instance to be reassigned to the
|
|
338
338
|
# specified network interface.
|
|
339
339
|
# @option options [Array<String>] :private_ip_addresses
|
|
340
|
-
#
|
|
341
|
-
#
|
|
342
|
-
#
|
|
340
|
+
# The IP addresses to be assigned as a secondary private IP address to
|
|
341
|
+
# the network interface. You can't specify this parameter when also
|
|
342
|
+
# specifying a number of secondary IP addresses.
|
|
343
343
|
#
|
|
344
344
|
# If you don't specify an IP address, Amazon EC2 automatically selects
|
|
345
345
|
# an IP address within the subnet range.
|