aws-sdk-ec2 1.277.0 → 1.281.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/client.rb +66 -47
- data/lib/aws-sdk-ec2/client_api.rb +8 -1
- data/lib/aws-sdk-ec2/resource.rb +1 -1
- data/lib/aws-sdk-ec2/route.rb +7 -0
- data/lib/aws-sdk-ec2/route_table.rb +2 -0
- data/lib/aws-sdk-ec2/subnet.rb +9 -1
- data/lib/aws-sdk-ec2/types.rb +64 -33
- 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: 22db1d976485f026a26576c92b6bb030297f89ea29b3a1269293e5951a2d280f
|
|
4
|
+
data.tar.gz: fa7d97ae7cf94e469ff26e08c74a7b9812b46666c60616ae88d5349961950e00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '029984b56d8fb43c25a90f9e20eaaf1981dcb8cb158abba9926a434ad65b3dfbe9fbf8ce95ba67f2020573e4354cb6e64328b3a49d25c6fb970feab894f08849'
|
|
7
|
+
data.tar.gz: 76c9370d3212baea4e56c5e5222159e407b125c25f1385de80fe48d0f02320f13ee93d6157733fc32517bedb88832ab4c71eda3ae411fe738d0195b7a5ae43dd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.281.0 (2021-11-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds a new VPC Subnet attribute "EnableDns64." When enabled on IPv6 Subnets, the Amazon-Provided DNS Resolver returns synthetic IPv6 addresses for IPv4-only destinations.
|
|
8
|
+
|
|
9
|
+
1.280.0 (2021-11-12)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - C6i instances are powered by a third-generation Intel Xeon Scalable processor (Ice Lake) delivering all-core turbo frequency of 3.5 GHz. G5 instances feature up to 8 NVIDIA A10G Tensor Core GPUs and second generation AMD EPYC processors.
|
|
13
|
+
|
|
14
|
+
1.279.0 (2021-11-11)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - This release provides an additional route target for the VPC route table.
|
|
18
|
+
|
|
19
|
+
1.278.0 (2021-11-08)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - This release adds internal validation on the GatewayAssociationState field
|
|
23
|
+
|
|
4
24
|
1.277.0 (2021-11-05)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.281.0
|