aws-sdk-ec2 1.278.0 → 1.282.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +242 -77
- data/lib/aws-sdk-ec2/client_api.rb +72 -1
- data/lib/aws-sdk-ec2/instance.rb +14 -2
- data/lib/aws-sdk-ec2/network_interface.rb +13 -0
- data/lib/aws-sdk-ec2/resource.rb +31 -13
- 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 +39 -9
- data/lib/aws-sdk-ec2/types.rb +561 -122
- data/lib/aws-sdk-ec2/vpc.rb +14 -4
- 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: 6bd20a79515d3fd0673d4b40ff28e0aeaefb1bed8625728c6c31c16eeaed930e
|
4
|
+
data.tar.gz: d2cfee4e24cebac560e25b6d30e664b6d2e817577eb654a25ed9c2f9e1e21f61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 337ae196ef9d758231d2fc7fee0d723b9730daf3303eae2af94f4fcca9d9c3157e2628690bf88413d20aba7f5ebae5cc8e10bd57a3cd2977a58ab19842231fe6
|
7
|
+
data.tar.gz: 3c396f6005d68a02634837577059415252b1eccd16f0222c6bd3999064f4d893196034772064231c8debbed19c3a47f74c0a10955bf96cde12610adad0054c35
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.282.0 (2021-11-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds a new parameter ipv6Native to the allow creation of IPv6-only subnets using the CreateSubnet operation, and the operation ModifySubnetAttribute includes new parameters to modify subnet attributes to use resource-based naming and enable DNS resolutions for Private DNS name.
|
8
|
+
|
9
|
+
1.281.0 (2021-11-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
14
|
+
1.280.0 (2021-11-12)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* 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.
|
18
|
+
|
19
|
+
1.279.0 (2021-11-11)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release provides an additional route target for the VPC route table.
|
23
|
+
|
4
24
|
1.278.0 (2021-11-08)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.282.0
|