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/sig/errors.rbs
CHANGED
@@ -77,6 +77,18 @@ module Aws
|
|
77
77
|
class IllegalWorkflowStateException < ::Aws::Errors::ServiceError
|
78
78
|
def message: () -> ::String
|
79
79
|
end
|
80
|
+
class IntegrationConflictOperationFault < ::Aws::Errors::ServiceError
|
81
|
+
def message: () -> ::String
|
82
|
+
end
|
83
|
+
class IntegrationNotFoundFault < ::Aws::Errors::ServiceError
|
84
|
+
def message: () -> ::String
|
85
|
+
end
|
86
|
+
class IntegrationQuotaExceededFault < ::Aws::Errors::ServiceError
|
87
|
+
def message: () -> ::String
|
88
|
+
end
|
89
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
90
|
+
def message: () -> ::String
|
91
|
+
end
|
80
92
|
class InternalServiceException < ::Aws::Errors::ServiceError
|
81
93
|
def message: () -> ::String
|
82
94
|
end
|
@@ -84,9 +96,15 @@ module Aws
|
|
84
96
|
def message: () -> ::String
|
85
97
|
def from_federation_source: () -> ::String
|
86
98
|
end
|
99
|
+
class InvalidIntegrationStateFault < ::Aws::Errors::ServiceError
|
100
|
+
def message: () -> ::String
|
101
|
+
end
|
87
102
|
class InvalidStateException < ::Aws::Errors::ServiceError
|
88
103
|
def message: () -> ::String
|
89
104
|
end
|
105
|
+
class KMSKeyNotAccessibleFault < ::Aws::Errors::ServiceError
|
106
|
+
def message: () -> ::String
|
107
|
+
end
|
90
108
|
class MLTransformNotReadyException < ::Aws::Errors::ServiceError
|
91
109
|
def message: () -> ::String
|
92
110
|
end
|
@@ -102,6 +120,9 @@ module Aws
|
|
102
120
|
class PermissionTypeMismatchException < ::Aws::Errors::ServiceError
|
103
121
|
def message: () -> ::String
|
104
122
|
end
|
123
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
124
|
+
def message: () -> ::String
|
125
|
+
end
|
105
126
|
class ResourceNotReadyException < ::Aws::Errors::ServiceError
|
106
127
|
def message: () -> ::String
|
107
128
|
end
|
@@ -117,6 +138,9 @@ module Aws
|
|
117
138
|
class SchedulerTransitioningException < ::Aws::Errors::ServiceError
|
118
139
|
def message: () -> ::String
|
119
140
|
end
|
141
|
+
class TargetResourceNotFound < ::Aws::Errors::ServiceError
|
142
|
+
def message: () -> ::String
|
143
|
+
end
|
120
144
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
121
145
|
def message: () -> ::String
|
122
146
|
end
|