aws-sdk-elasticache 1.93.0 → 1.95.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 +21 -2
- data/lib/aws-sdk-elasticache/types.rb +953 -92
- data/lib/aws-sdk-elasticache.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: ff4588578bd7abc106581ede86c266eb9ef0a7137127369e8a4f01e1243aeeae
|
4
|
+
data.tar.gz: e744e06ac0ad6c38a22c16a4d43cba163fe7058b53d49b696f74255492b9e44e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44ecb7be58995bbf2500315862fc391c4eb4dc5e009ddf5a1af43a81cded5c3c66a2888be081e4ec888240f2aa55e00f254787cf7a593c107e02f16bd5a45e9c
|
7
|
+
data.tar.gz: b13d8abe00c10f7b878681b23278cbd021c614dbd1325ff9383bb4aa56dd77f59e76d0a913747acf95ff3bba2191ea35d63c5b08f8857ea94908f185b474774e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.95.0 (2023-11-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.94.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.93.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.95.0
|