aws-sdk-glue 1.107.0 → 1.110.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +625 -1
- data/lib/aws-sdk-glue/client_api.rb +441 -0
- data/lib/aws-sdk-glue/errors.rb +16 -0
- data/lib/aws-sdk-glue/types.rb +928 -3
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-glue/errors.rb
CHANGED
@@ -40,6 +40,7 @@ module Aws::Glue
|
|
40
40
|
# * {GlueEncryptionException}
|
41
41
|
# * {IdempotentParameterMismatchException}
|
42
42
|
# * {IllegalBlueprintStateException}
|
43
|
+
# * {IllegalSessionStateException}
|
43
44
|
# * {IllegalWorkflowStateException}
|
44
45
|
# * {InternalServiceException}
|
45
46
|
# * {InvalidInputException}
|
@@ -257,6 +258,21 @@ module Aws::Glue
|
|
257
258
|
end
|
258
259
|
end
|
259
260
|
|
261
|
+
class IllegalSessionStateException < ServiceError
|
262
|
+
|
263
|
+
# @param [Seahorse::Client::RequestContext] context
|
264
|
+
# @param [String] message
|
265
|
+
# @param [Aws::Glue::Types::IllegalSessionStateException] data
|
266
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
267
|
+
super(context, message, data)
|
268
|
+
end
|
269
|
+
|
270
|
+
# @return [String]
|
271
|
+
def message
|
272
|
+
@message || @data[:message]
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
260
276
|
class IllegalWorkflowStateException < ServiceError
|
261
277
|
|
262
278
|
# @param [Seahorse::Client::RequestContext] context
|