@aws-sdk/client-timestream-query 3.490.0 → 3.495.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-cjs/TimestreamQuery.js +1 -37
- package/dist-cjs/TimestreamQueryClient.js +1 -48
- package/dist-cjs/commands/CancelQueryCommand.js +1 -30
- package/dist-cjs/commands/CreateScheduledQueryCommand.js +1 -31
- package/dist-cjs/commands/DeleteScheduledQueryCommand.js +1 -30
- package/dist-cjs/commands/DescribeEndpointsCommand.js +1 -28
- package/dist-cjs/commands/DescribeScheduledQueryCommand.js +1 -31
- package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +1 -31
- package/dist-cjs/commands/ListScheduledQueriesCommand.js +1 -30
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -30
- package/dist-cjs/commands/PrepareQueryCommand.js +1 -31
- package/dist-cjs/commands/QueryCommand.js +1 -31
- package/dist-cjs/commands/TagResourceCommand.js +1 -30
- package/dist-cjs/commands/UntagResourceCommand.js +1 -30
- package/dist-cjs/commands/UpdateScheduledQueryCommand.js +1 -30
- package/dist-cjs/commands/index.js +1 -16
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1761 -11
- package/dist-cjs/models/TimestreamQueryServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -213
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListScheduledQueriesPaginator.js +1 -7
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
- package/dist-cjs/pagination/QueryPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_json1_0.js +1 -1058
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +41 -41
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TimestreamQueryServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class TimestreamQueryServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, TimestreamQueryServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.TimestreamQueryServiceException = TimestreamQueryServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,213 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PrepareQueryResponseFilterSensitiveLog = exports.QueryRequestFilterSensitiveLog = exports.PrepareQueryRequestFilterSensitiveLog = exports.ExecuteScheduledQueryRequestFilterSensitiveLog = exports.DescribeScheduledQueryResponseFilterSensitiveLog = exports.ScheduledQueryDescriptionFilterSensitiveLog = exports.CreateScheduledQueryRequestFilterSensitiveLog = exports.QueryExecutionException = exports.ScheduledQueryState = exports.ScheduledQueryRunStatus = exports.ResourceNotFoundException = exports.ServiceQuotaExceededException = exports.ScalarMeasureValueType = exports.MeasureValueType = exports.DimensionValueType = exports.S3EncryptionOption = exports.ConflictException = exports.ScalarType = exports.ValidationException = exports.ThrottlingException = exports.InvalidEndpointException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const TimestreamQueryServiceException_1 = require("./TimestreamQueryServiceException");
|
|
6
|
-
class AccessDeniedException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
7
|
-
constructor(opts) {
|
|
8
|
-
super({
|
|
9
|
-
name: "AccessDeniedException",
|
|
10
|
-
$fault: "client",
|
|
11
|
-
...opts,
|
|
12
|
-
});
|
|
13
|
-
this.name = "AccessDeniedException";
|
|
14
|
-
this.$fault = "client";
|
|
15
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
-
this.Message = opts.Message;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
-
class InternalServerException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
21
|
-
constructor(opts) {
|
|
22
|
-
super({
|
|
23
|
-
name: "InternalServerException",
|
|
24
|
-
$fault: "server",
|
|
25
|
-
...opts,
|
|
26
|
-
});
|
|
27
|
-
this.name = "InternalServerException";
|
|
28
|
-
this.$fault = "server";
|
|
29
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
30
|
-
this.Message = opts.Message;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
exports.InternalServerException = InternalServerException;
|
|
34
|
-
class InvalidEndpointException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
35
|
-
constructor(opts) {
|
|
36
|
-
super({
|
|
37
|
-
name: "InvalidEndpointException",
|
|
38
|
-
$fault: "client",
|
|
39
|
-
...opts,
|
|
40
|
-
});
|
|
41
|
-
this.name = "InvalidEndpointException";
|
|
42
|
-
this.$fault = "client";
|
|
43
|
-
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
44
|
-
this.Message = opts.Message;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
exports.InvalidEndpointException = InvalidEndpointException;
|
|
48
|
-
class ThrottlingException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
49
|
-
constructor(opts) {
|
|
50
|
-
super({
|
|
51
|
-
name: "ThrottlingException",
|
|
52
|
-
$fault: "client",
|
|
53
|
-
...opts,
|
|
54
|
-
});
|
|
55
|
-
this.name = "ThrottlingException";
|
|
56
|
-
this.$fault = "client";
|
|
57
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
58
|
-
this.Message = opts.Message;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
exports.ThrottlingException = ThrottlingException;
|
|
62
|
-
class ValidationException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
63
|
-
constructor(opts) {
|
|
64
|
-
super({
|
|
65
|
-
name: "ValidationException",
|
|
66
|
-
$fault: "client",
|
|
67
|
-
...opts,
|
|
68
|
-
});
|
|
69
|
-
this.name = "ValidationException";
|
|
70
|
-
this.$fault = "client";
|
|
71
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
72
|
-
this.Message = opts.Message;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
exports.ValidationException = ValidationException;
|
|
76
|
-
exports.ScalarType = {
|
|
77
|
-
BIGINT: "BIGINT",
|
|
78
|
-
BOOLEAN: "BOOLEAN",
|
|
79
|
-
DATE: "DATE",
|
|
80
|
-
DOUBLE: "DOUBLE",
|
|
81
|
-
INTEGER: "INTEGER",
|
|
82
|
-
INTERVAL_DAY_TO_SECOND: "INTERVAL_DAY_TO_SECOND",
|
|
83
|
-
INTERVAL_YEAR_TO_MONTH: "INTERVAL_YEAR_TO_MONTH",
|
|
84
|
-
TIME: "TIME",
|
|
85
|
-
TIMESTAMP: "TIMESTAMP",
|
|
86
|
-
UNKNOWN: "UNKNOWN",
|
|
87
|
-
VARCHAR: "VARCHAR",
|
|
88
|
-
};
|
|
89
|
-
class ConflictException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
90
|
-
constructor(opts) {
|
|
91
|
-
super({
|
|
92
|
-
name: "ConflictException",
|
|
93
|
-
$fault: "client",
|
|
94
|
-
...opts,
|
|
95
|
-
});
|
|
96
|
-
this.name = "ConflictException";
|
|
97
|
-
this.$fault = "client";
|
|
98
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
99
|
-
this.Message = opts.Message;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
exports.ConflictException = ConflictException;
|
|
103
|
-
exports.S3EncryptionOption = {
|
|
104
|
-
SSE_KMS: "SSE_KMS",
|
|
105
|
-
SSE_S3: "SSE_S3",
|
|
106
|
-
};
|
|
107
|
-
exports.DimensionValueType = {
|
|
108
|
-
VARCHAR: "VARCHAR",
|
|
109
|
-
};
|
|
110
|
-
exports.MeasureValueType = {
|
|
111
|
-
BIGINT: "BIGINT",
|
|
112
|
-
BOOLEAN: "BOOLEAN",
|
|
113
|
-
DOUBLE: "DOUBLE",
|
|
114
|
-
MULTI: "MULTI",
|
|
115
|
-
VARCHAR: "VARCHAR",
|
|
116
|
-
};
|
|
117
|
-
exports.ScalarMeasureValueType = {
|
|
118
|
-
BIGINT: "BIGINT",
|
|
119
|
-
BOOLEAN: "BOOLEAN",
|
|
120
|
-
DOUBLE: "DOUBLE",
|
|
121
|
-
TIMESTAMP: "TIMESTAMP",
|
|
122
|
-
VARCHAR: "VARCHAR",
|
|
123
|
-
};
|
|
124
|
-
class ServiceQuotaExceededException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "ServiceQuotaExceededException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
this.name = "ServiceQuotaExceededException";
|
|
132
|
-
this.$fault = "client";
|
|
133
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
134
|
-
this.Message = opts.Message;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
138
|
-
class ResourceNotFoundException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ResourceNotFoundException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
this.name = "ResourceNotFoundException";
|
|
146
|
-
this.$fault = "client";
|
|
147
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
148
|
-
this.Message = opts.Message;
|
|
149
|
-
this.ScheduledQueryArn = opts.ScheduledQueryArn;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
153
|
-
exports.ScheduledQueryRunStatus = {
|
|
154
|
-
AUTO_TRIGGER_FAILURE: "AUTO_TRIGGER_FAILURE",
|
|
155
|
-
AUTO_TRIGGER_SUCCESS: "AUTO_TRIGGER_SUCCESS",
|
|
156
|
-
MANUAL_TRIGGER_FAILURE: "MANUAL_TRIGGER_FAILURE",
|
|
157
|
-
MANUAL_TRIGGER_SUCCESS: "MANUAL_TRIGGER_SUCCESS",
|
|
158
|
-
};
|
|
159
|
-
exports.ScheduledQueryState = {
|
|
160
|
-
DISABLED: "DISABLED",
|
|
161
|
-
ENABLED: "ENABLED",
|
|
162
|
-
};
|
|
163
|
-
class QueryExecutionException extends TimestreamQueryServiceException_1.TimestreamQueryServiceException {
|
|
164
|
-
constructor(opts) {
|
|
165
|
-
super({
|
|
166
|
-
name: "QueryExecutionException",
|
|
167
|
-
$fault: "client",
|
|
168
|
-
...opts,
|
|
169
|
-
});
|
|
170
|
-
this.name = "QueryExecutionException";
|
|
171
|
-
this.$fault = "client";
|
|
172
|
-
Object.setPrototypeOf(this, QueryExecutionException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
exports.QueryExecutionException = QueryExecutionException;
|
|
177
|
-
const CreateScheduledQueryRequestFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
|
|
180
|
-
...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
|
|
181
|
-
});
|
|
182
|
-
exports.CreateScheduledQueryRequestFilterSensitiveLog = CreateScheduledQueryRequestFilterSensitiveLog;
|
|
183
|
-
const ScheduledQueryDescriptionFilterSensitiveLog = (obj) => ({
|
|
184
|
-
...obj,
|
|
185
|
-
...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
|
|
186
|
-
});
|
|
187
|
-
exports.ScheduledQueryDescriptionFilterSensitiveLog = ScheduledQueryDescriptionFilterSensitiveLog;
|
|
188
|
-
const DescribeScheduledQueryResponseFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
...(obj.ScheduledQuery && { ScheduledQuery: (0, exports.ScheduledQueryDescriptionFilterSensitiveLog)(obj.ScheduledQuery) }),
|
|
191
|
-
});
|
|
192
|
-
exports.DescribeScheduledQueryResponseFilterSensitiveLog = DescribeScheduledQueryResponseFilterSensitiveLog;
|
|
193
|
-
const ExecuteScheduledQueryRequestFilterSensitiveLog = (obj) => ({
|
|
194
|
-
...obj,
|
|
195
|
-
...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
|
|
196
|
-
});
|
|
197
|
-
exports.ExecuteScheduledQueryRequestFilterSensitiveLog = ExecuteScheduledQueryRequestFilterSensitiveLog;
|
|
198
|
-
const PrepareQueryRequestFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
|
|
201
|
-
});
|
|
202
|
-
exports.PrepareQueryRequestFilterSensitiveLog = PrepareQueryRequestFilterSensitiveLog;
|
|
203
|
-
const QueryRequestFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
|
|
206
|
-
...(obj.ClientToken && { ClientToken: smithy_client_1.SENSITIVE_STRING }),
|
|
207
|
-
});
|
|
208
|
-
exports.QueryRequestFilterSensitiveLog = QueryRequestFilterSensitiveLog;
|
|
209
|
-
const PrepareQueryResponseFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
...(obj.QueryString && { QueryString: smithy_client_1.SENSITIVE_STRING }),
|
|
212
|
-
});
|
|
213
|
-
exports.PrepareQueryResponseFilterSensitiveLog = PrepareQueryResponseFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListScheduledQueries = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListScheduledQueriesCommand_1 = require("../commands/ListScheduledQueriesCommand");
|
|
6
|
-
const TimestreamQueryClient_1 = require("../TimestreamQueryClient");
|
|
7
|
-
exports.paginateListScheduledQueries = (0, core_1.createPaginator)(TimestreamQueryClient_1.TimestreamQueryClient, ListScheduledQueriesCommand_1.ListScheduledQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListTagsForResource = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListTagsForResourceCommand_1 = require("../commands/ListTagsForResourceCommand");
|
|
6
|
-
const TimestreamQueryClient_1 = require("../TimestreamQueryClient");
|
|
7
|
-
exports.paginateListTagsForResource = (0, core_1.createPaginator)(TimestreamQueryClient_1.TimestreamQueryClient, ListTagsForResourceCommand_1.ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateQuery = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const QueryCommand_1 = require("../commands/QueryCommand");
|
|
6
|
-
const TimestreamQueryClient_1 = require("../TimestreamQueryClient");
|
|
7
|
-
exports.paginateQuery = (0, core_1.createPaginator)(TimestreamQueryClient_1.TimestreamQueryClient, QueryCommand_1.QueryCommand, "NextToken", "NextToken", "MaxRows");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListScheduledQueriesPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListTagsForResourcePaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./QueryPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|