aws-sdk-glue 1.203.0 → 1.205.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +1729 -157
- data/lib/aws-sdk-glue/client_api.rb +1094 -0
- data/lib/aws-sdk-glue/errors.rb +128 -0
- data/lib/aws-sdk-glue/types.rb +2932 -403
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +512 -16
- data/sig/errors.rbs +24 -0
- data/sig/types.rbs +648 -10
- metadata +2 -2
data/lib/aws-sdk-glue/errors.rb
CHANGED
@@ -48,19 +48,27 @@ module Aws::Glue
|
|
48
48
|
# * {IllegalBlueprintStateException}
|
49
49
|
# * {IllegalSessionStateException}
|
50
50
|
# * {IllegalWorkflowStateException}
|
51
|
+
# * {IntegrationConflictOperationFault}
|
52
|
+
# * {IntegrationNotFoundFault}
|
53
|
+
# * {IntegrationQuotaExceededFault}
|
54
|
+
# * {InternalServerException}
|
51
55
|
# * {InternalServiceException}
|
52
56
|
# * {InvalidInputException}
|
57
|
+
# * {InvalidIntegrationStateFault}
|
53
58
|
# * {InvalidStateException}
|
59
|
+
# * {KMSKeyNotAccessibleFault}
|
54
60
|
# * {MLTransformNotReadyException}
|
55
61
|
# * {NoScheduleException}
|
56
62
|
# * {OperationNotSupportedException}
|
57
63
|
# * {OperationTimeoutException}
|
58
64
|
# * {PermissionTypeMismatchException}
|
65
|
+
# * {ResourceNotFoundException}
|
59
66
|
# * {ResourceNotReadyException}
|
60
67
|
# * {ResourceNumberLimitExceededException}
|
61
68
|
# * {SchedulerNotRunningException}
|
62
69
|
# * {SchedulerRunningException}
|
63
70
|
# * {SchedulerTransitioningException}
|
71
|
+
# * {TargetResourceNotFound}
|
64
72
|
# * {ThrottlingException}
|
65
73
|
# * {ValidationException}
|
66
74
|
# * {VersionMismatchException}
|
@@ -401,6 +409,66 @@ module Aws::Glue
|
|
401
409
|
end
|
402
410
|
end
|
403
411
|
|
412
|
+
class IntegrationConflictOperationFault < ServiceError
|
413
|
+
|
414
|
+
# @param [Seahorse::Client::RequestContext] context
|
415
|
+
# @param [String] message
|
416
|
+
# @param [Aws::Glue::Types::IntegrationConflictOperationFault] data
|
417
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
418
|
+
super(context, message, data)
|
419
|
+
end
|
420
|
+
|
421
|
+
# @return [String]
|
422
|
+
def message
|
423
|
+
@message || @data[:message]
|
424
|
+
end
|
425
|
+
end
|
426
|
+
|
427
|
+
class IntegrationNotFoundFault < ServiceError
|
428
|
+
|
429
|
+
# @param [Seahorse::Client::RequestContext] context
|
430
|
+
# @param [String] message
|
431
|
+
# @param [Aws::Glue::Types::IntegrationNotFoundFault] data
|
432
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
433
|
+
super(context, message, data)
|
434
|
+
end
|
435
|
+
|
436
|
+
# @return [String]
|
437
|
+
def message
|
438
|
+
@message || @data[:message]
|
439
|
+
end
|
440
|
+
end
|
441
|
+
|
442
|
+
class IntegrationQuotaExceededFault < ServiceError
|
443
|
+
|
444
|
+
# @param [Seahorse::Client::RequestContext] context
|
445
|
+
# @param [String] message
|
446
|
+
# @param [Aws::Glue::Types::IntegrationQuotaExceededFault] data
|
447
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
448
|
+
super(context, message, data)
|
449
|
+
end
|
450
|
+
|
451
|
+
# @return [String]
|
452
|
+
def message
|
453
|
+
@message || @data[:message]
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
457
|
+
class InternalServerException < ServiceError
|
458
|
+
|
459
|
+
# @param [Seahorse::Client::RequestContext] context
|
460
|
+
# @param [String] message
|
461
|
+
# @param [Aws::Glue::Types::InternalServerException] data
|
462
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
463
|
+
super(context, message, data)
|
464
|
+
end
|
465
|
+
|
466
|
+
# @return [String]
|
467
|
+
def message
|
468
|
+
@message || @data[:message]
|
469
|
+
end
|
470
|
+
end
|
471
|
+
|
404
472
|
class InternalServiceException < ServiceError
|
405
473
|
|
406
474
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -436,6 +504,21 @@ module Aws::Glue
|
|
436
504
|
end
|
437
505
|
end
|
438
506
|
|
507
|
+
class InvalidIntegrationStateFault < ServiceError
|
508
|
+
|
509
|
+
# @param [Seahorse::Client::RequestContext] context
|
510
|
+
# @param [String] message
|
511
|
+
# @param [Aws::Glue::Types::InvalidIntegrationStateFault] data
|
512
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
513
|
+
super(context, message, data)
|
514
|
+
end
|
515
|
+
|
516
|
+
# @return [String]
|
517
|
+
def message
|
518
|
+
@message || @data[:message]
|
519
|
+
end
|
520
|
+
end
|
521
|
+
|
439
522
|
class InvalidStateException < ServiceError
|
440
523
|
|
441
524
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -451,6 +534,21 @@ module Aws::Glue
|
|
451
534
|
end
|
452
535
|
end
|
453
536
|
|
537
|
+
class KMSKeyNotAccessibleFault < ServiceError
|
538
|
+
|
539
|
+
# @param [Seahorse::Client::RequestContext] context
|
540
|
+
# @param [String] message
|
541
|
+
# @param [Aws::Glue::Types::KMSKeyNotAccessibleFault] data
|
542
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
543
|
+
super(context, message, data)
|
544
|
+
end
|
545
|
+
|
546
|
+
# @return [String]
|
547
|
+
def message
|
548
|
+
@message || @data[:message]
|
549
|
+
end
|
550
|
+
end
|
551
|
+
|
454
552
|
class MLTransformNotReadyException < ServiceError
|
455
553
|
|
456
554
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -526,6 +624,21 @@ module Aws::Glue
|
|
526
624
|
end
|
527
625
|
end
|
528
626
|
|
627
|
+
class ResourceNotFoundException < ServiceError
|
628
|
+
|
629
|
+
# @param [Seahorse::Client::RequestContext] context
|
630
|
+
# @param [String] message
|
631
|
+
# @param [Aws::Glue::Types::ResourceNotFoundException] data
|
632
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
633
|
+
super(context, message, data)
|
634
|
+
end
|
635
|
+
|
636
|
+
# @return [String]
|
637
|
+
def message
|
638
|
+
@message || @data[:message]
|
639
|
+
end
|
640
|
+
end
|
641
|
+
|
529
642
|
class ResourceNotReadyException < ServiceError
|
530
643
|
|
531
644
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -601,6 +714,21 @@ module Aws::Glue
|
|
601
714
|
end
|
602
715
|
end
|
603
716
|
|
717
|
+
class TargetResourceNotFound < ServiceError
|
718
|
+
|
719
|
+
# @param [Seahorse::Client::RequestContext] context
|
720
|
+
# @param [String] message
|
721
|
+
# @param [Aws::Glue::Types::TargetResourceNotFound] data
|
722
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
723
|
+
super(context, message, data)
|
724
|
+
end
|
725
|
+
|
726
|
+
# @return [String]
|
727
|
+
def message
|
728
|
+
@message || @data[:message]
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
604
732
|
class ThrottlingException < ServiceError
|
605
733
|
|
606
734
|
# @param [Seahorse::Client::RequestContext] context
|