aws-sdk-qconnect 1.43.0 → 1.44.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +794 -28
- data/lib/aws-sdk-qconnect/client_api.rb +473 -1
- data/lib/aws-sdk-qconnect/errors.rb +16 -0
- data/lib/aws-sdk-qconnect/types.rb +1509 -32
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +315 -22
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +475 -19
- metadata +1 -1
|
@@ -37,6 +37,7 @@ module Aws::QConnect
|
|
|
37
37
|
# * {ThrottlingException}
|
|
38
38
|
# * {TooManyTagsException}
|
|
39
39
|
# * {UnauthorizedException}
|
|
40
|
+
# * {UnprocessableContentException}
|
|
40
41
|
# * {ValidationException}
|
|
41
42
|
#
|
|
42
43
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
@@ -213,6 +214,21 @@ module Aws::QConnect
|
|
|
213
214
|
end
|
|
214
215
|
end
|
|
215
216
|
|
|
217
|
+
class UnprocessableContentException < ServiceError
|
|
218
|
+
|
|
219
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
220
|
+
# @param [String] message
|
|
221
|
+
# @param [Aws::QConnect::Types::UnprocessableContentException] data
|
|
222
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
223
|
+
super(context, message, data)
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
# @return [String]
|
|
227
|
+
def message
|
|
228
|
+
@message || @data[:message]
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
|
|
216
232
|
class ValidationException < ServiceError
|
|
217
233
|
|
|
218
234
|
# @param [Seahorse::Client::RequestContext] context
|