aws-sdk-ec2 1.467.0 → 1.469.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +332 -16
- data/lib/aws-sdk-ec2/client_api.rb +56 -0
- data/lib/aws-sdk-ec2/endpoints.rb +28 -0
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-ec2/resource.rb +3 -3
- data/lib/aws-sdk-ec2/route.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +227 -16
- data/lib/aws-sdk-ec2/vpc.rb +3 -3
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +48 -3
- data/sig/types.rbs +41 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -1413,7 +1413,7 @@ module Aws::EC2
|
|
1413
1413
|
# @return [String]
|
1414
1414
|
#
|
1415
1415
|
# @!attribute [rw] destination_prefix_list_id
|
1416
|
-
# The prefix of the Amazon Web
|
1416
|
+
# The prefix of the Amazon Web Services service.
|
1417
1417
|
# @return [String]
|
1418
1418
|
#
|
1419
1419
|
# @!attribute [rw] egress_only_internet_gateway_id
|
@@ -6707,6 +6707,76 @@ module Aws::EC2
|
|
6707
6707
|
include Aws::Structure
|
6708
6708
|
end
|
6709
6709
|
|
6710
|
+
# @!attribute [rw] dry_run
|
6711
|
+
# Checks whether you have the required permissions for the action,
|
6712
|
+
# without actually making the request, and provides an error response.
|
6713
|
+
# If you have the required permissions, the error response is
|
6714
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
6715
|
+
# @return [Boolean]
|
6716
|
+
#
|
6717
|
+
# @!attribute [rw] client_token
|
6718
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
6719
|
+
# idempotency of the request. For more information, see [Ensure
|
6720
|
+
# Idempotency][1].
|
6721
|
+
#
|
6722
|
+
# **A suitable default value is auto-generated.** You should normally
|
6723
|
+
# not need to pass this option.
|
6724
|
+
#
|
6725
|
+
#
|
6726
|
+
#
|
6727
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
6728
|
+
# @return [String]
|
6729
|
+
#
|
6730
|
+
# @!attribute [rw] source_capacity_reservation_id
|
6731
|
+
# The ID of the Capacity Reservation from which you want to split the
|
6732
|
+
# available capacity.
|
6733
|
+
# @return [String]
|
6734
|
+
#
|
6735
|
+
# @!attribute [rw] instance_count
|
6736
|
+
# The number of instances to split from the source Capacity
|
6737
|
+
# Reservation.
|
6738
|
+
# @return [Integer]
|
6739
|
+
#
|
6740
|
+
# @!attribute [rw] tag_specifications
|
6741
|
+
# The tags to apply to the new Capacity Reservation.
|
6742
|
+
# @return [Array<Types::TagSpecification>]
|
6743
|
+
#
|
6744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationBySplittingRequest AWS API Documentation
|
6745
|
+
#
|
6746
|
+
class CreateCapacityReservationBySplittingRequest < Struct.new(
|
6747
|
+
:dry_run,
|
6748
|
+
:client_token,
|
6749
|
+
:source_capacity_reservation_id,
|
6750
|
+
:instance_count,
|
6751
|
+
:tag_specifications)
|
6752
|
+
SENSITIVE = []
|
6753
|
+
include Aws::Structure
|
6754
|
+
end
|
6755
|
+
|
6756
|
+
# @!attribute [rw] source_capacity_reservation
|
6757
|
+
# Information about the source Capacity Reservation.
|
6758
|
+
# @return [Types::CapacityReservation]
|
6759
|
+
#
|
6760
|
+
# @!attribute [rw] destination_capacity_reservation
|
6761
|
+
# Information about the destination Capacity Reservation.
|
6762
|
+
# @return [Types::CapacityReservation]
|
6763
|
+
#
|
6764
|
+
# @!attribute [rw] instance_count
|
6765
|
+
# The number of instances in the new Capacity Reservation. The number
|
6766
|
+
# of instances in the source Capacity Reservation was reduced by this
|
6767
|
+
# amount.
|
6768
|
+
# @return [Integer]
|
6769
|
+
#
|
6770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationBySplittingResult AWS API Documentation
|
6771
|
+
#
|
6772
|
+
class CreateCapacityReservationBySplittingResult < Struct.new(
|
6773
|
+
:source_capacity_reservation,
|
6774
|
+
:destination_capacity_reservation,
|
6775
|
+
:instance_count)
|
6776
|
+
SENSITIVE = []
|
6777
|
+
include Aws::Structure
|
6778
|
+
end
|
6779
|
+
|
6710
6780
|
# @!attribute [rw] allocation_strategy
|
6711
6781
|
# The strategy used by the Capacity Reservation Fleet to determine
|
6712
6782
|
# which of the specified instance types to use. Currently, only the
|
@@ -8809,6 +8879,11 @@ module Aws::EC2
|
|
8809
8879
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
8810
8880
|
# @return [String]
|
8811
8881
|
#
|
8882
|
+
# @!attribute [rw] enable_private_gua
|
8883
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
8884
|
+
# addresses. This option is disabled by default.
|
8885
|
+
# @return [Boolean]
|
8886
|
+
#
|
8812
8887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateIpamRequest AWS API Documentation
|
8813
8888
|
#
|
8814
8889
|
class CreateIpamRequest < Struct.new(
|
@@ -8817,7 +8892,8 @@ module Aws::EC2
|
|
8817
8892
|
:operating_regions,
|
8818
8893
|
:tag_specifications,
|
8819
8894
|
:client_token,
|
8820
|
-
:tier
|
8895
|
+
:tier,
|
8896
|
+
:enable_private_gua)
|
8821
8897
|
SENSITIVE = []
|
8822
8898
|
include Aws::Structure
|
8823
8899
|
end
|
@@ -9841,7 +9917,7 @@ module Aws::EC2
|
|
9841
9917
|
# @return [String]
|
9842
9918
|
#
|
9843
9919
|
# @!attribute [rw] aws_service
|
9844
|
-
# The Amazon Web
|
9920
|
+
# The Amazon Web Services service. Currently not supported.
|
9845
9921
|
# @return [String]
|
9846
9922
|
#
|
9847
9923
|
# @!attribute [rw] permission
|
@@ -23108,7 +23184,7 @@ module Aws::EC2
|
|
23108
23184
|
# Services account ID.
|
23109
23185
|
#
|
23110
23186
|
# * `network-interface-permission.aws-service` - The Amazon Web
|
23111
|
-
#
|
23187
|
+
# Services service.
|
23112
23188
|
#
|
23113
23189
|
# * `network-interface-permission.permission` - The type of permission
|
23114
23190
|
# (`INSTANCE-ATTACH` \| `EIP-ASSOCIATE`).
|
@@ -23253,8 +23329,8 @@ module Aws::EC2
|
|
23253
23329
|
# the principal or service that created the network interface.
|
23254
23330
|
#
|
23255
23331
|
# * `requester-managed` - Indicates whether the network interface is
|
23256
|
-
# being managed by an Amazon Web
|
23257
|
-
# Services Management Console, Auto Scaling, and so on).
|
23332
|
+
# being managed by an Amazon Web Services service (for example,
|
23333
|
+
# Amazon Web Services Management Console, Auto Scaling, and so on).
|
23258
23334
|
#
|
23259
23335
|
# * `source-dest-check` - Indicates whether the network interface
|
23260
23336
|
# performs source/destination checking. A value of `true` means
|
@@ -24147,7 +24223,7 @@ module Aws::EC2
|
|
24147
24223
|
# specified in a route in the route table.
|
24148
24224
|
#
|
24149
24225
|
# * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
|
24150
|
-
# Web
|
24226
|
+
# Web Services service specified in a route in the table.
|
24151
24227
|
#
|
24152
24228
|
# * `route.egress-only-internet-gateway-id` - The ID of an egress-only
|
24153
24229
|
# Internet gateway specified in a route in the route table.
|
@@ -42610,6 +42686,11 @@ module Aws::EC2
|
|
42610
42686
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
42611
42687
|
# @return [String]
|
42612
42688
|
#
|
42689
|
+
# @!attribute [rw] enable_private_gua
|
42690
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
42691
|
+
# addresses. This option is disabled by default.
|
42692
|
+
# @return [Boolean]
|
42693
|
+
#
|
42613
42694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipam AWS API Documentation
|
42614
42695
|
#
|
42615
42696
|
class Ipam < Struct.new(
|
@@ -42628,7 +42709,8 @@ module Aws::EC2
|
|
42628
42709
|
:default_resource_discovery_association_id,
|
42629
42710
|
:resource_discovery_association_count,
|
42630
42711
|
:state_message,
|
42631
|
-
:tier
|
42712
|
+
:tier,
|
42713
|
+
:enable_private_gua)
|
42632
42714
|
SENSITIVE = []
|
42633
42715
|
include Aws::Structure
|
42634
42716
|
end
|
@@ -42924,6 +43006,13 @@ module Aws::EC2
|
|
42924
43006
|
# The resource CIDR.
|
42925
43007
|
# @return [String]
|
42926
43008
|
#
|
43009
|
+
# @!attribute [rw] ip_source
|
43010
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
43011
|
+
# indicates public IP address space allocated by Amazon or space that
|
43012
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
43013
|
+
# private space.
|
43014
|
+
# @return [String]
|
43015
|
+
#
|
42927
43016
|
# @!attribute [rw] resource_type
|
42928
43017
|
# The resource type.
|
42929
43018
|
# @return [String]
|
@@ -42976,6 +43065,7 @@ module Aws::EC2
|
|
42976
43065
|
:resource_id,
|
42977
43066
|
:resource_owner_id,
|
42978
43067
|
:resource_cidr,
|
43068
|
+
:ip_source,
|
42979
43069
|
:resource_type,
|
42980
43070
|
:resource_tags,
|
42981
43071
|
:ip_usage,
|
@@ -47531,6 +47621,19 @@ module Aws::EC2
|
|
47531
47621
|
# Reserved for future use.
|
47532
47622
|
# @return [String]
|
47533
47623
|
#
|
47624
|
+
# @!attribute [rw] instance_match_criteria
|
47625
|
+
# The matching criteria (instance eligibility) that you want to use in
|
47626
|
+
# the modified Capacity Reservation. If you change the instance
|
47627
|
+
# eligibility of an existing Capacity Reservation from `targeted` to
|
47628
|
+
# `open`, any running instances that match the attributes of the
|
47629
|
+
# Capacity Reservation, have the `CapacityReservationPreference` set
|
47630
|
+
# to `open`, and are not yet running in the Capacity Reservation, will
|
47631
|
+
# automatically use the modified Capacity Reservation.
|
47632
|
+
#
|
47633
|
+
# To modify the instance eligibility, the Capacity Reservation must be
|
47634
|
+
# completely idle (zero usage).
|
47635
|
+
# @return [String]
|
47636
|
+
#
|
47534
47637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationRequest AWS API Documentation
|
47535
47638
|
#
|
47536
47639
|
class ModifyCapacityReservationRequest < Struct.new(
|
@@ -47540,7 +47643,8 @@ module Aws::EC2
|
|
47540
47643
|
:end_date_type,
|
47541
47644
|
:accept,
|
47542
47645
|
:dry_run,
|
47543
|
-
:additional_info
|
47646
|
+
:additional_info,
|
47647
|
+
:instance_match_criteria)
|
47544
47648
|
SENSITIVE = []
|
47545
47649
|
include Aws::Structure
|
47546
47650
|
end
|
@@ -48990,6 +49094,11 @@ module Aws::EC2
|
|
48990
49094
|
# [1]: http://aws.amazon.com/vpc/pricing/
|
48991
49095
|
# @return [String]
|
48992
49096
|
#
|
49097
|
+
# @!attribute [rw] enable_private_gua
|
49098
|
+
# Enable this option to use your own GUA ranges as private IPv6
|
49099
|
+
# addresses. This option is disabled by default.
|
49100
|
+
# @return [Boolean]
|
49101
|
+
#
|
48993
49102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamRequest AWS API Documentation
|
48994
49103
|
#
|
48995
49104
|
class ModifyIpamRequest < Struct.new(
|
@@ -48998,7 +49107,8 @@ module Aws::EC2
|
|
48998
49107
|
:description,
|
48999
49108
|
:add_operating_regions,
|
49000
49109
|
:remove_operating_regions,
|
49001
|
-
:tier
|
49110
|
+
:tier,
|
49111
|
+
:enable_private_gua)
|
49002
49112
|
SENSITIVE = []
|
49003
49113
|
include Aws::Structure
|
49004
49114
|
end
|
@@ -51974,6 +52084,76 @@ module Aws::EC2
|
|
51974
52084
|
include Aws::Structure
|
51975
52085
|
end
|
51976
52086
|
|
52087
|
+
# @!attribute [rw] dry_run
|
52088
|
+
# Checks whether you have the required permissions for the action,
|
52089
|
+
# without actually making the request, and provides an error response.
|
52090
|
+
# If you have the required permissions, the error response is
|
52091
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
52092
|
+
# @return [Boolean]
|
52093
|
+
#
|
52094
|
+
# @!attribute [rw] client_token
|
52095
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
52096
|
+
# idempotency of the request. For more information, see [Ensure
|
52097
|
+
# Idempotency][1].
|
52098
|
+
#
|
52099
|
+
# **A suitable default value is auto-generated.** You should normally
|
52100
|
+
# not need to pass this option.
|
52101
|
+
#
|
52102
|
+
#
|
52103
|
+
#
|
52104
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
52105
|
+
# @return [String]
|
52106
|
+
#
|
52107
|
+
# @!attribute [rw] source_capacity_reservation_id
|
52108
|
+
# The ID of the Capacity Reservation from which you want to move
|
52109
|
+
# capacity.
|
52110
|
+
# @return [String]
|
52111
|
+
#
|
52112
|
+
# @!attribute [rw] destination_capacity_reservation_id
|
52113
|
+
# The ID of the Capacity Reservation that you want to move capacity
|
52114
|
+
# into.
|
52115
|
+
# @return [String]
|
52116
|
+
#
|
52117
|
+
# @!attribute [rw] instance_count
|
52118
|
+
# The number of instances that you want to move from the source
|
52119
|
+
# Capacity Reservation.
|
52120
|
+
# @return [Integer]
|
52121
|
+
#
|
52122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveCapacityReservationInstancesRequest AWS API Documentation
|
52123
|
+
#
|
52124
|
+
class MoveCapacityReservationInstancesRequest < Struct.new(
|
52125
|
+
:dry_run,
|
52126
|
+
:client_token,
|
52127
|
+
:source_capacity_reservation_id,
|
52128
|
+
:destination_capacity_reservation_id,
|
52129
|
+
:instance_count)
|
52130
|
+
SENSITIVE = []
|
52131
|
+
include Aws::Structure
|
52132
|
+
end
|
52133
|
+
|
52134
|
+
# @!attribute [rw] source_capacity_reservation
|
52135
|
+
# Information about the source Capacity Reservation.
|
52136
|
+
# @return [Types::CapacityReservation]
|
52137
|
+
#
|
52138
|
+
# @!attribute [rw] destination_capacity_reservation
|
52139
|
+
# Information about the destination Capacity Reservation.
|
52140
|
+
# @return [Types::CapacityReservation]
|
52141
|
+
#
|
52142
|
+
# @!attribute [rw] instance_count
|
52143
|
+
# The number of instances that were moved from the source Capacity
|
52144
|
+
# Reservation to the destination Capacity Reservation.
|
52145
|
+
# @return [Integer]
|
52146
|
+
#
|
52147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveCapacityReservationInstancesResult AWS API Documentation
|
52148
|
+
#
|
52149
|
+
class MoveCapacityReservationInstancesResult < Struct.new(
|
52150
|
+
:source_capacity_reservation,
|
52151
|
+
:destination_capacity_reservation,
|
52152
|
+
:instance_count)
|
52153
|
+
SENSITIVE = []
|
52154
|
+
include Aws::Structure
|
52155
|
+
end
|
52156
|
+
|
51977
52157
|
# <note markdown="1"> This action is deprecated.
|
51978
52158
|
#
|
51979
52159
|
# </note>
|
@@ -53142,7 +53322,7 @@ module Aws::EC2
|
|
53142
53322
|
# @return [String]
|
53143
53323
|
#
|
53144
53324
|
# @!attribute [rw] aws_service
|
53145
|
-
# The Amazon Web
|
53325
|
+
# The Amazon Web Services service.
|
53146
53326
|
# @return [String]
|
53147
53327
|
#
|
53148
53328
|
# @!attribute [rw] permission
|
@@ -54356,7 +54536,7 @@ module Aws::EC2
|
|
54356
54536
|
# Describes prefixes for Amazon Web Services services.
|
54357
54537
|
#
|
54358
54538
|
# @!attribute [rw] cidrs
|
54359
|
-
# The IP address range of the Amazon Web
|
54539
|
+
# The IP address range of the Amazon Web Services service.
|
54360
54540
|
# @return [Array<String>]
|
54361
54541
|
#
|
54362
54542
|
# @!attribute [rw] prefix_list_id
|
@@ -55002,7 +55182,8 @@ module Aws::EC2
|
|
55002
55182
|
#
|
55003
55183
|
# @!attribute [rw] netmask_length
|
55004
55184
|
# The netmask length of the CIDR you would like to allocate to the
|
55005
|
-
# public IPv4 pool.
|
55185
|
+
# public IPv4 pool. The least specific netmask length you can define
|
55186
|
+
# is 24.
|
55006
55187
|
# @return [Integer]
|
55007
55188
|
#
|
55008
55189
|
# @!attribute [rw] network_border_group
|
@@ -59157,7 +59338,7 @@ module Aws::EC2
|
|
59157
59338
|
# @return [String]
|
59158
59339
|
#
|
59159
59340
|
# @!attribute [rw] destination_prefix_list_id
|
59160
|
-
# The prefix of the Amazon Web
|
59341
|
+
# The prefix of the Amazon Web Services service.
|
59161
59342
|
# @return [String]
|
59162
59343
|
#
|
59163
59344
|
# @!attribute [rw] egress_only_internet_gateway_id
|
@@ -64088,12 +64269,27 @@ module Aws::EC2
|
|
64088
64269
|
# The state of the CIDR block.
|
64089
64270
|
# @return [Types::SubnetCidrBlockState]
|
64090
64271
|
#
|
64272
|
+
# @!attribute [rw] ipv_6_address_attribute
|
64273
|
+
# Public IPv6 addresses are those advertised on the internet from
|
64274
|
+
# Amazon Web Services. Private IP addresses are not and cannot be
|
64275
|
+
# advertised on the internet from Amazon Web Services.
|
64276
|
+
# @return [String]
|
64277
|
+
#
|
64278
|
+
# @!attribute [rw] ip_source
|
64279
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
64280
|
+
# indicates public IP address space allocated by Amazon or space that
|
64281
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
64282
|
+
# private space.
|
64283
|
+
# @return [String]
|
64284
|
+
#
|
64091
64285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetIpv6CidrBlockAssociation AWS API Documentation
|
64092
64286
|
#
|
64093
64287
|
class SubnetIpv6CidrBlockAssociation < Struct.new(
|
64094
64288
|
:association_id,
|
64095
64289
|
:ipv_6_cidr_block,
|
64096
|
-
:ipv_6_cidr_block_state
|
64290
|
+
:ipv_6_cidr_block_state,
|
64291
|
+
:ipv_6_address_attribute,
|
64292
|
+
:ip_source)
|
64097
64293
|
SENSITIVE = []
|
64098
64294
|
include Aws::Structure
|
64099
64295
|
end
|
@@ -68826,6 +69022,19 @@ module Aws::EC2
|
|
68826
69022
|
# allocated.
|
68827
69023
|
# @return [String]
|
68828
69024
|
#
|
69025
|
+
# @!attribute [rw] ipv_6_address_attribute
|
69026
|
+
# Public IPv6 addresses are those advertised on the internet from
|
69027
|
+
# Amazon Web Services. Private IP addresses are not and cannot be
|
69028
|
+
# advertised on the internet from Amazon Web Services.
|
69029
|
+
# @return [String]
|
69030
|
+
#
|
69031
|
+
# @!attribute [rw] ip_source
|
69032
|
+
# The source that allocated the IP address space. `byoip` or `amazon`
|
69033
|
+
# indicates public IP address space allocated by Amazon or space that
|
69034
|
+
# you have allocated with Bring your own IP (BYOIP). `none` indicates
|
69035
|
+
# private space.
|
69036
|
+
# @return [String]
|
69037
|
+
#
|
68829
69038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcIpv6CidrBlockAssociation AWS API Documentation
|
68830
69039
|
#
|
68831
69040
|
class VpcIpv6CidrBlockAssociation < Struct.new(
|
@@ -68833,7 +69042,9 @@ module Aws::EC2
|
|
68833
69042
|
:ipv_6_cidr_block,
|
68834
69043
|
:ipv_6_cidr_block_state,
|
68835
69044
|
:network_border_group,
|
68836
|
-
:ipv_6_pool
|
69045
|
+
:ipv_6_pool,
|
69046
|
+
:ipv_6_address_attribute,
|
69047
|
+
:ip_source)
|
68837
69048
|
SENSITIVE = []
|
68838
69049
|
include Aws::Structure
|
68839
69050
|
end
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1750,8 +1750,8 @@ module Aws::EC2
|
|
1750
1750
|
# principal or service that created the network interface.
|
1751
1751
|
#
|
1752
1752
|
# * `requester-managed` - Indicates whether the network interface is
|
1753
|
-
# being managed by an Amazon Web
|
1754
|
-
# Services Management Console, Auto Scaling, and so on).
|
1753
|
+
# being managed by an Amazon Web Services service (for example, Amazon
|
1754
|
+
# Web Services Management Console, Auto Scaling, and so on).
|
1755
1755
|
#
|
1756
1756
|
# * `source-dest-check` - Indicates whether the network interface
|
1757
1757
|
# performs source/destination checking. A value of `true` means
|
@@ -1942,7 +1942,7 @@ module Aws::EC2
|
|
1942
1942
|
# in a route in the route table.
|
1943
1943
|
#
|
1944
1944
|
# * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
|
1945
|
-
# Web
|
1945
|
+
# Web Services service specified in a route in the table.
|
1946
1946
|
#
|
1947
1947
|
# * `route.egress-only-internet-gateway-id` - The ID of an egress-only
|
1948
1948
|
# Internet gateway specified in a route in the route table.
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1048,6 +1048,32 @@ module Aws
|
|
1048
1048
|
) -> _CreateCapacityReservationResponseSuccess
|
1049
1049
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCapacityReservationResponseSuccess
|
1050
1050
|
|
1051
|
+
interface _CreateCapacityReservationBySplittingResponseSuccess
|
1052
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCapacityReservationBySplittingResult]
|
1053
|
+
def source_capacity_reservation: () -> Types::CapacityReservation
|
1054
|
+
def destination_capacity_reservation: () -> Types::CapacityReservation
|
1055
|
+
def instance_count: () -> ::Integer
|
1056
|
+
end
|
1057
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#create_capacity_reservation_by_splitting-instance_method
|
1058
|
+
def create_capacity_reservation_by_splitting: (
|
1059
|
+
?dry_run: bool,
|
1060
|
+
?client_token: ::String,
|
1061
|
+
source_capacity_reservation_id: ::String,
|
1062
|
+
instance_count: ::Integer,
|
1063
|
+
?tag_specifications: Array[
|
1064
|
+
{
|
1065
|
+
resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "ipam-external-resource-verification-token")?,
|
1066
|
+
tags: Array[
|
1067
|
+
{
|
1068
|
+
key: ::String?,
|
1069
|
+
value: ::String?
|
1070
|
+
},
|
1071
|
+
]?
|
1072
|
+
},
|
1073
|
+
]
|
1074
|
+
) -> _CreateCapacityReservationBySplittingResponseSuccess
|
1075
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCapacityReservationBySplittingResponseSuccess
|
1076
|
+
|
1051
1077
|
interface _CreateCapacityReservationFleetResponseSuccess
|
1052
1078
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCapacityReservationFleetResult]
|
1053
1079
|
def capacity_reservation_fleet_id: () -> ::String
|
@@ -1726,7 +1752,8 @@ module Aws
|
|
1726
1752
|
},
|
1727
1753
|
],
|
1728
1754
|
?client_token: ::String,
|
1729
|
-
?tier: ("free" | "advanced")
|
1755
|
+
?tier: ("free" | "advanced"),
|
1756
|
+
?enable_private_gua: bool
|
1730
1757
|
) -> _CreateIpamResponseSuccess
|
1731
1758
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIpamResponseSuccess
|
1732
1759
|
|
@@ -9745,7 +9772,8 @@ module Aws
|
|
9745
9772
|
?end_date_type: ("unlimited" | "limited"),
|
9746
9773
|
?accept: bool,
|
9747
9774
|
?dry_run: bool,
|
9748
|
-
?additional_info: ::String
|
9775
|
+
?additional_info: ::String,
|
9776
|
+
?instance_match_criteria: ("open" | "targeted")
|
9749
9777
|
) -> _ModifyCapacityReservationResponseSuccess
|
9750
9778
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyCapacityReservationResponseSuccess
|
9751
9779
|
|
@@ -10218,7 +10246,8 @@ module Aws
|
|
10218
10246
|
region_name: ::String?
|
10219
10247
|
},
|
10220
10248
|
],
|
10221
|
-
?tier: ("free" | "advanced")
|
10249
|
+
?tier: ("free" | "advanced"),
|
10250
|
+
?enable_private_gua: bool
|
10222
10251
|
) -> _ModifyIpamResponseSuccess
|
10223
10252
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIpamResponseSuccess
|
10224
10253
|
|
@@ -11175,6 +11204,22 @@ module Aws
|
|
11175
11204
|
) -> _MoveByoipCidrToIpamResponseSuccess
|
11176
11205
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MoveByoipCidrToIpamResponseSuccess
|
11177
11206
|
|
11207
|
+
interface _MoveCapacityReservationInstancesResponseSuccess
|
11208
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::MoveCapacityReservationInstancesResult]
|
11209
|
+
def source_capacity_reservation: () -> Types::CapacityReservation
|
11210
|
+
def destination_capacity_reservation: () -> Types::CapacityReservation
|
11211
|
+
def instance_count: () -> ::Integer
|
11212
|
+
end
|
11213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#move_capacity_reservation_instances-instance_method
|
11214
|
+
def move_capacity_reservation_instances: (
|
11215
|
+
?dry_run: bool,
|
11216
|
+
?client_token: ::String,
|
11217
|
+
source_capacity_reservation_id: ::String,
|
11218
|
+
destination_capacity_reservation_id: ::String,
|
11219
|
+
instance_count: ::Integer
|
11220
|
+
) -> _MoveCapacityReservationInstancesResponseSuccess
|
11221
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MoveCapacityReservationInstancesResponseSuccess
|
11222
|
+
|
11178
11223
|
interface _ProvisionByoipCidrResponseSuccess
|
11179
11224
|
include ::Seahorse::Client::_ResponseSuccess[Types::ProvisionByoipCidrResult]
|
11180
11225
|
def byoip_cidr: () -> Types::ByoipCidr
|
data/sig/types.rbs
CHANGED
@@ -1585,6 +1585,22 @@ module Aws::EC2
|
|
1585
1585
|
SENSITIVE: []
|
1586
1586
|
end
|
1587
1587
|
|
1588
|
+
class CreateCapacityReservationBySplittingRequest
|
1589
|
+
attr_accessor dry_run: bool
|
1590
|
+
attr_accessor client_token: ::String
|
1591
|
+
attr_accessor source_capacity_reservation_id: ::String
|
1592
|
+
attr_accessor instance_count: ::Integer
|
1593
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
1594
|
+
SENSITIVE: []
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
class CreateCapacityReservationBySplittingResult
|
1598
|
+
attr_accessor source_capacity_reservation: Types::CapacityReservation
|
1599
|
+
attr_accessor destination_capacity_reservation: Types::CapacityReservation
|
1600
|
+
attr_accessor instance_count: ::Integer
|
1601
|
+
SENSITIVE: []
|
1602
|
+
end
|
1603
|
+
|
1588
1604
|
class CreateCapacityReservationFleetRequest
|
1589
1605
|
attr_accessor allocation_strategy: ::String
|
1590
1606
|
attr_accessor client_token: ::String
|
@@ -1986,6 +2002,7 @@ module Aws::EC2
|
|
1986
2002
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
1987
2003
|
attr_accessor client_token: ::String
|
1988
2004
|
attr_accessor tier: ("free" | "advanced")
|
2005
|
+
attr_accessor enable_private_gua: bool
|
1989
2006
|
SENSITIVE: []
|
1990
2007
|
end
|
1991
2008
|
|
@@ -9348,6 +9365,7 @@ module Aws::EC2
|
|
9348
9365
|
attr_accessor resource_discovery_association_count: ::Integer
|
9349
9366
|
attr_accessor state_message: ::String
|
9350
9367
|
attr_accessor tier: ("free" | "advanced")
|
9368
|
+
attr_accessor enable_private_gua: bool
|
9351
9369
|
SENSITIVE: []
|
9352
9370
|
end
|
9353
9371
|
|
@@ -9410,6 +9428,7 @@ module Aws::EC2
|
|
9410
9428
|
attr_accessor resource_id: ::String
|
9411
9429
|
attr_accessor resource_owner_id: ::String
|
9412
9430
|
attr_accessor resource_cidr: ::String
|
9431
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
9413
9432
|
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
9414
9433
|
attr_accessor resource_tags: ::Array[Types::IpamResourceTag]
|
9415
9434
|
attr_accessor ip_usage: ::Float
|
@@ -10382,6 +10401,7 @@ module Aws::EC2
|
|
10382
10401
|
attr_accessor accept: bool
|
10383
10402
|
attr_accessor dry_run: bool
|
10384
10403
|
attr_accessor additional_info: ::String
|
10404
|
+
attr_accessor instance_match_criteria: ("open" | "targeted")
|
10385
10405
|
SENSITIVE: []
|
10386
10406
|
end
|
10387
10407
|
|
@@ -10676,6 +10696,7 @@ module Aws::EC2
|
|
10676
10696
|
attr_accessor add_operating_regions: ::Array[Types::AddIpamOperatingRegion]
|
10677
10697
|
attr_accessor remove_operating_regions: ::Array[Types::RemoveIpamOperatingRegion]
|
10678
10698
|
attr_accessor tier: ("free" | "advanced")
|
10699
|
+
attr_accessor enable_private_gua: bool
|
10679
10700
|
SENSITIVE: []
|
10680
10701
|
end
|
10681
10702
|
|
@@ -11387,6 +11408,22 @@ module Aws::EC2
|
|
11387
11408
|
SENSITIVE: []
|
11388
11409
|
end
|
11389
11410
|
|
11411
|
+
class MoveCapacityReservationInstancesRequest
|
11412
|
+
attr_accessor dry_run: bool
|
11413
|
+
attr_accessor client_token: ::String
|
11414
|
+
attr_accessor source_capacity_reservation_id: ::String
|
11415
|
+
attr_accessor destination_capacity_reservation_id: ::String
|
11416
|
+
attr_accessor instance_count: ::Integer
|
11417
|
+
SENSITIVE: []
|
11418
|
+
end
|
11419
|
+
|
11420
|
+
class MoveCapacityReservationInstancesResult
|
11421
|
+
attr_accessor source_capacity_reservation: Types::CapacityReservation
|
11422
|
+
attr_accessor destination_capacity_reservation: Types::CapacityReservation
|
11423
|
+
attr_accessor instance_count: ::Integer
|
11424
|
+
SENSITIVE: []
|
11425
|
+
end
|
11426
|
+
|
11390
11427
|
class MovingAddressStatus
|
11391
11428
|
attr_accessor move_status: ("movingToVpc" | "restoringToClassic")
|
11392
11429
|
attr_accessor public_ip: ::String
|
@@ -13935,6 +13972,8 @@ module Aws::EC2
|
|
13935
13972
|
attr_accessor association_id: ::String
|
13936
13973
|
attr_accessor ipv_6_cidr_block: ::String
|
13937
13974
|
attr_accessor ipv_6_cidr_block_state: Types::SubnetCidrBlockState
|
13975
|
+
attr_accessor ipv_6_address_attribute: ("public" | "private")
|
13976
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
13938
13977
|
SENSITIVE: []
|
13939
13978
|
end
|
13940
13979
|
|
@@ -15118,6 +15157,8 @@ module Aws::EC2
|
|
15118
15157
|
attr_accessor ipv_6_cidr_block_state: Types::VpcCidrBlockState
|
15119
15158
|
attr_accessor network_border_group: ::String
|
15120
15159
|
attr_accessor ipv_6_pool: ::String
|
15160
|
+
attr_accessor ipv_6_address_attribute: ("public" | "private")
|
15161
|
+
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
15121
15162
|
SENSITIVE: []
|
15122
15163
|
end
|
15123
15164
|
|
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.469.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: 2024-
|
11
|
+
date: 2024-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|