aws-sdk-dax 1.13.0 → 1.14.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-dax.rb +1 -1
- data/lib/aws-sdk-dax/client.rb +1 -1
- data/lib/aws-sdk-dax/client_api.rb +6 -0
- data/lib/aws-sdk-dax/errors.rb +32 -0
- data/lib/aws-sdk-dax/types.rb +24 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5845db0d98363511a5852baf8c274392395d32d3
|
4
|
+
data.tar.gz: 5e22577a7d595e5ace3c1ec39c56b3a33e3ced42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1eddb39084ed4daacf2b6d9f3339becee834f9f1a1be2ecf3349b057c3e049aea6815c1621e17e9a746e388c2f7417db16c576c23a6f615d3c6159eb07f3df64
|
7
|
+
data.tar.gz: 8e2043553e71ea44fe06c3cafbf048a5b138506eb94ea03375cd20363c821e7e6027ce9d93b1677c58e5d5634042e6f58ba695eca2c639482e3a6b4637fbca27
|
data/lib/aws-sdk-dax.rb
CHANGED
data/lib/aws-sdk-dax/client.rb
CHANGED
@@ -289,6 +289,12 @@ module Aws::DAX
|
|
289
289
|
IncreaseReplicationFactorResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
290
290
|
IncreaseReplicationFactorResponse.struct_class = Types::IncreaseReplicationFactorResponse
|
291
291
|
|
292
|
+
InvalidParameterCombinationException.add_member(:message, Shapes::ShapeRef.new(shape: AwsQueryErrorMessage, location_name: "message"))
|
293
|
+
InvalidParameterCombinationException.struct_class = Types::InvalidParameterCombinationException
|
294
|
+
|
295
|
+
InvalidParameterValueException.add_member(:message, Shapes::ShapeRef.new(shape: AwsQueryErrorMessage, location_name: "message"))
|
296
|
+
InvalidParameterValueException.struct_class = Types::InvalidParameterValueException
|
297
|
+
|
292
298
|
KeyList.member = Shapes::ShapeRef.new(shape: String)
|
293
299
|
|
294
300
|
ListTagsRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceName"))
|
data/lib/aws-sdk-dax/errors.rb
CHANGED
@@ -10,5 +10,37 @@ module Aws::DAX
|
|
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::DAX::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::DAX::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
|
data/lib/aws-sdk-dax/types.rb
CHANGED
@@ -958,6 +958,30 @@ module Aws::DAX
|
|
958
958
|
include Aws::Structure
|
959
959
|
end
|
960
960
|
|
961
|
+
# Two or more incompatible parameters were specified.
|
962
|
+
#
|
963
|
+
# @!attribute [rw] message
|
964
|
+
# @return [String]
|
965
|
+
#
|
966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidParameterCombinationException AWS API Documentation
|
967
|
+
#
|
968
|
+
class InvalidParameterCombinationException < Struct.new(
|
969
|
+
:message)
|
970
|
+
include Aws::Structure
|
971
|
+
end
|
972
|
+
|
973
|
+
# The value for a parameter is invalid.
|
974
|
+
#
|
975
|
+
# @!attribute [rw] message
|
976
|
+
# @return [String]
|
977
|
+
#
|
978
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidParameterValueException AWS API Documentation
|
979
|
+
#
|
980
|
+
class InvalidParameterValueException < Struct.new(
|
981
|
+
:message)
|
982
|
+
include Aws::Structure
|
983
|
+
end
|
984
|
+
|
961
985
|
# @note When making an API call, you may pass ListTagsRequest
|
962
986
|
# data as a hash:
|
963
987
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.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-
|
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.
|
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.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|