aws-sdk-finspacedata 1.5.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspacedata/client.rb +697 -54
- data/lib/aws-sdk-finspacedata/client_api.rb +502 -41
- data/lib/aws-sdk-finspacedata/errors.rb +32 -0
- data/lib/aws-sdk-finspacedata/types.rb +1506 -126
- data/lib/aws-sdk-finspacedata.rb +1 -1
- metadata +2 -2
@@ -28,7 +28,9 @@ module Aws::FinSpaceData
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {AccessDeniedException}
|
31
|
+
# * {ConflictException}
|
31
32
|
# * {InternalServerException}
|
33
|
+
# * {LimitExceededException}
|
32
34
|
# * {ResourceNotFoundException}
|
33
35
|
# * {ThrottlingException}
|
34
36
|
# * {ValidationException}
|
@@ -54,6 +56,21 @@ module Aws::FinSpaceData
|
|
54
56
|
end
|
55
57
|
end
|
56
58
|
|
59
|
+
class ConflictException < ServiceError
|
60
|
+
|
61
|
+
# @param [Seahorse::Client::RequestContext] context
|
62
|
+
# @param [String] message
|
63
|
+
# @param [Aws::FinSpaceData::Types::ConflictException] data
|
64
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
65
|
+
super(context, message, data)
|
66
|
+
end
|
67
|
+
|
68
|
+
# @return [String]
|
69
|
+
def message
|
70
|
+
@message || @data[:message]
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
57
74
|
class InternalServerException < ServiceError
|
58
75
|
|
59
76
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -69,6 +86,21 @@ module Aws::FinSpaceData
|
|
69
86
|
end
|
70
87
|
end
|
71
88
|
|
89
|
+
class LimitExceededException < ServiceError
|
90
|
+
|
91
|
+
# @param [Seahorse::Client::RequestContext] context
|
92
|
+
# @param [String] message
|
93
|
+
# @param [Aws::FinSpaceData::Types::LimitExceededException] data
|
94
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
95
|
+
super(context, message, data)
|
96
|
+
end
|
97
|
+
|
98
|
+
# @return [String]
|
99
|
+
def message
|
100
|
+
@message || @data[:message]
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
72
104
|
class ResourceNotFoundException < ServiceError
|
73
105
|
|
74
106
|
# @param [Seahorse::Client::RequestContext] context
|