@aws-sdk/client-databrew 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 "./DataBrewClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { DataBrewServiceException } from "./models/DataBrewServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var DataBrewServiceException = (function (_super) {
4
+ __extends(DataBrewServiceException, _super);
5
+ function DataBrewServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, DataBrewServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return DataBrewServiceException;
11
+ }(__ServiceException));
12
+ export { DataBrewServiceException };
@@ -1,5 +1,19 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { DataBrewServiceException as __BaseException } from "./DataBrewServiceException";
4
+ var AccessDeniedException = (function (_super) {
5
+ __extends(AccessDeniedException, _super);
6
+ function AccessDeniedException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
+ _this.name = "AccessDeniedException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
+ _this.Message = opts.Message;
12
+ return _this;
13
+ }
14
+ return AccessDeniedException;
15
+ }(__BaseException));
16
+ export { AccessDeniedException };
3
17
  export var AllowedStatistics;
4
18
  (function (AllowedStatistics) {
5
19
  AllowedStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -21,6 +35,45 @@ export var BatchDeleteRecipeVersionResponse;
21
35
  (function (BatchDeleteRecipeVersionResponse) {
22
36
  BatchDeleteRecipeVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
23
37
  })(BatchDeleteRecipeVersionResponse || (BatchDeleteRecipeVersionResponse = {}));
38
+ var ConflictException = (function (_super) {
39
+ __extends(ConflictException, _super);
40
+ function ConflictException(opts) {
41
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
42
+ _this.name = "ConflictException";
43
+ _this.$fault = "client";
44
+ Object.setPrototypeOf(_this, ConflictException.prototype);
45
+ _this.Message = opts.Message;
46
+ return _this;
47
+ }
48
+ return ConflictException;
49
+ }(__BaseException));
50
+ export { ConflictException };
51
+ var ResourceNotFoundException = (function (_super) {
52
+ __extends(ResourceNotFoundException, _super);
53
+ function ResourceNotFoundException(opts) {
54
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
55
+ _this.name = "ResourceNotFoundException";
56
+ _this.$fault = "client";
57
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
58
+ _this.Message = opts.Message;
59
+ return _this;
60
+ }
61
+ return ResourceNotFoundException;
62
+ }(__BaseException));
63
+ export { ResourceNotFoundException };
64
+ var ValidationException = (function (_super) {
65
+ __extends(ValidationException, _super);
66
+ function ValidationException(opts) {
67
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
68
+ _this.name = "ValidationException";
69
+ _this.$fault = "client";
70
+ Object.setPrototypeOf(_this, ValidationException.prototype);
71
+ _this.Message = opts.Message;
72
+ return _this;
73
+ }
74
+ return ValidationException;
75
+ }(__BaseException));
76
+ export { ValidationException };
24
77
  export var InputFormat;
25
78
  (function (InputFormat) {
26
79
  InputFormat["CSV"] = "CSV";
@@ -107,6 +160,19 @@ export var CreateDatasetResponse;
107
160
  (function (CreateDatasetResponse) {
108
161
  CreateDatasetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
109
162
  })(CreateDatasetResponse || (CreateDatasetResponse = {}));
163
+ var ServiceQuotaExceededException = (function (_super) {
164
+ __extends(ServiceQuotaExceededException, _super);
165
+ function ServiceQuotaExceededException(opts) {
166
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
167
+ _this.name = "ServiceQuotaExceededException";
168
+ _this.$fault = "client";
169
+ Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
170
+ _this.Message = opts.Message;
171
+ return _this;
172
+ }
173
+ return ServiceQuotaExceededException;
174
+ }(__BaseException));
175
+ export { ServiceQuotaExceededException };
110
176
  export var ColumnSelector;
111
177
  (function (ColumnSelector) {
112
178
  ColumnSelector.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -184,6 +250,19 @@ export var CreateProjectResponse;
184
250
  (function (CreateProjectResponse) {
185
251
  CreateProjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
252
  })(CreateProjectResponse || (CreateProjectResponse = {}));
253
+ var InternalServerException = (function (_super) {
254
+ __extends(InternalServerException, _super);
255
+ function InternalServerException(opts) {
256
+ var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
257
+ _this.name = "InternalServerException";
258
+ _this.$fault = "server";
259
+ Object.setPrototypeOf(_this, InternalServerException.prototype);
260
+ _this.Message = opts.Message;
261
+ return _this;
262
+ }
263
+ return InternalServerException;
264
+ }(__BaseException));
265
+ export { InternalServerException };
187
266
  export var RecipeAction;
188
267
  (function (RecipeAction) {
189
268
  RecipeAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };