aws-sdk-elasticache 1.71.0 → 1.74.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 +5 -11
- data/lib/aws-sdk-elasticache/types.rb +0 -11
- 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: 0ea54cb97ee985e418414b9e4ff5012f6d93d12b9c1f630b3ecc8ff6798bc322
|
|
4
|
+
data.tar.gz: 648348982e027023d8123db649df746621b23a0045c0611cdb9dd64b0226a8e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0da1566519815c2b0493c5744698fd6889da13b381439f4628b22379180d24e77b0b9f3313cc34ebd25d58909092ab6931f97dfcd3f947a03f34e826ccc72977
|
|
7
|
+
data.tar.gz: be4537e1c782b5e8b5b61e34a5ca742aac3f3d1a36cf256845b0729a674954ff66b3ccfb88e62fc55c55cd28a26b906a88f0859c4a2af3728051a2a78165cece
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.74.0 (2022-02-25)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Doc only update for ElastiCache
|
|
8
|
+
|
|
9
|
+
1.73.0 (2022-02-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.72.0 (2022-02-03)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
4
19
|
1.71.0 (2022-02-02)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
|
@@ -27,7 +27,9 @@ 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'
|
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
32
34
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
|
33
35
|
|
|
@@ -74,7 +76,9 @@ module Aws::ElastiCache
|
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
79
83
|
add_plugin(Aws::Plugins::Protocols::Query)
|
|
80
84
|
|
|
@@ -1092,16 +1096,6 @@ module Aws::ElastiCache
|
|
|
1092
1096
|
#
|
|
1093
1097
|
# **C1 node types:** `cache.c1.xlarge`
|
|
1094
1098
|
#
|
|
1095
|
-
# * Memory optimized with data tiering:
|
|
1096
|
-
#
|
|
1097
|
-
# * Current generation:
|
|
1098
|
-
#
|
|
1099
|
-
# **R6gd node types** (available only for Redis engine version 6.2
|
|
1100
|
-
# onward).
|
|
1101
|
-
#
|
|
1102
|
-
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
1103
|
-
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
1104
|
-
#
|
|
1105
1099
|
# * Memory optimized:
|
|
1106
1100
|
#
|
|
1107
1101
|
# * Current generation:
|
|
@@ -10221,7 +10215,7 @@ module Aws::ElastiCache
|
|
|
10221
10215
|
params: params,
|
|
10222
10216
|
config: config)
|
|
10223
10217
|
context[:gem_name] = 'aws-sdk-elasticache'
|
|
10224
|
-
context[:gem_version] = '1.
|
|
10218
|
+
context[:gem_version] = '1.74.0'
|
|
10225
10219
|
Seahorse::Client::Request.new(handlers, context)
|
|
10226
10220
|
end
|
|
10227
10221
|
|
|
@@ -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:
|
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.74.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-02-
|
|
11
|
+
date: 2022-02-25 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
|