aws-sdk-ec2 1.264.0 → 1.268.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +8 -15
- data/lib/aws-sdk-ec2/client.rb +539 -134
- data/lib/aws-sdk-ec2/client_api.rb +191 -6
- data/lib/aws-sdk-ec2/instance.rb +29 -1
- data/lib/aws-sdk-ec2/resource.rb +8 -8
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +1041 -214
- data/lib/aws-sdk-ec2/vpc.rb +6 -6
- data/lib/aws-sdk-ec2/vpc_address.rb +8 -15
- data/lib/aws-sdk-ec2/waiters.rb +14 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d03aefe69d549116bebf06a2115569068b2c9f5f1e159bad9c5f9d9af6c1a05a
|
4
|
+
data.tar.gz: 82f619078a0f33f39bed0de6221a49834b30314c0fde367aa86b050f6c694f49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8827261dbe1191239223f1714d5d3230766daa2fd087b985904f708707ed4aa47cf17d0f20bad4b18223b75f7d4f5b8d02699d78c9ebfda5b9b3d1f771819d4a
|
7
|
+
data.tar.gz: ed3072a89fa825f93d42ab109be424533356a0208ffb0a6b87ae9faae7346d8a3a18be33edf495bac51e0f44caa03969f74dfe278a81fc26ef3e81e5d190fc35
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.268.0 (2021-10-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation update for Amazon EC2.
|
8
|
+
|
9
|
+
1.267.0 (2021-10-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release removes a requirement for filters on SearchLocalGatewayRoutes operations.
|
13
|
+
|
14
|
+
1.266.0 (2021-10-05)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Released Capacity Reservation Fleet, a feature of Amazon EC2 Capacity Reservations, which provides a way to manage reserved capacity across instance types. For more information: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cr-fleets.html
|
18
|
+
|
19
|
+
1.265.0 (2021-09-24)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - DescribeInstances now returns Platform Details, Usage Operation, and Usage Operation Update Time.
|
23
|
+
|
4
24
|
1.264.0 (2021-09-21)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.268.0
|
@@ -93,7 +93,8 @@ module Aws::EC2
|
|
93
93
|
end
|
94
94
|
|
95
95
|
# The name of the unique set of Availability Zones, Local Zones, or
|
96
|
-
# Wavelength Zones from which
|
96
|
+
# Wavelength Zones from which Amazon Web Services advertises IP
|
97
|
+
# addresses.
|
97
98
|
# @return [String]
|
98
99
|
def network_border_group
|
99
100
|
data[:network_border_group]
|
@@ -335,22 +336,14 @@ module Aws::EC2
|
|
335
336
|
# \[EC2-VPC\] The allocation ID. Required for EC2-VPC.
|
336
337
|
# @option options [String] :network_border_group
|
337
338
|
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
338
|
-
# which
|
339
|
+
# which Amazon Web Services advertises IP addresses.
|
339
340
|
#
|
340
|
-
# If you provide an incorrect network border group, you
|
341
|
-
# `InvalidAddress.NotFound` error.
|
342
|
-
# Codes][1].
|
341
|
+
# If you provide an incorrect network border group, you receive an
|
342
|
+
# `InvalidAddress.NotFound` error.
|
343
343
|
#
|
344
|
-
#
|
345
|
-
# this operation on EC2 classic, you
|
346
|
-
# `InvalidParameterCombination` error.
|
347
|
-
# Codes][1].
|
348
|
-
#
|
349
|
-
# </note>
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html
|
344
|
+
# You cannot use a network border group with EC2 Classic. If you attempt
|
345
|
+
# this operation on EC2 classic, you receive an
|
346
|
+
# `InvalidParameterCombination` error.
|
354
347
|
# @option options [Boolean] :dry_run
|
355
348
|
# Checks whether you have the required permissions for the action,
|
356
349
|
# without actually making the request, and provides an error response.
|