aws-sdk-ec2 1.490.0 → 1.492.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 +618 -86
- data/lib/aws-sdk-ec2/client_api.rb +181 -0
- data/lib/aws-sdk-ec2/resource.rb +42 -42
- data/lib/aws-sdk-ec2/subnet.rb +13 -7
- data/lib/aws-sdk-ec2/types.rb +787 -60
- data/lib/aws-sdk-ec2/vpc.rb +36 -30
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +191 -22
- data/sig/resource.rbs +1 -1
- data/sig/subnet.rbs +4 -1
- data/sig/types.rbs +141 -6
- data/sig/vpc.rbs +3 -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: 78bf144581a3f54692ed2de185771f7f0538eea7638c5d49ffa3c8aea4d72fde
|
4
|
+
data.tar.gz: a6969dbc485221bbc431f6b3a32dd9db644fc4be1b6eb81a85bb409f99503693
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24dd7e3f4179f4f1441c850c352a59c760e52b6c962633c437e8cf786fdabee4c948c81e93da74f8b6b2589997feca99b93c4dbf6d57798cf953ddad8a6a7d1e
|
7
|
+
data.tar.gz: 2bd68b9b12573b52e096188d22281597ee0fa199e5cb68a7cf8c8c9f5487fc3814596fc13d35cf9dcb89553ae2e2494653689f0204efc6447ed131d38bb38797
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.492.0 (2024-11-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - With this release, customers can express their desire to launch instances only in an ODCR or ODCR group rather than OnDemand capacity. Customers can express their baseline instances' CPU-performance in attribute-based Instance Requirements configuration by referencing an instance family.
|
8
|
+
|
9
|
+
1.491.0 (2024-11-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds VPC Block Public Access (VPC BPA), a new declarative control which blocks resources in VPCs and subnets that you own in a Region from reaching or being reached from the internet through internet gateways and egress-only internet gateways.
|
13
|
+
|
4
14
|
1.490.0 (2024-11-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.492.0
|