aws-sdk-ec2 1.417.0 → 1.420.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +431 -81
- data/lib/aws-sdk-ec2/client_api.rb +133 -2
- data/lib/aws-sdk-ec2/endpoints.rb +56 -0
- data/lib/aws-sdk-ec2/instance.rb +16 -3
- data/lib/aws-sdk-ec2/placement_group.rb +3 -2
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-ec2/resource.rb +9 -2
- data/lib/aws-sdk-ec2/subnet.rb +9 -2
- data/lib/aws-sdk-ec2/types.rb +607 -146
- data/lib/aws-sdk-ec2/vpc.rb +3 -2
- 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: c94828aa9a068baa2fda9cebfadf0d03ff9a0cb7d0793a4be84a0027663de015
|
4
|
+
data.tar.gz: f79d469364095bf28f0fed4f50e6c73c485573d16058b19d60eb58da21621d12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ade7d49dad2020f9d3400ae138eb1004188dc88d1b518081f7b6ce0e98f65066ab383983008de7860130b5984a552c00850cd558c645e9c571560b66464f9c8a
|
7
|
+
data.tar.gz: bce125405af08f3cfa84403328f9de1f0c821a06d4128fa7e1b2ca25d71cc2c60ec9ff39d40ad6b3eac8c5d61cfc4f43bae06094305040aeb1cdb527f04a3be7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.420.0 (2023-11-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other.
|
8
|
+
|
9
|
+
1.419.0 (2023-11-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - EC2 adds API updates to enable ENA Express at instance launch time.
|
13
|
+
|
14
|
+
1.418.0 (2023-11-09)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region.
|
18
|
+
|
4
19
|
1.417.0 (2023-10-31)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.420.0
|