@aws-sdk/client-timestream-query 3.986.0 → 3.988.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/index.js +34 -962
- package/dist-cjs/models/TimestreamQueryServiceException.js +12 -0
- package/dist-cjs/models/errors.js +141 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +720 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +62 -56
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -13,9 +13,12 @@ var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
|
13
13
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
14
14
|
var smithyClient = require('@smithy/smithy-client');
|
|
15
15
|
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
16
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
16
17
|
var runtimeConfig = require('./runtimeConfig');
|
|
17
18
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
19
|
var protocolHttp = require('@smithy/protocol-http');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var TimestreamQueryServiceException = require('./models/TimestreamQueryServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -31,848 +34,6 @@ const commonParams = {
|
|
|
31
34
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
35
|
};
|
|
33
36
|
|
|
34
|
-
class TimestreamQueryServiceException extends smithyClient.ServiceException {
|
|
35
|
-
constructor(options) {
|
|
36
|
-
super(options);
|
|
37
|
-
Object.setPrototypeOf(this, TimestreamQueryServiceException.prototype);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
class AccessDeniedException extends TimestreamQueryServiceException {
|
|
42
|
-
name = "AccessDeniedException";
|
|
43
|
-
$fault = "client";
|
|
44
|
-
Message;
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "AccessDeniedException",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
52
|
-
this.Message = opts.Message;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
class InternalServerException extends TimestreamQueryServiceException {
|
|
56
|
-
name = "InternalServerException";
|
|
57
|
-
$fault = "server";
|
|
58
|
-
Message;
|
|
59
|
-
constructor(opts) {
|
|
60
|
-
super({
|
|
61
|
-
name: "InternalServerException",
|
|
62
|
-
$fault: "server",
|
|
63
|
-
...opts,
|
|
64
|
-
});
|
|
65
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
66
|
-
this.Message = opts.Message;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
class InvalidEndpointException extends TimestreamQueryServiceException {
|
|
70
|
-
name = "InvalidEndpointException";
|
|
71
|
-
$fault = "client";
|
|
72
|
-
Message;
|
|
73
|
-
constructor(opts) {
|
|
74
|
-
super({
|
|
75
|
-
name: "InvalidEndpointException",
|
|
76
|
-
$fault: "client",
|
|
77
|
-
...opts,
|
|
78
|
-
});
|
|
79
|
-
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
80
|
-
this.Message = opts.Message;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
class ThrottlingException extends TimestreamQueryServiceException {
|
|
84
|
-
name = "ThrottlingException";
|
|
85
|
-
$fault = "client";
|
|
86
|
-
Message;
|
|
87
|
-
constructor(opts) {
|
|
88
|
-
super({
|
|
89
|
-
name: "ThrottlingException",
|
|
90
|
-
$fault: "client",
|
|
91
|
-
...opts,
|
|
92
|
-
});
|
|
93
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
94
|
-
this.Message = opts.Message;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
class ValidationException extends TimestreamQueryServiceException {
|
|
98
|
-
name = "ValidationException";
|
|
99
|
-
$fault = "client";
|
|
100
|
-
Message;
|
|
101
|
-
constructor(opts) {
|
|
102
|
-
super({
|
|
103
|
-
name: "ValidationException",
|
|
104
|
-
$fault: "client",
|
|
105
|
-
...opts,
|
|
106
|
-
});
|
|
107
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
108
|
-
this.Message = opts.Message;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
class ConflictException extends TimestreamQueryServiceException {
|
|
112
|
-
name = "ConflictException";
|
|
113
|
-
$fault = "client";
|
|
114
|
-
Message;
|
|
115
|
-
constructor(opts) {
|
|
116
|
-
super({
|
|
117
|
-
name: "ConflictException",
|
|
118
|
-
$fault: "client",
|
|
119
|
-
...opts,
|
|
120
|
-
});
|
|
121
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
122
|
-
this.Message = opts.Message;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
class ServiceQuotaExceededException extends TimestreamQueryServiceException {
|
|
126
|
-
name = "ServiceQuotaExceededException";
|
|
127
|
-
$fault = "client";
|
|
128
|
-
Message;
|
|
129
|
-
constructor(opts) {
|
|
130
|
-
super({
|
|
131
|
-
name: "ServiceQuotaExceededException",
|
|
132
|
-
$fault: "client",
|
|
133
|
-
...opts,
|
|
134
|
-
});
|
|
135
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
136
|
-
this.Message = opts.Message;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
class ResourceNotFoundException extends TimestreamQueryServiceException {
|
|
140
|
-
name = "ResourceNotFoundException";
|
|
141
|
-
$fault = "client";
|
|
142
|
-
Message;
|
|
143
|
-
ScheduledQueryArn;
|
|
144
|
-
constructor(opts) {
|
|
145
|
-
super({
|
|
146
|
-
name: "ResourceNotFoundException",
|
|
147
|
-
$fault: "client",
|
|
148
|
-
...opts,
|
|
149
|
-
});
|
|
150
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
151
|
-
this.Message = opts.Message;
|
|
152
|
-
this.ScheduledQueryArn = opts.ScheduledQueryArn;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
class QueryExecutionException extends TimestreamQueryServiceException {
|
|
156
|
-
name = "QueryExecutionException";
|
|
157
|
-
$fault = "client";
|
|
158
|
-
Message;
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "QueryExecutionException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, QueryExecutionException.prototype);
|
|
166
|
-
this.Message = opts.Message;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
const _A = "Arn";
|
|
171
|
-
const _ACI = "ArrayColumnInfo";
|
|
172
|
-
const _ADE = "AccessDeniedException";
|
|
173
|
-
const _AQTCU = "ActiveQueryTCU";
|
|
174
|
-
const _ASNC = "AccountSettingsNotificationConfiguration";
|
|
175
|
-
const _AV = "ArrayValue";
|
|
176
|
-
const _Ad = "Address";
|
|
177
|
-
const _Al = "Aliased";
|
|
178
|
-
const _BM = "BytesMetered";
|
|
179
|
-
const _BN = "BucketName";
|
|
180
|
-
const _C = "Columns";
|
|
181
|
-
const _CBM = "CumulativeBytesMetered";
|
|
182
|
-
const _CBS = "CumulativeBytesScanned";
|
|
183
|
-
const _CE = "ConflictException";
|
|
184
|
-
const _CI = "ColumnInfo";
|
|
185
|
-
const _CIL = "ColumnInfoList";
|
|
186
|
-
const _CM = "CancellationMessage";
|
|
187
|
-
const _CMo = "ComputeMode";
|
|
188
|
-
const _CPIM = "CachePeriodInMinutes";
|
|
189
|
-
const _CQ = "CancelQuery";
|
|
190
|
-
const _CQR = "CancelQueryRequest";
|
|
191
|
-
const _CQRa = "CancelQueryResponse";
|
|
192
|
-
const _CRT = "ClientRequestToken";
|
|
193
|
-
const _CSQ = "CreateScheduledQuery";
|
|
194
|
-
const _CSQR = "CreateScheduledQueryRequest";
|
|
195
|
-
const _CSQRr = "CreateScheduledQueryResponse";
|
|
196
|
-
const _CT = "ClientToken";
|
|
197
|
-
const _CTr = "CreationTime";
|
|
198
|
-
const _D = "Datum";
|
|
199
|
-
const _DAS = "DescribeAccountSettings";
|
|
200
|
-
const _DASR = "DescribeAccountSettingsRequest";
|
|
201
|
-
const _DASRe = "DescribeAccountSettingsResponse";
|
|
202
|
-
const _DE = "DescribeEndpoints";
|
|
203
|
-
const _DER = "DescribeEndpointsRequest";
|
|
204
|
-
const _DERe = "DescribeEndpointsResponse";
|
|
205
|
-
const _DL = "DatumList";
|
|
206
|
-
const _DM = "DimensionMapping";
|
|
207
|
-
const _DML = "DimensionMappingList";
|
|
208
|
-
const _DMi = "DimensionMappings";
|
|
209
|
-
const _DN = "DatabaseName";
|
|
210
|
-
const _DSQ = "DeleteScheduledQuery";
|
|
211
|
-
const _DSQR = "DeleteScheduledQueryRequest";
|
|
212
|
-
const _DSQRe = "DescribeScheduledQueryRequest";
|
|
213
|
-
const _DSQRes = "DescribeScheduledQueryResponse";
|
|
214
|
-
const _DSQe = "DescribeScheduledQuery";
|
|
215
|
-
const _DVT = "DimensionValueType";
|
|
216
|
-
const _DW = "DataWrites";
|
|
217
|
-
const _Da = "Data";
|
|
218
|
-
const _E = "Endpoints";
|
|
219
|
-
const _EO = "EncryptionOption";
|
|
220
|
-
const _ERC = "ErrorReportConfiguration";
|
|
221
|
-
const _ERL = "ErrorReportLocation";
|
|
222
|
-
const _ES = "ExecutionStats";
|
|
223
|
-
const _ESQ = "ExecuteScheduledQuery";
|
|
224
|
-
const _ESQR = "ExecuteScheduledQueryRequest";
|
|
225
|
-
const _ETIM = "ExecutionTimeInMillis";
|
|
226
|
-
const _En = "Endpoint";
|
|
227
|
-
const _FR = "FailureReason";
|
|
228
|
-
const _IEE = "InvalidEndpointException";
|
|
229
|
-
const _ISE = "InternalServerException";
|
|
230
|
-
const _IT = "InvocationTime";
|
|
231
|
-
const _K = "Key";
|
|
232
|
-
const _KKI = "KmsKeyId";
|
|
233
|
-
const _LRS = "LastRunStatus";
|
|
234
|
-
const _LRSa = "LastRunSummary";
|
|
235
|
-
const _LSQ = "ListScheduledQueries";
|
|
236
|
-
const _LSQR = "ListScheduledQueriesRequest";
|
|
237
|
-
const _LSQRi = "ListScheduledQueriesResponse";
|
|
238
|
-
const _LTFR = "ListTagsForResource";
|
|
239
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
240
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
241
|
-
const _LU = "LastUpdate";
|
|
242
|
-
const _M = "Message";
|
|
243
|
-
const _MMAM = "MultiMeasureAttributeMappings";
|
|
244
|
-
const _MMAML = "MultiMeasureAttributeMappingList";
|
|
245
|
-
const _MMAMu = "MultiMeasureAttributeMapping";
|
|
246
|
-
const _MMM = "MixedMeasureMapping";
|
|
247
|
-
const _MMML = "MixedMeasureMappingList";
|
|
248
|
-
const _MMMi = "MixedMeasureMappings";
|
|
249
|
-
const _MMMu = "MultiMeasureMappings";
|
|
250
|
-
const _MN = "MeasureName";
|
|
251
|
-
const _MNC = "MeasureNameColumn";
|
|
252
|
-
const _MQTCU = "MaxQueryTCU";
|
|
253
|
-
const _MR = "MaxResults";
|
|
254
|
-
const _MRa = "MaxRows";
|
|
255
|
-
const _MVT = "MeasureValueType";
|
|
256
|
-
const _Ma = "Max";
|
|
257
|
-
const _Mo = "Mode";
|
|
258
|
-
const _N = "Name";
|
|
259
|
-
const _NC = "NotificationConfiguration";
|
|
260
|
-
const _NIT = "NextInvocationTime";
|
|
261
|
-
const _NT = "NextToken";
|
|
262
|
-
const _NV = "NullValue";
|
|
263
|
-
const _OB = "OutputBytes";
|
|
264
|
-
const _OK = "ObjectKey";
|
|
265
|
-
const _OKP = "ObjectKeyPrefix";
|
|
266
|
-
const _OR = "OutputRows";
|
|
267
|
-
const _P = "Parameters";
|
|
268
|
-
const _PC = "ProvisionedCapacity";
|
|
269
|
-
const _PCR = "ProvisionedCapacityRequest";
|
|
270
|
-
const _PCRr = "ProvisionedCapacityResponse";
|
|
271
|
-
const _PIT = "PreviousInvocationTime";
|
|
272
|
-
const _PK = "PartitionKey";
|
|
273
|
-
const _PM = "ParameterMapping";
|
|
274
|
-
const _PML = "ParameterMappingList";
|
|
275
|
-
const _PP = "ProgressPercentage";
|
|
276
|
-
const _PQ = "PrepareQuery";
|
|
277
|
-
const _PQR = "PrepareQueryRequest";
|
|
278
|
-
const _PQRr = "PrepareQueryResponse";
|
|
279
|
-
const _Q = "Query";
|
|
280
|
-
const _QC = "QueryCompute";
|
|
281
|
-
const _QCR = "QueryComputeRequest";
|
|
282
|
-
const _QCRu = "QueryComputeResponse";
|
|
283
|
-
const _QEE = "QueryExecutionException";
|
|
284
|
-
const _QI = "QueryId";
|
|
285
|
-
const _QIR = "QueryInsightsResponse";
|
|
286
|
-
const _QIu = "QueryInsights";
|
|
287
|
-
const _QPM = "QueryPricingModel";
|
|
288
|
-
const _QR = "QueryRequest";
|
|
289
|
-
const _QRR = "QueryResultRows";
|
|
290
|
-
const _QRu = "QueryResponse";
|
|
291
|
-
const _QS = "QueryString";
|
|
292
|
-
const _QSC = "QuerySpatialCoverage";
|
|
293
|
-
const _QSCM = "QuerySpatialCoverageMax";
|
|
294
|
-
const _QSu = "QueryStatus";
|
|
295
|
-
const _QTC = "QueryTableCount";
|
|
296
|
-
const _QTR = "QueryTemporalRange";
|
|
297
|
-
const _QTRM = "QueryTemporalRangeMax";
|
|
298
|
-
const _R = "Rows";
|
|
299
|
-
const _RA = "RoleArn";
|
|
300
|
-
const _RARN = "ResourceARN";
|
|
301
|
-
const _RCI = "RowColumnInfo";
|
|
302
|
-
const _RFR = "RecentlyFailedRuns";
|
|
303
|
-
const _RI = "RecordsIngested";
|
|
304
|
-
const _RL = "RowList";
|
|
305
|
-
const _RNFE = "ResourceNotFoundException";
|
|
306
|
-
const _RS = "RunStatus";
|
|
307
|
-
const _RV = "RowValue";
|
|
308
|
-
const _Ro = "Row";
|
|
309
|
-
const _S = "Status";
|
|
310
|
-
const _SC = "SnsConfiguration";
|
|
311
|
-
const _SCL = "SelectColumnList";
|
|
312
|
-
const _SCc = "ScheduleConfiguration";
|
|
313
|
-
const _SCe = "SelectColumn";
|
|
314
|
-
const _SCo = "S3Configuration";
|
|
315
|
-
const _SCou = "SourceColumn";
|
|
316
|
-
const _SE = "ScheduleExpression";
|
|
317
|
-
const _SM = "StatusMessage";
|
|
318
|
-
const _SQ = "ScheduledQuery";
|
|
319
|
-
const _SQA = "ScheduledQueryArn";
|
|
320
|
-
const _SQD = "ScheduledQueryDescription";
|
|
321
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
322
|
-
const _SQERA = "ScheduledQueryExecutionRoleArn";
|
|
323
|
-
const _SQI = "ScheduledQueryInsights";
|
|
324
|
-
const _SQIR = "ScheduledQueryInsightsResponse";
|
|
325
|
-
const _SQL = "ScheduledQueryList";
|
|
326
|
-
const _SQRS = "ScheduledQueryRunSummary";
|
|
327
|
-
const _SQRSL = "ScheduledQueryRunSummaryList";
|
|
328
|
-
const _SQc = "ScheduledQueries";
|
|
329
|
-
const _SRL = "S3ReportLocation";
|
|
330
|
-
const _ST = "ScalarType";
|
|
331
|
-
const _SV = "ScalarValue";
|
|
332
|
-
const _St = "State";
|
|
333
|
-
const _T = "Type";
|
|
334
|
-
const _TA = "TableArn";
|
|
335
|
-
const _TAo = "TopicArn";
|
|
336
|
-
const _TC = "TargetConfiguration";
|
|
337
|
-
const _TCi = "TimestreamConfiguration";
|
|
338
|
-
const _TCim = "TimeColumn";
|
|
339
|
-
const _TD = "TargetDestination";
|
|
340
|
-
const _TDi = "TimestreamDestination";
|
|
341
|
-
const _TE = "ThrottlingException";
|
|
342
|
-
const _TK = "TagKeys";
|
|
343
|
-
const _TL = "TagList";
|
|
344
|
-
const _TMMAN = "TargetMultiMeasureAttributeName";
|
|
345
|
-
const _TMMN = "TargetMultiMeasureName";
|
|
346
|
-
const _TMN = "TargetMeasureName";
|
|
347
|
-
const _TN = "TableName";
|
|
348
|
-
const _TQTCU = "TargetQueryTCU";
|
|
349
|
-
const _TR = "TagResource";
|
|
350
|
-
const _TRR = "TagResourceRequest";
|
|
351
|
-
const _TRRa = "TagResourceResponse";
|
|
352
|
-
const _TSDP = "TimeSeriesDataPoint";
|
|
353
|
-
const _TSDPL = "TimeSeriesDataPointList";
|
|
354
|
-
const _TSMVCI = "TimeSeriesMeasureValueColumnInfo";
|
|
355
|
-
const _TSV = "TimeSeriesValue";
|
|
356
|
-
const _TT = "TriggerTime";
|
|
357
|
-
const _Ta = "Tags";
|
|
358
|
-
const _Tag = "Tag";
|
|
359
|
-
const _Ti = "Time";
|
|
360
|
-
const _UAS = "UpdateAccountSettings";
|
|
361
|
-
const _UASR = "UpdateAccountSettingsRequest";
|
|
362
|
-
const _UASRp = "UpdateAccountSettingsResponse";
|
|
363
|
-
const _UPC = "UnloadPartitionCount";
|
|
364
|
-
const _UR = "UntagResource";
|
|
365
|
-
const _URR = "UntagResourceRequest";
|
|
366
|
-
const _URRn = "UntagResourceResponse";
|
|
367
|
-
const _USQ = "UpdateScheduledQuery";
|
|
368
|
-
const _USQR = "UpdateScheduledQueryRequest";
|
|
369
|
-
const _UWB = "UnloadWrittenBytes";
|
|
370
|
-
const _UWR = "UnloadWrittenRows";
|
|
371
|
-
const _V = "Value";
|
|
372
|
-
const _VE = "ValidationException";
|
|
373
|
-
const _VO = "ValidateOnly";
|
|
374
|
-
const _aQE = "awsQueryError";
|
|
375
|
-
const _c = "client";
|
|
376
|
-
const _e = "error";
|
|
377
|
-
const _hE = "httpError";
|
|
378
|
-
const _s = "server";
|
|
379
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.timestreamquery";
|
|
380
|
-
const n0 = "com.amazonaws.timestreamquery";
|
|
381
|
-
var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
382
|
-
var ClientToken = [0, n0, _CT, 8, 0];
|
|
383
|
-
var QueryString = [0, n0, _QS, 8, 0];
|
|
384
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
385
|
-
{ [_aQE]: [`AccessDenied`, 403], [_e]: _c, [_hE]: 403 },
|
|
386
|
-
[_M],
|
|
387
|
-
[0]
|
|
388
|
-
];
|
|
389
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
390
|
-
var AccountSettingsNotificationConfiguration$ = [3, n0, _ASNC,
|
|
391
|
-
0,
|
|
392
|
-
[_RA, _SC],
|
|
393
|
-
[0, () => SnsConfiguration$], 1
|
|
394
|
-
];
|
|
395
|
-
var CancelQueryRequest$ = [3, n0, _CQR,
|
|
396
|
-
0,
|
|
397
|
-
[_QI],
|
|
398
|
-
[0], 1
|
|
399
|
-
];
|
|
400
|
-
var CancelQueryResponse$ = [3, n0, _CQRa,
|
|
401
|
-
0,
|
|
402
|
-
[_CM],
|
|
403
|
-
[0]
|
|
404
|
-
];
|
|
405
|
-
var ColumnInfo$ = [3, n0, _CI,
|
|
406
|
-
0,
|
|
407
|
-
[_T, _N],
|
|
408
|
-
[() => Type$, 0], 1
|
|
409
|
-
];
|
|
410
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
411
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
412
|
-
[_M],
|
|
413
|
-
[0]
|
|
414
|
-
];
|
|
415
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
416
|
-
var CreateScheduledQueryRequest$ = [3, n0, _CSQR,
|
|
417
|
-
0,
|
|
418
|
-
[_N, _QS, _SCc, _NC, _SQERA, _ERC, _TC, _CT, _Ta, _KKI],
|
|
419
|
-
[0, [() => QueryString, 0], () => ScheduleConfiguration$, () => NotificationConfiguration$, 0, () => ErrorReportConfiguration$, () => TargetConfiguration$, [() => ClientToken, 4], () => TagList, 0], 6
|
|
420
|
-
];
|
|
421
|
-
var CreateScheduledQueryResponse$ = [3, n0, _CSQRr,
|
|
422
|
-
0,
|
|
423
|
-
[_A],
|
|
424
|
-
[0], 1
|
|
425
|
-
];
|
|
426
|
-
var Datum$ = [3, n0, _D,
|
|
427
|
-
0,
|
|
428
|
-
[_SV, _TSV, _AV, _RV, _NV],
|
|
429
|
-
[0, () => TimeSeriesDataPointList, () => DatumList, () => Row$, 2]
|
|
430
|
-
];
|
|
431
|
-
var DeleteScheduledQueryRequest$ = [3, n0, _DSQR,
|
|
432
|
-
0,
|
|
433
|
-
[_SQA],
|
|
434
|
-
[0], 1
|
|
435
|
-
];
|
|
436
|
-
var DescribeAccountSettingsRequest$ = [3, n0, _DASR,
|
|
437
|
-
0,
|
|
438
|
-
[],
|
|
439
|
-
[]
|
|
440
|
-
];
|
|
441
|
-
var DescribeAccountSettingsResponse$ = [3, n0, _DASRe,
|
|
442
|
-
0,
|
|
443
|
-
[_MQTCU, _QPM, _QC],
|
|
444
|
-
[1, 0, () => QueryComputeResponse$]
|
|
445
|
-
];
|
|
446
|
-
var DescribeEndpointsRequest$ = [3, n0, _DER,
|
|
447
|
-
0,
|
|
448
|
-
[],
|
|
449
|
-
[]
|
|
450
|
-
];
|
|
451
|
-
var DescribeEndpointsResponse$ = [3, n0, _DERe,
|
|
452
|
-
0,
|
|
453
|
-
[_E],
|
|
454
|
-
[() => Endpoints], 1
|
|
455
|
-
];
|
|
456
|
-
var DescribeScheduledQueryRequest$ = [3, n0, _DSQRe,
|
|
457
|
-
0,
|
|
458
|
-
[_SQA],
|
|
459
|
-
[0], 1
|
|
460
|
-
];
|
|
461
|
-
var DescribeScheduledQueryResponse$ = [3, n0, _DSQRes,
|
|
462
|
-
0,
|
|
463
|
-
[_SQ],
|
|
464
|
-
[[() => ScheduledQueryDescription$, 0]], 1
|
|
465
|
-
];
|
|
466
|
-
var DimensionMapping$ = [3, n0, _DM,
|
|
467
|
-
0,
|
|
468
|
-
[_N, _DVT],
|
|
469
|
-
[0, 0], 2
|
|
470
|
-
];
|
|
471
|
-
var Endpoint$ = [3, n0, _En,
|
|
472
|
-
0,
|
|
473
|
-
[_Ad, _CPIM],
|
|
474
|
-
[0, 1], 2
|
|
475
|
-
];
|
|
476
|
-
var ErrorReportConfiguration$ = [3, n0, _ERC,
|
|
477
|
-
0,
|
|
478
|
-
[_SCo],
|
|
479
|
-
[() => S3Configuration$], 1
|
|
480
|
-
];
|
|
481
|
-
var ErrorReportLocation$ = [3, n0, _ERL,
|
|
482
|
-
0,
|
|
483
|
-
[_SRL],
|
|
484
|
-
[() => S3ReportLocation$]
|
|
485
|
-
];
|
|
486
|
-
var ExecuteScheduledQueryRequest$ = [3, n0, _ESQR,
|
|
487
|
-
0,
|
|
488
|
-
[_SQA, _IT, _CT, _QIu],
|
|
489
|
-
[0, 4, [() => ClientToken, 4], () => ScheduledQueryInsights$], 2
|
|
490
|
-
];
|
|
491
|
-
var ExecutionStats$ = [3, n0, _ES,
|
|
492
|
-
0,
|
|
493
|
-
[_ETIM, _DW, _BM, _CBS, _RI, _QRR],
|
|
494
|
-
[1, 1, 1, 1, 1, 1]
|
|
495
|
-
];
|
|
496
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
497
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
498
|
-
[_M],
|
|
499
|
-
[0]
|
|
500
|
-
];
|
|
501
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
502
|
-
var InvalidEndpointException$ = [-3, n0, _IEE,
|
|
503
|
-
{ [_e]: _c, [_hE]: 421 },
|
|
504
|
-
[_M],
|
|
505
|
-
[0]
|
|
506
|
-
];
|
|
507
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
508
|
-
var LastUpdate$ = [3, n0, _LU,
|
|
509
|
-
0,
|
|
510
|
-
[_TQTCU, _S, _SM],
|
|
511
|
-
[1, 0, 0]
|
|
512
|
-
];
|
|
513
|
-
var ListScheduledQueriesRequest$ = [3, n0, _LSQR,
|
|
514
|
-
0,
|
|
515
|
-
[_MR, _NT],
|
|
516
|
-
[1, 0]
|
|
517
|
-
];
|
|
518
|
-
var ListScheduledQueriesResponse$ = [3, n0, _LSQRi,
|
|
519
|
-
0,
|
|
520
|
-
[_SQc, _NT],
|
|
521
|
-
[() => ScheduledQueryList, 0], 1
|
|
522
|
-
];
|
|
523
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
524
|
-
0,
|
|
525
|
-
[_RARN, _MR, _NT],
|
|
526
|
-
[0, 1, 0], 1
|
|
527
|
-
];
|
|
528
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
529
|
-
0,
|
|
530
|
-
[_Ta, _NT],
|
|
531
|
-
[() => TagList, 0], 1
|
|
532
|
-
];
|
|
533
|
-
var MixedMeasureMapping$ = [3, n0, _MMM,
|
|
534
|
-
0,
|
|
535
|
-
[_MVT, _MN, _SCou, _TMN, _MMAM],
|
|
536
|
-
[0, 0, 0, 0, () => MultiMeasureAttributeMappingList], 1
|
|
537
|
-
];
|
|
538
|
-
var MultiMeasureAttributeMapping$ = [3, n0, _MMAMu,
|
|
539
|
-
0,
|
|
540
|
-
[_SCou, _MVT, _TMMAN],
|
|
541
|
-
[0, 0, 0], 2
|
|
542
|
-
];
|
|
543
|
-
var MultiMeasureMappings$ = [3, n0, _MMMu,
|
|
544
|
-
0,
|
|
545
|
-
[_MMAM, _TMMN],
|
|
546
|
-
[() => MultiMeasureAttributeMappingList, 0], 1
|
|
547
|
-
];
|
|
548
|
-
var NotificationConfiguration$ = [3, n0, _NC,
|
|
549
|
-
0,
|
|
550
|
-
[_SC],
|
|
551
|
-
[() => SnsConfiguration$], 1
|
|
552
|
-
];
|
|
553
|
-
var ParameterMapping$ = [3, n0, _PM,
|
|
554
|
-
0,
|
|
555
|
-
[_N, _T],
|
|
556
|
-
[0, () => Type$], 2
|
|
557
|
-
];
|
|
558
|
-
var PrepareQueryRequest$ = [3, n0, _PQR,
|
|
559
|
-
0,
|
|
560
|
-
[_QS, _VO],
|
|
561
|
-
[[() => QueryString, 0], 2], 1
|
|
562
|
-
];
|
|
563
|
-
var PrepareQueryResponse$ = [3, n0, _PQRr,
|
|
564
|
-
0,
|
|
565
|
-
[_QS, _C, _P],
|
|
566
|
-
[[() => QueryString, 0], () => SelectColumnList, () => ParameterMappingList], 3
|
|
567
|
-
];
|
|
568
|
-
var ProvisionedCapacityRequest$ = [3, n0, _PCR,
|
|
569
|
-
0,
|
|
570
|
-
[_TQTCU, _NC],
|
|
571
|
-
[1, () => AccountSettingsNotificationConfiguration$], 1
|
|
572
|
-
];
|
|
573
|
-
var ProvisionedCapacityResponse$ = [3, n0, _PCRr,
|
|
574
|
-
0,
|
|
575
|
-
[_AQTCU, _NC, _LU],
|
|
576
|
-
[1, () => AccountSettingsNotificationConfiguration$, () => LastUpdate$]
|
|
577
|
-
];
|
|
578
|
-
var QueryComputeRequest$ = [3, n0, _QCR,
|
|
579
|
-
0,
|
|
580
|
-
[_CMo, _PC],
|
|
581
|
-
[0, () => ProvisionedCapacityRequest$]
|
|
582
|
-
];
|
|
583
|
-
var QueryComputeResponse$ = [3, n0, _QCRu,
|
|
584
|
-
0,
|
|
585
|
-
[_CMo, _PC],
|
|
586
|
-
[0, () => ProvisionedCapacityResponse$]
|
|
587
|
-
];
|
|
588
|
-
var QueryExecutionException$ = [-3, n0, _QEE,
|
|
589
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
590
|
-
[_M],
|
|
591
|
-
[0]
|
|
592
|
-
];
|
|
593
|
-
schema.TypeRegistry.for(n0).registerError(QueryExecutionException$, QueryExecutionException);
|
|
594
|
-
var QueryInsights$ = [3, n0, _QIu,
|
|
595
|
-
0,
|
|
596
|
-
[_Mo],
|
|
597
|
-
[0], 1
|
|
598
|
-
];
|
|
599
|
-
var QueryInsightsResponse$ = [3, n0, _QIR,
|
|
600
|
-
0,
|
|
601
|
-
[_QSC, _QTR, _QTC, _OR, _OB, _UPC, _UWR, _UWB],
|
|
602
|
-
[() => QuerySpatialCoverage$, () => QueryTemporalRange$, 1, 1, 1, 1, 1, 1]
|
|
603
|
-
];
|
|
604
|
-
var QueryRequest$ = [3, n0, _QR,
|
|
605
|
-
0,
|
|
606
|
-
[_QS, _CT, _NT, _MRa, _QIu],
|
|
607
|
-
[[() => QueryString, 0], [() => ClientRequestToken, 4], 0, 1, () => QueryInsights$], 1
|
|
608
|
-
];
|
|
609
|
-
var QueryResponse$ = [3, n0, _QRu,
|
|
610
|
-
0,
|
|
611
|
-
[_QI, _R, _CI, _NT, _QSu, _QIR],
|
|
612
|
-
[0, () => RowList, () => ColumnInfoList, 0, () => QueryStatus$, () => QueryInsightsResponse$], 3
|
|
613
|
-
];
|
|
614
|
-
var QuerySpatialCoverage$ = [3, n0, _QSC,
|
|
615
|
-
0,
|
|
616
|
-
[_Ma],
|
|
617
|
-
[() => QuerySpatialCoverageMax$]
|
|
618
|
-
];
|
|
619
|
-
var QuerySpatialCoverageMax$ = [3, n0, _QSCM,
|
|
620
|
-
0,
|
|
621
|
-
[_V, _TA, _PK],
|
|
622
|
-
[1, 0, 64 | 0]
|
|
623
|
-
];
|
|
624
|
-
var QueryStatus$ = [3, n0, _QSu,
|
|
625
|
-
0,
|
|
626
|
-
[_PP, _CBS, _CBM],
|
|
627
|
-
[1, 1, 1]
|
|
628
|
-
];
|
|
629
|
-
var QueryTemporalRange$ = [3, n0, _QTR,
|
|
630
|
-
0,
|
|
631
|
-
[_Ma],
|
|
632
|
-
[() => QueryTemporalRangeMax$]
|
|
633
|
-
];
|
|
634
|
-
var QueryTemporalRangeMax$ = [3, n0, _QTRM,
|
|
635
|
-
0,
|
|
636
|
-
[_V, _TA],
|
|
637
|
-
[1, 0]
|
|
638
|
-
];
|
|
639
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
640
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
641
|
-
[_M, _SQA],
|
|
642
|
-
[0, 0]
|
|
643
|
-
];
|
|
644
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
645
|
-
var Row$ = [3, n0, _Ro,
|
|
646
|
-
0,
|
|
647
|
-
[_Da],
|
|
648
|
-
[() => DatumList], 1
|
|
649
|
-
];
|
|
650
|
-
var S3Configuration$ = [3, n0, _SCo,
|
|
651
|
-
0,
|
|
652
|
-
[_BN, _OKP, _EO],
|
|
653
|
-
[0, 0, 0], 1
|
|
654
|
-
];
|
|
655
|
-
var S3ReportLocation$ = [3, n0, _SRL,
|
|
656
|
-
0,
|
|
657
|
-
[_BN, _OK],
|
|
658
|
-
[0, 0]
|
|
659
|
-
];
|
|
660
|
-
var ScheduleConfiguration$ = [3, n0, _SCc,
|
|
661
|
-
0,
|
|
662
|
-
[_SE],
|
|
663
|
-
[0], 1
|
|
664
|
-
];
|
|
665
|
-
var ScheduledQuery$ = [3, n0, _SQ,
|
|
666
|
-
0,
|
|
667
|
-
[_A, _N, _St, _CTr, _PIT, _NIT, _ERC, _TD, _LRS],
|
|
668
|
-
[0, 0, 0, 4, 4, 4, () => ErrorReportConfiguration$, () => TargetDestination$, 0], 3
|
|
669
|
-
];
|
|
670
|
-
var ScheduledQueryDescription$ = [3, n0, _SQD,
|
|
671
|
-
0,
|
|
672
|
-
[_A, _N, _QS, _St, _SCc, _NC, _CTr, _PIT, _NIT, _TC, _SQERA, _KKI, _ERC, _LRSa, _RFR],
|
|
673
|
-
[0, 0, [() => QueryString, 0], 0, () => ScheduleConfiguration$, () => NotificationConfiguration$, 4, 4, 4, () => TargetConfiguration$, 0, 0, () => ErrorReportConfiguration$, () => ScheduledQueryRunSummary$, () => ScheduledQueryRunSummaryList], 6
|
|
674
|
-
];
|
|
675
|
-
var ScheduledQueryInsights$ = [3, n0, _SQI,
|
|
676
|
-
0,
|
|
677
|
-
[_Mo],
|
|
678
|
-
[0], 1
|
|
679
|
-
];
|
|
680
|
-
var ScheduledQueryInsightsResponse$ = [3, n0, _SQIR,
|
|
681
|
-
0,
|
|
682
|
-
[_QSC, _QTR, _QTC, _OR, _OB],
|
|
683
|
-
[() => QuerySpatialCoverage$, () => QueryTemporalRange$, 1, 1, 1]
|
|
684
|
-
];
|
|
685
|
-
var ScheduledQueryRunSummary$ = [3, n0, _SQRS,
|
|
686
|
-
0,
|
|
687
|
-
[_IT, _TT, _RS, _ES, _QIR, _ERL, _FR],
|
|
688
|
-
[4, 4, 0, () => ExecutionStats$, () => ScheduledQueryInsightsResponse$, () => ErrorReportLocation$, 0]
|
|
689
|
-
];
|
|
690
|
-
var SelectColumn$ = [3, n0, _SCe,
|
|
691
|
-
0,
|
|
692
|
-
[_N, _T, _DN, _TN, _Al],
|
|
693
|
-
[0, () => Type$, 0, 0, 2]
|
|
694
|
-
];
|
|
695
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
696
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
697
|
-
[_M],
|
|
698
|
-
[0]
|
|
699
|
-
];
|
|
700
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
701
|
-
var SnsConfiguration$ = [3, n0, _SC,
|
|
702
|
-
0,
|
|
703
|
-
[_TAo],
|
|
704
|
-
[0], 1
|
|
705
|
-
];
|
|
706
|
-
var Tag$ = [3, n0, _Tag,
|
|
707
|
-
0,
|
|
708
|
-
[_K, _V],
|
|
709
|
-
[0, 0], 2
|
|
710
|
-
];
|
|
711
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
712
|
-
0,
|
|
713
|
-
[_RARN, _Ta],
|
|
714
|
-
[0, () => TagList], 2
|
|
715
|
-
];
|
|
716
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
717
|
-
0,
|
|
718
|
-
[],
|
|
719
|
-
[]
|
|
720
|
-
];
|
|
721
|
-
var TargetConfiguration$ = [3, n0, _TC,
|
|
722
|
-
0,
|
|
723
|
-
[_TCi],
|
|
724
|
-
[() => TimestreamConfiguration$], 1
|
|
725
|
-
];
|
|
726
|
-
var TargetDestination$ = [3, n0, _TD,
|
|
727
|
-
0,
|
|
728
|
-
[_TDi],
|
|
729
|
-
[() => TimestreamDestination$]
|
|
730
|
-
];
|
|
731
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
732
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
733
|
-
[_M],
|
|
734
|
-
[0]
|
|
735
|
-
];
|
|
736
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
737
|
-
var TimeSeriesDataPoint$ = [3, n0, _TSDP,
|
|
738
|
-
0,
|
|
739
|
-
[_Ti, _V],
|
|
740
|
-
[0, () => Datum$], 2
|
|
741
|
-
];
|
|
742
|
-
var TimestreamConfiguration$ = [3, n0, _TCi,
|
|
743
|
-
0,
|
|
744
|
-
[_DN, _TN, _TCim, _DMi, _MMMu, _MMMi, _MNC],
|
|
745
|
-
[0, 0, 0, () => DimensionMappingList, () => MultiMeasureMappings$, () => MixedMeasureMappingList, 0], 4
|
|
746
|
-
];
|
|
747
|
-
var TimestreamDestination$ = [3, n0, _TDi,
|
|
748
|
-
0,
|
|
749
|
-
[_DN, _TN],
|
|
750
|
-
[0, 0]
|
|
751
|
-
];
|
|
752
|
-
var Type$ = [3, n0, _T,
|
|
753
|
-
0,
|
|
754
|
-
[_ST, _ACI, _TSMVCI, _RCI],
|
|
755
|
-
[0, () => ColumnInfo$, () => ColumnInfo$, () => ColumnInfoList]
|
|
756
|
-
];
|
|
757
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
758
|
-
0,
|
|
759
|
-
[_RARN, _TK],
|
|
760
|
-
[0, 64 | 0], 2
|
|
761
|
-
];
|
|
762
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
763
|
-
0,
|
|
764
|
-
[],
|
|
765
|
-
[]
|
|
766
|
-
];
|
|
767
|
-
var UpdateAccountSettingsRequest$ = [3, n0, _UASR,
|
|
768
|
-
0,
|
|
769
|
-
[_MQTCU, _QPM, _QC],
|
|
770
|
-
[1, 0, () => QueryComputeRequest$]
|
|
771
|
-
];
|
|
772
|
-
var UpdateAccountSettingsResponse$ = [3, n0, _UASRp,
|
|
773
|
-
0,
|
|
774
|
-
[_MQTCU, _QPM, _QC],
|
|
775
|
-
[1, 0, () => QueryComputeResponse$]
|
|
776
|
-
];
|
|
777
|
-
var UpdateScheduledQueryRequest$ = [3, n0, _USQR,
|
|
778
|
-
0,
|
|
779
|
-
[_SQA, _St],
|
|
780
|
-
[0, 0], 2
|
|
781
|
-
];
|
|
782
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
783
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
784
|
-
[_M],
|
|
785
|
-
[0]
|
|
786
|
-
];
|
|
787
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
788
|
-
var __Unit = "unit";
|
|
789
|
-
var TimestreamQueryServiceException$ = [-3, _sm, "TimestreamQueryServiceException", 0, [], []];
|
|
790
|
-
schema.TypeRegistry.for(_sm).registerError(TimestreamQueryServiceException$, TimestreamQueryServiceException);
|
|
791
|
-
var ColumnInfoList = [1, n0, _CIL,
|
|
792
|
-
0, () => ColumnInfo$
|
|
793
|
-
];
|
|
794
|
-
var DatumList = [1, n0, _DL,
|
|
795
|
-
0, () => Datum$
|
|
796
|
-
];
|
|
797
|
-
var DimensionMappingList = [1, n0, _DML,
|
|
798
|
-
0, () => DimensionMapping$
|
|
799
|
-
];
|
|
800
|
-
var Endpoints = [1, n0, _E,
|
|
801
|
-
0, () => Endpoint$
|
|
802
|
-
];
|
|
803
|
-
var MixedMeasureMappingList = [1, n0, _MMML,
|
|
804
|
-
0, () => MixedMeasureMapping$
|
|
805
|
-
];
|
|
806
|
-
var MultiMeasureAttributeMappingList = [1, n0, _MMAML,
|
|
807
|
-
0, () => MultiMeasureAttributeMapping$
|
|
808
|
-
];
|
|
809
|
-
var ParameterMappingList = [1, n0, _PML,
|
|
810
|
-
0, () => ParameterMapping$
|
|
811
|
-
];
|
|
812
|
-
var RowList = [1, n0, _RL,
|
|
813
|
-
0, () => Row$
|
|
814
|
-
];
|
|
815
|
-
var ScheduledQueryList = [1, n0, _SQL,
|
|
816
|
-
0, () => ScheduledQuery$
|
|
817
|
-
];
|
|
818
|
-
var ScheduledQueryRunSummaryList = [1, n0, _SQRSL,
|
|
819
|
-
0, () => ScheduledQueryRunSummary$
|
|
820
|
-
];
|
|
821
|
-
var SelectColumnList = [1, n0, _SCL,
|
|
822
|
-
0, () => SelectColumn$
|
|
823
|
-
];
|
|
824
|
-
var TagList = [1, n0, _TL,
|
|
825
|
-
0, () => Tag$
|
|
826
|
-
];
|
|
827
|
-
var TimeSeriesDataPointList = [1, n0, _TSDPL,
|
|
828
|
-
0, () => TimeSeriesDataPoint$
|
|
829
|
-
];
|
|
830
|
-
var CancelQuery$ = [9, n0, _CQ,
|
|
831
|
-
2, () => CancelQueryRequest$, () => CancelQueryResponse$
|
|
832
|
-
];
|
|
833
|
-
var CreateScheduledQuery$ = [9, n0, _CSQ,
|
|
834
|
-
2, () => CreateScheduledQueryRequest$, () => CreateScheduledQueryResponse$
|
|
835
|
-
];
|
|
836
|
-
var DeleteScheduledQuery$ = [9, n0, _DSQ,
|
|
837
|
-
2, () => DeleteScheduledQueryRequest$, () => __Unit
|
|
838
|
-
];
|
|
839
|
-
var DescribeAccountSettings$ = [9, n0, _DAS,
|
|
840
|
-
0, () => DescribeAccountSettingsRequest$, () => DescribeAccountSettingsResponse$
|
|
841
|
-
];
|
|
842
|
-
var DescribeEndpoints$ = [9, n0, _DE,
|
|
843
|
-
0, () => DescribeEndpointsRequest$, () => DescribeEndpointsResponse$
|
|
844
|
-
];
|
|
845
|
-
var DescribeScheduledQuery$ = [9, n0, _DSQe,
|
|
846
|
-
0, () => DescribeScheduledQueryRequest$, () => DescribeScheduledQueryResponse$
|
|
847
|
-
];
|
|
848
|
-
var ExecuteScheduledQuery$ = [9, n0, _ESQ,
|
|
849
|
-
2, () => ExecuteScheduledQueryRequest$, () => __Unit
|
|
850
|
-
];
|
|
851
|
-
var ListScheduledQueries$ = [9, n0, _LSQ,
|
|
852
|
-
0, () => ListScheduledQueriesRequest$, () => ListScheduledQueriesResponse$
|
|
853
|
-
];
|
|
854
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
855
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
856
|
-
];
|
|
857
|
-
var PrepareQuery$ = [9, n0, _PQ,
|
|
858
|
-
2, () => PrepareQueryRequest$, () => PrepareQueryResponse$
|
|
859
|
-
];
|
|
860
|
-
var Query$ = [9, n0, _Q,
|
|
861
|
-
2, () => QueryRequest$, () => QueryResponse$
|
|
862
|
-
];
|
|
863
|
-
var TagResource$ = [9, n0, _TR,
|
|
864
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
865
|
-
];
|
|
866
|
-
var UntagResource$ = [9, n0, _UR,
|
|
867
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
868
|
-
];
|
|
869
|
-
var UpdateAccountSettings$ = [9, n0, _UAS,
|
|
870
|
-
2, () => UpdateAccountSettingsRequest$, () => UpdateAccountSettingsResponse$
|
|
871
|
-
];
|
|
872
|
-
var UpdateScheduledQuery$ = [9, n0, _USQ,
|
|
873
|
-
0, () => UpdateScheduledQueryRequest$, () => __Unit
|
|
874
|
-
];
|
|
875
|
-
|
|
876
37
|
class DescribeEndpointsCommand extends smithyClient.Command
|
|
877
38
|
.classBuilder()
|
|
878
39
|
.ep(commonParams)
|
|
@@ -881,7 +42,7 @@ class DescribeEndpointsCommand extends smithyClient.Command
|
|
|
881
42
|
})
|
|
882
43
|
.s("Timestream_20181101", "DescribeEndpoints", {})
|
|
883
44
|
.n("TimestreamQueryClient", "DescribeEndpointsCommand")
|
|
884
|
-
.sc(DescribeEndpoints$)
|
|
45
|
+
.sc(schemas_0.DescribeEndpoints$)
|
|
885
46
|
.build() {
|
|
886
47
|
}
|
|
887
48
|
|
|
@@ -981,7 +142,7 @@ class CancelQueryCommand extends smithyClient.Command
|
|
|
981
142
|
})
|
|
982
143
|
.s("Timestream_20181101", "CancelQuery", {})
|
|
983
144
|
.n("TimestreamQueryClient", "CancelQueryCommand")
|
|
984
|
-
.sc(CancelQuery$)
|
|
145
|
+
.sc(schemas_0.CancelQuery$)
|
|
985
146
|
.build() {
|
|
986
147
|
}
|
|
987
148
|
|
|
@@ -1000,7 +161,7 @@ class CreateScheduledQueryCommand extends smithyClient.Command
|
|
|
1000
161
|
})
|
|
1001
162
|
.s("Timestream_20181101", "CreateScheduledQuery", {})
|
|
1002
163
|
.n("TimestreamQueryClient", "CreateScheduledQueryCommand")
|
|
1003
|
-
.sc(CreateScheduledQuery$)
|
|
164
|
+
.sc(schemas_0.CreateScheduledQuery$)
|
|
1004
165
|
.build() {
|
|
1005
166
|
}
|
|
1006
167
|
|
|
@@ -1019,7 +180,7 @@ class DeleteScheduledQueryCommand extends smithyClient.Command
|
|
|
1019
180
|
})
|
|
1020
181
|
.s("Timestream_20181101", "DeleteScheduledQuery", {})
|
|
1021
182
|
.n("TimestreamQueryClient", "DeleteScheduledQueryCommand")
|
|
1022
|
-
.sc(DeleteScheduledQuery$)
|
|
183
|
+
.sc(schemas_0.DeleteScheduledQuery$)
|
|
1023
184
|
.build() {
|
|
1024
185
|
}
|
|
1025
186
|
|
|
@@ -1038,7 +199,7 @@ class DescribeAccountSettingsCommand extends smithyClient.Command
|
|
|
1038
199
|
})
|
|
1039
200
|
.s("Timestream_20181101", "DescribeAccountSettings", {})
|
|
1040
201
|
.n("TimestreamQueryClient", "DescribeAccountSettingsCommand")
|
|
1041
|
-
.sc(DescribeAccountSettings$)
|
|
202
|
+
.sc(schemas_0.DescribeAccountSettings$)
|
|
1042
203
|
.build() {
|
|
1043
204
|
}
|
|
1044
205
|
|
|
@@ -1057,7 +218,7 @@ class DescribeScheduledQueryCommand extends smithyClient.Command
|
|
|
1057
218
|
})
|
|
1058
219
|
.s("Timestream_20181101", "DescribeScheduledQuery", {})
|
|
1059
220
|
.n("TimestreamQueryClient", "DescribeScheduledQueryCommand")
|
|
1060
|
-
.sc(DescribeScheduledQuery$)
|
|
221
|
+
.sc(schemas_0.DescribeScheduledQuery$)
|
|
1061
222
|
.build() {
|
|
1062
223
|
}
|
|
1063
224
|
|
|
@@ -1076,7 +237,7 @@ class ExecuteScheduledQueryCommand extends smithyClient.Command
|
|
|
1076
237
|
})
|
|
1077
238
|
.s("Timestream_20181101", "ExecuteScheduledQuery", {})
|
|
1078
239
|
.n("TimestreamQueryClient", "ExecuteScheduledQueryCommand")
|
|
1079
|
-
.sc(ExecuteScheduledQuery$)
|
|
240
|
+
.sc(schemas_0.ExecuteScheduledQuery$)
|
|
1080
241
|
.build() {
|
|
1081
242
|
}
|
|
1082
243
|
|
|
@@ -1095,7 +256,7 @@ class ListScheduledQueriesCommand extends smithyClient.Command
|
|
|
1095
256
|
})
|
|
1096
257
|
.s("Timestream_20181101", "ListScheduledQueries", {})
|
|
1097
258
|
.n("TimestreamQueryClient", "ListScheduledQueriesCommand")
|
|
1098
|
-
.sc(ListScheduledQueries$)
|
|
259
|
+
.sc(schemas_0.ListScheduledQueries$)
|
|
1099
260
|
.build() {
|
|
1100
261
|
}
|
|
1101
262
|
|
|
@@ -1114,7 +275,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1114
275
|
})
|
|
1115
276
|
.s("Timestream_20181101", "ListTagsForResource", {})
|
|
1116
277
|
.n("TimestreamQueryClient", "ListTagsForResourceCommand")
|
|
1117
|
-
.sc(ListTagsForResource$)
|
|
278
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1118
279
|
.build() {
|
|
1119
280
|
}
|
|
1120
281
|
|
|
@@ -1133,7 +294,7 @@ class PrepareQueryCommand extends smithyClient.Command
|
|
|
1133
294
|
})
|
|
1134
295
|
.s("Timestream_20181101", "PrepareQuery", {})
|
|
1135
296
|
.n("TimestreamQueryClient", "PrepareQueryCommand")
|
|
1136
|
-
.sc(PrepareQuery$)
|
|
297
|
+
.sc(schemas_0.PrepareQuery$)
|
|
1137
298
|
.build() {
|
|
1138
299
|
}
|
|
1139
300
|
|
|
@@ -1152,7 +313,7 @@ class QueryCommand extends smithyClient.Command
|
|
|
1152
313
|
})
|
|
1153
314
|
.s("Timestream_20181101", "Query", {})
|
|
1154
315
|
.n("TimestreamQueryClient", "QueryCommand")
|
|
1155
|
-
.sc(Query$)
|
|
316
|
+
.sc(schemas_0.Query$)
|
|
1156
317
|
.build() {
|
|
1157
318
|
}
|
|
1158
319
|
|
|
@@ -1171,7 +332,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1171
332
|
})
|
|
1172
333
|
.s("Timestream_20181101", "TagResource", {})
|
|
1173
334
|
.n("TimestreamQueryClient", "TagResourceCommand")
|
|
1174
|
-
.sc(TagResource$)
|
|
335
|
+
.sc(schemas_0.TagResource$)
|
|
1175
336
|
.build() {
|
|
1176
337
|
}
|
|
1177
338
|
|
|
@@ -1190,7 +351,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1190
351
|
})
|
|
1191
352
|
.s("Timestream_20181101", "UntagResource", {})
|
|
1192
353
|
.n("TimestreamQueryClient", "UntagResourceCommand")
|
|
1193
|
-
.sc(UntagResource$)
|
|
354
|
+
.sc(schemas_0.UntagResource$)
|
|
1194
355
|
.build() {
|
|
1195
356
|
}
|
|
1196
357
|
|
|
@@ -1209,7 +370,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1209
370
|
})
|
|
1210
371
|
.s("Timestream_20181101", "UpdateAccountSettings", {})
|
|
1211
372
|
.n("TimestreamQueryClient", "UpdateAccountSettingsCommand")
|
|
1212
|
-
.sc(UpdateAccountSettings$)
|
|
373
|
+
.sc(schemas_0.UpdateAccountSettings$)
|
|
1213
374
|
.build() {
|
|
1214
375
|
}
|
|
1215
376
|
|
|
@@ -1228,7 +389,7 @@ class UpdateScheduledQueryCommand extends smithyClient.Command
|
|
|
1228
389
|
})
|
|
1229
390
|
.s("Timestream_20181101", "UpdateScheduledQuery", {})
|
|
1230
391
|
.n("TimestreamQueryClient", "UpdateScheduledQueryCommand")
|
|
1231
|
-
.sc(UpdateScheduledQuery$)
|
|
392
|
+
.sc(schemas_0.UpdateScheduledQuery$)
|
|
1232
393
|
.build() {
|
|
1233
394
|
}
|
|
1234
395
|
|
|
@@ -1338,140 +499,51 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1338
499
|
enumerable: true,
|
|
1339
500
|
get: function () { return smithyClient.Client; }
|
|
1340
501
|
});
|
|
1341
|
-
exports
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
502
|
+
Object.defineProperty(exports, "TimestreamQueryServiceException", {
|
|
503
|
+
enumerable: true,
|
|
504
|
+
get: function () { return TimestreamQueryServiceException.TimestreamQueryServiceException; }
|
|
505
|
+
});
|
|
1345
506
|
exports.CancelQueryCommand = CancelQueryCommand;
|
|
1346
|
-
exports.CancelQueryRequest$ = CancelQueryRequest$;
|
|
1347
|
-
exports.CancelQueryResponse$ = CancelQueryResponse$;
|
|
1348
|
-
exports.ColumnInfo$ = ColumnInfo$;
|
|
1349
507
|
exports.ComputeMode = ComputeMode;
|
|
1350
|
-
exports.ConflictException = ConflictException;
|
|
1351
|
-
exports.ConflictException$ = ConflictException$;
|
|
1352
|
-
exports.CreateScheduledQuery$ = CreateScheduledQuery$;
|
|
1353
508
|
exports.CreateScheduledQueryCommand = CreateScheduledQueryCommand;
|
|
1354
|
-
exports.CreateScheduledQueryRequest$ = CreateScheduledQueryRequest$;
|
|
1355
|
-
exports.CreateScheduledQueryResponse$ = CreateScheduledQueryResponse$;
|
|
1356
|
-
exports.Datum$ = Datum$;
|
|
1357
|
-
exports.DeleteScheduledQuery$ = DeleteScheduledQuery$;
|
|
1358
509
|
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
1359
|
-
exports.DeleteScheduledQueryRequest$ = DeleteScheduledQueryRequest$;
|
|
1360
|
-
exports.DescribeAccountSettings$ = DescribeAccountSettings$;
|
|
1361
510
|
exports.DescribeAccountSettingsCommand = DescribeAccountSettingsCommand;
|
|
1362
|
-
exports.DescribeAccountSettingsRequest$ = DescribeAccountSettingsRequest$;
|
|
1363
|
-
exports.DescribeAccountSettingsResponse$ = DescribeAccountSettingsResponse$;
|
|
1364
|
-
exports.DescribeEndpoints$ = DescribeEndpoints$;
|
|
1365
511
|
exports.DescribeEndpointsCommand = DescribeEndpointsCommand;
|
|
1366
|
-
exports.DescribeEndpointsRequest$ = DescribeEndpointsRequest$;
|
|
1367
|
-
exports.DescribeEndpointsResponse$ = DescribeEndpointsResponse$;
|
|
1368
|
-
exports.DescribeScheduledQuery$ = DescribeScheduledQuery$;
|
|
1369
512
|
exports.DescribeScheduledQueryCommand = DescribeScheduledQueryCommand;
|
|
1370
|
-
exports.DescribeScheduledQueryRequest$ = DescribeScheduledQueryRequest$;
|
|
1371
|
-
exports.DescribeScheduledQueryResponse$ = DescribeScheduledQueryResponse$;
|
|
1372
|
-
exports.DimensionMapping$ = DimensionMapping$;
|
|
1373
513
|
exports.DimensionValueType = DimensionValueType;
|
|
1374
|
-
exports.Endpoint$ = Endpoint$;
|
|
1375
|
-
exports.ErrorReportConfiguration$ = ErrorReportConfiguration$;
|
|
1376
|
-
exports.ErrorReportLocation$ = ErrorReportLocation$;
|
|
1377
|
-
exports.ExecuteScheduledQuery$ = ExecuteScheduledQuery$;
|
|
1378
514
|
exports.ExecuteScheduledQueryCommand = ExecuteScheduledQueryCommand;
|
|
1379
|
-
exports.ExecuteScheduledQueryRequest$ = ExecuteScheduledQueryRequest$;
|
|
1380
|
-
exports.ExecutionStats$ = ExecutionStats$;
|
|
1381
|
-
exports.InternalServerException = InternalServerException;
|
|
1382
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1383
|
-
exports.InvalidEndpointException = InvalidEndpointException;
|
|
1384
|
-
exports.InvalidEndpointException$ = InvalidEndpointException$;
|
|
1385
|
-
exports.LastUpdate$ = LastUpdate$;
|
|
1386
515
|
exports.LastUpdateStatus = LastUpdateStatus;
|
|
1387
|
-
exports.ListScheduledQueries$ = ListScheduledQueries$;
|
|
1388
516
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
1389
|
-
exports.ListScheduledQueriesRequest$ = ListScheduledQueriesRequest$;
|
|
1390
|
-
exports.ListScheduledQueriesResponse$ = ListScheduledQueriesResponse$;
|
|
1391
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1392
517
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1393
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1394
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1395
518
|
exports.MeasureValueType = MeasureValueType;
|
|
1396
|
-
exports.MixedMeasureMapping$ = MixedMeasureMapping$;
|
|
1397
|
-
exports.MultiMeasureAttributeMapping$ = MultiMeasureAttributeMapping$;
|
|
1398
|
-
exports.MultiMeasureMappings$ = MultiMeasureMappings$;
|
|
1399
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
1400
|
-
exports.ParameterMapping$ = ParameterMapping$;
|
|
1401
|
-
exports.PrepareQuery$ = PrepareQuery$;
|
|
1402
519
|
exports.PrepareQueryCommand = PrepareQueryCommand;
|
|
1403
|
-
exports.PrepareQueryRequest$ = PrepareQueryRequest$;
|
|
1404
|
-
exports.PrepareQueryResponse$ = PrepareQueryResponse$;
|
|
1405
|
-
exports.ProvisionedCapacityRequest$ = ProvisionedCapacityRequest$;
|
|
1406
|
-
exports.ProvisionedCapacityResponse$ = ProvisionedCapacityResponse$;
|
|
1407
|
-
exports.Query$ = Query$;
|
|
1408
520
|
exports.QueryCommand = QueryCommand;
|
|
1409
|
-
exports.QueryComputeRequest$ = QueryComputeRequest$;
|
|
1410
|
-
exports.QueryComputeResponse$ = QueryComputeResponse$;
|
|
1411
|
-
exports.QueryExecutionException = QueryExecutionException;
|
|
1412
|
-
exports.QueryExecutionException$ = QueryExecutionException$;
|
|
1413
|
-
exports.QueryInsights$ = QueryInsights$;
|
|
1414
521
|
exports.QueryInsightsMode = QueryInsightsMode;
|
|
1415
|
-
exports.QueryInsightsResponse$ = QueryInsightsResponse$;
|
|
1416
522
|
exports.QueryPricingModel = QueryPricingModel;
|
|
1417
|
-
exports.QueryRequest$ = QueryRequest$;
|
|
1418
|
-
exports.QueryResponse$ = QueryResponse$;
|
|
1419
|
-
exports.QuerySpatialCoverage$ = QuerySpatialCoverage$;
|
|
1420
|
-
exports.QuerySpatialCoverageMax$ = QuerySpatialCoverageMax$;
|
|
1421
|
-
exports.QueryStatus$ = QueryStatus$;
|
|
1422
|
-
exports.QueryTemporalRange$ = QueryTemporalRange$;
|
|
1423
|
-
exports.QueryTemporalRangeMax$ = QueryTemporalRangeMax$;
|
|
1424
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1425
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1426
|
-
exports.Row$ = Row$;
|
|
1427
|
-
exports.S3Configuration$ = S3Configuration$;
|
|
1428
523
|
exports.S3EncryptionOption = S3EncryptionOption;
|
|
1429
|
-
exports.S3ReportLocation$ = S3ReportLocation$;
|
|
1430
524
|
exports.ScalarMeasureValueType = ScalarMeasureValueType;
|
|
1431
525
|
exports.ScalarType = ScalarType;
|
|
1432
|
-
exports.ScheduleConfiguration$ = ScheduleConfiguration$;
|
|
1433
|
-
exports.ScheduledQuery$ = ScheduledQuery$;
|
|
1434
|
-
exports.ScheduledQueryDescription$ = ScheduledQueryDescription$;
|
|
1435
|
-
exports.ScheduledQueryInsights$ = ScheduledQueryInsights$;
|
|
1436
526
|
exports.ScheduledQueryInsightsMode = ScheduledQueryInsightsMode;
|
|
1437
|
-
exports.ScheduledQueryInsightsResponse$ = ScheduledQueryInsightsResponse$;
|
|
1438
527
|
exports.ScheduledQueryRunStatus = ScheduledQueryRunStatus;
|
|
1439
|
-
exports.ScheduledQueryRunSummary$ = ScheduledQueryRunSummary$;
|
|
1440
528
|
exports.ScheduledQueryState = ScheduledQueryState;
|
|
1441
|
-
exports.SelectColumn$ = SelectColumn$;
|
|
1442
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1443
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1444
|
-
exports.SnsConfiguration$ = SnsConfiguration$;
|
|
1445
|
-
exports.Tag$ = Tag$;
|
|
1446
|
-
exports.TagResource$ = TagResource$;
|
|
1447
529
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1448
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1449
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1450
|
-
exports.TargetConfiguration$ = TargetConfiguration$;
|
|
1451
|
-
exports.TargetDestination$ = TargetDestination$;
|
|
1452
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1453
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1454
|
-
exports.TimeSeriesDataPoint$ = TimeSeriesDataPoint$;
|
|
1455
|
-
exports.TimestreamConfiguration$ = TimestreamConfiguration$;
|
|
1456
|
-
exports.TimestreamDestination$ = TimestreamDestination$;
|
|
1457
530
|
exports.TimestreamQuery = TimestreamQuery;
|
|
1458
531
|
exports.TimestreamQueryClient = TimestreamQueryClient;
|
|
1459
|
-
exports.TimestreamQueryServiceException = TimestreamQueryServiceException;
|
|
1460
|
-
exports.TimestreamQueryServiceException$ = TimestreamQueryServiceException$;
|
|
1461
|
-
exports.Type$ = Type$;
|
|
1462
|
-
exports.UntagResource$ = UntagResource$;
|
|
1463
532
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1464
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1465
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1466
|
-
exports.UpdateAccountSettings$ = UpdateAccountSettings$;
|
|
1467
533
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
1468
|
-
exports.UpdateAccountSettingsRequest$ = UpdateAccountSettingsRequest$;
|
|
1469
|
-
exports.UpdateAccountSettingsResponse$ = UpdateAccountSettingsResponse$;
|
|
1470
|
-
exports.UpdateScheduledQuery$ = UpdateScheduledQuery$;
|
|
1471
534
|
exports.UpdateScheduledQueryCommand = UpdateScheduledQueryCommand;
|
|
1472
|
-
exports.UpdateScheduledQueryRequest$ = UpdateScheduledQueryRequest$;
|
|
1473
|
-
exports.ValidationException = ValidationException;
|
|
1474
|
-
exports.ValidationException$ = ValidationException$;
|
|
1475
535
|
exports.paginateListScheduledQueries = paginateListScheduledQueries;
|
|
1476
536
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|
|
1477
537
|
exports.paginateQuery = paginateQuery;
|
|
538
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
539
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
540
|
+
enumerable: true,
|
|
541
|
+
get: function () { return schemas_0[k]; }
|
|
542
|
+
});
|
|
543
|
+
});
|
|
544
|
+
Object.keys(errors).forEach(function (k) {
|
|
545
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
546
|
+
enumerable: true,
|
|
547
|
+
get: function () { return errors[k]; }
|
|
548
|
+
});
|
|
549
|
+
});
|