aws-sdk-ec2 1.322.0 → 1.323.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +251 -125
- data/lib/aws-sdk-ec2/resource.rb +38 -14
- data/lib/aws-sdk-ec2/subnet.rb +17 -5
- data/lib/aws-sdk-ec2/types.rb +415 -171
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -483,10 +483,22 @@ module Aws::EC2
|
|
483
483
|
# You cannot specify accelerators from different generations in the same
|
484
484
|
# request.
|
485
485
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
486
|
-
# The tags to apply to the resources
|
487
|
-
#
|
488
|
-
#
|
489
|
-
#
|
486
|
+
# The tags to apply to the resources that are created during instance
|
487
|
+
# launch.
|
488
|
+
#
|
489
|
+
# You can specify tags for the following resources only:
|
490
|
+
#
|
491
|
+
# * Instances
|
492
|
+
#
|
493
|
+
# * Volumes
|
494
|
+
#
|
495
|
+
# * Elastic graphics
|
496
|
+
#
|
497
|
+
# * Spot Instance requests
|
498
|
+
#
|
499
|
+
# * Network interfaces
|
500
|
+
#
|
501
|
+
# To tag a resource after it has been created, see [CreateTags][1].
|
490
502
|
#
|
491
503
|
#
|
492
504
|
#
|
@@ -569,7 +581,7 @@ module Aws::EC2
|
|
569
581
|
# The maintenance and recovery options for the instance.
|
570
582
|
# @option options [Boolean] :disable_api_stop
|
571
583
|
# Indicates whether an instance is enabled for stop protection. For more
|
572
|
-
# information, see [Stop
|
584
|
+
# information, see [Stop protection][1].
|
573
585
|
#
|
574
586
|
#
|
575
587
|
#
|
@@ -1485,30 +1497,42 @@ module Aws::EC2
|
|
1485
1497
|
# To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
|
1486
1498
|
# @option options [String] :ipv_4_ipam_pool_id
|
1487
1499
|
# The ID of an IPv4 IPAM pool you want to use for allocating this VPC's
|
1488
|
-
# CIDR. For more information, see [What is
|
1489
|
-
# IPAM
|
1490
|
-
#
|
1500
|
+
# CIDR. For more information, see [What is IPAM?][1] in the *Amazon VPC
|
1501
|
+
# IPAM User Guide*.
|
1502
|
+
#
|
1503
|
+
#
|
1504
|
+
#
|
1505
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html
|
1491
1506
|
# @option options [Integer] :ipv_4_netmask_length
|
1492
1507
|
# The netmask length of the IPv4 CIDR you want to allocate to this VPC
|
1493
1508
|
# from an Amazon VPC IP Address Manager (IPAM) pool. For more
|
1494
|
-
# information about IPAM, see [What is
|
1495
|
-
# IPAM?](/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM
|
1509
|
+
# information about IPAM, see [What is IPAM?][1] in the *Amazon VPC IPAM
|
1496
1510
|
# User Guide*.
|
1511
|
+
#
|
1512
|
+
#
|
1513
|
+
#
|
1514
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html
|
1497
1515
|
# @option options [String] :ipv_6_ipam_pool_id
|
1498
1516
|
# The ID of an IPv6 IPAM pool which will be used to allocate this VPC an
|
1499
1517
|
# IPv6 CIDR. IPAM is a VPC feature that you can use to automate your IP
|
1500
1518
|
# address management workflows including assigning, tracking,
|
1501
1519
|
# troubleshooting, and auditing IP addresses across Amazon Web Services
|
1502
1520
|
# Regions and accounts throughout your Amazon Web Services Organization.
|
1503
|
-
# For more information, see [What is
|
1504
|
-
# IPAM?](/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM
|
1521
|
+
# For more information, see [What is IPAM?][1] in the *Amazon VPC IPAM
|
1505
1522
|
# User Guide*.
|
1523
|
+
#
|
1524
|
+
#
|
1525
|
+
#
|
1526
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html
|
1506
1527
|
# @option options [Integer] :ipv_6_netmask_length
|
1507
1528
|
# The netmask length of the IPv6 CIDR you want to allocate to this VPC
|
1508
1529
|
# from an Amazon VPC IP Address Manager (IPAM) pool. For more
|
1509
|
-
# information about IPAM, see [What is
|
1510
|
-
# IPAM?](/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM
|
1530
|
+
# information about IPAM, see [What is IPAM?][1] in the *Amazon VPC IPAM
|
1511
1531
|
# User Guide*.
|
1532
|
+
#
|
1533
|
+
#
|
1534
|
+
#
|
1535
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html
|
1512
1536
|
# @option options [Boolean] :dry_run
|
1513
1537
|
# Checks whether you have the required permissions for the action,
|
1514
1538
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -702,10 +702,22 @@ module Aws::EC2
|
|
702
702
|
# You cannot specify accelerators from different generations in the same
|
703
703
|
# request.
|
704
704
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
705
|
-
# The tags to apply to the resources
|
706
|
-
#
|
707
|
-
#
|
708
|
-
#
|
705
|
+
# The tags to apply to the resources that are created during instance
|
706
|
+
# launch.
|
707
|
+
#
|
708
|
+
# You can specify tags for the following resources only:
|
709
|
+
#
|
710
|
+
# * Instances
|
711
|
+
#
|
712
|
+
# * Volumes
|
713
|
+
#
|
714
|
+
# * Elastic graphics
|
715
|
+
#
|
716
|
+
# * Spot Instance requests
|
717
|
+
#
|
718
|
+
# * Network interfaces
|
719
|
+
#
|
720
|
+
# To tag a resource after it has been created, see [CreateTags][1].
|
709
721
|
#
|
710
722
|
#
|
711
723
|
#
|
@@ -788,7 +800,7 @@ module Aws::EC2
|
|
788
800
|
# The maintenance and recovery options for the instance.
|
789
801
|
# @option options [Boolean] :disable_api_stop
|
790
802
|
# Indicates whether an instance is enabled for stop protection. For more
|
791
|
-
# information, see [Stop
|
803
|
+
# information, see [Stop protection][1].
|
792
804
|
#
|
793
805
|
#
|
794
806
|
#
|