aws-sdk-ec2 1.501.0 → 1.502.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 +39 -65
- 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 +19 -27
- 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: ccba7d9936d9b684c79c41ba15e1dfb8204ac4a4a6225ca5bdb57b944ace607c
|
4
|
+
data.tar.gz: 3bd99ee6e0b6f4e96be41f71fb19f7e697dbcea95d1dc8810e66ceef1e252b7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7eac17bfc5854fbd9efe9064268994a74d734cfd2b9d6b5d1759d0402fff32dd0cca0c20423bbce0b8a0a446690f626c0bf09bb3414fe6d16a9be65363aec1e5
|
7
|
+
data.tar.gz: c5ee0400b14a5f5f73369c17e0a8ad03b8f0e48c475d0f8f2411f9722109c9bddb874538f43b6a215db68beff915c93f9577a45f2e09a0d22b92a6f06289757b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.502.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
|
@@ -4107,11 +4107,6 @@ module Aws::EC2
|
|
4107
4107
|
# duration has elapsed. You can't cancel a future-dated Capacity
|
4108
4108
|
# Reservation during the commitment duration.
|
4109
4109
|
#
|
4110
|
-
# <note markdown="1"> You can't modify or cancel a Capacity Block. For more information,
|
4111
|
-
# see [Capacity Blocks for ML][1].
|
4112
|
-
#
|
4113
|
-
# </note>
|
4114
|
-
#
|
4115
4110
|
# If a future-dated Capacity Reservation enters the `delayed` state, the
|
4116
4111
|
# commitment duration is waived, and you can cancel it as soon as it
|
4117
4112
|
# enters the `active` state.
|
@@ -4123,10 +4118,6 @@ module Aws::EC2
|
|
4123
4118
|
# any open Capacity Reservation that has matching attributes and
|
4124
4119
|
# sufficient capacity.
|
4125
4120
|
#
|
4126
|
-
#
|
4127
|
-
#
|
4128
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-capacity-blocks.html
|
4129
|
-
#
|
4130
4121
|
# @option params [required, String] :capacity_reservation_id
|
4131
4122
|
# The ID of the Capacity Reservation to be cancelled.
|
4132
4123
|
#
|
@@ -4969,7 +4960,7 @@ module Aws::EC2
|
|
4969
4960
|
# Snapshots copied to an Outpost are encrypted by default using the
|
4970
4961
|
# default encryption key for the Region, or a different key that you
|
4971
4962
|
# specify in the request using **KmsKeyId**. Outposts do not support
|
4972
|
-
# unencrypted snapshots. For more information,
|
4963
|
+
# unencrypted snapshots. For more information, [ Amazon EBS local
|
4973
4964
|
# snapshots on Outposts][1] in the *Amazon EBS User Guide*.
|
4974
4965
|
#
|
4975
4966
|
# Snapshots created by copying another snapshot have an arbitrary volume
|
@@ -5472,7 +5463,7 @@ module Aws::EC2
|
|
5472
5463
|
# resp.capacity_reservation.capacity_reservation_fleet_id #=> String
|
5473
5464
|
# resp.capacity_reservation.placement_group_arn #=> String
|
5474
5465
|
# resp.capacity_reservation.capacity_allocations #=> Array
|
5475
|
-
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5466
|
+
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5476
5467
|
# resp.capacity_reservation.capacity_allocations[0].count #=> Integer
|
5477
5468
|
# resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5478
5469
|
# resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -5576,7 +5567,7 @@ module Aws::EC2
|
|
5576
5567
|
# resp.source_capacity_reservation.capacity_reservation_fleet_id #=> String
|
5577
5568
|
# resp.source_capacity_reservation.placement_group_arn #=> String
|
5578
5569
|
# resp.source_capacity_reservation.capacity_allocations #=> Array
|
5579
|
-
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5570
|
+
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5580
5571
|
# resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
|
5581
5572
|
# resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5582
5573
|
# resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -5608,7 +5599,7 @@ module Aws::EC2
|
|
5608
5599
|
# resp.destination_capacity_reservation.capacity_reservation_fleet_id #=> String
|
5609
5600
|
# resp.destination_capacity_reservation.placement_group_arn #=> String
|
5610
5601
|
# resp.destination_capacity_reservation.capacity_allocations #=> Array
|
5611
|
-
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
5602
|
+
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
5612
5603
|
# resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
|
5613
5604
|
# resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
5614
5605
|
# resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -9993,8 +9984,9 @@ module Aws::EC2
|
|
9993
9984
|
req.send_request(options)
|
9994
9985
|
end
|
9995
9986
|
|
9996
|
-
# Creates a managed prefix list. You can specify entries for
|
9997
|
-
# list. Each entry consists of a CIDR block and an optional
|
9987
|
+
# Creates a managed prefix list. You can specify one or more entries for
|
9988
|
+
# the prefix list. Each entry consists of a CIDR block and an optional
|
9989
|
+
# description.
|
9998
9990
|
#
|
9999
9991
|
# @option params [Boolean] :dry_run
|
10000
9992
|
# Checks whether you have the required permissions for the action,
|
@@ -11052,7 +11044,7 @@ module Aws::EC2
|
|
11052
11044
|
# primary (only one IP address can be designated as primary).
|
11053
11045
|
#
|
11054
11046
|
# @option params [Array<String>] :groups
|
11055
|
-
# The IDs of
|
11047
|
+
# The IDs of one or more security groups.
|
11056
11048
|
#
|
11057
11049
|
# @option params [Array<Types::PrivateIpAddressSpecification>] :private_ip_addresses
|
11058
11050
|
# The private IPv4 addresses.
|
@@ -12214,7 +12206,7 @@ module Aws::EC2
|
|
12214
12206
|
# the same Region as the volume.
|
12215
12207
|
#
|
12216
12208
|
# * If the source volume is in a Local Zone, you can create the snapshot
|
12217
|
-
# in the same Local Zone or in
|
12209
|
+
# in the same Local Zone or in parent Amazon Web Services Region.
|
12218
12210
|
#
|
12219
12211
|
# * If the source volume is on an Outpost, you can create the snapshot
|
12220
12212
|
# on the same Outpost or in its parent Amazon Web Services Region.
|
@@ -12242,8 +12234,8 @@ module Aws::EC2
|
|
12242
12234
|
# Snapshots that are taken from encrypted volumes are automatically
|
12243
12235
|
# encrypted. Volumes that are created from encrypted snapshots are also
|
12244
12236
|
# automatically encrypted. Your encrypted volumes and any associated
|
12245
|
-
# snapshots always remain protected. For more information,
|
12246
|
-
#
|
12237
|
+
# snapshots always remain protected. For more information, [Amazon EBS
|
12238
|
+
# encryption][1] in the *Amazon EBS User Guide*.
|
12247
12239
|
#
|
12248
12240
|
#
|
12249
12241
|
#
|
@@ -12419,8 +12411,8 @@ module Aws::EC2
|
|
12419
12411
|
# in the same Region as the instance.
|
12420
12412
|
#
|
12421
12413
|
# * If the source instance is in a Local Zone, you can create the
|
12422
|
-
# snapshots in the same Local Zone or in
|
12423
|
-
#
|
12414
|
+
# snapshots in the same Local Zone or in parent Amazon Web Services
|
12415
|
+
# Region.
|
12424
12416
|
#
|
12425
12417
|
# * If the source instance is on an Outpost, you can create the
|
12426
12418
|
# snapshots on the same Outpost or in its parent Amazon Web Services
|
@@ -18519,7 +18511,7 @@ module Aws::EC2
|
|
18519
18511
|
# the volume.
|
18520
18512
|
#
|
18521
18513
|
# You cannot delete a snapshot of the root device of an EBS volume used
|
18522
|
-
# by a registered AMI. You must first
|
18514
|
+
# by a registered AMI. You must first de-register the AMI before you can
|
18523
18515
|
# delete the snapshot.
|
18524
18516
|
#
|
18525
18517
|
# For more information, see [Delete an Amazon EBS snapshot][1] in the
|
@@ -21574,15 +21566,6 @@ module Aws::EC2
|
|
21574
21566
|
# Amazon Web Services Region that you're currently using. With Capacity
|
21575
21567
|
# Blocks, you purchase a specific instance type for a period of time.
|
21576
21568
|
#
|
21577
|
-
# To search for an available Capacity Block offering, you specify a
|
21578
|
-
# reservation duration and instance count. You must select one of the
|
21579
|
-
# following options.
|
21580
|
-
#
|
21581
|
-
# * For reservation durations<b> 1-day increments up 14 days and 7-day
|
21582
|
-
# increments up to 182 days total</b>
|
21583
|
-
#
|
21584
|
-
# * For instance count<b> 1, 2, 4, 8, 16, 32, or 64 instances</b>
|
21585
|
-
#
|
21586
21569
|
# @option params [Boolean] :dry_run
|
21587
21570
|
# Checks whether you have the required permissions for the action,
|
21588
21571
|
# without actually making the request, and provides an error response.
|
@@ -22020,7 +22003,7 @@ module Aws::EC2
|
|
22020
22003
|
# resp.capacity_reservations[0].capacity_reservation_fleet_id #=> String
|
22021
22004
|
# resp.capacity_reservations[0].placement_group_arn #=> String
|
22022
22005
|
# resp.capacity_reservations[0].capacity_allocations #=> Array
|
22023
|
-
# resp.capacity_reservations[0].capacity_allocations[0].allocation_type #=> String, one of "used"
|
22006
|
+
# resp.capacity_reservations[0].capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
22024
22007
|
# resp.capacity_reservations[0].capacity_allocations[0].count #=> Integer
|
22025
22008
|
# resp.capacity_reservations[0].reservation_type #=> String, one of "default", "capacity-block"
|
22026
22009
|
# resp.capacity_reservations[0].unused_reservation_billing_owner_id #=> String
|
@@ -26454,8 +26437,7 @@ module Aws::EC2
|
|
26454
26437
|
# * `p3dn.24xlarge` \| `p4d.24xlarge` \| `p4de.24xlarge` \|
|
26455
26438
|
# `p5.48xlarge` \| `p5e.48xlarge` \| `p5en.48xlarge`
|
26456
26439
|
#
|
26457
|
-
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
26458
|
-
# `trn2.48xlarge` \| `trn2u.48xlarge`
|
26440
|
+
# * `trn1.2xlarge` \| `trn1.32xlarge` \| `trn1n.32xlarge`
|
26459
26441
|
#
|
26460
26442
|
# For more information, see [Amazon EC2 instance topology][1] in the
|
26461
26443
|
# *Amazon EC2 User Guide*.
|
@@ -31688,8 +31670,7 @@ module Aws::EC2
|
|
31688
31670
|
req.send_request(options)
|
31689
31671
|
end
|
31690
31672
|
|
31691
|
-
# Describes
|
31692
|
-
# interfaces.
|
31673
|
+
# Describes one or more of your network interfaces.
|
31693
31674
|
#
|
31694
31675
|
# If you have a large number of network interfaces, the operation fails
|
31695
31676
|
# unless you use pagination or one of the following filters: `group-id`,
|
@@ -31800,13 +31781,6 @@ module Aws::EC2
|
|
31800
31781
|
#
|
31801
31782
|
# * `network-interface-id` - The ID of the network interface.
|
31802
31783
|
#
|
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
31784
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
31811
31785
|
# interface owner.
|
31812
31786
|
#
|
@@ -55367,7 +55341,7 @@ module Aws::EC2
|
|
55367
55341
|
# resp.source_capacity_reservation.capacity_reservation_fleet_id #=> String
|
55368
55342
|
# resp.source_capacity_reservation.placement_group_arn #=> String
|
55369
55343
|
# resp.source_capacity_reservation.capacity_allocations #=> Array
|
55370
|
-
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55344
|
+
# resp.source_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55371
55345
|
# resp.source_capacity_reservation.capacity_allocations[0].count #=> Integer
|
55372
55346
|
# resp.source_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55373
55347
|
# resp.source_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -55399,7 +55373,7 @@ module Aws::EC2
|
|
55399
55373
|
# resp.destination_capacity_reservation.capacity_reservation_fleet_id #=> String
|
55400
55374
|
# resp.destination_capacity_reservation.placement_group_arn #=> String
|
55401
55375
|
# resp.destination_capacity_reservation.capacity_allocations #=> Array
|
55402
|
-
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55376
|
+
# resp.destination_capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55403
55377
|
# resp.destination_capacity_reservation.capacity_allocations[0].count #=> Integer
|
55404
55378
|
# resp.destination_capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55405
55379
|
# resp.destination_capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -55844,7 +55818,7 @@ module Aws::EC2
|
|
55844
55818
|
# resp.capacity_reservation.capacity_reservation_fleet_id #=> String
|
55845
55819
|
# resp.capacity_reservation.placement_group_arn #=> String
|
55846
55820
|
# resp.capacity_reservation.capacity_allocations #=> Array
|
55847
|
-
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used"
|
55821
|
+
# resp.capacity_reservation.capacity_allocations[0].allocation_type #=> String, one of "used", "future"
|
55848
55822
|
# resp.capacity_reservation.capacity_allocations[0].count #=> Integer
|
55849
55823
|
# resp.capacity_reservation.reservation_type #=> String, one of "default", "capacity-block"
|
55850
55824
|
# resp.capacity_reservation.unused_reservation_billing_owner_id #=> String
|
@@ -62618,7 +62592,7 @@ module Aws::EC2
|
|
62618
62592
|
req.send_request(options)
|
62619
62593
|
end
|
62620
62594
|
|
62621
|
-
# Unassigns
|
62595
|
+
# Unassigns one or more IPv6 addresses IPv4 Prefix Delegation prefixes
|
62622
62596
|
# from a network interface.
|
62623
62597
|
#
|
62624
62598
|
# @option params [Array<String>] :ipv_6_prefixes
|
@@ -62661,7 +62635,7 @@ module Aws::EC2
|
|
62661
62635
|
req.send_request(options)
|
62662
62636
|
end
|
62663
62637
|
|
62664
|
-
# Unassigns
|
62638
|
+
# Unassigns one or more secondary private IP addresses, or IPv4 Prefix
|
62665
62639
|
# Delegation prefixes from a network interface.
|
62666
62640
|
#
|
62667
62641
|
# @option params [Array<String>] :ipv_4_prefixes
|
@@ -63179,7 +63153,7 @@ module Aws::EC2
|
|
63179
63153
|
tracer: tracer
|
63180
63154
|
)
|
63181
63155
|
context[:gem_name] = 'aws-sdk-ec2'
|
63182
|
-
context[:gem_version] = '1.
|
63156
|
+
context[:gem_version] = '1.502.0'
|
63183
63157
|
Seahorse::Client::Request.new(handlers, context)
|
63184
63158
|
end
|
63185
63159
|
|
@@ -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
|
#
|
@@ -10878,7 +10878,7 @@ module Aws::EC2
|
|
10878
10878
|
# @return [String]
|
10879
10879
|
#
|
10880
10880
|
# @!attribute [rw] groups
|
10881
|
-
# The IDs of
|
10881
|
+
# The IDs of one or more security groups.
|
10882
10882
|
# @return [Array<String>]
|
10883
10883
|
#
|
10884
10884
|
# @!attribute [rw] private_ip_addresses
|
@@ -24984,13 +24984,6 @@ module Aws::EC2
|
|
24984
24984
|
#
|
24985
24985
|
# * `network-interface-id` - The ID of the network interface.
|
24986
24986
|
#
|
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
24987
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
24995
24988
|
# interface owner.
|
24996
24989
|
#
|
@@ -42384,8 +42377,7 @@ module Aws::EC2
|
|
42384
42377
|
# @return [String]
|
42385
42378
|
#
|
42386
42379
|
# @!attribute [rw] no_device
|
42387
|
-
#
|
42388
|
-
# mapping.
|
42380
|
+
# suppress the specified device included in the block device mapping.
|
42389
42381
|
# @return [String]
|
42390
42382
|
#
|
42391
42383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceBlockDeviceMappingSpecification AWS API Documentation
|
@@ -43436,9 +43428,15 @@ module Aws::EC2
|
|
43436
43428
|
# @return [Array<Types::PrivateIpAddressSpecification>]
|
43437
43429
|
#
|
43438
43430
|
# @!attribute [rw] secondary_private_ip_address_count
|
43439
|
-
# The number of secondary private IPv4 addresses. You can
|
43440
|
-
# this
|
43441
|
-
#
|
43431
|
+
# The number of secondary private IPv4 addresses. You can't specify
|
43432
|
+
# this option and specify more than one private IP address using the
|
43433
|
+
# private IP addresses option. You cannot specify this option if
|
43434
|
+
# you're launching more than one instance in a [RunInstances][1]
|
43435
|
+
# request.
|
43436
|
+
#
|
43437
|
+
#
|
43438
|
+
#
|
43439
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43442
43440
|
# @return [Integer]
|
43443
43441
|
#
|
43444
43442
|
# @!attribute [rw] subnet_id
|
@@ -43952,12 +43950,9 @@ module Aws::EC2
|
|
43952
43950
|
# @!attribute [rw] accelerator_types
|
43953
43951
|
# The accelerator types that must be on the instance type.
|
43954
43952
|
#
|
43955
|
-
# * For instance types with FPGA accelerators, specify `fpga`.
|
43956
|
-
#
|
43957
43953
|
# * For instance types with GPU accelerators, specify `gpu`.
|
43958
43954
|
#
|
43959
|
-
# * For instance types with
|
43960
|
-
# `inference`.
|
43955
|
+
# * For instance types with FPGA accelerators, specify `fpga`.
|
43961
43956
|
#
|
43962
43957
|
# Default: Any accelerator type
|
43963
43958
|
# @return [Array<String>]
|
@@ -44438,12 +44433,9 @@ module Aws::EC2
|
|
44438
44433
|
# @!attribute [rw] accelerator_types
|
44439
44434
|
# The accelerator types that must be on the instance type.
|
44440
44435
|
#
|
44441
|
-
# *
|
44442
|
-
#
|
44443
|
-
# * For instance types with GPU accelerators, specify `gpu`.
|
44436
|
+
# * To include instance types with GPU hardware, specify `gpu`.
|
44444
44437
|
#
|
44445
|
-
# *
|
44446
|
-
# `inference`.
|
44438
|
+
# * To include instance types with FPGA hardware, specify `fpga`.
|
44447
44439
|
#
|
44448
44440
|
# Default: Any accelerator type
|
44449
44441
|
# @return [Array<String>]
|
@@ -47040,7 +47032,7 @@ module Aws::EC2
|
|
47040
47032
|
include Aws::Structure
|
47041
47033
|
end
|
47042
47034
|
|
47043
|
-
# Describes the
|
47035
|
+
# Describes the IPv4 prefix option for a network interface.
|
47044
47036
|
#
|
47045
47037
|
# @!attribute [rw] ipv_6_prefix
|
47046
47038
|
# The IPv6 prefix.
|
@@ -70953,7 +70945,7 @@ module Aws::EC2
|
|
70953
70945
|
# @return [Array<String>]
|
70954
70946
|
#
|
70955
70947
|
# @!attribute [rw] unassigned_ipv_6_prefixes
|
70956
|
-
# The
|
70948
|
+
# The IPv4 prefixes that have been unassigned from the network
|
70957
70949
|
# interface.
|
70958
70950
|
# @return [Array<String>]
|
70959
70951
|
#
|
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.502.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-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|