aws-sdk-memorydb 1.28.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-memorydb/client.rb +13 -4
- data/lib/aws-sdk-memorydb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-memorydb/types.rb +7 -6
- data/lib/aws-sdk-memorydb.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 149a7ca1b91e95779a26613384b7438ebb8a75c585e7a6d92d3a3cc97ecc5826
|
4
|
+
data.tar.gz: c9b5aba6b8f8e927c0e30983964fca4c2bac47f965df254b48d2d8ed9c0e0901
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aafa84e0c2d960bdf842b3da3585d09a8b1621bafa07979bc4df0893d74dcd7c68323366f21c2ed92e835d213a770da1706144455596057567dd4a5359a330be
|
7
|
+
data.tar.gz: 182bf6437387e53bc80e671f8bd28ff69fc7b580f633f3432f3cc8101dbae69fa86d444658ec8e0b8982329ff71f4175dc7e81ec9606a8b686289d1915274efc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2024-07-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Renaming full service name as it appears in developer documentation.
|
8
|
+
|
9
|
+
1.29.0 (2024-07-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.28.0 (2024-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -312,6 +312,15 @@ module Aws::MemoryDB
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :simple_json (false)
|
316
325
|
# Disables request parameter conversion, validation, and formatting.
|
317
326
|
# Also disables response data type conversions. The request parameters
|
@@ -758,7 +767,7 @@ module Aws::MemoryDB
|
|
758
767
|
# The name of the Access Control List to associate with the cluster.
|
759
768
|
#
|
760
769
|
# @option params [String] :engine_version
|
761
|
-
# The version number of the Redis engine to be used for the cluster.
|
770
|
+
# The version number of the Redis OSS engine to be used for the cluster.
|
762
771
|
#
|
763
772
|
# @option params [Boolean] :auto_minor_version_upgrade
|
764
773
|
# When set to true, the cluster will automatically receive minor engine
|
@@ -1559,10 +1568,10 @@ module Aws::MemoryDB
|
|
1559
1568
|
req.send_request(options)
|
1560
1569
|
end
|
1561
1570
|
|
1562
|
-
# Returns a list of the available Redis engine versions.
|
1571
|
+
# Returns a list of the available Redis OSS engine versions.
|
1563
1572
|
#
|
1564
1573
|
# @option params [String] :engine_version
|
1565
|
-
# The Redis engine version
|
1574
|
+
# The Redis OSS engine version
|
1566
1575
|
#
|
1567
1576
|
# @option params [String] :parameter_group_family
|
1568
1577
|
# The name of a specific parameter group family to return details for.
|
@@ -2945,7 +2954,7 @@ module Aws::MemoryDB
|
|
2945
2954
|
params: params,
|
2946
2955
|
config: config)
|
2947
2956
|
context[:gem_name] = 'aws-sdk-memorydb'
|
2948
|
-
context[:gem_version] = '1.
|
2957
|
+
context[:gem_version] = '1.30.0'
|
2949
2958
|
Seahorse::Client::Request.new(handlers, context)
|
2950
2959
|
end
|
2951
2960
|
|
@@ -32,7 +32,7 @@ module Aws::MemoryDB
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://memory-db-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -239,11 +239,11 @@ module Aws::MemoryDB
|
|
239
239
|
# @return [String]
|
240
240
|
#
|
241
241
|
# @!attribute [rw] engine_version
|
242
|
-
# The Redis engine version used by the cluster
|
242
|
+
# The Redis OSS engine version used by the cluster
|
243
243
|
# @return [String]
|
244
244
|
#
|
245
245
|
# @!attribute [rw] engine_patch_version
|
246
|
-
# The Redis engine patch version used by the cluster
|
246
|
+
# The Redis OSS engine patch version used by the cluster
|
247
247
|
# @return [String]
|
248
248
|
#
|
249
249
|
# @!attribute [rw] parameter_group_name
|
@@ -375,7 +375,7 @@ module Aws::MemoryDB
|
|
375
375
|
# @return [String]
|
376
376
|
#
|
377
377
|
# @!attribute [rw] engine_version
|
378
|
-
# The Redis engine version used by the cluster
|
378
|
+
# The Redis OSS engine version used by the cluster
|
379
379
|
# @return [String]
|
380
380
|
#
|
381
381
|
# @!attribute [rw] maintenance_window
|
@@ -685,7 +685,8 @@ module Aws::MemoryDB
|
|
685
685
|
# @return [String]
|
686
686
|
#
|
687
687
|
# @!attribute [rw] engine_version
|
688
|
-
# The version number of the Redis engine to be used for the
|
688
|
+
# The version number of the Redis OSS engine to be used for the
|
689
|
+
# cluster.
|
689
690
|
# @return [String]
|
690
691
|
#
|
691
692
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -1175,7 +1176,7 @@ module Aws::MemoryDB
|
|
1175
1176
|
end
|
1176
1177
|
|
1177
1178
|
# @!attribute [rw] engine_version
|
1178
|
-
# The Redis engine version
|
1179
|
+
# The Redis OSS engine version
|
1179
1180
|
# @return [String]
|
1180
1181
|
#
|
1181
1182
|
# @!attribute [rw] parameter_group_family
|
@@ -1846,7 +1847,7 @@ module Aws::MemoryDB
|
|
1846
1847
|
include Aws::Structure
|
1847
1848
|
end
|
1848
1849
|
|
1849
|
-
# Provides details of the Redis engine version
|
1850
|
+
# Provides details of the Redis OSS engine version
|
1850
1851
|
#
|
1851
1852
|
# @!attribute [rw] engine_version
|
1852
1853
|
# The engine version
|
data/lib/aws-sdk-memorydb.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-memorydb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.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: 2024-
|
11
|
+
date: 2024-07-29 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.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon MemoryDB. This gem is part of the AWS
|
48
48
|
SDK for Ruby.
|
49
49
|
email:
|