aws-sdk-ec2 1.309.0 → 1.314.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +223 -74
- data/lib/aws-sdk-ec2/client_api.rb +55 -1
- data/lib/aws-sdk-ec2/image.rb +13 -1
- data/lib/aws-sdk-ec2/instance.rb +12 -0
- data/lib/aws-sdk-ec2/resource.rb +23 -1
- data/lib/aws-sdk-ec2/subnet.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +299 -55
- 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: ab7b59a7371f2c1f2b5c3560b50e65cc6f4a817d120af50c3b4b64e891edec0c
|
|
4
|
+
data.tar.gz: d2f280d4f22f1bc44d6fa728625b5e1fefd04ba0a848bb8afd554d1bcdc37baf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f020a482a6d5dce57bcd24a7ff91a21c855721eecb4cae2ad46ed92d8a3ff7e7555c1bc38ff7cc82f81a9a4feedd144de7d460286dd1eaf9dc63823682fe234
|
|
7
|
+
data.tar.gz: a3d974724fb48a6721790b38c34a3a2585d0e5b3efbf27c28a5781fb599ec7be9d552a0c34a8d8c063675c26cfad6c0e5856528a3def0ddd613b9d3649d91585
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,31 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.314.0 (2022-05-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release updates AWS PrivateLink APIs to support IPv6 for PrivateLink Services and Endpoints of type 'Interface'.
|
|
8
|
+
|
|
9
|
+
1.313.0 (2022-05-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added support for using NitroTPM and UEFI Secure Boot on EC2 instances.
|
|
13
|
+
|
|
14
|
+
1.312.0 (2022-05-06)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Add new state values for IPAMs, IPAM Scopes, and IPAM Pools.
|
|
18
|
+
|
|
19
|
+
1.311.0 (2022-05-05)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Amazon EC2 I4i instances are powered by 3rd generation Intel Xeon Scalable processors and feature up to 30 TB of local AWS Nitro SSD storage
|
|
23
|
+
|
|
24
|
+
1.310.0 (2022-05-03)
|
|
25
|
+
------------------
|
|
26
|
+
|
|
27
|
+
* Feature - Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter.
|
|
28
|
+
|
|
4
29
|
1.309.0 (2022-04-28)
|
|
5
30
|
------------------
|
|
6
31
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.314.0
|