aws-sdk-elasticache 1.16.0 → 1.17.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: 208be7a0196db46e861a76e78c57c12785f1c0d7
4
- data.tar.gz: 4c3e641a0cc634586788459c51b4debb46bf68e5
3
+ metadata.gz: a8e66d903dda68cdf0a2a6dd280f408787b6e612
4
+ data.tar.gz: 5018a2d423b52a7bf510e223a78a72308f7e9de5
5
5
  SHA512:
6
- metadata.gz: cb405e96d4f447711202c5505b57fa32b2a78857f0ca677e5c6e95de5f850e0f2ebe1a56b5de03f212f52dfcb91d5faf36a357aa90e00ea809a0b58d1c51f9ce
7
- data.tar.gz: d732d7ce7d562120863702b9280ac300dc711e6a9e1d47ebefbef6720d3a72e22f5e89c01a0262e4f80fdc7530223df629ff28042c731dbb5308ae467668eebe
6
+ metadata.gz: b81b316860f3a26738b8b3745a540208111dd05710d20d154cd301aada71ba18541107beaf8d311a42edb093674c604c448d6e27e159697179cfdaf24f84c652
7
+ data.tar.gz: 5d5d4185a9d05b03b9eb17a4fc4faf4d22eb753c9a844ce1bd17a17da56f265f90cb9968b874fb2569483e3ca088c7e8741163f898a7610769305e90dccfcf34
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elasticache/customizations'
43
43
  # @service
44
44
  module Aws::ElastiCache
45
45
 
46
- GEM_VERSION = '1.16.0'
46
+ GEM_VERSION = '1.17.0'
47
47
 
48
48
  end
@@ -7614,7 +7614,7 @@ module Aws::ElastiCache
7614
7614
  params: params,
7615
7615
  config: config)
7616
7616
  context[:gem_name] = 'aws-sdk-elasticache'
7617
- context[:gem_version] = '1.16.0'
7617
+ context[:gem_version] = '1.17.0'
7618
7618
  Seahorse::Client::Request.new(handlers, context)
7619
7619
  end
7620
7620
 
@@ -657,6 +657,12 @@ module Aws::ElastiCache
657
657
  IncreaseReplicaCountResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
658
658
  IncreaseReplicaCountResult.struct_class = Types::IncreaseReplicaCountResult
659
659
 
660
+ InvalidParameterCombinationException.add_member(:message, Shapes::ShapeRef.new(shape: AwsQueryErrorMessage, location_name: "message"))
661
+ InvalidParameterCombinationException.struct_class = Types::InvalidParameterCombinationException
662
+
663
+ InvalidParameterValueException.add_member(:message, Shapes::ShapeRef.new(shape: AwsQueryErrorMessage, location_name: "message"))
664
+ InvalidParameterValueException.struct_class = Types::InvalidParameterValueException
665
+
660
666
  KeyList.member = Shapes::ShapeRef.new(shape: String)
661
667
 
662
668
  ListAllowedNodeTypeModificationsMessage.add_member(:cache_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "CacheClusterId"))
@@ -10,5 +10,37 @@ module Aws::ElastiCache
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InvalidParameterCombinationException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::ElastiCache::Types::InvalidParameterCombinationException] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ end
28
+
29
+ class InvalidParameterValueException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::ElastiCache::Types::InvalidParameterValueException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
13
45
  end
14
46
  end
@@ -3569,6 +3569,33 @@ module Aws::ElastiCache
3569
3569
  include Aws::Structure
3570
3570
  end
3571
3571
 
3572
+ # Two or more incompatible parameters were specified.
3573
+ #
3574
+ # @!attribute [rw] message
3575
+ # Two or more parameters that must not be used together were used
3576
+ # together.
3577
+ # @return [String]
3578
+ #
3579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidParameterCombinationException AWS API Documentation
3580
+ #
3581
+ class InvalidParameterCombinationException < Struct.new(
3582
+ :message)
3583
+ include Aws::Structure
3584
+ end
3585
+
3586
+ # The value for a parameter is invalid.
3587
+ #
3588
+ # @!attribute [rw] message
3589
+ # A parameter value is invalid.
3590
+ # @return [String]
3591
+ #
3592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidParameterValueException AWS API Documentation
3593
+ #
3594
+ class InvalidParameterValueException < Struct.new(
3595
+ :message)
3596
+ include Aws::Structure
3597
+ end
3598
+
3572
3599
  # The input parameters for the `ListAllowedNodeTypeModifications`
3573
3600
  # operation.
3574
3601
  #
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.16.0
4
+ version: 1.17.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-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.52.1
22
+ version: 3.53.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement