aws-sdk-ec2 1.331.0 → 1.333.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +581 -102
- data/lib/aws-sdk-ec2/client_api.rb +177 -1
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +16 -16
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +616 -105
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- 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: 226179066ed9b7d226a8f4cd5b8660e39c6e375e0343f5a284ee8d42cfe5f31f
|
4
|
+
data.tar.gz: fa4e80a79dce6f56cdc63ef7cca0748cf3ea1337a1fe50f5cbcef4f7f728557a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9045ef922ce3808e066f87bacb063a87c4c8960fffd70ec6f767571805bc2868d0e50c67cd26c2c96b6574cfeff1b3e4f83e0caa7548df515407403645fcca30
|
7
|
+
data.tar.gz: f9448aeccdc6785b4dddaa3be4870b82c0ab3f0c4c27de328a1ab7e76a58852856e133bf724053e31cf53a26fffb43e007e50e053bebc065b669ca4f585fc575
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.333.0 (2022-09-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This update introduces API operations to manage and create local gateway route tables, CoIP pools, and VIF group associations.
|
8
|
+
|
9
|
+
1.332.0 (2022-09-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Two new features for local gateway route tables: support for static routes targeting Elastic Network Interfaces and direct VPC routing.
|
13
|
+
|
4
14
|
1.331.0 (2022-09-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.333.0
|