aws-sdk-elasticache 1.23.0 → 1.24.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a34fc2f31156093645470dafe436453ef03833b
|
4
|
+
data.tar.gz: 231b7ab7a7847578b62f9d01bf5f116dc7ec1f47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c68d5d337ce1420100a424f5aaf44fd2d443aee8564a640ec8f470377a5fcef0174690b3487a054645f2cdd5c7646058fb0e2738eacebb6d501ceee4bd7399b2
|
7
|
+
data.tar.gz: d842071bddb80b8ef76280cb08cadba7a66451ff305638e0004f30fd906b7e6b5d7de7b28cf922112f4340452410a3c81aa3ae61695d7cb26407fd551f0a81e5
|
data/lib/aws-sdk-elasticache.rb
CHANGED
@@ -6165,6 +6165,7 @@ module Aws::ElastiCache
|
|
6165
6165
|
# @return [Types::AllowedNodeTypeModificationsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6166
6166
|
#
|
6167
6167
|
# * {Types::AllowedNodeTypeModificationsMessage#scale_up_modifications #scale_up_modifications} => Array<String>
|
6168
|
+
# * {Types::AllowedNodeTypeModificationsMessage#scale_down_modifications #scale_down_modifications} => Array<String>
|
6168
6169
|
#
|
6169
6170
|
#
|
6170
6171
|
# @example Example: ListAllowedNodeTypeModifications
|
@@ -6214,6 +6215,8 @@ module Aws::ElastiCache
|
|
6214
6215
|
#
|
6215
6216
|
# resp.scale_up_modifications #=> Array
|
6216
6217
|
# resp.scale_up_modifications[0] #=> String
|
6218
|
+
# resp.scale_down_modifications #=> Array
|
6219
|
+
# resp.scale_down_modifications[0] #=> String
|
6217
6220
|
#
|
6218
6221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ListAllowedNodeTypeModifications AWS API Documentation
|
6219
6222
|
#
|
@@ -7862,7 +7865,7 @@ module Aws::ElastiCache
|
|
7862
7865
|
params: params,
|
7863
7866
|
config: config)
|
7864
7867
|
context[:gem_name] = 'aws-sdk-elasticache'
|
7865
|
-
context[:gem_version] = '1.
|
7868
|
+
context[:gem_version] = '1.24.0'
|
7866
7869
|
Seahorse::Client::Request.new(handlers, context)
|
7867
7870
|
end
|
7868
7871
|
|
@@ -264,6 +264,7 @@ module Aws::ElastiCache
|
|
264
264
|
AddTagsToResourceMessage.struct_class = Types::AddTagsToResourceMessage
|
265
265
|
|
266
266
|
AllowedNodeTypeModificationsMessage.add_member(:scale_up_modifications, Shapes::ShapeRef.new(shape: NodeTypeList, location_name: "ScaleUpModifications"))
|
267
|
+
AllowedNodeTypeModificationsMessage.add_member(:scale_down_modifications, Shapes::ShapeRef.new(shape: NodeTypeList, location_name: "ScaleDownModifications"))
|
267
268
|
AllowedNodeTypeModificationsMessage.struct_class = Types::AllowedNodeTypeModificationsMessage
|
268
269
|
|
269
270
|
AuthorizeCacheSecurityGroupIngressMessage.add_member(:cache_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheSecurityGroupName"))
|
@@ -63,10 +63,20 @@ module Aws::ElastiCache
|
|
63
63
|
# this list for the `CacheNodeType` parameter.
|
64
64
|
# @return [Array<String>]
|
65
65
|
#
|
66
|
+
# @!attribute [rw] scale_down_modifications
|
67
|
+
# A string list, each element of which specifies a cache node type
|
68
|
+
# which you can use to scale your cluster or replication group.
|
69
|
+
#
|
70
|
+
# When scaling down on a Redis cluster or replication group using
|
71
|
+
# `ModifyCacheCluster` or `ModifyReplicationGroup`, use a value from
|
72
|
+
# this list for the `CacheNodeType` parameter.
|
73
|
+
# @return [Array<String>]
|
74
|
+
#
|
66
75
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AllowedNodeTypeModificationsMessage AWS API Documentation
|
67
76
|
#
|
68
77
|
class AllowedNodeTypeModificationsMessage < Struct.new(
|
69
|
-
:scale_up_modifications
|
78
|
+
:scale_up_modifications,
|
79
|
+
:scale_down_modifications)
|
70
80
|
include Aws::Structure
|
71
81
|
end
|
72
82
|
|
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.24.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: 2019-
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|