aws-sdk-elasticache 1.23.0 → 1.24.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
  SHA1:
3
- metadata.gz: bbd304fe69309c0b348efc57e939211d1109e34a
4
- data.tar.gz: 1e7da8ecc0ac42e152613b2c2f4ddb1e50c012bf
3
+ metadata.gz: 6a34fc2f31156093645470dafe436453ef03833b
4
+ data.tar.gz: 231b7ab7a7847578b62f9d01bf5f116dc7ec1f47
5
5
  SHA512:
6
- metadata.gz: 898eccba9ccc96ba5fb31063004a782dbef94776171c736d50354b6c32cb395e19c9e75cff9a4ac9ac81463abba4a0ebb11f1abf3dcdd83d4d187a4bc114d0e0
7
- data.tar.gz: f75025c2560a9a2f5331b1bd95ea495e4648002c91e36fdfc61bbf8661a0a8bd86baa83ffe267115651761a7041f27e132be840c1d579213e1af997b6f50d047
6
+ metadata.gz: c68d5d337ce1420100a424f5aaf44fd2d443aee8564a640ec8f470377a5fcef0174690b3487a054645f2cdd5c7646058fb0e2738eacebb6d501ceee4bd7399b2
7
+ data.tar.gz: d842071bddb80b8ef76280cb08cadba7a66451ff305638e0004f30fd906b7e6b5d7de7b28cf922112f4340452410a3c81aa3ae61695d7cb26407fd551f0a81e5
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elasticache/customizations'
43
43
  # @service
44
44
  module Aws::ElastiCache
45
45
 
46
- GEM_VERSION = '1.23.0'
46
+ GEM_VERSION = '1.24.0'
47
47
 
48
48
  end
@@ -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.23.0'
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.23.0
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-07-25 00:00:00.000000000 Z
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