aws-sdk-ec2 1.263.0 → 1.267.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 +634 -105
- data/lib/aws-sdk-ec2/client_api.rb +249 -7
- data/lib/aws-sdk-ec2/instance.rb +31 -3
- data/lib/aws-sdk-ec2/resource.rb +9 -9
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +1105 -102
- data/lib/aws-sdk-ec2/vpc.rb +8 -8
- 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: 030210e5379790a3130d50c1d942d4f340133008b5691ca6116454ea9b2442d7
|
4
|
+
data.tar.gz: a605214ca4f543c3ac769ad1c9f975957dcba846cb22c673d2fb19b6b4644f3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63978c0c6e341d80c95bffff4687c32798e38aeacd039bdf0a74c8fd08f57c17840b0543ee453f3c0a5c8b453738c4c266f0cd0e9930e89bfb00a81392fa78ca
|
7
|
+
data.tar.gz: c73a056949ca9bf046dbac821c0a438ae06f3547f70e31fff55194c2bab7f3b29ede08e7581913a08e1e9e56614cdbe4b24237b061f89698f08b8c1861dfce12
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.267.0 (2021-10-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release removes a requirement for filters on SearchLocalGatewayRoutes operations.
|
8
|
+
|
9
|
+
1.266.0 (2021-10-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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
|
13
|
+
|
14
|
+
1.265.0 (2021-09-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - DescribeInstances now returns Platform Details, Usage Operation, and Usage Operation Update Time.
|
18
|
+
|
19
|
+
1.264.0 (2021-09-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This update adds support for downloading configuration templates using new APIs (GetVpnConnectionDeviceTypes and GetVpnConnectionDeviceSampleConfiguration) and Internet Key Exchange version 2 (IKEv2) parameters for many popular CGW devices.
|
23
|
+
|
4
24
|
1.263.0 (2021-09-14)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.267.0
|