@aws-sdk/client-glue 3.52.0 → 3.53.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.
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./GlueClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { GlueServiceException } from "./models/GlueServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var GlueServiceException = (function (_super) {
4
+ __extends(GlueServiceException, _super);
5
+ function GlueServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, GlueServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return GlueServiceException;
11
+ }(__ServiceException));
12
+ export { GlueServiceException };
@@ -1,4 +1,18 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
+ var AccessDeniedException = (function (_super) {
4
+ __extends(AccessDeniedException, _super);
5
+ function AccessDeniedException(opts) {
6
+ var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
+ _this.name = "AccessDeniedException";
8
+ _this.$fault = "client";
9
+ Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
+ _this.Message = opts.Message;
11
+ return _this;
12
+ }
13
+ return AccessDeniedException;
14
+ }(__BaseException));
15
+ export { AccessDeniedException };
2
16
  export var NotificationProperty;
3
17
  (function (NotificationProperty) {
4
18
  NotificationProperty.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -7,6 +21,19 @@ export var Action;
7
21
  (function (Action) {
8
22
  Action.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
23
  })(Action || (Action = {}));
24
+ var AlreadyExistsException = (function (_super) {
25
+ __extends(AlreadyExistsException, _super);
26
+ function AlreadyExistsException(opts) {
27
+ var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
28
+ _this.name = "AlreadyExistsException";
29
+ _this.$fault = "client";
30
+ Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
31
+ _this.Message = opts.Message;
32
+ return _this;
33
+ }
34
+ return AlreadyExistsException;
35
+ }(__BaseException));
36
+ export { AlreadyExistsException };
10
37
  export var AuditContext;
11
38
  (function (AuditContext) {
12
39
  AuditContext.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -59,6 +86,84 @@ export var BatchCreatePartitionResponse;
59
86
  (function (BatchCreatePartitionResponse) {
60
87
  BatchCreatePartitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
61
88
  })(BatchCreatePartitionResponse || (BatchCreatePartitionResponse = {}));
89
+ var EntityNotFoundException = (function (_super) {
90
+ __extends(EntityNotFoundException, _super);
91
+ function EntityNotFoundException(opts) {
92
+ var _this = _super.call(this, __assign({ name: "EntityNotFoundException", $fault: "client" }, opts)) || this;
93
+ _this.name = "EntityNotFoundException";
94
+ _this.$fault = "client";
95
+ Object.setPrototypeOf(_this, EntityNotFoundException.prototype);
96
+ _this.Message = opts.Message;
97
+ return _this;
98
+ }
99
+ return EntityNotFoundException;
100
+ }(__BaseException));
101
+ export { EntityNotFoundException };
102
+ var GlueEncryptionException = (function (_super) {
103
+ __extends(GlueEncryptionException, _super);
104
+ function GlueEncryptionException(opts) {
105
+ var _this = _super.call(this, __assign({ name: "GlueEncryptionException", $fault: "client" }, opts)) || this;
106
+ _this.name = "GlueEncryptionException";
107
+ _this.$fault = "client";
108
+ Object.setPrototypeOf(_this, GlueEncryptionException.prototype);
109
+ _this.Message = opts.Message;
110
+ return _this;
111
+ }
112
+ return GlueEncryptionException;
113
+ }(__BaseException));
114
+ export { GlueEncryptionException };
115
+ var InternalServiceException = (function (_super) {
116
+ __extends(InternalServiceException, _super);
117
+ function InternalServiceException(opts) {
118
+ var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
119
+ _this.name = "InternalServiceException";
120
+ _this.$fault = "server";
121
+ Object.setPrototypeOf(_this, InternalServiceException.prototype);
122
+ _this.Message = opts.Message;
123
+ return _this;
124
+ }
125
+ return InternalServiceException;
126
+ }(__BaseException));
127
+ export { InternalServiceException };
128
+ var InvalidInputException = (function (_super) {
129
+ __extends(InvalidInputException, _super);
130
+ function InvalidInputException(opts) {
131
+ var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
132
+ _this.name = "InvalidInputException";
133
+ _this.$fault = "client";
134
+ Object.setPrototypeOf(_this, InvalidInputException.prototype);
135
+ _this.Message = opts.Message;
136
+ return _this;
137
+ }
138
+ return InvalidInputException;
139
+ }(__BaseException));
140
+ export { InvalidInputException };
141
+ var OperationTimeoutException = (function (_super) {
142
+ __extends(OperationTimeoutException, _super);
143
+ function OperationTimeoutException(opts) {
144
+ var _this = _super.call(this, __assign({ name: "OperationTimeoutException", $fault: "client" }, opts)) || this;
145
+ _this.name = "OperationTimeoutException";
146
+ _this.$fault = "client";
147
+ Object.setPrototypeOf(_this, OperationTimeoutException.prototype);
148
+ _this.Message = opts.Message;
149
+ return _this;
150
+ }
151
+ return OperationTimeoutException;
152
+ }(__BaseException));
153
+ export { OperationTimeoutException };
154
+ var ResourceNumberLimitExceededException = (function (_super) {
155
+ __extends(ResourceNumberLimitExceededException, _super);
156
+ function ResourceNumberLimitExceededException(opts) {
157
+ var _this = _super.call(this, __assign({ name: "ResourceNumberLimitExceededException", $fault: "client" }, opts)) || this;
158
+ _this.name = "ResourceNumberLimitExceededException";
159
+ _this.$fault = "client";
160
+ Object.setPrototypeOf(_this, ResourceNumberLimitExceededException.prototype);
161
+ _this.Message = opts.Message;
162
+ return _this;
163
+ }
164
+ return ResourceNumberLimitExceededException;
165
+ }(__BaseException));
166
+ export { ResourceNumberLimitExceededException };
62
167
  export var BatchDeleteConnectionRequest;
63
168
  (function (BatchDeleteConnectionRequest) {
64
169
  BatchDeleteConnectionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -91,6 +196,19 @@ export var BatchDeleteTableResponse;
91
196
  (function (BatchDeleteTableResponse) {
92
197
  BatchDeleteTableResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
93
198
  })(BatchDeleteTableResponse || (BatchDeleteTableResponse = {}));
199
+ var ResourceNotReadyException = (function (_super) {
200
+ __extends(ResourceNotReadyException, _super);
201
+ function ResourceNotReadyException(opts) {
202
+ var _this = _super.call(this, __assign({ name: "ResourceNotReadyException", $fault: "client" }, opts)) || this;
203
+ _this.name = "ResourceNotReadyException";
204
+ _this.$fault = "client";
205
+ Object.setPrototypeOf(_this, ResourceNotReadyException.prototype);
206
+ _this.Message = opts.Message;
207
+ return _this;
208
+ }
209
+ return ResourceNotReadyException;
210
+ }(__BaseException));
211
+ export { ResourceNotReadyException };
94
212
  export var BatchDeleteTableVersionRequest;
95
213
  (function (BatchDeleteTableVersionRequest) {
96
214
  BatchDeleteTableVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -278,6 +396,19 @@ export var BatchGetPartitionResponse;
278
396
  (function (BatchGetPartitionResponse) {
279
397
  BatchGetPartitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
398
  })(BatchGetPartitionResponse || (BatchGetPartitionResponse = {}));
399
+ var InvalidStateException = (function (_super) {
400
+ __extends(InvalidStateException, _super);
401
+ function InvalidStateException(opts) {
402
+ var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
403
+ _this.name = "InvalidStateException";
404
+ _this.$fault = "client";
405
+ Object.setPrototypeOf(_this, InvalidStateException.prototype);
406
+ _this.Message = opts.Message;
407
+ return _this;
408
+ }
409
+ return InvalidStateException;
410
+ }(__BaseException));
411
+ export { InvalidStateException };
281
412
  export var BatchGetTriggersRequest;
282
413
  (function (BatchGetTriggersRequest) {
283
414
  BatchGetTriggersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -594,6 +725,19 @@ export var CreateCrawlerResponse;
594
725
  (function (CreateCrawlerResponse) {
595
726
  CreateCrawlerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
596
727
  })(CreateCrawlerResponse || (CreateCrawlerResponse = {}));
728
+ var ConcurrentModificationException = (function (_super) {
729
+ __extends(ConcurrentModificationException, _super);
730
+ function ConcurrentModificationException(opts) {
731
+ var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
732
+ _this.name = "ConcurrentModificationException";
733
+ _this.$fault = "client";
734
+ Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
735
+ _this.Message = opts.Message;
736
+ return _this;
737
+ }
738
+ return ConcurrentModificationException;
739
+ }(__BaseException));
740
+ export { ConcurrentModificationException };
597
741
  export var Permission;
598
742
  (function (Permission) {
599
743
  Permission["ALL"] = "ALL";
@@ -638,6 +782,32 @@ export var CreateDevEndpointResponse;
638
782
  (function (CreateDevEndpointResponse) {
639
783
  CreateDevEndpointResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
640
784
  })(CreateDevEndpointResponse || (CreateDevEndpointResponse = {}));
785
+ var IdempotentParameterMismatchException = (function (_super) {
786
+ __extends(IdempotentParameterMismatchException, _super);
787
+ function IdempotentParameterMismatchException(opts) {
788
+ var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
789
+ _this.name = "IdempotentParameterMismatchException";
790
+ _this.$fault = "client";
791
+ Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
792
+ _this.Message = opts.Message;
793
+ return _this;
794
+ }
795
+ return IdempotentParameterMismatchException;
796
+ }(__BaseException));
797
+ export { IdempotentParameterMismatchException };
798
+ var ValidationException = (function (_super) {
799
+ __extends(ValidationException, _super);
800
+ function ValidationException(opts) {
801
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
802
+ _this.name = "ValidationException";
803
+ _this.$fault = "client";
804
+ Object.setPrototypeOf(_this, ValidationException.prototype);
805
+ _this.Message = opts.Message;
806
+ return _this;
807
+ }
808
+ return ValidationException;
809
+ }(__BaseException));
810
+ export { ValidationException };
641
811
  export var CreateJobRequest;
642
812
  (function (CreateJobRequest) {
643
813
  CreateJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -912,6 +1082,19 @@ export var DeleteConnectionResponse;
912
1082
  (function (DeleteConnectionResponse) {
913
1083
  DeleteConnectionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
914
1084
  })(DeleteConnectionResponse || (DeleteConnectionResponse = {}));
1085
+ var CrawlerRunningException = (function (_super) {
1086
+ __extends(CrawlerRunningException, _super);
1087
+ function CrawlerRunningException(opts) {
1088
+ var _this = _super.call(this, __assign({ name: "CrawlerRunningException", $fault: "client" }, opts)) || this;
1089
+ _this.name = "CrawlerRunningException";
1090
+ _this.$fault = "client";
1091
+ Object.setPrototypeOf(_this, CrawlerRunningException.prototype);
1092
+ _this.Message = opts.Message;
1093
+ return _this;
1094
+ }
1095
+ return CrawlerRunningException;
1096
+ }(__BaseException));
1097
+ export { CrawlerRunningException };
915
1098
  export var DeleteCrawlerRequest;
916
1099
  (function (DeleteCrawlerRequest) {
917
1100
  DeleteCrawlerRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -920,6 +1103,19 @@ export var DeleteCrawlerResponse;
920
1103
  (function (DeleteCrawlerResponse) {
921
1104
  DeleteCrawlerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
922
1105
  })(DeleteCrawlerResponse || (DeleteCrawlerResponse = {}));
1106
+ var SchedulerTransitioningException = (function (_super) {
1107
+ __extends(SchedulerTransitioningException, _super);
1108
+ function SchedulerTransitioningException(opts) {
1109
+ var _this = _super.call(this, __assign({ name: "SchedulerTransitioningException", $fault: "client" }, opts)) || this;
1110
+ _this.name = "SchedulerTransitioningException";
1111
+ _this.$fault = "client";
1112
+ Object.setPrototypeOf(_this, SchedulerTransitioningException.prototype);
1113
+ _this.Message = opts.Message;
1114
+ return _this;
1115
+ }
1116
+ return SchedulerTransitioningException;
1117
+ }(__BaseException));
1118
+ export { SchedulerTransitioningException };
923
1119
  export var DeleteDatabaseRequest;
924
1120
  (function (DeleteDatabaseRequest) {
925
1121
  DeleteDatabaseRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -960,6 +1156,19 @@ export var DeletePartitionResponse;
960
1156
  (function (DeletePartitionResponse) {
961
1157
  DeletePartitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
962
1158
  })(DeletePartitionResponse || (DeletePartitionResponse = {}));
1159
+ var ConflictException = (function (_super) {
1160
+ __extends(ConflictException, _super);
1161
+ function ConflictException(opts) {
1162
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
1163
+ _this.name = "ConflictException";
1164
+ _this.$fault = "client";
1165
+ Object.setPrototypeOf(_this, ConflictException.prototype);
1166
+ _this.Message = opts.Message;
1167
+ return _this;
1168
+ }
1169
+ return ConflictException;
1170
+ }(__BaseException));
1171
+ export { ConflictException };
963
1172
  export var DeletePartitionIndexRequest;
964
1173
  (function (DeletePartitionIndexRequest) {
965
1174
  DeletePartitionIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -981,6 +1190,19 @@ export var DeleteRegistryResponse;
981
1190
  (function (DeleteRegistryResponse) {
982
1191
  DeleteRegistryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
983
1192
  })(DeleteRegistryResponse || (DeleteRegistryResponse = {}));
1193
+ var ConditionCheckFailureException = (function (_super) {
1194
+ __extends(ConditionCheckFailureException, _super);
1195
+ function ConditionCheckFailureException(opts) {
1196
+ var _this = _super.call(this, __assign({ name: "ConditionCheckFailureException", $fault: "client" }, opts)) || this;
1197
+ _this.name = "ConditionCheckFailureException";
1198
+ _this.$fault = "client";
1199
+ Object.setPrototypeOf(_this, ConditionCheckFailureException.prototype);
1200
+ _this.Message = opts.Message;
1201
+ return _this;
1202
+ }
1203
+ return ConditionCheckFailureException;
1204
+ }(__BaseException));
1205
+ export { ConditionCheckFailureException };
984
1206
  export var DeleteResourcePolicyRequest;
985
1207
  (function (DeleteResourcePolicyRequest) {
986
1208
  DeleteResourcePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { GlueServiceException as __BaseException } from "./GlueServiceException";
2
3
  export var GetCrawlerMetricsResponse;
3
4
  (function (GetCrawlerMetricsResponse) {
4
5
  GetCrawlerMetricsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -506,6 +507,19 @@ export var GetUnfilteredPartitionMetadataResponse;
506
507
  (function (GetUnfilteredPartitionMetadataResponse) {
507
508
  GetUnfilteredPartitionMetadataResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
508
509
  })(GetUnfilteredPartitionMetadataResponse || (GetUnfilteredPartitionMetadataResponse = {}));
510
+ var PermissionTypeMismatchException = (function (_super) {
511
+ __extends(PermissionTypeMismatchException, _super);
512
+ function PermissionTypeMismatchException(opts) {
513
+ var _this = _super.call(this, __assign({ name: "PermissionTypeMismatchException", $fault: "client" }, opts)) || this;
514
+ _this.name = "PermissionTypeMismatchException";
515
+ _this.$fault = "client";
516
+ Object.setPrototypeOf(_this, PermissionTypeMismatchException.prototype);
517
+ _this.Message = opts.Message;
518
+ return _this;
519
+ }
520
+ return PermissionTypeMismatchException;
521
+ }(__BaseException));
522
+ export { PermissionTypeMismatchException };
509
523
  export var GetUnfilteredPartitionsMetadataRequest;
510
524
  (function (GetUnfilteredPartitionsMetadataRequest) {
511
525
  GetUnfilteredPartitionsMetadataRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -769,6 +783,32 @@ export var ResetJobBookmarkResponse;
769
783
  (function (ResetJobBookmarkResponse) {
770
784
  ResetJobBookmarkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
771
785
  })(ResetJobBookmarkResponse || (ResetJobBookmarkResponse = {}));
786
+ var ConcurrentRunsExceededException = (function (_super) {
787
+ __extends(ConcurrentRunsExceededException, _super);
788
+ function ConcurrentRunsExceededException(opts) {
789
+ var _this = _super.call(this, __assign({ name: "ConcurrentRunsExceededException", $fault: "client" }, opts)) || this;
790
+ _this.name = "ConcurrentRunsExceededException";
791
+ _this.$fault = "client";
792
+ Object.setPrototypeOf(_this, ConcurrentRunsExceededException.prototype);
793
+ _this.Message = opts.Message;
794
+ return _this;
795
+ }
796
+ return ConcurrentRunsExceededException;
797
+ }(__BaseException));
798
+ export { ConcurrentRunsExceededException };
799
+ var IllegalWorkflowStateException = (function (_super) {
800
+ __extends(IllegalWorkflowStateException, _super);
801
+ function IllegalWorkflowStateException(opts) {
802
+ var _this = _super.call(this, __assign({ name: "IllegalWorkflowStateException", $fault: "client" }, opts)) || this;
803
+ _this.name = "IllegalWorkflowStateException";
804
+ _this.$fault = "client";
805
+ Object.setPrototypeOf(_this, IllegalWorkflowStateException.prototype);
806
+ _this.Message = opts.Message;
807
+ return _this;
808
+ }
809
+ return IllegalWorkflowStateException;
810
+ }(__BaseException));
811
+ export { IllegalWorkflowStateException };
772
812
  export var ResumeWorkflowRunRequest;
773
813
  (function (ResumeWorkflowRunRequest) {
774
814
  ResumeWorkflowRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -806,6 +846,19 @@ export var SearchTablesResponse;
806
846
  (function (SearchTablesResponse) {
807
847
  SearchTablesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
808
848
  })(SearchTablesResponse || (SearchTablesResponse = {}));
849
+ var IllegalBlueprintStateException = (function (_super) {
850
+ __extends(IllegalBlueprintStateException, _super);
851
+ function IllegalBlueprintStateException(opts) {
852
+ var _this = _super.call(this, __assign({ name: "IllegalBlueprintStateException", $fault: "client" }, opts)) || this;
853
+ _this.name = "IllegalBlueprintStateException";
854
+ _this.$fault = "client";
855
+ Object.setPrototypeOf(_this, IllegalBlueprintStateException.prototype);
856
+ _this.Message = opts.Message;
857
+ return _this;
858
+ }
859
+ return IllegalBlueprintStateException;
860
+ }(__BaseException));
861
+ export { IllegalBlueprintStateException };
809
862
  export var StartBlueprintRunRequest;
810
863
  (function (StartBlueprintRunRequest) {
811
864
  StartBlueprintRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -822,6 +875,32 @@ export var StartCrawlerResponse;
822
875
  (function (StartCrawlerResponse) {
823
876
  StartCrawlerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
824
877
  })(StartCrawlerResponse || (StartCrawlerResponse = {}));
878
+ var NoScheduleException = (function (_super) {
879
+ __extends(NoScheduleException, _super);
880
+ function NoScheduleException(opts) {
881
+ var _this = _super.call(this, __assign({ name: "NoScheduleException", $fault: "client" }, opts)) || this;
882
+ _this.name = "NoScheduleException";
883
+ _this.$fault = "client";
884
+ Object.setPrototypeOf(_this, NoScheduleException.prototype);
885
+ _this.Message = opts.Message;
886
+ return _this;
887
+ }
888
+ return NoScheduleException;
889
+ }(__BaseException));
890
+ export { NoScheduleException };
891
+ var SchedulerRunningException = (function (_super) {
892
+ __extends(SchedulerRunningException, _super);
893
+ function SchedulerRunningException(opts) {
894
+ var _this = _super.call(this, __assign({ name: "SchedulerRunningException", $fault: "client" }, opts)) || this;
895
+ _this.name = "SchedulerRunningException";
896
+ _this.$fault = "client";
897
+ Object.setPrototypeOf(_this, SchedulerRunningException.prototype);
898
+ _this.Message = opts.Message;
899
+ return _this;
900
+ }
901
+ return SchedulerRunningException;
902
+ }(__BaseException));
903
+ export { SchedulerRunningException };
825
904
  export var StartCrawlerScheduleRequest;
826
905
  (function (StartCrawlerScheduleRequest) {
827
906
  StartCrawlerScheduleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -854,6 +933,19 @@ export var StartJobRunResponse;
854
933
  (function (StartJobRunResponse) {
855
934
  StartJobRunResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
856
935
  })(StartJobRunResponse || (StartJobRunResponse = {}));
936
+ var MLTransformNotReadyException = (function (_super) {
937
+ __extends(MLTransformNotReadyException, _super);
938
+ function MLTransformNotReadyException(opts) {
939
+ var _this = _super.call(this, __assign({ name: "MLTransformNotReadyException", $fault: "client" }, opts)) || this;
940
+ _this.name = "MLTransformNotReadyException";
941
+ _this.$fault = "client";
942
+ Object.setPrototypeOf(_this, MLTransformNotReadyException.prototype);
943
+ _this.Message = opts.Message;
944
+ return _this;
945
+ }
946
+ return MLTransformNotReadyException;
947
+ }(__BaseException));
948
+ export { MLTransformNotReadyException };
857
949
  export var StartMLEvaluationTaskRunRequest;
858
950
  (function (StartMLEvaluationTaskRunRequest) {
859
951
  StartMLEvaluationTaskRunRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -886,6 +978,32 @@ export var StartWorkflowRunResponse;
886
978
  (function (StartWorkflowRunResponse) {
887
979
  StartWorkflowRunResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
888
980
  })(StartWorkflowRunResponse || (StartWorkflowRunResponse = {}));
981
+ var CrawlerNotRunningException = (function (_super) {
982
+ __extends(CrawlerNotRunningException, _super);
983
+ function CrawlerNotRunningException(opts) {
984
+ var _this = _super.call(this, __assign({ name: "CrawlerNotRunningException", $fault: "client" }, opts)) || this;
985
+ _this.name = "CrawlerNotRunningException";
986
+ _this.$fault = "client";
987
+ Object.setPrototypeOf(_this, CrawlerNotRunningException.prototype);
988
+ _this.Message = opts.Message;
989
+ return _this;
990
+ }
991
+ return CrawlerNotRunningException;
992
+ }(__BaseException));
993
+ export { CrawlerNotRunningException };
994
+ var CrawlerStoppingException = (function (_super) {
995
+ __extends(CrawlerStoppingException, _super);
996
+ function CrawlerStoppingException(opts) {
997
+ var _this = _super.call(this, __assign({ name: "CrawlerStoppingException", $fault: "client" }, opts)) || this;
998
+ _this.name = "CrawlerStoppingException";
999
+ _this.$fault = "client";
1000
+ Object.setPrototypeOf(_this, CrawlerStoppingException.prototype);
1001
+ _this.Message = opts.Message;
1002
+ return _this;
1003
+ }
1004
+ return CrawlerStoppingException;
1005
+ }(__BaseException));
1006
+ export { CrawlerStoppingException };
889
1007
  export var StopCrawlerRequest;
890
1008
  (function (StopCrawlerRequest) {
891
1009
  StopCrawlerRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -894,6 +1012,19 @@ export var StopCrawlerResponse;
894
1012
  (function (StopCrawlerResponse) {
895
1013
  StopCrawlerResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
896
1014
  })(StopCrawlerResponse || (StopCrawlerResponse = {}));
1015
+ var SchedulerNotRunningException = (function (_super) {
1016
+ __extends(SchedulerNotRunningException, _super);
1017
+ function SchedulerNotRunningException(opts) {
1018
+ var _this = _super.call(this, __assign({ name: "SchedulerNotRunningException", $fault: "client" }, opts)) || this;
1019
+ _this.name = "SchedulerNotRunningException";
1020
+ _this.$fault = "client";
1021
+ Object.setPrototypeOf(_this, SchedulerNotRunningException.prototype);
1022
+ _this.Message = opts.Message;
1023
+ return _this;
1024
+ }
1025
+ return SchedulerNotRunningException;
1026
+ }(__BaseException));
1027
+ export { SchedulerNotRunningException };
897
1028
  export var StopCrawlerScheduleRequest;
898
1029
  (function (StopCrawlerScheduleRequest) {
899
1030
  StopCrawlerScheduleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -966,6 +1097,19 @@ export var UpdateClassifierResponse;
966
1097
  (function (UpdateClassifierResponse) {
967
1098
  UpdateClassifierResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
968
1099
  })(UpdateClassifierResponse || (UpdateClassifierResponse = {}));
1100
+ var VersionMismatchException = (function (_super) {
1101
+ __extends(VersionMismatchException, _super);
1102
+ function VersionMismatchException(opts) {
1103
+ var _this = _super.call(this, __assign({ name: "VersionMismatchException", $fault: "client" }, opts)) || this;
1104
+ _this.name = "VersionMismatchException";
1105
+ _this.$fault = "client";
1106
+ Object.setPrototypeOf(_this, VersionMismatchException.prototype);
1107
+ _this.Message = opts.Message;
1108
+ return _this;
1109
+ }
1110
+ return VersionMismatchException;
1111
+ }(__BaseException));
1112
+ export { VersionMismatchException };
969
1113
  export var UpdateColumnStatisticsForPartitionRequest;
970
1114
  (function (UpdateColumnStatisticsForPartitionRequest) {
971
1115
  UpdateColumnStatisticsForPartitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };