aws-sdk-elasticache 1.50.0 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticache.rb +1 -1
- data/lib/aws-sdk-elasticache/client.rb +42 -19
- data/lib/aws-sdk-elasticache/client_api.rb +1 -0
- data/lib/aws-sdk-elasticache/types.rb +11 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: caeff5a4832caf2626eb2b1ba16c250f65461e325340b4b08c5215851cfa3db1
|
4
|
+
data.tar.gz: 3fc404263c44813062762f59451c0b43c0c2f5422a8598776a8ae1f2b8e7b196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5a9decaddc409cd64a683b0da8edd11ca00dd0b33eaa234df2f75d0f8afae424e407e6b1453af75ed922d9b5e7cc58db830a70b0a29ec97742e716eda092fc2
|
7
|
+
data.tar.gz: d79aa318235503fa32e08d8ef5c9b77788e591e2e7fd41081548dfbbb7a4beda50f16fc9547354c97b0514ed232b4965d9a7b29c671f354e0c8d5e04ed64f69a
|
data/lib/aws-sdk-elasticache.rb
CHANGED
@@ -1792,19 +1792,32 @@ module Aws::ElastiCache
|
|
1792
1792
|
# others are read-only replicas. Writes to the primary are
|
1793
1793
|
# asynchronously propagated to the replicas.
|
1794
1794
|
#
|
1795
|
-
# A Redis
|
1796
|
-
#
|
1797
|
-
#
|
1798
|
-
#
|
1799
|
-
#
|
1800
|
-
#
|
1795
|
+
# A Redis cluster-mode enabled cluster is comprised of from 1 to 90
|
1796
|
+
# shards (API/CLI: node groups). Each shard has a primary node and up to
|
1797
|
+
# 5 read-only replica nodes. The configuration can range from 90 shards
|
1798
|
+
# and 0 replicas to 15 shards and 5 replicas, which is the maximum
|
1799
|
+
# number or replicas allowed.
|
1800
|
+
#
|
1801
|
+
# The node or shard limit can be increased to a maximum of 500 per
|
1802
|
+
# cluster if the Redis engine version is 5.0.6 or higher. For example,
|
1803
|
+
# you can choose to configure a 500 node cluster that ranges between 83
|
1804
|
+
# shards (one primary and 5 replicas per shard) and 500 shards (single
|
1805
|
+
# primary and no replicas). Make sure there are enough available IP
|
1806
|
+
# addresses to accommodate the increase. Common pitfalls include the
|
1807
|
+
# subnets in the subnet group have too small a CIDR range or the subnets
|
1808
|
+
# are shared and heavily used by other clusters. For more information,
|
1809
|
+
# see [Creating a Subnet Group][1]. For versions below 5.0.6, the limit
|
1810
|
+
# is 250 per cluster.
|
1811
|
+
#
|
1812
|
+
# To request a limit increase, see [AWS Service Limits][2] and choose
|
1813
|
+
# the limit type **Nodes per cluster per instance type**.
|
1801
1814
|
#
|
1802
1815
|
# When a Redis (cluster mode disabled) replication group has been
|
1803
1816
|
# successfully created, you can add one or more read replicas to it, up
|
1804
1817
|
# to a total of 5 read replicas. If you need to increase or decrease the
|
1805
1818
|
# number of node groups (console: shards), you can avail yourself of
|
1806
1819
|
# ElastiCache for Redis' scaling. For more information, see [Scaling
|
1807
|
-
# ElastiCache for Redis Clusters][
|
1820
|
+
# ElastiCache for Redis Clusters][3] in the *ElastiCache User Guide*.
|
1808
1821
|
#
|
1809
1822
|
# <note markdown="1"> This operation is valid for Redis only.
|
1810
1823
|
#
|
@@ -1812,7 +1825,9 @@ module Aws::ElastiCache
|
|
1812
1825
|
#
|
1813
1826
|
#
|
1814
1827
|
#
|
1815
|
-
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/
|
1828
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.Creating.html
|
1829
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
|
1830
|
+
# [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.html
|
1816
1831
|
#
|
1817
1832
|
# @option params [required, String] :replication_group_id
|
1818
1833
|
# The replication group identifier. This parameter is stored as a
|
@@ -2045,12 +2060,6 @@ module Aws::ElastiCache
|
|
2045
2060
|
# group. If this argument is omitted, the default cache parameter group
|
2046
2061
|
# for the specified engine is used.
|
2047
2062
|
#
|
2048
|
-
# <note markdown="1"> If you are restoring to an engine version that is different than the
|
2049
|
-
# original, you must specify the default version of that version. For
|
2050
|
-
# example, `CacheParameterGroupName=default.redis4.0`.
|
2051
|
-
#
|
2052
|
-
# </note>
|
2053
|
-
#
|
2054
2063
|
# If you are running Redis version 3.2.4 or later, only one node group
|
2055
2064
|
# (shard), and want to use a default parameter group, we recommend that
|
2056
2065
|
# you specify the parameter group by name.
|
@@ -3608,8 +3617,8 @@ module Aws::ElastiCache
|
|
3608
3617
|
req.send_request(options)
|
3609
3618
|
end
|
3610
3619
|
|
3611
|
-
# For Redis engine version 6.x onwards: Deletes a
|
3612
|
-
# group must first be disassociated from the
|
3620
|
+
# For Redis engine version 6.x onwards: Deletes a user group. The user
|
3621
|
+
# group must first be disassociated from the replication group before it
|
3613
3622
|
# can be deleted. For more information, see [Using Role Based Access
|
3614
3623
|
# Control (RBAC)][1].
|
3615
3624
|
#
|
@@ -7393,7 +7402,7 @@ module Aws::ElastiCache
|
|
7393
7402
|
req.send_request(options)
|
7394
7403
|
end
|
7395
7404
|
|
7396
|
-
# Dynamically increases the number of
|
7405
|
+
# Dynamically increases the number of replicas in a Redis (cluster mode
|
7397
7406
|
# disabled) replication group or the number of replica nodes in one or
|
7398
7407
|
# more node groups (shards) of a Redis (cluster mode enabled)
|
7399
7408
|
# replication group. This operation is performed with no cluster down
|
@@ -8292,6 +8301,11 @@ module Aws::ElastiCache
|
|
8292
8301
|
# The upgraded version of the cache engine to be run on the clusters in
|
8293
8302
|
# the Global Datastore.
|
8294
8303
|
#
|
8304
|
+
# @option params [String] :cache_parameter_group_name
|
8305
|
+
# The name of the cache parameter group to use with the Global
|
8306
|
+
# datastore. It must be compatible with the major engine version used by
|
8307
|
+
# the Global datastore.
|
8308
|
+
#
|
8295
8309
|
# @option params [String] :global_replication_group_description
|
8296
8310
|
# A description of the Global Datastore
|
8297
8311
|
#
|
@@ -8310,6 +8324,7 @@ module Aws::ElastiCache
|
|
8310
8324
|
# apply_immediately: false, # required
|
8311
8325
|
# cache_node_type: "String",
|
8312
8326
|
# engine_version: "String",
|
8327
|
+
# cache_parameter_group_name: "String",
|
8313
8328
|
# global_replication_group_description: "String",
|
8314
8329
|
# automatic_failover_enabled: false,
|
8315
8330
|
# })
|
@@ -8967,7 +8982,15 @@ module Aws::ElastiCache
|
|
8967
8982
|
req.send_request(options)
|
8968
8983
|
end
|
8969
8984
|
|
8970
|
-
# Allows you to purchase a reserved cache node offering.
|
8985
|
+
# Allows you to purchase a reserved cache node offering. Reserved nodes
|
8986
|
+
# are not eligible for cancellation and are non-refundable. For more
|
8987
|
+
# information, see [Managing Costs with Reserved Nodes][1] for Redis or
|
8988
|
+
# [Managing Costs with Reserved Nodes][2] for Memcached.
|
8989
|
+
#
|
8990
|
+
#
|
8991
|
+
#
|
8992
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/reserved-nodes.html
|
8993
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/reserved-nodes.html
|
8971
8994
|
#
|
8972
8995
|
# @option params [required, String] :reserved_cache_nodes_offering_id
|
8973
8996
|
# The ID of the reserved cache node offering to purchase.
|
@@ -9689,7 +9712,7 @@ module Aws::ElastiCache
|
|
9689
9712
|
params: params,
|
9690
9713
|
config: config)
|
9691
9714
|
context[:gem_name] = 'aws-sdk-elasticache'
|
9692
|
-
context[:gem_version] = '1.
|
9715
|
+
context[:gem_version] = '1.51.0'
|
9693
9716
|
Seahorse::Client::Request.new(handlers, context)
|
9694
9717
|
end
|
9695
9718
|
|
@@ -1135,6 +1135,7 @@ module Aws::ElastiCache
|
|
1135
1135
|
ModifyGlobalReplicationGroupMessage.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "ApplyImmediately"))
|
1136
1136
|
ModifyGlobalReplicationGroupMessage.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
1137
1137
|
ModifyGlobalReplicationGroupMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1138
|
+
ModifyGlobalReplicationGroupMessage.add_member(:cache_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "CacheParameterGroupName"))
|
1138
1139
|
ModifyGlobalReplicationGroupMessage.add_member(:global_replication_group_description, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupDescription"))
|
1139
1140
|
ModifyGlobalReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1140
1141
|
ModifyGlobalReplicationGroupMessage.struct_class = Types::ModifyGlobalReplicationGroupMessage
|
@@ -261,10 +261,9 @@ module Aws::ElastiCache
|
|
261
261
|
# @return [String]
|
262
262
|
#
|
263
263
|
# @!attribute [rw] configuration_endpoint
|
264
|
-
# Represents a Memcached cluster endpoint which
|
265
|
-
#
|
266
|
-
#
|
267
|
-
# will always have `.cfg` in it.
|
264
|
+
# Represents a Memcached cluster endpoint which can be used by an
|
265
|
+
# application to connect to any node in the cluster. The configuration
|
266
|
+
# endpoint will always have `.cfg` in it.
|
268
267
|
#
|
269
268
|
# Example: `mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211`
|
270
269
|
# @return [Types::Endpoint]
|
@@ -2485,12 +2484,6 @@ module Aws::ElastiCache
|
|
2485
2484
|
# group. If this argument is omitted, the default cache parameter
|
2486
2485
|
# group for the specified engine is used.
|
2487
2486
|
#
|
2488
|
-
# <note markdown="1"> If you are restoring to an engine version that is different than the
|
2489
|
-
# original, you must specify the default version of that version. For
|
2490
|
-
# example, `CacheParameterGroupName=default.redis4.0`.
|
2491
|
-
#
|
2492
|
-
# </note>
|
2493
|
-
#
|
2494
2487
|
# If you are running Redis version 3.2.4 or later, only one node group
|
2495
2488
|
# (shard), and want to use a default parameter group, we recommend
|
2496
2489
|
# that you specify the parameter group by name.
|
@@ -5927,6 +5920,7 @@ module Aws::ElastiCache
|
|
5927
5920
|
# apply_immediately: false, # required
|
5928
5921
|
# cache_node_type: "String",
|
5929
5922
|
# engine_version: "String",
|
5923
|
+
# cache_parameter_group_name: "String",
|
5930
5924
|
# global_replication_group_description: "String",
|
5931
5925
|
# automatic_failover_enabled: false,
|
5932
5926
|
# }
|
@@ -5952,6 +5946,12 @@ module Aws::ElastiCache
|
|
5952
5946
|
# in the Global Datastore.
|
5953
5947
|
# @return [String]
|
5954
5948
|
#
|
5949
|
+
# @!attribute [rw] cache_parameter_group_name
|
5950
|
+
# The name of the cache parameter group to use with the Global
|
5951
|
+
# datastore. It must be compatible with the major engine version used
|
5952
|
+
# by the Global datastore.
|
5953
|
+
# @return [String]
|
5954
|
+
#
|
5955
5955
|
# @!attribute [rw] global_replication_group_description
|
5956
5956
|
# A description of the Global Datastore
|
5957
5957
|
# @return [String]
|
@@ -5968,6 +5968,7 @@ module Aws::ElastiCache
|
|
5968
5968
|
:apply_immediately,
|
5969
5969
|
:cache_node_type,
|
5970
5970
|
:engine_version,
|
5971
|
+
:cache_parameter_group_name,
|
5971
5972
|
:global_replication_group_description,
|
5972
5973
|
:automatic_failover_enabled)
|
5973
5974
|
SENSITIVE = []
|
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.51.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: 2021-01-
|
11
|
+
date: 2021-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|