aws-sdk-elasticache 1.92.0 → 1.94.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-elasticache/client.rb +733 -45
- data/lib/aws-sdk-elasticache/client_api.rb +354 -0
- data/lib/aws-sdk-elasticache/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-elasticache/endpoints.rb +126 -0
- data/lib/aws-sdk-elasticache/errors.rb +99 -0
- data/lib/aws-sdk-elasticache/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-elasticache/types.rb +953 -92
- data/lib/aws-sdk-elasticache.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfd15578490295b945144bcbcc76f72a302e22e6de27de00d181ca9d5b01ae84
|
4
|
+
data.tar.gz: 4ab1729796290a4effc8e4ef9d2f3fc8dc4b44da38e4fbc3fe3bee4a95e8b329
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c116134acf19eef0b1721a8bd9a3cb0772e037e6f9d8388333e42ebdb066dc0fbc65bf10fe864cc176588ff4951280cfc413f47a8942fc698d381564b73c0b49
|
7
|
+
data.tar.gz: 0c66745064172ccc0e990226c0fa1e0f45b5a4a02ffadfff49a7861e17dad59f2fc9daee2ef198dd310ef28775a785c6ad65224a2509fea9f1abd8b287e52716
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.94.0 (2023-11-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Launching Amazon ElastiCache Serverless that enables you to create a cache in under a minute without any capacity management. ElastiCache Serverless monitors the cache's memory, CPU, and network usage and scales both vertically and horizontally to support your application's requirements.
|
8
|
+
|
9
|
+
1.93.0 (2023-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.92.0 (2023-09-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|