aws-sdk-ec2 1.501.0 → 1.503.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 +46 -47
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/network_interface.rb +2 -2
- data/lib/aws-sdk-ec2/resource.rb +1 -8
- data/lib/aws-sdk-ec2/subnet.rb +1 -8
- data/lib/aws-sdk-ec2/types.rb +35 -20
- data/lib/aws-sdk-ec2/vpc.rb +0 -7
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +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: 361debbfefe68e4b0c14cd60fc84126e78807ededd752a1b69d929dde37743e0
|
4
|
+
data.tar.gz: db7f3eedd18c9ce9fde60e6d30a228578fe6f938cde203165921f89cde796d3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c063adfbfaae20d1a1868b3dca92992f0fc2aa729a63dc46167067376512bf2c3b25dc8d144d843e77665bee1ce6307f2db0b9f5d12aecaed84d885788b5017
|
7
|
+
data.tar.gz: c7e5a38b501a2f2d8a0844b6e9c2b00920aca6688ffedda90112d091ae762bc04badfb387ed0c1fb9f5babc523629d0ec17e9be93d825d5c0db4db9241f8c432
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.503.0 (2025-01-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release changes the CreateFleet CLI and SDK's such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
|
8
|
+
|
9
|
+
1.502.0 (2025-01-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added "future" allocation type for future dated capacity reservation
|
13
|
+
|
4
14
|
1.501.0 (2025-01-17)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.503.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -1449,12 +1449,12 @@ module Aws::EC2
|
|
1449
1449
|
req.send_request(options)
|
1450
1450
|
end
|
1451
1451
|
|
1452
|
-
# Assigns
|
1453
|
-
#
|
1454
|
-
# the number of IPv6 addresses to be automatically assigned from
|
1455
|
-
# subnet's IPv6 CIDR block range. You can assign as many
|
1456
|
-
# to a network interface as you can assign private IPv4
|
1457
|
-
# the limit varies
|
1452
|
+
# Assigns one or more IPv6 addresses to the specified network interface.
|
1453
|
+
# You can specify one or more specific IPv6 addresses, or you can
|
1454
|
+
# specify the number of IPv6 addresses to be automatically assigned from
|
1455
|
+
# within the subnet's IPv6 CIDR block range. You can assign as many
|
1456
|
+
# IPv6 addresses to a network interface as you can assign private IPv4
|
1457
|
+
# addresses, and the limit varies per instance type.
|
1458
1458
|
#
|
1459
1459
|
# You must specify either the IPv6 addresses or the IPv6 address count
|
1460
1460
|
# in the request.
|
@@ -1475,7 +1475,7 @@ module Aws::EC2
|
|
1475
1475
|
#
|
1476
1476
|
# @option params [Array<String>] :ipv_6_prefixes
|
1477
1477
|
# One or more IPv6 prefixes assigned to the network interface. You
|
1478
|
-
#
|
1478
|
+
# cannot use this option if you use the `Ipv6PrefixCount` option.
|
1479
1479
|
#
|
1480
1480
|
# @option params [required, String] :network_interface_id
|
1481
1481
|
# The ID of the network interface.
|
@@ -1525,15 +1525,15 @@ module Aws::EC2
|
|
1525
1525
|
req.send_request(options)
|
1526
1526
|
end
|
1527
1527
|
|
1528
|
-
# Assigns
|
1528
|
+
# Assigns one or more secondary private IP addresses to the specified
|
1529
1529
|
# network interface.
|
1530
1530
|
#
|
1531
|
-
# You can specify specific secondary IP addresses, or you
|
1532
|
-
# the number of secondary IP addresses to be automatically
|
1533
|
-
# the subnet's CIDR block range. The number of
|
1534
|
-
# that you can assign to an instance varies by
|
1535
|
-
# information about Elastic IP addresses, see
|
1536
|
-
# in the *Amazon EC2 User Guide*.
|
1531
|
+
# You can specify one or more specific secondary IP addresses, or you
|
1532
|
+
# can specify the number of secondary IP addresses to be automatically
|
1533
|
+
# assigned within the subnet's CIDR block range. The number of
|
1534
|
+
# secondary IP addresses that you can assign to an instance varies by
|
1535
|
+
# instance type. For more information about Elastic IP addresses, see
|
1536
|
+
# [Elastic IP Addresses][1] in the *Amazon EC2 User Guide*.
|
1537
1537
|
#
|
1538
1538
|
# When you move a secondary private IP address to another network
|
1539
1539
|
# interface, any Elastic IP address that is associated with the IP
|
@@ -1559,11 +1559,11 @@ module Aws::EC2
|
|
1559
1559
|
#
|
1560
1560
|
# @option params [Array<String>] :ipv_4_prefixes
|
1561
1561
|
# One or more IPv4 prefixes assigned to the network interface. You
|
1562
|
-
#
|
1562
|
+
# cannot use this option if you use the `Ipv4PrefixCount` option.
|
1563
1563
|
#
|
1564
1564
|
# @option params [Integer] :ipv_4_prefix_count
|
1565
1565
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
1566
|
-
# assigns to the network interface. You
|
1566
|
+
# assigns to the network interface. You cannot use this option if you
|
1567
1567
|
# use the `Ipv4 Prefixes` option.
|
1568
1568
|
#
|
1569
1569
|
# @option params [required, String] :network_interface_id
|
@@ -4969,7 +4969,7 @@ module Aws::EC2
|
|
4969
4969
|
# Snapshots copied to an Outpost are encrypted by default using the
|
4970
4970
|
# default encryption key for the Region, or a different key that you
|
4971
4971
|
# specify in the request using **KmsKeyId**. Outposts do not support
|
4972
|
-
# unencrypted snapshots. For more information,
|
4972
|
+
# unencrypted snapshots. For more information, [ Amazon EBS local
|
4973
4973
|
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
4974
4974
|
#
|
4975
4975
|
# Snapshots created by copying another snapshot have an arbitrary volume
|
@@ -5472,7 +5472,7 @@ module Aws::EC2
|
|
5472
5472
|
# resp.capacity_reservation.capacity_reservation_fleet_id #=> String
|
5473
5473
|
# resp.capacity_reservation.placement_group_arn #=> String
|
5474
5474
|
# resp.capacity_reservation.capacity_allocations #=> Array
|
5475
|
-
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5475
|
+
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5476
5476
|
# resp.capacity_reservation.capacity_allocations[0].count #=> Integer
|
5477
5477
|
# resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5478
5478
|
# resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -5576,7 +5576,7 @@ module Aws::EC2
|
|
5576
5576
|
# resp.source_capacity_reservation.capacity_reservation_fleet_id #=> String
|
5577
5577
|
# resp.source_capacity_reservation.placement_group_arn #=> String
|
5578
5578
|
# resp.source_capacity_reservation.capacity_allocations #=> Array
|
5579
|
-
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5579
|
+
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5580
5580
|
# resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
|
5581
5581
|
# resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5582
5582
|
# resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -5608,7 +5608,7 @@ module Aws::EC2
|
|
5608
5608
|
# resp.destination_capacity_reservation.capacity_reservation_fleet_id #=> String
|
5609
5609
|
# resp.destination_capacity_reservation.placement_group_arn #=> String
|
5610
5610
|
# resp.destination_capacity_reservation.capacity_allocations #=> Array
|
5611
|
-
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5611
|
+
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5612
5612
|
# resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
|
5613
5613
|
# resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5614
5614
|
# resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -6803,8 +6803,14 @@ module Aws::EC2
|
|
6803
6803
|
#
|
6804
6804
|
# @option params [String] :client_token
|
6805
6805
|
# Unique, case-sensitive identifier that you provide to ensure the
|
6806
|
-
# idempotency of the request.
|
6807
|
-
#
|
6806
|
+
# idempotency of the request. If you do not specify a client token, a
|
6807
|
+
# randomly generated token is used for the request to ensure
|
6808
|
+
# idempotency.
|
6809
|
+
#
|
6810
|
+
# For more information, see [Ensuring idempotency][1].
|
6811
|
+
#
|
6812
|
+
# **A suitable default value is auto-generated.** You should normally
|
6813
|
+
# not need to pass this option.**
|
6808
6814
|
#
|
6809
6815
|
#
|
6810
6816
|
#
|
@@ -9993,8 +9999,9 @@ module Aws::EC2
|
|
9993
9999
|
req.send_request(options)
|
9994
10000
|
end
|
9995
10001
|
|
9996
|
-
# Creates a managed prefix list. You can specify entries for
|
9997
|
-
# list. Each entry consists of a CIDR block and an optional
|
10002
|
+
# Creates a managed prefix list. You can specify one or more entries for
|
10003
|
+
# the prefix list. Each entry consists of a CIDR block and an optional
|
10004
|
+
# description.
|
9998
10005
|
#
|
9999
10006
|
# @option params [Boolean] :dry_run
|
10000
10007
|
# Checks whether you have the required permissions for the action,
|
@@ -11052,7 +11059,7 @@ module Aws::EC2
|
|
11052
11059
|
# primary (only one IP address can be designated as primary).
|
11053
11060
|
#
|
11054
11061
|
# @option params [Array<String>] :groups
|
11055
|
-
# The IDs of
|
11062
|
+
# The IDs of one or more security groups.
|
11056
11063
|
#
|
11057
11064
|
# @option params [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
11058
11065
|
# The private IPv4 addresses.
|
@@ -12214,7 +12221,7 @@ module Aws::EC2
|
|
12214
12221
|
# the same Region as the volume.
|
12215
12222
|
#
|
12216
12223
|
# * If the source volume is in a Local Zone, you can create the snapshot
|
12217
|
-
# in the same Local Zone or in
|
12224
|
+
# in the same Local Zone or in parent Amazon Web Services Region.
|
12218
12225
|
#
|
12219
12226
|
# * If the source volume is on an Outpost, you can create the snapshot
|
12220
12227
|
# on the same Outpost or in its parent Amazon Web Services Region.
|
@@ -12242,8 +12249,8 @@ module Aws::EC2
|
|
12242
12249
|
# Snapshots that are taken from encrypted volumes are automatically
|
12243
12250
|
# encrypted. Volumes that are created from encrypted snapshots are also
|
12244
12251
|
# automatically encrypted. Your encrypted volumes and any associated
|
12245
|
-
# snapshots always remain protected. For more information,
|
12246
|
-
#
|
12252
|
+
# snapshots always remain protected. For more information, [Amazon EBS
|
12253
|
+
# encryption][1] in the *Amazon EBS User Guide*.
|
12247
12254
|
#
|
12248
12255
|
#
|
12249
12256
|
#
|
@@ -12419,8 +12426,8 @@ module Aws::EC2
|
|
12419
12426
|
# in the same Region as the instance.
|
12420
12427
|
#
|
12421
12428
|
# * If the source instance is in a Local Zone, you can create the
|
12422
|
-
# snapshots in the same Local Zone or in
|
12423
|
-
#
|
12429
|
+
# snapshots in the same Local Zone or in parent Amazon Web Services
|
12430
|
+
# Region.
|
12424
12431
|
#
|
12425
12432
|
# * If the source instance is on an Outpost, you can create the
|
12426
12433
|
# snapshots on the same Outpost or in its parent Amazon Web Services
|
@@ -18519,7 +18526,7 @@ module Aws::EC2
|
|
18519
18526
|
# the volume.
|
18520
18527
|
#
|
18521
18528
|
# You cannot delete a snapshot of the root device of an EBS volume used
|
18522
|
-
# by a registered AMI. You must first
|
18529
|
+
# by a registered AMI. You must first de-register the AMI before you can
|
18523
18530
|
# delete the snapshot.
|
18524
18531
|
#
|
18525
18532
|
# For more information, see [Delete an Amazon EBS snapshot][1] in the
|
@@ -22020,7 +22027,7 @@ module Aws::EC2
|
|
22020
22027
|
# resp.capacity_reservations[0].capacity_reservation_fleet_id #=> String
|
22021
22028
|
# resp.capacity_reservations[0].placement_group_arn #=> String
|
22022
22029
|
# resp.capacity_reservations[0].capacity_allocations #=> Array
|
22023
|
-
# resp.capacity_reservations[0].capacity_allocations[0].allocation_type #=> String, one of "used"
|
22030
|
+
# resp.capacity_reservations[0].capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
22024
22031
|
# resp.capacity_reservations[0].capacity_allocations[0].count #=> Integer
|
22025
22032
|
# resp.capacity_reservations[0].reservation_type #=> String, one of "default", "capacity-block"
|
22026
22033
|
# resp.capacity_reservations[0].unused_reservation_billing_owner_id #=> String
|
@@ -31688,8 +31695,7 @@ module Aws::EC2
|
|
31688
31695
|
req.send_request(options)
|
31689
31696
|
end
|
31690
31697
|
|
31691
|
-
# Describes
|
31692
|
-
# interfaces.
|
31698
|
+
# Describes one or more of your network interfaces.
|
31693
31699
|
#
|
31694
31700
|
# If you have a large number of network interfaces, the operation fails
|
31695
31701
|
# unless you use pagination or one of the following filters: `group-id`,
|
@@ -31800,13 +31806,6 @@ module Aws::EC2
|
|
31800
31806
|
#
|
31801
31807
|
# * `network-interface-id` - The ID of the network interface.
|
31802
31808
|
#
|
31803
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
31804
|
-
# managed network interface.
|
31805
|
-
#
|
31806
|
-
# * `operator.principal` - The principal that manages the network
|
31807
|
-
# interface. Only valid for managed network interfaces, where
|
31808
|
-
# `managed` is `true`.
|
31809
|
-
#
|
31810
31809
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
31811
31810
|
# interface owner.
|
31812
31811
|
#
|
@@ -55367,7 +55366,7 @@ module Aws::EC2
|
|
55367
55366
|
# resp.source_capacity_reservation.capacity_reservation_fleet_id #=> String
|
55368
55367
|
# resp.source_capacity_reservation.placement_group_arn #=> String
|
55369
55368
|
# resp.source_capacity_reservation.capacity_allocations #=> Array
|
55370
|
-
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55369
|
+
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55371
55370
|
# resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
|
55372
55371
|
# resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55373
55372
|
# resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -55399,7 +55398,7 @@ module Aws::EC2
|
|
55399
55398
|
# resp.destination_capacity_reservation.capacity_reservation_fleet_id #=> String
|
55400
55399
|
# resp.destination_capacity_reservation.placement_group_arn #=> String
|
55401
55400
|
# resp.destination_capacity_reservation.capacity_allocations #=> Array
|
55402
|
-
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55401
|
+
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55403
55402
|
# resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
|
55404
55403
|
# resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55405
55404
|
# resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -55844,7 +55843,7 @@ module Aws::EC2
|
|
55844
55843
|
# resp.capacity_reservation.capacity_reservation_fleet_id #=> String
|
55845
55844
|
# resp.capacity_reservation.placement_group_arn #=> String
|
55846
55845
|
# resp.capacity_reservation.capacity_allocations #=> Array
|
55847
|
-
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55846
|
+
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55848
55847
|
# resp.capacity_reservation.capacity_allocations[0].count #=> Integer
|
55849
55848
|
# resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55850
55849
|
# resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -62618,7 +62617,7 @@ module Aws::EC2
|
|
62618
62617
|
req.send_request(options)
|
62619
62618
|
end
|
62620
62619
|
|
62621
|
-
# Unassigns
|
62620
|
+
# Unassigns one or more IPv6 addresses IPv4 Prefix Delegation prefixes
|
62622
62621
|
# from a network interface.
|
62623
62622
|
#
|
62624
62623
|
# @option params [Array<String>] :ipv_6_prefixes
|
@@ -62661,7 +62660,7 @@ module Aws::EC2
|
|
62661
62660
|
req.send_request(options)
|
62662
62661
|
end
|
62663
62662
|
|
62664
|
-
# Unassigns
|
62663
|
+
# Unassigns one or more secondary private IP addresses, or IPv4 Prefix
|
62665
62664
|
# Delegation prefixes from a network interface.
|
62666
62665
|
#
|
62667
62666
|
# @option params [Array<String>] :ipv_4_prefixes
|
@@ -63179,7 +63178,7 @@ module Aws::EC2
|
|
63179
63178
|
tracer: tracer
|
63180
63179
|
)
|
63181
63180
|
context[:gem_name] = 'aws-sdk-ec2'
|
63182
|
-
context[:gem_version] = '1.
|
63181
|
+
context[:gem_version] = '1.503.0'
|
63183
63182
|
Seahorse::Client::Request.new(handlers, context)
|
63184
63183
|
end
|
63185
63184
|
|
@@ -5030,7 +5030,7 @@ module Aws::EC2
|
|
5030
5030
|
CreateFleetInstancesSet.member = Shapes::ShapeRef.new(shape: CreateFleetInstance, location_name: "item")
|
5031
5031
|
|
5032
5032
|
CreateFleetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5033
|
-
CreateFleetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
5033
|
+
CreateFleetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
5034
5034
|
CreateFleetRequest.add_member(:spot_options, Shapes::ShapeRef.new(shape: SpotOptionsRequest, location_name: "SpotOptions"))
|
5035
5035
|
CreateFleetRequest.add_member(:on_demand_options, Shapes::ShapeRef.new(shape: OnDemandOptionsRequest, location_name: "OnDemandOptions"))
|
5036
5036
|
CreateFleetRequest.add_member(:excess_capacity_termination_policy, Shapes::ShapeRef.new(shape: FleetExcessCapacityTerminationPolicy, location_name: "ExcessCapacityTerminationPolicy"))
|
@@ -357,10 +357,10 @@ module Aws::EC2
|
|
357
357
|
# @param [Hash] options ({})
|
358
358
|
# @option options [Array<String>] :ipv_4_prefixes
|
359
359
|
# One or more IPv4 prefixes assigned to the network interface. You
|
360
|
-
#
|
360
|
+
# cannot use this option if you use the `Ipv4PrefixCount` option.
|
361
361
|
# @option options [Integer] :ipv_4_prefix_count
|
362
362
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
363
|
-
# assigns to the network interface. You
|
363
|
+
# assigns to the network interface. You cannot use this option if you
|
364
364
|
# use the `Ipv4 Prefixes` option.
|
365
365
|
# @option options [Array<String>] :private_ip_addresses
|
366
366
|
# The IP addresses to be assigned as a secondary private IP address to
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -998,7 +998,7 @@ module Aws::EC2
|
|
998
998
|
# cannot indicate any IP addresses specified in `privateIpAddresses` as
|
999
999
|
# primary (only one IP address can be designated as primary).
|
1000
1000
|
# @option options [Array<String>] :groups
|
1001
|
-
# The IDs of
|
1001
|
+
# The IDs of one or more security groups.
|
1002
1002
|
# @option options [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
1003
1003
|
# The private IPv4 addresses.
|
1004
1004
|
#
|
@@ -3380,13 +3380,6 @@ module Aws::EC2
|
|
3380
3380
|
#
|
3381
3381
|
# * `network-interface-id` - The ID of the network interface.
|
3382
3382
|
#
|
3383
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
3384
|
-
# managed network interface.
|
3385
|
-
#
|
3386
|
-
# * `operator.principal` - The principal that manages the network
|
3387
|
-
# interface. Only valid for managed network interfaces, where
|
3388
|
-
# `managed` is `true`.
|
3389
|
-
#
|
3390
3383
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
3391
3384
|
# interface owner.
|
3392
3385
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -1003,7 +1003,7 @@ module Aws::EC2
|
|
1003
1003
|
# cannot indicate any IP addresses specified in `privateIpAddresses` as
|
1004
1004
|
# primary (only one IP address can be designated as primary).
|
1005
1005
|
# @option options [Array<String>] :groups
|
1006
|
-
# The IDs of
|
1006
|
+
# The IDs of one or more security groups.
|
1007
1007
|
# @option options [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
1008
1008
|
# The private IPv4 addresses.
|
1009
1009
|
#
|
@@ -1818,13 +1818,6 @@ module Aws::EC2
|
|
1818
1818
|
#
|
1819
1819
|
# * `network-interface-id` - The ID of the network interface.
|
1820
1820
|
#
|
1821
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
1822
|
-
# managed network interface.
|
1823
|
-
#
|
1824
|
-
# * `operator.principal` - The principal that manages the network
|
1825
|
-
# interface. Only valid for managed network interfaces, where
|
1826
|
-
# `managed` is `true`.
|
1827
|
-
#
|
1828
1821
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
1829
1822
|
# interface owner.
|
1830
1823
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -1748,7 +1748,7 @@ module Aws::EC2
|
|
1748
1748
|
#
|
1749
1749
|
# @!attribute [rw] ipv_6_prefixes
|
1750
1750
|
# One or more IPv6 prefixes assigned to the network interface. You
|
1751
|
-
#
|
1751
|
+
# cannot use this option if you use the `Ipv6PrefixCount` option.
|
1752
1752
|
# @return [Array<String>]
|
1753
1753
|
#
|
1754
1754
|
# @!attribute [rw] network_interface_id
|
@@ -1810,12 +1810,12 @@ module Aws::EC2
|
|
1810
1810
|
#
|
1811
1811
|
# @!attribute [rw] ipv_4_prefixes
|
1812
1812
|
# One or more IPv4 prefixes assigned to the network interface. You
|
1813
|
-
#
|
1813
|
+
# cannot use this option if you use the `Ipv4PrefixCount` option.
|
1814
1814
|
# @return [Array<String>]
|
1815
1815
|
#
|
1816
1816
|
# @!attribute [rw] ipv_4_prefix_count
|
1817
1817
|
# The number of IPv4 prefixes that Amazon Web Services automatically
|
1818
|
-
# assigns to the network interface. You
|
1818
|
+
# assigns to the network interface. You cannot use this option if you
|
1819
1819
|
# use the `Ipv4 Prefixes` option.
|
1820
1820
|
# @return [Integer]
|
1821
1821
|
#
|
@@ -8672,8 +8672,14 @@ module Aws::EC2
|
|
8672
8672
|
#
|
8673
8673
|
# @!attribute [rw] client_token
|
8674
8674
|
# Unique, case-sensitive identifier that you provide to ensure the
|
8675
|
-
# idempotency of the request.
|
8676
|
-
#
|
8675
|
+
# idempotency of the request. If you do not specify a client token, a
|
8676
|
+
# randomly generated token is used for the request to ensure
|
8677
|
+
# idempotency.
|
8678
|
+
#
|
8679
|
+
# For more information, see [Ensuring idempotency][1].
|
8680
|
+
#
|
8681
|
+
# **A suitable default value is auto-generated.** You should normally
|
8682
|
+
# not need to pass this option.
|
8677
8683
|
#
|
8678
8684
|
#
|
8679
8685
|
#
|
@@ -10878,7 +10884,7 @@ module Aws::EC2
|
|
10878
10884
|
# @return [String]
|
10879
10885
|
#
|
10880
10886
|
# @!attribute [rw] groups
|
10881
|
-
# The IDs of
|
10887
|
+
# The IDs of one or more security groups.
|
10882
10888
|
# @return [Array<String>]
|
10883
10889
|
#
|
10884
10890
|
# @!attribute [rw] private_ip_addresses
|
@@ -24984,13 +24990,6 @@ module Aws::EC2
|
|
24984
24990
|
#
|
24985
24991
|
# * `network-interface-id` - The ID of the network interface.
|
24986
24992
|
#
|
24987
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
24988
|
-
# managed network interface.
|
24989
|
-
#
|
24990
|
-
# * `operator.principal` - The principal that manages the network
|
24991
|
-
# interface. Only valid for managed network interfaces, where
|
24992
|
-
# `managed` is `true`.
|
24993
|
-
#
|
24994
24993
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
24995
24994
|
# interface owner.
|
24996
24995
|
#
|
@@ -34256,8 +34255,14 @@ module Aws::EC2
|
|
34256
34255
|
# valid and several attempts to launch instances have failed. For
|
34257
34256
|
# more information, see the description of the event.
|
34258
34257
|
#
|
34259
|
-
# * `launchSpecUnusable` - The price in a launch
|
34260
|
-
# valid because it is below the Spot price
|
34258
|
+
# * `launchSpecUnusable` - The price specified in a launch
|
34259
|
+
# specification is not valid because it is below the Spot price for
|
34260
|
+
# the requested Spot pools.
|
34261
|
+
#
|
34262
|
+
# Note: Even if a fleet with the `maintain` request type is in the
|
34263
|
+
# process of being canceled, it may still publish a
|
34264
|
+
# `launchSpecUnusable` event. This does not mean that the canceled
|
34265
|
+
# fleet is attempting to launch a new instance.
|
34261
34266
|
#
|
34262
34267
|
# * `registerWithLoadBalancersFailed` - An attempt to register
|
34263
34268
|
# instances with load balancers failed. For more information, see
|
@@ -43436,9 +43441,15 @@ module Aws::EC2
|
|
43436
43441
|
# @return [Array<Types::PrivateIpAddressSpecification>]
|
43437
43442
|
#
|
43438
43443
|
# @!attribute [rw] secondary_private_ip_address_count
|
43439
|
-
# The number of secondary private IPv4 addresses. You can
|
43440
|
-
# this
|
43441
|
-
#
|
43444
|
+
# The number of secondary private IPv4 addresses. You can't specify
|
43445
|
+
# this option and specify more than one private IP address using the
|
43446
|
+
# private IP addresses option. You cannot specify this option if
|
43447
|
+
# you're launching more than one instance in a [RunInstances][1]
|
43448
|
+
# request.
|
43449
|
+
#
|
43450
|
+
#
|
43451
|
+
#
|
43452
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43442
43453
|
# @return [Integer]
|
43443
43454
|
#
|
43444
43455
|
# @!attribute [rw] subnet_id
|
@@ -47040,7 +47051,7 @@ module Aws::EC2
|
|
47040
47051
|
include Aws::Structure
|
47041
47052
|
end
|
47042
47053
|
|
47043
|
-
# Describes the
|
47054
|
+
# Describes the IPv4 prefix option for a network interface.
|
47044
47055
|
#
|
47045
47056
|
# @!attribute [rw] ipv_6_prefix
|
47046
47057
|
# The IPv6 prefix.
|
@@ -67003,6 +67014,10 @@ module Aws::EC2
|
|
67003
67014
|
# If you specify a maximum price, your Spot Instances will be
|
67004
67015
|
# interrupted more frequently than if you do not specify this
|
67005
67016
|
# parameter.
|
67017
|
+
#
|
67018
|
+
# If you specify a maximum price, it must be more than USD $0.001.
|
67019
|
+
# Specifying a value below USD $0.001 will result in an
|
67020
|
+
# `InvalidParameterValue` error message.
|
67006
67021
|
# @return [String]
|
67007
67022
|
#
|
67008
67023
|
# @!attribute [rw] spot_instance_type
|
@@ -70953,7 +70968,7 @@ module Aws::EC2
|
|
70953
70968
|
# @return [Array<String>]
|
70954
70969
|
#
|
70955
70970
|
# @!attribute [rw] unassigned_ipv_6_prefixes
|
70956
|
-
# The
|
70971
|
+
# The IPv4 prefixes that have been unassigned from the network
|
70957
70972
|
# interface.
|
70958
70973
|
# @return [Array<String>]
|
70959
70974
|
#
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -1766,13 +1766,6 @@ module Aws::EC2
|
|
1766
1766
|
#
|
1767
1767
|
# * `network-interface-id` - The ID of the network interface.
|
1768
1768
|
#
|
1769
|
-
# * `operator.managed` - A Boolean that indicates whether this is a
|
1770
|
-
# managed network interface.
|
1771
|
-
#
|
1772
|
-
# * `operator.principal` - The principal that manages the network
|
1773
|
-
# interface. Only valid for managed network interfaces, where
|
1774
|
-
# `managed` is `true`.
|
1775
|
-
#
|
1776
1769
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
1777
1770
|
# interface owner.
|
1778
1771
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
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.503.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: 2025-01-
|
11
|
+
date: 2025-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|