aws-sdk-appsync 1.90.0 → 1.92.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +668 -15
- data/lib/aws-sdk-appsync/client_api.rb +327 -2
- data/lib/aws-sdk-appsync/errors.rb +32 -0
- data/lib/aws-sdk-appsync/types.rb +662 -36
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +220 -2
- data/sig/errors.rbs +6 -0
- data/sig/types.rbs +191 -1
- metadata +2 -2
@@ -33,10 +33,12 @@ module Aws::AppSync
|
|
33
33
|
# * {ApiLimitExceededException}
|
34
34
|
# * {BadRequestException}
|
35
35
|
# * {ConcurrentModificationException}
|
36
|
+
# * {ConflictException}
|
36
37
|
# * {GraphQLSchemaException}
|
37
38
|
# * {InternalFailureException}
|
38
39
|
# * {LimitExceededException}
|
39
40
|
# * {NotFoundException}
|
41
|
+
# * {ServiceQuotaExceededException}
|
40
42
|
# * {UnauthorizedException}
|
41
43
|
#
|
42
44
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -145,6 +147,21 @@ module Aws::AppSync
|
|
145
147
|
end
|
146
148
|
end
|
147
149
|
|
150
|
+
class ConflictException < ServiceError
|
151
|
+
|
152
|
+
# @param [Seahorse::Client::RequestContext] context
|
153
|
+
# @param [String] message
|
154
|
+
# @param [Aws::AppSync::Types::ConflictException] data
|
155
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
156
|
+
super(context, message, data)
|
157
|
+
end
|
158
|
+
|
159
|
+
# @return [String]
|
160
|
+
def message
|
161
|
+
@message || @data[:message]
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
148
165
|
class GraphQLSchemaException < ServiceError
|
149
166
|
|
150
167
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -205,6 +222,21 @@ module Aws::AppSync
|
|
205
222
|
end
|
206
223
|
end
|
207
224
|
|
225
|
+
class ServiceQuotaExceededException < ServiceError
|
226
|
+
|
227
|
+
# @param [Seahorse::Client::RequestContext] context
|
228
|
+
# @param [String] message
|
229
|
+
# @param [Aws::AppSync::Types::ServiceQuotaExceededException] data
|
230
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
231
|
+
super(context, message, data)
|
232
|
+
end
|
233
|
+
|
234
|
+
# @return [String]
|
235
|
+
def message
|
236
|
+
@message || @data[:message]
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
208
240
|
class UnauthorizedException < ServiceError
|
209
241
|
|
210
242
|
# @param [Seahorse::Client::RequestContext] context
|