@aws-sdk/client-timestream-query 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 +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/TimestreamQueryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +130 -2
- package/dist-cjs/protocols/Aws_json1_0.js +176 -602
- package/dist-es/index.js +1 -0
- package/dist-es/models/TimestreamQueryServiceException.js +12 -0
- package/dist-es/models/models_0.js +120 -1
- package/dist-es/protocols/Aws_json1_0.js +350 -637
- package/dist-types/TimestreamQuery.d.ts +4 -4
- package/dist-types/TimestreamQueryClient.d.ts +2 -2
- package/dist-types/commands/CancelQueryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +2 -2
- package/dist-types/commands/QueryCommand.d.ts +1 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/TimestreamQueryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- 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/TimestreamQueryClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/TimestreamQueryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- 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 +34 -34
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 TimestreamQueryServiceException = (function (_super) {
|
|
4
|
+
__extends(TimestreamQueryServiceException, _super);
|
|
5
|
+
function TimestreamQueryServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, TimestreamQueryServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return TimestreamQueryServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { TimestreamQueryServiceException };
|
|
@@ -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 { TimestreamQueryServiceException as __BaseException } from "./TimestreamQueryServiceException";
|
|
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 CancelQueryRequest;
|
|
4
18
|
(function (CancelQueryRequest) {
|
|
5
19
|
CancelQueryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -8,6 +22,58 @@ export var CancelQueryResponse;
|
|
|
8
22
|
(function (CancelQueryResponse) {
|
|
9
23
|
CancelQueryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
24
|
})(CancelQueryResponse || (CancelQueryResponse = {}));
|
|
25
|
+
var InternalServerException = (function (_super) {
|
|
26
|
+
__extends(InternalServerException, _super);
|
|
27
|
+
function InternalServerException(opts) {
|
|
28
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
29
|
+
_this.name = "InternalServerException";
|
|
30
|
+
_this.$fault = "server";
|
|
31
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
32
|
+
_this.Message = opts.Message;
|
|
33
|
+
return _this;
|
|
34
|
+
}
|
|
35
|
+
return InternalServerException;
|
|
36
|
+
}(__BaseException));
|
|
37
|
+
export { InternalServerException };
|
|
38
|
+
var InvalidEndpointException = (function (_super) {
|
|
39
|
+
__extends(InvalidEndpointException, _super);
|
|
40
|
+
function InvalidEndpointException(opts) {
|
|
41
|
+
var _this = _super.call(this, __assign({ name: "InvalidEndpointException", $fault: "client" }, opts)) || this;
|
|
42
|
+
_this.name = "InvalidEndpointException";
|
|
43
|
+
_this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(_this, InvalidEndpointException.prototype);
|
|
45
|
+
_this.Message = opts.Message;
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return InvalidEndpointException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { InvalidEndpointException };
|
|
51
|
+
var ThrottlingException = (function (_super) {
|
|
52
|
+
__extends(ThrottlingException, _super);
|
|
53
|
+
function ThrottlingException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "ThrottlingException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
58
|
+
_this.Message = opts.Message;
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return ThrottlingException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { ThrottlingException };
|
|
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 };
|
|
11
77
|
export var ScalarType;
|
|
12
78
|
(function (ScalarType) {
|
|
13
79
|
ScalarType["BIGINT"] = "BIGINT";
|
|
@@ -22,6 +88,19 @@ export var ScalarType;
|
|
|
22
88
|
ScalarType["UNKNOWN"] = "UNKNOWN";
|
|
23
89
|
ScalarType["VARCHAR"] = "VARCHAR";
|
|
24
90
|
})(ScalarType || (ScalarType = {}));
|
|
91
|
+
var ConflictException = (function (_super) {
|
|
92
|
+
__extends(ConflictException, _super);
|
|
93
|
+
function ConflictException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ConflictException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
98
|
+
_this.Message = opts.Message;
|
|
99
|
+
return _this;
|
|
100
|
+
}
|
|
101
|
+
return ConflictException;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { ConflictException };
|
|
25
104
|
export var S3EncryptionOption;
|
|
26
105
|
(function (S3EncryptionOption) {
|
|
27
106
|
S3EncryptionOption["SSE_KMS"] = "SSE_KMS";
|
|
@@ -102,10 +181,37 @@ export var CreateScheduledQueryResponse;
|
|
|
102
181
|
(function (CreateScheduledQueryResponse) {
|
|
103
182
|
CreateScheduledQueryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
183
|
})(CreateScheduledQueryResponse || (CreateScheduledQueryResponse = {}));
|
|
184
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
185
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
186
|
+
function ServiceQuotaExceededException(opts) {
|
|
187
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
188
|
+
_this.name = "ServiceQuotaExceededException";
|
|
189
|
+
_this.$fault = "client";
|
|
190
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
191
|
+
_this.Message = opts.Message;
|
|
192
|
+
return _this;
|
|
193
|
+
}
|
|
194
|
+
return ServiceQuotaExceededException;
|
|
195
|
+
}(__BaseException));
|
|
196
|
+
export { ServiceQuotaExceededException };
|
|
105
197
|
export var DeleteScheduledQueryRequest;
|
|
106
198
|
(function (DeleteScheduledQueryRequest) {
|
|
107
199
|
DeleteScheduledQueryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
200
|
})(DeleteScheduledQueryRequest || (DeleteScheduledQueryRequest = {}));
|
|
201
|
+
var ResourceNotFoundException = (function (_super) {
|
|
202
|
+
__extends(ResourceNotFoundException, _super);
|
|
203
|
+
function ResourceNotFoundException(opts) {
|
|
204
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
205
|
+
_this.name = "ResourceNotFoundException";
|
|
206
|
+
_this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
208
|
+
_this.Message = opts.Message;
|
|
209
|
+
_this.ScheduledQueryArn = opts.ScheduledQueryArn;
|
|
210
|
+
return _this;
|
|
211
|
+
}
|
|
212
|
+
return ResourceNotFoundException;
|
|
213
|
+
}(__BaseException));
|
|
214
|
+
export { ResourceNotFoundException };
|
|
109
215
|
export var DescribeEndpointsRequest;
|
|
110
216
|
(function (DescribeEndpointsRequest) {
|
|
111
217
|
DescribeEndpointsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -194,6 +300,19 @@ export var PrepareQueryRequest;
|
|
|
194
300
|
(function (PrepareQueryRequest) {
|
|
195
301
|
PrepareQueryRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.QueryString && { QueryString: SENSITIVE_STRING }))); };
|
|
196
302
|
})(PrepareQueryRequest || (PrepareQueryRequest = {}));
|
|
303
|
+
var QueryExecutionException = (function (_super) {
|
|
304
|
+
__extends(QueryExecutionException, _super);
|
|
305
|
+
function QueryExecutionException(opts) {
|
|
306
|
+
var _this = _super.call(this, __assign({ name: "QueryExecutionException", $fault: "client" }, opts)) || this;
|
|
307
|
+
_this.name = "QueryExecutionException";
|
|
308
|
+
_this.$fault = "client";
|
|
309
|
+
Object.setPrototypeOf(_this, QueryExecutionException.prototype);
|
|
310
|
+
_this.Message = opts.Message;
|
|
311
|
+
return _this;
|
|
312
|
+
}
|
|
313
|
+
return QueryExecutionException;
|
|
314
|
+
}(__BaseException));
|
|
315
|
+
export { QueryExecutionException };
|
|
197
316
|
export var QueryRequest;
|
|
198
317
|
(function (QueryRequest) {
|
|
199
318
|
QueryRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.QueryString && { QueryString: SENSITIVE_STRING })), (obj.ClientToken && { ClientToken: SENSITIVE_STRING }))); };
|