aws-sdk-ec2 1.266.0 → 1.270.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 +139 -133
- data/lib/aws-sdk-ec2/client_api.rb +20 -3
- data/lib/aws-sdk-ec2/resource.rb +6 -6
- data/lib/aws-sdk-ec2/types.rb +273 -210
- data/lib/aws-sdk-ec2/vpc.rb +6 -6
- data/lib/aws-sdk-ec2/vpc_address.rb +8 -15
- 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: db1224864d5072f639ff29a1a2d1edf0621d049e87ab3613bb343836070c6c2b
|
4
|
+
data.tar.gz: 1ea3fcfc155b3ee77b71b334f5748fe5d7178ea4ec8afd8866bd899a7675c7a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41106e03227ecba127dd17c8a441589ddcd4da834dc05046ae7cf118770246cce75859850cc8781207a1fdb0c1009fa2097647b2b93a50b3f24da5f49cbf2b82
|
7
|
+
data.tar.gz: 5560f457c7de0372d445a6a7b03f1175ce39f3be63efbc28e141b5d6ad4d826340fdfe0be0f30a8e3dc8d733ffc123e7aa68ed04c4401672c502880fa8d7228d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.270.0 (2021-10-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for additional VPC Flow Logs delivery options to S3, such as Apache Parquet formatted files, Hourly partitions and Hive-compatible S3 prefixes
|
8
|
+
|
9
|
+
1.269.0 (2021-10-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - EncryptionSupport for InstanceStorageInfo added to DescribeInstanceTypes API
|
13
|
+
|
14
|
+
1.268.0 (2021-10-11)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation update for Amazon EC2.
|
18
|
+
|
19
|
+
1.267.0 (2021-10-08)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release removes a requirement for filters on SearchLocalGatewayRoutes operations.
|
23
|
+
|
4
24
|
1.266.0 (2021-10-05)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.270.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.
|