aws-sdk-ec2 1.269.0 → 1.273.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 +1025 -11
- data/lib/aws-sdk-ec2/client_api.rb +283 -0
- data/lib/aws-sdk-ec2/placement_group.rb +4 -1
- data/lib/aws-sdk-ec2/resource.rb +4 -1
- data/lib/aws-sdk-ec2/subnet.rb +4 -1
- data/lib/aws-sdk-ec2/types.rb +2623 -24
- data/lib/aws-sdk-ec2/vpc.rb +4 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6f7244b8bd1d95d0347166c3a0cff8e92d435592c4045617d89b872305d36ea
|
|
4
|
+
data.tar.gz: 06f972fb407d24cfd9b4dbd0e648794c0cee43a2bca817a60c22fb9fb0fa4723
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97d05369eb0c65c69ef6037b9d8aa5871a5f2934c6328b18824697cfc153f85f961d8fd0b496b8329cce3617c491d6dd0deb68c6961a07e840a020851dc5312e
|
|
7
|
+
data.tar.gz: 867e5ca5ff0ef06b29ccf22c272fe7513c606174191f0f54df8e9d39d148979ffa59a9bc78164f11cc5bf8e18fcbc9080d226bfbd4e9a258017bc5495baf2dd5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.273.0 (2021-10-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds: attribute-based instance type selection for EC2 Fleet, Spot Fleet, a feature that lets customers express instance requirements as attributes like vCPU, memory, and storage; and Spot placement score, a feature that helps customers identify an optimal location to run Spot workloads.
|
|
8
|
+
|
|
9
|
+
1.272.0 (2021-10-25)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support to create a VPN Connection that is not attached to a Gateway at the time of creation. Use this to create VPNs associated with Core Networks, or modify your VPN and attach a gateway using the modify API after creation.
|
|
13
|
+
|
|
14
|
+
1.271.0 (2021-10-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.270.0 (2021-10-13)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* 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
|
|
23
|
+
|
|
4
24
|
1.269.0 (2021-10-12)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.273.0
|