aws-sdk-memorydb 1.29.0 → 1.31.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 606861eee833548b612abbe2a3290d1a6c3e3317eb1e8b4e2a2a5788e596694c
4
- data.tar.gz: 414244b13875cb91a17cfb4edfd7fe24ab002ea5bd05c1695e4cc50f1a78e15d
3
+ metadata.gz: e7ee09b1ef2ab9244ab8d2d1a1d58cc28181291579c06067a8f2992627962a38
4
+ data.tar.gz: e23e654f41c65e2562fdb6976ff6cecdac0c2dfd6ea1a6fd46476bc450052ca5
5
5
  SHA512:
6
- metadata.gz: 9bf0f9cd89d078a74c2b457d3dd851e710b87d146f4b9378cd3fc255e05446bb64391bf6b5af051e9cdf96dc77838c1c37316a95a56e06483ba0d4d3c3448108
7
- data.tar.gz: efcb2dc0732566a4686b3e1726fe53c84c87728ae1de37da4207dec80d6981f1f108a24dca5dac4f8862fcb800fcc345126defd12e2dbb6b12f0bc7febba0083
6
+ metadata.gz: 32dbfb037b1863490aa2b4bd68e300b6c2e07a2b2c27b0747367e90154cac2747cc8fe4fbeb20ba222efa1e35eb51e1c8a6d8e560ae57f67b9974f2171ba7500
7
+ data.tar.gz: 735f92ac2c9ace5e3cb3cab345d3a5c9b86766f3812a38997c651de5b96e762246cfeba44fb448918a482821e98024579f91e66ffe6477065446454364eab610
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2024-08-01)
5
+ ------------------
6
+
7
+ * Feature - Doc only update for changes to deletion API.
8
+
9
+ 1.30.0 (2024-07-29)
10
+ ------------------
11
+
12
+ * Feature - Renaming full service name as it appears in developer documentation.
13
+
4
14
  1.29.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.31.0
@@ -767,7 +767,7 @@ module Aws::MemoryDB
767
767
  # The name of the Access Control List to associate with the cluster.
768
768
  #
769
769
  # @option params [String] :engine_version
770
- # 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.
771
771
  #
772
772
  # @option params [Boolean] :auto_minor_version_upgrade
773
773
  # When set to true, the cluster will automatically receive minor engine
@@ -1179,6 +1179,12 @@ module Aws::MemoryDB
1179
1179
  # Deletes a cluster. It also deletes all associated nodes and node
1180
1180
  # endpoints
1181
1181
  #
1182
+ # <note markdown="1"> `CreateSnapshot` permission is required to create a final snapshot.
1183
+ # Without this permission, the API call will fail with an `Access
1184
+ # Denied` exception.
1185
+ #
1186
+ # </note>
1187
+ #
1182
1188
  # @option params [required, String] :cluster_name
1183
1189
  # The name of the cluster to be deleted
1184
1190
  #
@@ -1568,10 +1574,10 @@ module Aws::MemoryDB
1568
1574
  req.send_request(options)
1569
1575
  end
1570
1576
 
1571
- # Returns a list of the available Redis engine versions.
1577
+ # Returns a list of the available Redis OSS engine versions.
1572
1578
  #
1573
1579
  # @option params [String] :engine_version
1574
- # The Redis engine version
1580
+ # The Redis OSS engine version
1575
1581
  #
1576
1582
  # @option params [String] :parameter_group_family
1577
1583
  # The name of a specific parameter group family to return details for.
@@ -2954,7 +2960,7 @@ module Aws::MemoryDB
2954
2960
  params: params,
2955
2961
  config: config)
2956
2962
  context[:gem_name] = 'aws-sdk-memorydb'
2957
- context[:gem_version] = '1.29.0'
2963
+ context[:gem_version] = '1.31.0'
2958
2964
  Seahorse::Client::Request.new(handlers, context)
2959
2965
  end
2960
2966
 
@@ -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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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 cluster.
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-memorydb/customizations'
52
52
  # @!group service
53
53
  module Aws::MemoryDB
54
54
 
55
- GEM_VERSION = '1.29.0'
55
+ GEM_VERSION = '1.31.0'
56
56
 
57
57
  end
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.29.0
4
+ version: 1.31.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core