aws-sdk-memorydb 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8be991d7aee1fe06bfede00b3a382f6fffc7eabeeb30f3063af74a8da20d58bb
4
- data.tar.gz: f64c57448292386d458e6d3886d4c4f00b696ec0ffd2ccf4268926eb55f82d7f
3
+ metadata.gz: a868519cfaac865e4a43f6e67bba95bfdb2a38fb5b866f3cdfab9339f4890363
4
+ data.tar.gz: 7fd8fddfe09130c07cb2f00ae08b07f5813c0ccc489b889397cdca85f411b3c0
5
5
  SHA512:
6
- metadata.gz: b31e7e7b1ccbde9e9af1727ca776e6a74d05458646e19eb62a46401283647bfa111813185d6ea641e802c4d7a9dd9caa31734d7820ab5717314956328fa7f0a5
7
- data.tar.gz: aad52959973e7a39669e51d7a5b7c8f64ebb1a0220b518c5a04165364d05b8b170f800e83afb3c5ea125b2001c2f35f813496e5d9420ddc2368c57205c519662
6
+ metadata.gz: 1ad4853c53f2e89263a54afb404953d811334c98cff00f30cd2f08abab5442964579a796a35aea68cf5e7424652368deb4745b9cbd623dc7b07c5fe9b0d5134c
7
+ data.tar.gz: 89d3ff8fcf3e7edd4e3b100f540708dc3134b746f401dad223d056a10b467d383aa6543b8fba5d04b2351026c4ce7c78a8645ee3727e547c138020b498bae384
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2022-11-03)
5
+ ------------------
6
+
7
+ * Feature - Adding support for r6gd instances for MemoryDB Redis with data tiering. In a cluster with data tiering enabled, when available memory capacity is exhausted, the least recently used data is automatically tiered to solid state drives for cost-effective capacity scaling with minimal performance impact.
8
+
4
9
  1.9.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -452,6 +452,7 @@ module Aws::MemoryDB
452
452
  # resp.processed_clusters[0].snapshot_window #=> String
453
453
  # resp.processed_clusters[0].acl_name #=> String
454
454
  # resp.processed_clusters[0].auto_minor_version_upgrade #=> Boolean
455
+ # resp.processed_clusters[0].data_tiering #=> String, one of "true", "false"
455
456
  # resp.unprocessed_clusters #=> Array
456
457
  # resp.unprocessed_clusters[0].cluster_name #=> String
457
458
  # resp.unprocessed_clusters[0].error_type #=> String
@@ -540,6 +541,7 @@ module Aws::MemoryDB
540
541
  # resp.snapshot.cluster_configuration.shards[0].configuration.replica_count #=> Integer
541
542
  # resp.snapshot.cluster_configuration.shards[0].size #=> String
542
543
  # resp.snapshot.cluster_configuration.shards[0].snapshot_creation_time #=> Time
544
+ # resp.snapshot.data_tiering #=> String, one of "true", "false"
543
545
  #
544
546
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CopySnapshot AWS API Documentation
545
547
  #
@@ -641,9 +643,27 @@ module Aws::MemoryDB
641
643
  # @option params [String] :maintenance_window
642
644
  # Specifies the weekly time range during which maintenance on the
643
645
  # cluster is performed. It is specified as a range in the format
644
- # `ddd:hh24:mi-ddd:hh24:mi` (24H Clock UTC). The minimum maintenance
646
+ # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
645
647
  # window is a 60 minute period.
646
648
  #
649
+ # Valid values for `ddd` are:
650
+ #
651
+ # * `sun`
652
+ #
653
+ # * `mon`
654
+ #
655
+ # * `tue`
656
+ #
657
+ # * `wed`
658
+ #
659
+ # * `thu`
660
+ #
661
+ # * `fri`
662
+ #
663
+ # * `sat`
664
+ #
665
+ # Example: `sun:23:00-mon:01:30`
666
+ #
647
667
  # @option params [Integer] :port
648
668
  # The port number on which each of the nodes accepts connections.
649
669
  #
@@ -699,6 +719,15 @@ module Aws::MemoryDB
699
719
  # When set to true, the cluster will automatically receive minor engine
700
720
  # version upgrades after launch.
701
721
  #
722
+ # @option params [Boolean] :data_tiering
723
+ # Enables data tiering. Data tiering is only supported for clusters
724
+ # using the r6gd node type. This parameter must be set when using r6gd
725
+ # nodes. For more information, see [Data tiering][1].
726
+ #
727
+ #
728
+ #
729
+ # [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
730
+ #
702
731
  # @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
703
732
  #
704
733
  # * {Types::CreateClusterResponse#cluster #cluster} => Types::Cluster
@@ -732,6 +761,7 @@ module Aws::MemoryDB
732
761
  # acl_name: "ACLName", # required
733
762
  # engine_version: "String",
734
763
  # auto_minor_version_upgrade: false,
764
+ # data_tiering: false,
735
765
  # })
736
766
  #
737
767
  # @example Response structure
@@ -779,6 +809,7 @@ module Aws::MemoryDB
779
809
  # resp.cluster.snapshot_window #=> String
780
810
  # resp.cluster.acl_name #=> String
781
811
  # resp.cluster.auto_minor_version_upgrade #=> Boolean
812
+ # resp.cluster.data_tiering #=> String, one of "true", "false"
782
813
  #
783
814
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateCluster AWS API Documentation
784
815
  #
@@ -907,6 +938,7 @@ module Aws::MemoryDB
907
938
  # resp.snapshot.cluster_configuration.shards[0].configuration.replica_count #=> Integer
908
939
  # resp.snapshot.cluster_configuration.shards[0].size #=> String
909
940
  # resp.snapshot.cluster_configuration.shards[0].snapshot_creation_time #=> Time
941
+ # resp.snapshot.data_tiering #=> String, one of "true", "false"
910
942
  #
911
943
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateSnapshot AWS API Documentation
912
944
  #
@@ -1157,6 +1189,7 @@ module Aws::MemoryDB
1157
1189
  # resp.cluster.snapshot_window #=> String
1158
1190
  # resp.cluster.acl_name #=> String
1159
1191
  # resp.cluster.auto_minor_version_upgrade #=> Boolean
1192
+ # resp.cluster.data_tiering #=> String, one of "true", "false"
1160
1193
  #
1161
1194
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteCluster AWS API Documentation
1162
1195
  #
@@ -1243,6 +1276,7 @@ module Aws::MemoryDB
1243
1276
  # resp.snapshot.cluster_configuration.shards[0].configuration.replica_count #=> Integer
1244
1277
  # resp.snapshot.cluster_configuration.shards[0].size #=> String
1245
1278
  # resp.snapshot.cluster_configuration.shards[0].snapshot_creation_time #=> Time
1279
+ # resp.snapshot.data_tiering #=> String, one of "true", "false"
1246
1280
  #
1247
1281
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteSnapshot AWS API Documentation
1248
1282
  #
@@ -1465,6 +1499,7 @@ module Aws::MemoryDB
1465
1499
  # resp.clusters[0].snapshot_window #=> String
1466
1500
  # resp.clusters[0].acl_name #=> String
1467
1501
  # resp.clusters[0].auto_minor_version_upgrade #=> Boolean
1502
+ # resp.clusters[0].data_tiering #=> String, one of "true", "false"
1468
1503
  #
1469
1504
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeClusters AWS API Documentation
1470
1505
  #
@@ -1843,6 +1878,7 @@ module Aws::MemoryDB
1843
1878
  # resp.snapshots[0].cluster_configuration.shards[0].configuration.replica_count #=> Integer
1844
1879
  # resp.snapshots[0].cluster_configuration.shards[0].size #=> String
1845
1880
  # resp.snapshots[0].cluster_configuration.shards[0].snapshot_creation_time #=> Time
1881
+ # resp.snapshots[0].data_tiering #=> String, one of "true", "false"
1846
1882
  #
1847
1883
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeSnapshots AWS API Documentation
1848
1884
  #
@@ -1967,7 +2003,12 @@ module Aws::MemoryDB
1967
2003
  req.send_request(options)
1968
2004
  end
1969
2005
 
1970
- # Used to failover a shard
2006
+ # Used to failover a shard. This API is designed for testing the
2007
+ # behavior of your application in case of MemoryDB failover. It is not
2008
+ # designed to be used as a production-level tool for initiating a
2009
+ # failover to overcome a problem you may have with the cluster.
2010
+ # Moreover, in certain conditions such as large scale operational
2011
+ # events, Amazon may block this API.
1971
2012
  #
1972
2013
  # @option params [required, String] :cluster_name
1973
2014
  # The cluster being failed over
@@ -2031,6 +2072,7 @@ module Aws::MemoryDB
2031
2072
  # resp.cluster.snapshot_window #=> String
2032
2073
  # resp.cluster.acl_name #=> String
2033
2074
  # resp.cluster.auto_minor_version_upgrade #=> Boolean
2075
+ # resp.cluster.data_tiering #=> String, one of "true", "false"
2034
2076
  #
2035
2077
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/FailoverShard AWS API Documentation
2036
2078
  #
@@ -2317,7 +2359,28 @@ module Aws::MemoryDB
2317
2359
  # The SecurityGroupIds to update
2318
2360
  #
2319
2361
  # @option params [String] :maintenance_window
2320
- # The maintenance window to update
2362
+ # Specifies the weekly time range during which maintenance on the
2363
+ # cluster is performed. It is specified as a range in the format
2364
+ # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
2365
+ # window is a 60 minute period.
2366
+ #
2367
+ # Valid values for `ddd` are:
2368
+ #
2369
+ # * `sun`
2370
+ #
2371
+ # * `mon`
2372
+ #
2373
+ # * `tue`
2374
+ #
2375
+ # * `wed`
2376
+ #
2377
+ # * `thu`
2378
+ #
2379
+ # * `fri`
2380
+ #
2381
+ # * `sat`
2382
+ #
2383
+ # Example: `sun:23:00-mon:01:30`
2321
2384
  #
2322
2385
  # @option params [String] :sns_topic_arn
2323
2386
  # The SNS topic ARN to update
@@ -2430,6 +2493,7 @@ module Aws::MemoryDB
2430
2493
  # resp.cluster.snapshot_window #=> String
2431
2494
  # resp.cluster.acl_name #=> String
2432
2495
  # resp.cluster.auto_minor_version_upgrade #=> Boolean
2496
+ # resp.cluster.data_tiering #=> String, one of "true", "false"
2433
2497
  #
2434
2498
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateCluster AWS API Documentation
2435
2499
  #
@@ -2593,7 +2657,7 @@ module Aws::MemoryDB
2593
2657
  params: params,
2594
2658
  config: config)
2595
2659
  context[:gem_name] = 'aws-sdk-memorydb'
2596
- context[:gem_version] = '1.9.0'
2660
+ context[:gem_version] = '1.10.0'
2597
2661
  Seahorse::Client::Request.new(handlers, context)
2598
2662
  end
2599
2663
 
@@ -57,6 +57,7 @@ module Aws::MemoryDB
57
57
  CreateSubnetGroupResponse = Shapes::StructureShape.new(name: 'CreateSubnetGroupResponse')
58
58
  CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
59
59
  CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
60
+ DataTieringStatus = Shapes::StringShape.new(name: 'DataTieringStatus')
60
61
  DefaultUserRequired = Shapes::StructureShape.new(name: 'DefaultUserRequired')
61
62
  DeleteACLRequest = Shapes::StructureShape.new(name: 'DeleteACLRequest')
62
63
  DeleteACLResponse = Shapes::StructureShape.new(name: 'DeleteACLResponse')
@@ -296,6 +297,7 @@ module Aws::MemoryDB
296
297
  Cluster.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
297
298
  Cluster.add_member(:acl_name, Shapes::ShapeRef.new(shape: ACLName, location_name: "ACLName"))
298
299
  Cluster.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
300
+ Cluster.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
299
301
  Cluster.struct_class = Types::Cluster
300
302
 
301
303
  ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
@@ -368,6 +370,7 @@ module Aws::MemoryDB
368
370
  CreateClusterRequest.add_member(:acl_name, Shapes::ShapeRef.new(shape: ACLName, required: true, location_name: "ACLName"))
369
371
  CreateClusterRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
370
372
  CreateClusterRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
373
+ CreateClusterRequest.add_member(:data_tiering, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DataTiering"))
371
374
  CreateClusterRequest.struct_class = Types::CreateClusterRequest
372
375
 
373
376
  CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -769,6 +772,7 @@ module Aws::MemoryDB
769
772
  Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
770
773
  Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
771
774
  Snapshot.add_member(:cluster_configuration, Shapes::ShapeRef.new(shape: ClusterConfiguration, location_name: "ClusterConfiguration"))
775
+ Snapshot.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
772
776
  Snapshot.struct_class = Types::Snapshot
773
777
 
774
778
  SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
@@ -331,6 +331,16 @@ module Aws::MemoryDB
331
331
  # engine version upgrades after launch.
332
332
  # @return [Boolean]
333
333
  #
334
+ # @!attribute [rw] data_tiering
335
+ # Enables data tiering. Data tiering is only supported for clusters
336
+ # using the r6gd node type. This parameter must be set when using r6gd
337
+ # nodes. For more information, see [Data tiering][1].
338
+ #
339
+ #
340
+ #
341
+ # [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
342
+ # @return [String]
343
+ #
334
344
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/Cluster AWS API Documentation
335
345
  #
336
346
  class Cluster < Struct.new(
@@ -358,7 +368,8 @@ module Aws::MemoryDB
358
368
  :maintenance_window,
359
369
  :snapshot_window,
360
370
  :acl_name,
361
- :auto_minor_version_upgrade)
371
+ :auto_minor_version_upgrade,
372
+ :data_tiering)
362
373
  SENSITIVE = []
363
374
  include Aws::Structure
364
375
  end
@@ -633,6 +644,7 @@ module Aws::MemoryDB
633
644
  # acl_name: "ACLName", # required
634
645
  # engine_version: "String",
635
646
  # auto_minor_version_upgrade: false,
647
+ # data_tiering: false,
636
648
  # }
637
649
  #
638
650
  # @!attribute [rw] cluster_name
@@ -673,8 +685,26 @@ module Aws::MemoryDB
673
685
  # @!attribute [rw] maintenance_window
674
686
  # Specifies the weekly time range during which maintenance on the
675
687
  # cluster is performed. It is specified as a range in the format
676
- # `ddd:hh24:mi-ddd:hh24:mi` (24H Clock UTC). The minimum maintenance
688
+ # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
677
689
  # window is a 60 minute period.
690
+ #
691
+ # Valid values for `ddd` are:
692
+ #
693
+ # * `sun`
694
+ #
695
+ # * `mon`
696
+ #
697
+ # * `tue`
698
+ #
699
+ # * `wed`
700
+ #
701
+ # * `thu`
702
+ #
703
+ # * `fri`
704
+ #
705
+ # * `sat`
706
+ #
707
+ # Example: `sun:23:00-mon:01:30`
678
708
  # @return [String]
679
709
  #
680
710
  # @!attribute [rw] port
@@ -744,6 +774,16 @@ module Aws::MemoryDB
744
774
  # engine version upgrades after launch.
745
775
  # @return [Boolean]
746
776
  #
777
+ # @!attribute [rw] data_tiering
778
+ # Enables data tiering. Data tiering is only supported for clusters
779
+ # using the r6gd node type. This parameter must be set when using r6gd
780
+ # nodes. For more information, see [Data tiering][1].
781
+ #
782
+ #
783
+ #
784
+ # [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
785
+ # @return [Boolean]
786
+ #
747
787
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateClusterRequest AWS API Documentation
748
788
  #
749
789
  class CreateClusterRequest < Struct.new(
@@ -767,7 +807,8 @@ module Aws::MemoryDB
767
807
  :snapshot_window,
768
808
  :acl_name,
769
809
  :engine_version,
770
- :auto_minor_version_upgrade)
810
+ :auto_minor_version_upgrade,
811
+ :data_tiering)
771
812
  SENSITIVE = []
772
813
  include Aws::Structure
773
814
  end
@@ -2735,6 +2776,16 @@ module Aws::MemoryDB
2735
2776
  # The configuration of the cluster from which the snapshot was taken
2736
2777
  # @return [Types::ClusterConfiguration]
2737
2778
  #
2779
+ # @!attribute [rw] data_tiering
2780
+ # Enables data tiering. Data tiering is only supported for clusters
2781
+ # using the r6gd node type. This parameter must be set when using r6gd
2782
+ # nodes. For more information, see [Data tiering][1].
2783
+ #
2784
+ #
2785
+ #
2786
+ # [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
2787
+ # @return [String]
2788
+ #
2738
2789
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/Snapshot AWS API Documentation
2739
2790
  #
2740
2791
  class Snapshot < Struct.new(
@@ -2743,7 +2794,8 @@ module Aws::MemoryDB
2743
2794
  :source,
2744
2795
  :kms_key_id,
2745
2796
  :arn,
2746
- :cluster_configuration)
2797
+ :cluster_configuration,
2798
+ :data_tiering)
2747
2799
  SENSITIVE = []
2748
2800
  include Aws::Structure
2749
2801
  end
@@ -3087,7 +3139,28 @@ module Aws::MemoryDB
3087
3139
  # @return [Array<String>]
3088
3140
  #
3089
3141
  # @!attribute [rw] maintenance_window
3090
- # The maintenance window to update
3142
+ # Specifies the weekly time range during which maintenance on the
3143
+ # cluster is performed. It is specified as a range in the format
3144
+ # ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
3145
+ # window is a 60 minute period.
3146
+ #
3147
+ # Valid values for `ddd` are:
3148
+ #
3149
+ # * `sun`
3150
+ #
3151
+ # * `mon`
3152
+ #
3153
+ # * `tue`
3154
+ #
3155
+ # * `wed`
3156
+ #
3157
+ # * `thu`
3158
+ #
3159
+ # * `fri`
3160
+ #
3161
+ # * `sat`
3162
+ #
3163
+ # Example: `sun:23:00-mon:01:30`
3091
3164
  # @return [String]
3092
3165
  #
3093
3166
  # @!attribute [rw] sns_topic_arn
@@ -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.9.0'
55
+ GEM_VERSION = '1.10.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.9.0
4
+ version: 1.10.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-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core