aws-sdk-elasticache 1.72.0 → 1.75.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-elasticache/client.rb +3 -11
- data/lib/aws-sdk-elasticache/types.rb +2 -13
- data/lib/aws-sdk-elasticache.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83ec8392509261a44dabedd5d2dc4db1627b70ef96bd8d01d8bdf3ac8a72d452
|
|
4
|
+
data.tar.gz: 7542c9ce22a97d51e67aa26c4a85ff4d7f6e7429fbb8221465601efef1d42632
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9df29b8b5e445dad903422e52e67a25cbfee6b3848c7ee3f52e188eec00971e04db2337ffa50fcc7d8bcfad86c8b3dcf838195380f11dc8c9da86d88b70444a
|
|
7
|
+
data.tar.gz: 03425acc928a9bd8e8366788a2725624aa6ea0b61fa56bc19991c0850d3a7623865e87a60dd10d7526f49433e68b7b4cc0cf0c3337545f0a35a40915ffc8e87c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.75.0 (2022-03-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Doc only update for ElastiCache
|
|
8
|
+
|
|
9
|
+
1.74.0 (2022-02-25)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Doc only update for ElastiCache
|
|
13
|
+
|
|
14
|
+
1.73.0 (2022-02-24)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
4
19
|
1.72.0 (2022-02-03)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
@@ -75,6 +76,7 @@ module Aws::ElastiCache
|
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
@@ -1094,16 +1096,6 @@ module Aws::ElastiCache
|
|
|
1094
1096
|
#
|
|
1095
1097
|
# **C1 node types:** `cache.c1.xlarge`
|
|
1096
1098
|
#
|
|
1097
|
-
# * Memory optimized with data tiering:
|
|
1098
|
-
#
|
|
1099
|
-
# * Current generation:
|
|
1100
|
-
#
|
|
1101
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
|
1102
|
-
# onward).
|
|
1103
|
-
#
|
|
1104
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
1105
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
1106
|
-
#
|
|
1107
1099
|
# * Memory optimized:
|
|
1108
1100
|
#
|
|
1109
1101
|
# * Current generation:
|
|
@@ -10223,7 +10215,7 @@ module Aws::ElastiCache
|
|
|
10223
10215
|
params: params,
|
|
10224
10216
|
config: config)
|
|
10225
10217
|
context[:gem_name] = 'aws-sdk-elasticache'
|
|
10226
|
-
context[:gem_version] = '1.
|
|
10218
|
+
context[:gem_version] = '1.75.0'
|
|
10227
10219
|
Seahorse::Client::Request.new(handlers, context)
|
|
10228
10220
|
end
|
|
10229
10221
|
|
|
@@ -651,7 +651,7 @@ module Aws::ElastiCache
|
|
|
651
651
|
#
|
|
652
652
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
653
653
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
654
|
-
# `redis5.0` \| `redis6.
|
|
654
|
+
# `redis5.0` \| `redis6.x`
|
|
655
655
|
# @return [String]
|
|
656
656
|
#
|
|
657
657
|
# @!attribute [rw] cache_engine_description
|
|
@@ -1762,17 +1762,6 @@ module Aws::ElastiCache
|
|
|
1762
1762
|
#
|
|
1763
1763
|
# **C1 node types:** `cache.c1.xlarge`
|
|
1764
1764
|
#
|
|
1765
|
-
# * Memory optimized with data tiering:
|
|
1766
|
-
#
|
|
1767
|
-
# * Current generation:
|
|
1768
|
-
#
|
|
1769
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
|
1770
|
-
# onward).
|
|
1771
|
-
#
|
|
1772
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
1773
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
1774
|
-
# `cache.r6gd.16xlarge`
|
|
1775
|
-
#
|
|
1776
1765
|
# * Memory optimized:
|
|
1777
1766
|
#
|
|
1778
1767
|
# * Current generation:
|
|
@@ -5037,7 +5026,7 @@ module Aws::ElastiCache
|
|
|
5037
5026
|
#
|
|
5038
5027
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
5039
5028
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
5040
|
-
# `redis5.0` \| `redis6.0` \| `redis6.
|
|
5029
|
+
# `redis5.0` \| `redis6.0` \| `redis6.x`
|
|
5041
5030
|
# @return [String]
|
|
5042
5031
|
#
|
|
5043
5032
|
# @!attribute [rw] marker
|
data/lib/aws-sdk-elasticache.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-elasticache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.75.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-03-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.127.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.127.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|