@aws-sdk/client-redshift-data 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/RedshiftDataServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +103 -1
- package/dist-cjs/protocols/Aws_json1_1.js +115 -326
- package/dist-es/index.js +1 -0
- package/dist-es/models/RedshiftDataServiceException.js +12 -0
- package/dist-es/models/models_0.js +96 -1
- package/dist-es/protocols/Aws_json1_1.js +226 -353
- package/dist-types/RedshiftDataClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/RedshiftDataServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/RedshiftDataClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/RedshiftDataServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var RedshiftDataServiceException = (function (_super) {
|
|
4
|
+
__extends(RedshiftDataServiceException, _super);
|
|
5
|
+
function RedshiftDataServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, RedshiftDataServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return RedshiftDataServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { RedshiftDataServiceException };
|
|
@@ -1,4 +1,32 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException";
|
|
3
|
+
var ActiveStatementsExceededException = (function (_super) {
|
|
4
|
+
__extends(ActiveStatementsExceededException, _super);
|
|
5
|
+
function ActiveStatementsExceededException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ActiveStatementsExceededException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ActiveStatementsExceededException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ActiveStatementsExceededException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return ActiveStatementsExceededException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { ActiveStatementsExceededException };
|
|
16
|
+
var BatchExecuteStatementException = (function (_super) {
|
|
17
|
+
__extends(BatchExecuteStatementException, _super);
|
|
18
|
+
function BatchExecuteStatementException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "BatchExecuteStatementException", $fault: "server" }, opts)) || this;
|
|
20
|
+
_this.name = "BatchExecuteStatementException";
|
|
21
|
+
_this.$fault = "server";
|
|
22
|
+
Object.setPrototypeOf(_this, BatchExecuteStatementException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
_this.StatementId = opts.StatementId;
|
|
25
|
+
return _this;
|
|
26
|
+
}
|
|
27
|
+
return BatchExecuteStatementException;
|
|
28
|
+
}(__BaseException));
|
|
29
|
+
export { BatchExecuteStatementException };
|
|
2
30
|
export var BatchExecuteStatementInput;
|
|
3
31
|
(function (BatchExecuteStatementInput) {
|
|
4
32
|
BatchExecuteStatementInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +35,19 @@ export var BatchExecuteStatementOutput;
|
|
|
7
35
|
(function (BatchExecuteStatementOutput) {
|
|
8
36
|
BatchExecuteStatementOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
37
|
})(BatchExecuteStatementOutput || (BatchExecuteStatementOutput = {}));
|
|
38
|
+
var ValidationException = (function (_super) {
|
|
39
|
+
__extends(ValidationException, _super);
|
|
40
|
+
function ValidationException(opts) {
|
|
41
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
42
|
+
_this.name = "ValidationException";
|
|
43
|
+
_this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
45
|
+
_this.Message = opts.Message;
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return ValidationException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { ValidationException };
|
|
10
51
|
export var CancelStatementRequest;
|
|
11
52
|
(function (CancelStatementRequest) {
|
|
12
53
|
CancelStatementRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -15,6 +56,46 @@ export var CancelStatementResponse;
|
|
|
15
56
|
(function (CancelStatementResponse) {
|
|
16
57
|
CancelStatementResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
58
|
})(CancelStatementResponse || (CancelStatementResponse = {}));
|
|
59
|
+
var DatabaseConnectionException = (function (_super) {
|
|
60
|
+
__extends(DatabaseConnectionException, _super);
|
|
61
|
+
function DatabaseConnectionException(opts) {
|
|
62
|
+
var _this = _super.call(this, __assign({ name: "DatabaseConnectionException", $fault: "server" }, opts)) || this;
|
|
63
|
+
_this.name = "DatabaseConnectionException";
|
|
64
|
+
_this.$fault = "server";
|
|
65
|
+
Object.setPrototypeOf(_this, DatabaseConnectionException.prototype);
|
|
66
|
+
_this.Message = opts.Message;
|
|
67
|
+
return _this;
|
|
68
|
+
}
|
|
69
|
+
return DatabaseConnectionException;
|
|
70
|
+
}(__BaseException));
|
|
71
|
+
export { DatabaseConnectionException };
|
|
72
|
+
var InternalServerException = (function (_super) {
|
|
73
|
+
__extends(InternalServerException, _super);
|
|
74
|
+
function InternalServerException(opts) {
|
|
75
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
76
|
+
_this.name = "InternalServerException";
|
|
77
|
+
_this.$fault = "server";
|
|
78
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
79
|
+
_this.Message = opts.Message;
|
|
80
|
+
return _this;
|
|
81
|
+
}
|
|
82
|
+
return InternalServerException;
|
|
83
|
+
}(__BaseException));
|
|
84
|
+
export { InternalServerException };
|
|
85
|
+
var ResourceNotFoundException = (function (_super) {
|
|
86
|
+
__extends(ResourceNotFoundException, _super);
|
|
87
|
+
function ResourceNotFoundException(opts) {
|
|
88
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
89
|
+
_this.name = "ResourceNotFoundException";
|
|
90
|
+
_this.$fault = "client";
|
|
91
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
92
|
+
_this.Message = opts.Message;
|
|
93
|
+
_this.ResourceId = opts.ResourceId;
|
|
94
|
+
return _this;
|
|
95
|
+
}
|
|
96
|
+
return ResourceNotFoundException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { ResourceNotFoundException };
|
|
18
99
|
export var ColumnMetadata;
|
|
19
100
|
(function (ColumnMetadata) {
|
|
20
101
|
ColumnMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -62,6 +143,20 @@ export var DescribeTableResponse;
|
|
|
62
143
|
(function (DescribeTableResponse) {
|
|
63
144
|
DescribeTableResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
64
145
|
})(DescribeTableResponse || (DescribeTableResponse = {}));
|
|
146
|
+
var ExecuteStatementException = (function (_super) {
|
|
147
|
+
__extends(ExecuteStatementException, _super);
|
|
148
|
+
function ExecuteStatementException(opts) {
|
|
149
|
+
var _this = _super.call(this, __assign({ name: "ExecuteStatementException", $fault: "server" }, opts)) || this;
|
|
150
|
+
_this.name = "ExecuteStatementException";
|
|
151
|
+
_this.$fault = "server";
|
|
152
|
+
Object.setPrototypeOf(_this, ExecuteStatementException.prototype);
|
|
153
|
+
_this.Message = opts.Message;
|
|
154
|
+
_this.StatementId = opts.StatementId;
|
|
155
|
+
return _this;
|
|
156
|
+
}
|
|
157
|
+
return ExecuteStatementException;
|
|
158
|
+
}(__BaseException));
|
|
159
|
+
export { ExecuteStatementException };
|
|
65
160
|
export var ExecuteStatementInput;
|
|
66
161
|
(function (ExecuteStatementInput) {
|
|
67
162
|
ExecuteStatementInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|