aws-sdk-ec2 1.484.0 → 1.486.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 +404 -24
- data/lib/aws-sdk-ec2/client_api.rb +152 -0
- data/lib/aws-sdk-ec2/resource.rb +12 -7
- data/lib/aws-sdk-ec2/security_group.rb +6 -0
- data/lib/aws-sdk-ec2/subnet.rb +12 -7
- data/lib/aws-sdk-ec2/types.rb +590 -39
- data/lib/aws-sdk-ec2/vpc.rb +6 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +66 -0
- data/sig/security_group.rbs +3 -0
- data/sig/types.rbs +107 -0
- 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: a334bcee5623ee10f8cfb378982e208c6c1878524ba55ddad1933bbd93ebc9b6
|
4
|
+
data.tar.gz: a92135f321e5a1bffde160f3861506e540684f115e7e46a4a0908cf0b2ccae01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d53632b9dec8f977a84da9cb4fc7c262dd4740e6a651a38036ff7183d35272371e781c505da74cd29e5f94b2c12ee625ca33872a6ccac19786d9bf542ff58144
|
7
|
+
data.tar.gz: 3aa84e3a66499bc1811c8c44934d543569cd4052a8f58c6af71298e292f3949ec5816dc1b781a74b8ef4eb3e3a9d4fef4e1e08e7c7627152f3713246dbd99dc2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.486.0 (2024-10-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds two new capabilities to VPC Security Groups: Security Group VPC Associations and Shared Security Groups.
|
8
|
+
|
9
|
+
1.485.0 (2024-10-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release includes a new API to describe some details of the Amazon Machine Images (AMIs) that were used to launch EC2 instances, even if those AMIs are no longer available for use.
|
13
|
+
|
4
14
|
1.484.0 (2024-10-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.486.0
|