@aws-sdk/client-timestream-query 3.927.0 → 3.929.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 +766 -824
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/TimestreamQueryClient.js +2 -0
- package/dist-es/commands/CancelQueryCommand.js +2 -6
- package/dist-es/commands/CreateScheduledQueryCommand.js +2 -7
- package/dist-es/commands/DeleteScheduledQueryCommand.js +2 -6
- package/dist-es/commands/DescribeAccountSettingsCommand.js +2 -6
- package/dist-es/commands/DescribeEndpointsCommand.js +3 -9
- package/dist-es/commands/DescribeScheduledQueryCommand.js +2 -7
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +2 -7
- package/dist-es/commands/ListScheduledQueriesCommand.js +2 -6
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -6
- package/dist-es/commands/PrepareQueryCommand.js +2 -7
- package/dist-es/commands/QueryCommand.js +2 -7
- package/dist-es/commands/TagResourceCommand.js +2 -6
- package/dist-es/commands/UntagResourceCommand.js +2 -6
- package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -6
- package/dist-es/commands/UpdateScheduledQueryCommand.js +2 -6
- package/dist-es/models/models_0.js +0 -31
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +715 -0
- package/dist-types/TimestreamQueryClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +115 -0
- package/dist-types/ts3.4/TimestreamQueryClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -19
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +121 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -693
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -137
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -185
package/dist-cjs/index.js
CHANGED
|
@@ -6,18 +6,16 @@ var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
|
6
6
|
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
7
7
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
8
8
|
var configResolver = require('@smithy/config-resolver');
|
|
9
|
-
var core
|
|
9
|
+
var core = require('@smithy/core');
|
|
10
|
+
var schema = require('@smithy/core/schema');
|
|
10
11
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
12
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
13
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
14
|
var smithyClient = require('@smithy/smithy-client');
|
|
14
15
|
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
16
|
-
var core = require('@aws-sdk/core');
|
|
17
|
-
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
-
var uuid = require('@smithy/uuid');
|
|
19
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
20
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
21
19
|
|
|
22
20
|
const resolveClientEndpointParameters = (options) => {
|
|
23
21
|
return Object.assign(options, {
|
|
@@ -33,14 +31,14 @@ const commonParams = {
|
|
|
33
31
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
34
32
|
};
|
|
35
33
|
|
|
36
|
-
class TimestreamQueryServiceException extends smithyClient.ServiceException {
|
|
34
|
+
let TimestreamQueryServiceException$1 = class TimestreamQueryServiceException extends smithyClient.ServiceException {
|
|
37
35
|
constructor(options) {
|
|
38
36
|
super(options);
|
|
39
37
|
Object.setPrototypeOf(this, TimestreamQueryServiceException.prototype);
|
|
40
38
|
}
|
|
41
|
-
}
|
|
39
|
+
};
|
|
42
40
|
|
|
43
|
-
class AccessDeniedException extends TimestreamQueryServiceException {
|
|
41
|
+
let AccessDeniedException$1 = class AccessDeniedException extends TimestreamQueryServiceException$1 {
|
|
44
42
|
name = "AccessDeniedException";
|
|
45
43
|
$fault = "client";
|
|
46
44
|
Message;
|
|
@@ -53,8 +51,8 @@ class AccessDeniedException extends TimestreamQueryServiceException {
|
|
|
53
51
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
54
52
|
this.Message = opts.Message;
|
|
55
53
|
}
|
|
56
|
-
}
|
|
57
|
-
class InternalServerException extends TimestreamQueryServiceException {
|
|
54
|
+
};
|
|
55
|
+
let InternalServerException$1 = class InternalServerException extends TimestreamQueryServiceException$1 {
|
|
58
56
|
name = "InternalServerException";
|
|
59
57
|
$fault = "server";
|
|
60
58
|
Message;
|
|
@@ -67,8 +65,8 @@ class InternalServerException extends TimestreamQueryServiceException {
|
|
|
67
65
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
68
66
|
this.Message = opts.Message;
|
|
69
67
|
}
|
|
70
|
-
}
|
|
71
|
-
class InvalidEndpointException extends TimestreamQueryServiceException {
|
|
68
|
+
};
|
|
69
|
+
let InvalidEndpointException$1 = class InvalidEndpointException extends TimestreamQueryServiceException$1 {
|
|
72
70
|
name = "InvalidEndpointException";
|
|
73
71
|
$fault = "client";
|
|
74
72
|
Message;
|
|
@@ -81,8 +79,8 @@ class InvalidEndpointException extends TimestreamQueryServiceException {
|
|
|
81
79
|
Object.setPrototypeOf(this, InvalidEndpointException.prototype);
|
|
82
80
|
this.Message = opts.Message;
|
|
83
81
|
}
|
|
84
|
-
}
|
|
85
|
-
class ThrottlingException extends TimestreamQueryServiceException {
|
|
82
|
+
};
|
|
83
|
+
let ThrottlingException$1 = class ThrottlingException extends TimestreamQueryServiceException$1 {
|
|
86
84
|
name = "ThrottlingException";
|
|
87
85
|
$fault = "client";
|
|
88
86
|
Message;
|
|
@@ -95,8 +93,8 @@ class ThrottlingException extends TimestreamQueryServiceException {
|
|
|
95
93
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
96
94
|
this.Message = opts.Message;
|
|
97
95
|
}
|
|
98
|
-
}
|
|
99
|
-
class ValidationException extends TimestreamQueryServiceException {
|
|
96
|
+
};
|
|
97
|
+
let ValidationException$1 = class ValidationException extends TimestreamQueryServiceException$1 {
|
|
100
98
|
name = "ValidationException";
|
|
101
99
|
$fault = "client";
|
|
102
100
|
Message;
|
|
@@ -109,7 +107,7 @@ class ValidationException extends TimestreamQueryServiceException {
|
|
|
109
107
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
110
108
|
this.Message = opts.Message;
|
|
111
109
|
}
|
|
112
|
-
}
|
|
110
|
+
};
|
|
113
111
|
const ScalarType = {
|
|
114
112
|
BIGINT: "BIGINT",
|
|
115
113
|
BOOLEAN: "BOOLEAN",
|
|
@@ -127,7 +125,7 @@ const ComputeMode = {
|
|
|
127
125
|
ON_DEMAND: "ON_DEMAND",
|
|
128
126
|
PROVISIONED: "PROVISIONED",
|
|
129
127
|
};
|
|
130
|
-
class ConflictException extends TimestreamQueryServiceException {
|
|
128
|
+
let ConflictException$1 = class ConflictException extends TimestreamQueryServiceException$1 {
|
|
131
129
|
name = "ConflictException";
|
|
132
130
|
$fault = "client";
|
|
133
131
|
Message;
|
|
@@ -140,7 +138,7 @@ class ConflictException extends TimestreamQueryServiceException {
|
|
|
140
138
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
141
139
|
this.Message = opts.Message;
|
|
142
140
|
}
|
|
143
|
-
}
|
|
141
|
+
};
|
|
144
142
|
const S3EncryptionOption = {
|
|
145
143
|
SSE_KMS: "SSE_KMS",
|
|
146
144
|
SSE_S3: "SSE_S3",
|
|
@@ -162,7 +160,7 @@ const ScalarMeasureValueType = {
|
|
|
162
160
|
TIMESTAMP: "TIMESTAMP",
|
|
163
161
|
VARCHAR: "VARCHAR",
|
|
164
162
|
};
|
|
165
|
-
class ServiceQuotaExceededException extends TimestreamQueryServiceException {
|
|
163
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends TimestreamQueryServiceException$1 {
|
|
166
164
|
name = "ServiceQuotaExceededException";
|
|
167
165
|
$fault = "client";
|
|
168
166
|
Message;
|
|
@@ -175,8 +173,8 @@ class ServiceQuotaExceededException extends TimestreamQueryServiceException {
|
|
|
175
173
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
176
174
|
this.Message = opts.Message;
|
|
177
175
|
}
|
|
178
|
-
}
|
|
179
|
-
class ResourceNotFoundException extends TimestreamQueryServiceException {
|
|
176
|
+
};
|
|
177
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends TimestreamQueryServiceException$1 {
|
|
180
178
|
name = "ResourceNotFoundException";
|
|
181
179
|
$fault = "client";
|
|
182
180
|
Message;
|
|
@@ -191,7 +189,7 @@ class ResourceNotFoundException extends TimestreamQueryServiceException {
|
|
|
191
189
|
this.Message = opts.Message;
|
|
192
190
|
this.ScheduledQueryArn = opts.ScheduledQueryArn;
|
|
193
191
|
}
|
|
194
|
-
}
|
|
192
|
+
};
|
|
195
193
|
const LastUpdateStatus = {
|
|
196
194
|
FAILED: "FAILED",
|
|
197
195
|
PENDING: "PENDING",
|
|
@@ -215,7 +213,7 @@ const ScheduledQueryInsightsMode = {
|
|
|
215
213
|
DISABLED: "DISABLED",
|
|
216
214
|
ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL",
|
|
217
215
|
};
|
|
218
|
-
class QueryExecutionException extends TimestreamQueryServiceException {
|
|
216
|
+
let QueryExecutionException$1 = class QueryExecutionException extends TimestreamQueryServiceException$1 {
|
|
219
217
|
name = "QueryExecutionException";
|
|
220
218
|
$fault = "client";
|
|
221
219
|
Message;
|
|
@@ -228,740 +226,732 @@ class QueryExecutionException extends TimestreamQueryServiceException {
|
|
|
228
226
|
Object.setPrototypeOf(this, QueryExecutionException.prototype);
|
|
229
227
|
this.Message = opts.Message;
|
|
230
228
|
}
|
|
231
|
-
}
|
|
229
|
+
};
|
|
232
230
|
const QueryInsightsMode = {
|
|
233
231
|
DISABLED: "DISABLED",
|
|
234
232
|
ENABLED_WITH_RATE_CONTROL: "ENABLED_WITH_RATE_CONTROL",
|
|
235
233
|
};
|
|
236
|
-
const CreateScheduledQueryRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
239
|
-
...(obj.ClientToken && { ClientToken: smithyClient.SENSITIVE_STRING }),
|
|
240
|
-
});
|
|
241
|
-
const ScheduledQueryDescriptionFilterSensitiveLog = (obj) => ({
|
|
242
|
-
...obj,
|
|
243
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
244
|
-
});
|
|
245
|
-
const DescribeScheduledQueryResponseFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
...(obj.ScheduledQuery && { ScheduledQuery: ScheduledQueryDescriptionFilterSensitiveLog(obj.ScheduledQuery) }),
|
|
248
|
-
});
|
|
249
|
-
const ExecuteScheduledQueryRequestFilterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
...(obj.ClientToken && { ClientToken: smithyClient.SENSITIVE_STRING }),
|
|
252
|
-
});
|
|
253
|
-
const PrepareQueryRequestFilterSensitiveLog = (obj) => ({
|
|
254
|
-
...obj,
|
|
255
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
256
|
-
});
|
|
257
|
-
const QueryRequestFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
260
|
-
...(obj.ClientToken && { ClientToken: smithyClient.SENSITIVE_STRING }),
|
|
261
|
-
});
|
|
262
|
-
const PrepareQueryResponseFilterSensitiveLog = (obj) => ({
|
|
263
|
-
...obj,
|
|
264
|
-
...(obj.QueryString && { QueryString: smithyClient.SENSITIVE_STRING }),
|
|
265
|
-
});
|
|
266
234
|
|
|
267
|
-
const
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
const
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
const
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
const
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
const
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
const
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
const
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
const
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
const
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
const
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
const
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
const
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
const
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
const
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
const
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
const
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
const
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
const
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
const
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
const
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
const
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
const
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
const
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
const
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
235
|
+
const _A = "Arn";
|
|
236
|
+
const _ACI = "ArrayColumnInfo";
|
|
237
|
+
const _ADE = "AccessDeniedException";
|
|
238
|
+
const _AQTCU = "ActiveQueryTCU";
|
|
239
|
+
const _ASNC = "AccountSettingsNotificationConfiguration";
|
|
240
|
+
const _AV = "ArrayValue";
|
|
241
|
+
const _Ad = "Address";
|
|
242
|
+
const _Al = "Aliased";
|
|
243
|
+
const _BM = "BytesMetered";
|
|
244
|
+
const _BN = "BucketName";
|
|
245
|
+
const _C = "Columns";
|
|
246
|
+
const _CBM = "CumulativeBytesMetered";
|
|
247
|
+
const _CBS = "CumulativeBytesScanned";
|
|
248
|
+
const _CE = "ConflictException";
|
|
249
|
+
const _CI = "ColumnInfo";
|
|
250
|
+
const _CIL = "ColumnInfoList";
|
|
251
|
+
const _CM = "CancellationMessage";
|
|
252
|
+
const _CMo = "ComputeMode";
|
|
253
|
+
const _CPIM = "CachePeriodInMinutes";
|
|
254
|
+
const _CQ = "CancelQuery";
|
|
255
|
+
const _CQR = "CancelQueryRequest";
|
|
256
|
+
const _CQRa = "CancelQueryResponse";
|
|
257
|
+
const _CRT = "ClientRequestToken";
|
|
258
|
+
const _CSQ = "CreateScheduledQuery";
|
|
259
|
+
const _CSQR = "CreateScheduledQueryRequest";
|
|
260
|
+
const _CSQRr = "CreateScheduledQueryResponse";
|
|
261
|
+
const _CT = "ClientToken";
|
|
262
|
+
const _CTr = "CreationTime";
|
|
263
|
+
const _D = "Datum";
|
|
264
|
+
const _DAS = "DescribeAccountSettings";
|
|
265
|
+
const _DASR = "DescribeAccountSettingsRequest";
|
|
266
|
+
const _DASRe = "DescribeAccountSettingsResponse";
|
|
267
|
+
const _DE = "DescribeEndpoints";
|
|
268
|
+
const _DER = "DescribeEndpointsRequest";
|
|
269
|
+
const _DERe = "DescribeEndpointsResponse";
|
|
270
|
+
const _DL = "DatumList";
|
|
271
|
+
const _DM = "DimensionMapping";
|
|
272
|
+
const _DML = "DimensionMappingList";
|
|
273
|
+
const _DMi = "DimensionMappings";
|
|
274
|
+
const _DN = "DatabaseName";
|
|
275
|
+
const _DSQ = "DeleteScheduledQuery";
|
|
276
|
+
const _DSQR = "DeleteScheduledQueryRequest";
|
|
277
|
+
const _DSQRe = "DescribeScheduledQueryRequest";
|
|
278
|
+
const _DSQRes = "DescribeScheduledQueryResponse";
|
|
279
|
+
const _DSQe = "DescribeScheduledQuery";
|
|
280
|
+
const _DVT = "DimensionValueType";
|
|
281
|
+
const _DW = "DataWrites";
|
|
282
|
+
const _Da = "Data";
|
|
283
|
+
const _E = "Endpoints";
|
|
284
|
+
const _EO = "EncryptionOption";
|
|
285
|
+
const _ERC = "ErrorReportConfiguration";
|
|
286
|
+
const _ERL = "ErrorReportLocation";
|
|
287
|
+
const _ES = "ExecutionStats";
|
|
288
|
+
const _ESQ = "ExecuteScheduledQuery";
|
|
289
|
+
const _ESQR = "ExecuteScheduledQueryRequest";
|
|
290
|
+
const _ETIM = "ExecutionTimeInMillis";
|
|
291
|
+
const _En = "Endpoint";
|
|
292
|
+
const _FR = "FailureReason";
|
|
293
|
+
const _IEE = "InvalidEndpointException";
|
|
294
|
+
const _ISE = "InternalServerException";
|
|
295
|
+
const _IT = "InvocationTime";
|
|
296
|
+
const _K = "Key";
|
|
297
|
+
const _KKI = "KmsKeyId";
|
|
298
|
+
const _LRS = "LastRunStatus";
|
|
299
|
+
const _LRSa = "LastRunSummary";
|
|
300
|
+
const _LSQ = "ListScheduledQueries";
|
|
301
|
+
const _LSQR = "ListScheduledQueriesRequest";
|
|
302
|
+
const _LSQRi = "ListScheduledQueriesResponse";
|
|
303
|
+
const _LTFR = "ListTagsForResource";
|
|
304
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
305
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
306
|
+
const _LU = "LastUpdate";
|
|
307
|
+
const _M = "Message";
|
|
308
|
+
const _MMAM = "MultiMeasureAttributeMappings";
|
|
309
|
+
const _MMAML = "MultiMeasureAttributeMappingList";
|
|
310
|
+
const _MMAMu = "MultiMeasureAttributeMapping";
|
|
311
|
+
const _MMM = "MixedMeasureMapping";
|
|
312
|
+
const _MMML = "MixedMeasureMappingList";
|
|
313
|
+
const _MMMi = "MixedMeasureMappings";
|
|
314
|
+
const _MMMu = "MultiMeasureMappings";
|
|
315
|
+
const _MN = "MeasureName";
|
|
316
|
+
const _MNC = "MeasureNameColumn";
|
|
317
|
+
const _MQTCU = "MaxQueryTCU";
|
|
318
|
+
const _MR = "MaxResults";
|
|
319
|
+
const _MRa = "MaxRows";
|
|
320
|
+
const _MVT = "MeasureValueType";
|
|
321
|
+
const _Ma = "Max";
|
|
322
|
+
const _Mo = "Mode";
|
|
323
|
+
const _N = "Name";
|
|
324
|
+
const _NC = "NotificationConfiguration";
|
|
325
|
+
const _NIT = "NextInvocationTime";
|
|
326
|
+
const _NT = "NextToken";
|
|
327
|
+
const _NV = "NullValue";
|
|
328
|
+
const _OB = "OutputBytes";
|
|
329
|
+
const _OK = "ObjectKey";
|
|
330
|
+
const _OKP = "ObjectKeyPrefix";
|
|
331
|
+
const _OR = "OutputRows";
|
|
332
|
+
const _P = "Parameters";
|
|
333
|
+
const _PC = "ProvisionedCapacity";
|
|
334
|
+
const _PCR = "ProvisionedCapacityRequest";
|
|
335
|
+
const _PCRr = "ProvisionedCapacityResponse";
|
|
336
|
+
const _PIT = "PreviousInvocationTime";
|
|
337
|
+
const _PK = "PartitionKey";
|
|
338
|
+
const _PM = "ParameterMapping";
|
|
339
|
+
const _PML = "ParameterMappingList";
|
|
340
|
+
const _PP = "ProgressPercentage";
|
|
341
|
+
const _PQ = "PrepareQuery";
|
|
342
|
+
const _PQR = "PrepareQueryRequest";
|
|
343
|
+
const _PQRr = "PrepareQueryResponse";
|
|
344
|
+
const _Q = "Query";
|
|
345
|
+
const _QC = "QueryCompute";
|
|
346
|
+
const _QCR = "QueryComputeRequest";
|
|
347
|
+
const _QCRu = "QueryComputeResponse";
|
|
348
|
+
const _QEE = "QueryExecutionException";
|
|
349
|
+
const _QI = "QueryId";
|
|
350
|
+
const _QIR = "QueryInsightsResponse";
|
|
351
|
+
const _QIu = "QueryInsights";
|
|
352
|
+
const _QPM = "QueryPricingModel";
|
|
353
|
+
const _QR = "QueryRequest";
|
|
354
|
+
const _QRR = "QueryResultRows";
|
|
355
|
+
const _QRu = "QueryResponse";
|
|
356
|
+
const _QS = "QueryString";
|
|
357
|
+
const _QSC = "QuerySpatialCoverage";
|
|
358
|
+
const _QSCM = "QuerySpatialCoverageMax";
|
|
359
|
+
const _QSu = "QueryStatus";
|
|
360
|
+
const _QTC = "QueryTableCount";
|
|
361
|
+
const _QTR = "QueryTemporalRange";
|
|
362
|
+
const _QTRM = "QueryTemporalRangeMax";
|
|
363
|
+
const _R = "Rows";
|
|
364
|
+
const _RA = "RoleArn";
|
|
365
|
+
const _RARN = "ResourceARN";
|
|
366
|
+
const _RCI = "RowColumnInfo";
|
|
367
|
+
const _RFR = "RecentlyFailedRuns";
|
|
368
|
+
const _RI = "RecordsIngested";
|
|
369
|
+
const _RL = "RowList";
|
|
370
|
+
const _RNFE = "ResourceNotFoundException";
|
|
371
|
+
const _RS = "RunStatus";
|
|
372
|
+
const _RV = "RowValue";
|
|
373
|
+
const _Ro = "Row";
|
|
374
|
+
const _S = "Status";
|
|
375
|
+
const _SC = "SnsConfiguration";
|
|
376
|
+
const _SCL = "SelectColumnList";
|
|
377
|
+
const _SCc = "ScheduleConfiguration";
|
|
378
|
+
const _SCe = "SelectColumn";
|
|
379
|
+
const _SCo = "S3Configuration";
|
|
380
|
+
const _SCou = "SourceColumn";
|
|
381
|
+
const _SE = "ScheduleExpression";
|
|
382
|
+
const _SM = "StatusMessage";
|
|
383
|
+
const _SQ = "ScheduledQuery";
|
|
384
|
+
const _SQA = "ScheduledQueryArn";
|
|
385
|
+
const _SQD = "ScheduledQueryDescription";
|
|
386
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
387
|
+
const _SQERA = "ScheduledQueryExecutionRoleArn";
|
|
388
|
+
const _SQI = "ScheduledQueryInsights";
|
|
389
|
+
const _SQIR = "ScheduledQueryInsightsResponse";
|
|
390
|
+
const _SQL = "ScheduledQueryList";
|
|
391
|
+
const _SQRS = "ScheduledQueryRunSummary";
|
|
392
|
+
const _SQRSL = "ScheduledQueryRunSummaryList";
|
|
393
|
+
const _SQc = "ScheduledQueries";
|
|
394
|
+
const _SRL = "S3ReportLocation";
|
|
395
|
+
const _ST = "ScalarType";
|
|
396
|
+
const _SV = "ScalarValue";
|
|
397
|
+
const _St = "State";
|
|
398
|
+
const _T = "Type";
|
|
399
|
+
const _TA = "TableArn";
|
|
400
|
+
const _TAo = "TopicArn";
|
|
401
|
+
const _TC = "TargetConfiguration";
|
|
402
|
+
const _TCi = "TimestreamConfiguration";
|
|
403
|
+
const _TCim = "TimeColumn";
|
|
404
|
+
const _TD = "TargetDestination";
|
|
405
|
+
const _TDi = "TimestreamDestination";
|
|
406
|
+
const _TE = "ThrottlingException";
|
|
407
|
+
const _TK = "TagKeys";
|
|
408
|
+
const _TL = "TagList";
|
|
409
|
+
const _TMMAN = "TargetMultiMeasureAttributeName";
|
|
410
|
+
const _TMMN = "TargetMultiMeasureName";
|
|
411
|
+
const _TMN = "TargetMeasureName";
|
|
412
|
+
const _TN = "TableName";
|
|
413
|
+
const _TQTCU = "TargetQueryTCU";
|
|
414
|
+
const _TR = "TagResource";
|
|
415
|
+
const _TRR = "TagResourceRequest";
|
|
416
|
+
const _TRRa = "TagResourceResponse";
|
|
417
|
+
const _TSDP = "TimeSeriesDataPoint";
|
|
418
|
+
const _TSDPL = "TimeSeriesDataPointList";
|
|
419
|
+
const _TSMVCI = "TimeSeriesMeasureValueColumnInfo";
|
|
420
|
+
const _TSV = "TimeSeriesValue";
|
|
421
|
+
const _TT = "TriggerTime";
|
|
422
|
+
const _Ta = "Tags";
|
|
423
|
+
const _Tag = "Tag";
|
|
424
|
+
const _Ti = "Time";
|
|
425
|
+
const _UAS = "UpdateAccountSettings";
|
|
426
|
+
const _UASR = "UpdateAccountSettingsRequest";
|
|
427
|
+
const _UASRp = "UpdateAccountSettingsResponse";
|
|
428
|
+
const _UPC = "UnloadPartitionCount";
|
|
429
|
+
const _UR = "UntagResource";
|
|
430
|
+
const _URR = "UntagResourceRequest";
|
|
431
|
+
const _URRn = "UntagResourceResponse";
|
|
432
|
+
const _USQ = "UpdateScheduledQuery";
|
|
433
|
+
const _USQR = "UpdateScheduledQueryRequest";
|
|
434
|
+
const _UWB = "UnloadWrittenBytes";
|
|
435
|
+
const _UWR = "UnloadWrittenRows";
|
|
436
|
+
const _V = "Value";
|
|
437
|
+
const _VE = "ValidationException";
|
|
438
|
+
const _VO = "ValidateOnly";
|
|
439
|
+
const _aQE = "awsQueryError";
|
|
440
|
+
const _c = "client";
|
|
441
|
+
const _e = "error";
|
|
442
|
+
const _hE = "httpError";
|
|
443
|
+
const _s = "server";
|
|
444
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.timestreamquery";
|
|
445
|
+
const n0 = "com.amazonaws.timestreamquery";
|
|
446
|
+
var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
447
|
+
var ClientToken = [0, n0, _CT, 8, 0];
|
|
448
|
+
var QueryString = [0, n0, _QS, 8, 0];
|
|
449
|
+
var AccessDeniedException = [
|
|
450
|
+
-3,
|
|
451
|
+
n0,
|
|
452
|
+
_ADE,
|
|
453
|
+
{
|
|
454
|
+
[_e]: _c,
|
|
455
|
+
[_hE]: 403,
|
|
456
|
+
[_aQE]: [`AccessDenied`, 403],
|
|
457
|
+
},
|
|
458
|
+
[_M],
|
|
459
|
+
[0],
|
|
460
|
+
];
|
|
461
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
462
|
+
var AccountSettingsNotificationConfiguration = [
|
|
463
|
+
3,
|
|
464
|
+
n0,
|
|
465
|
+
_ASNC,
|
|
466
|
+
0,
|
|
467
|
+
[_SC, _RA],
|
|
468
|
+
[() => SnsConfiguration, 0],
|
|
469
|
+
];
|
|
470
|
+
var CancelQueryRequest = [3, n0, _CQR, 0, [_QI], [0]];
|
|
471
|
+
var CancelQueryResponse = [3, n0, _CQRa, 0, [_CM], [0]];
|
|
472
|
+
var ColumnInfo = [3, n0, _CI, 0, [_N, _T], [0, () => Type]];
|
|
473
|
+
var ConflictException = [
|
|
474
|
+
-3,
|
|
475
|
+
n0,
|
|
476
|
+
_CE,
|
|
477
|
+
{
|
|
478
|
+
[_e]: _c,
|
|
479
|
+
[_hE]: 409,
|
|
480
|
+
},
|
|
481
|
+
[_M],
|
|
482
|
+
[0],
|
|
483
|
+
];
|
|
484
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
485
|
+
var CreateScheduledQueryRequest = [
|
|
486
|
+
3,
|
|
487
|
+
n0,
|
|
488
|
+
_CSQR,
|
|
489
|
+
0,
|
|
490
|
+
[_N, _QS, _SCc, _NC, _TC, _CT, _SQERA, _Ta, _KKI, _ERC],
|
|
491
|
+
[
|
|
492
|
+
0,
|
|
493
|
+
[() => QueryString, 0],
|
|
494
|
+
() => ScheduleConfiguration,
|
|
495
|
+
() => NotificationConfiguration,
|
|
496
|
+
() => TargetConfiguration,
|
|
497
|
+
[() => ClientToken, 4],
|
|
498
|
+
0,
|
|
499
|
+
() => TagList,
|
|
500
|
+
0,
|
|
501
|
+
() => ErrorReportConfiguration,
|
|
502
|
+
],
|
|
503
|
+
];
|
|
504
|
+
var CreateScheduledQueryResponse = [3, n0, _CSQRr, 0, [_A], [0]];
|
|
505
|
+
var Datum = [
|
|
506
|
+
3,
|
|
507
|
+
n0,
|
|
508
|
+
_D,
|
|
509
|
+
0,
|
|
510
|
+
[_SV, _TSV, _AV, _RV, _NV],
|
|
511
|
+
[0, () => TimeSeriesDataPointList, () => DatumList, () => Row, 2],
|
|
512
|
+
];
|
|
513
|
+
var DeleteScheduledQueryRequest = [3, n0, _DSQR, 0, [_SQA], [0]];
|
|
514
|
+
var DescribeAccountSettingsRequest = [3, n0, _DASR, 0, [], []];
|
|
515
|
+
var DescribeAccountSettingsResponse = [
|
|
516
|
+
3,
|
|
517
|
+
n0,
|
|
518
|
+
_DASRe,
|
|
519
|
+
0,
|
|
520
|
+
[_MQTCU, _QPM, _QC],
|
|
521
|
+
[1, 0, () => QueryComputeResponse],
|
|
522
|
+
];
|
|
523
|
+
var DescribeEndpointsRequest = [3, n0, _DER, 0, [], []];
|
|
524
|
+
var DescribeEndpointsResponse = [3, n0, _DERe, 0, [_E], [() => Endpoints]];
|
|
525
|
+
var DescribeScheduledQueryRequest = [3, n0, _DSQRe, 0, [_SQA], [0]];
|
|
526
|
+
var DescribeScheduledQueryResponse = [
|
|
527
|
+
3,
|
|
528
|
+
n0,
|
|
529
|
+
_DSQRes,
|
|
530
|
+
0,
|
|
531
|
+
[_SQ],
|
|
532
|
+
[[() => ScheduledQueryDescription, 0]],
|
|
533
|
+
];
|
|
534
|
+
var DimensionMapping = [3, n0, _DM, 0, [_N, _DVT], [0, 0]];
|
|
535
|
+
var Endpoint = [3, n0, _En, 0, [_Ad, _CPIM], [0, 1]];
|
|
536
|
+
var ErrorReportConfiguration = [3, n0, _ERC, 0, [_SCo], [() => S3Configuration]];
|
|
537
|
+
var ErrorReportLocation = [3, n0, _ERL, 0, [_SRL], [() => S3ReportLocation]];
|
|
538
|
+
var ExecuteScheduledQueryRequest = [
|
|
539
|
+
3,
|
|
540
|
+
n0,
|
|
541
|
+
_ESQR,
|
|
542
|
+
0,
|
|
543
|
+
[_SQA, _IT, _CT, _QIu],
|
|
544
|
+
[0, 4, [() => ClientToken, 4], () => ScheduledQueryInsights],
|
|
545
|
+
];
|
|
546
|
+
var ExecutionStats = [
|
|
547
|
+
3,
|
|
548
|
+
n0,
|
|
549
|
+
_ES,
|
|
550
|
+
0,
|
|
551
|
+
[_ETIM, _DW, _BM, _CBS, _RI, _QRR],
|
|
552
|
+
[1, 1, 1, 1, 1, 1],
|
|
553
|
+
];
|
|
554
|
+
var InternalServerException = [
|
|
555
|
+
-3,
|
|
556
|
+
n0,
|
|
557
|
+
_ISE,
|
|
558
|
+
{
|
|
559
|
+
[_e]: _s,
|
|
560
|
+
[_hE]: 500,
|
|
561
|
+
},
|
|
562
|
+
[_M],
|
|
563
|
+
[0],
|
|
564
|
+
];
|
|
565
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
566
|
+
var InvalidEndpointException = [
|
|
567
|
+
-3,
|
|
568
|
+
n0,
|
|
569
|
+
_IEE,
|
|
570
|
+
{
|
|
571
|
+
[_e]: _c,
|
|
572
|
+
[_hE]: 421,
|
|
573
|
+
},
|
|
574
|
+
[_M],
|
|
575
|
+
[0],
|
|
576
|
+
];
|
|
577
|
+
schema.TypeRegistry.for(n0).registerError(InvalidEndpointException, InvalidEndpointException$1);
|
|
578
|
+
var LastUpdate = [3, n0, _LU, 0, [_TQTCU, _S, _SM], [1, 0, 0]];
|
|
579
|
+
var ListScheduledQueriesRequest = [3, n0, _LSQR, 0, [_MR, _NT], [1, 0]];
|
|
580
|
+
var ListScheduledQueriesResponse = [
|
|
581
|
+
3,
|
|
582
|
+
n0,
|
|
583
|
+
_LSQRi,
|
|
584
|
+
0,
|
|
585
|
+
[_SQc, _NT],
|
|
586
|
+
[() => ScheduledQueryList, 0],
|
|
587
|
+
];
|
|
588
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN, _MR, _NT], [0, 1, 0]];
|
|
589
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta, _NT], [() => TagList, 0]];
|
|
590
|
+
var MixedMeasureMapping = [
|
|
591
|
+
3,
|
|
592
|
+
n0,
|
|
593
|
+
_MMM,
|
|
594
|
+
0,
|
|
595
|
+
[_MN, _SCou, _TMN, _MVT, _MMAM],
|
|
596
|
+
[0, 0, 0, 0, () => MultiMeasureAttributeMappingList],
|
|
597
|
+
];
|
|
598
|
+
var MultiMeasureAttributeMapping = [3, n0, _MMAMu, 0, [_SCou, _TMMAN, _MVT], [0, 0, 0]];
|
|
599
|
+
var MultiMeasureMappings = [
|
|
600
|
+
3,
|
|
601
|
+
n0,
|
|
602
|
+
_MMMu,
|
|
603
|
+
0,
|
|
604
|
+
[_TMMN, _MMAM],
|
|
605
|
+
[0, () => MultiMeasureAttributeMappingList],
|
|
606
|
+
];
|
|
607
|
+
var NotificationConfiguration = [3, n0, _NC, 0, [_SC], [() => SnsConfiguration]];
|
|
608
|
+
var ParameterMapping = [3, n0, _PM, 0, [_N, _T], [0, () => Type]];
|
|
609
|
+
var PrepareQueryRequest = [3, n0, _PQR, 0, [_QS, _VO], [[() => QueryString, 0], 2]];
|
|
610
|
+
var PrepareQueryResponse = [
|
|
611
|
+
3,
|
|
612
|
+
n0,
|
|
613
|
+
_PQRr,
|
|
614
|
+
0,
|
|
615
|
+
[_QS, _C, _P],
|
|
616
|
+
[[() => QueryString, 0], () => SelectColumnList, () => ParameterMappingList],
|
|
617
|
+
];
|
|
618
|
+
var ProvisionedCapacityRequest = [
|
|
619
|
+
3,
|
|
620
|
+
n0,
|
|
621
|
+
_PCR,
|
|
622
|
+
0,
|
|
623
|
+
[_TQTCU, _NC],
|
|
624
|
+
[1, () => AccountSettingsNotificationConfiguration],
|
|
625
|
+
];
|
|
626
|
+
var ProvisionedCapacityResponse = [
|
|
627
|
+
3,
|
|
628
|
+
n0,
|
|
629
|
+
_PCRr,
|
|
630
|
+
0,
|
|
631
|
+
[_AQTCU, _NC, _LU],
|
|
632
|
+
[1, () => AccountSettingsNotificationConfiguration, () => LastUpdate],
|
|
633
|
+
];
|
|
634
|
+
var QueryComputeRequest = [
|
|
635
|
+
3,
|
|
636
|
+
n0,
|
|
637
|
+
_QCR,
|
|
638
|
+
0,
|
|
639
|
+
[_CMo, _PC],
|
|
640
|
+
[0, () => ProvisionedCapacityRequest],
|
|
641
|
+
];
|
|
642
|
+
var QueryComputeResponse = [
|
|
643
|
+
3,
|
|
644
|
+
n0,
|
|
645
|
+
_QCRu,
|
|
646
|
+
0,
|
|
647
|
+
[_CMo, _PC],
|
|
648
|
+
[0, () => ProvisionedCapacityResponse],
|
|
649
|
+
];
|
|
650
|
+
var QueryExecutionException = [
|
|
651
|
+
-3,
|
|
652
|
+
n0,
|
|
653
|
+
_QEE,
|
|
654
|
+
{
|
|
655
|
+
[_e]: _c,
|
|
656
|
+
[_hE]: 400,
|
|
657
|
+
},
|
|
658
|
+
[_M],
|
|
659
|
+
[0],
|
|
660
|
+
];
|
|
661
|
+
schema.TypeRegistry.for(n0).registerError(QueryExecutionException, QueryExecutionException$1);
|
|
662
|
+
var QueryInsights = [3, n0, _QIu, 0, [_Mo], [0]];
|
|
663
|
+
var QueryInsightsResponse = [
|
|
664
|
+
3,
|
|
665
|
+
n0,
|
|
666
|
+
_QIR,
|
|
667
|
+
0,
|
|
668
|
+
[_QSC, _QTR, _QTC, _OR, _OB, _UPC, _UWR, _UWB],
|
|
669
|
+
[() => QuerySpatialCoverage, () => QueryTemporalRange, 1, 1, 1, 1, 1, 1],
|
|
670
|
+
];
|
|
671
|
+
var QueryRequest = [
|
|
672
|
+
3,
|
|
673
|
+
n0,
|
|
674
|
+
_QR,
|
|
675
|
+
0,
|
|
676
|
+
[_QS, _CT, _NT, _MRa, _QIu],
|
|
677
|
+
[[() => QueryString, 0], [() => ClientRequestToken, 4], 0, 1, () => QueryInsights],
|
|
678
|
+
];
|
|
679
|
+
var QueryResponse = [
|
|
680
|
+
3,
|
|
681
|
+
n0,
|
|
682
|
+
_QRu,
|
|
683
|
+
0,
|
|
684
|
+
[_QI, _NT, _R, _CI, _QSu, _QIR],
|
|
685
|
+
[0, 0, () => RowList, () => ColumnInfoList, () => QueryStatus, () => QueryInsightsResponse],
|
|
686
|
+
];
|
|
687
|
+
var QuerySpatialCoverage = [3, n0, _QSC, 0, [_Ma], [() => QuerySpatialCoverageMax]];
|
|
688
|
+
var QuerySpatialCoverageMax = [3, n0, _QSCM, 0, [_V, _TA, _PK], [1, 0, 64 | 0]];
|
|
689
|
+
var QueryStatus = [3, n0, _QSu, 0, [_PP, _CBS, _CBM], [1, 1, 1]];
|
|
690
|
+
var QueryTemporalRange = [3, n0, _QTR, 0, [_Ma], [() => QueryTemporalRangeMax]];
|
|
691
|
+
var QueryTemporalRangeMax = [3, n0, _QTRM, 0, [_V, _TA], [1, 0]];
|
|
692
|
+
var ResourceNotFoundException = [
|
|
693
|
+
-3,
|
|
694
|
+
n0,
|
|
695
|
+
_RNFE,
|
|
696
|
+
{
|
|
697
|
+
[_e]: _c,
|
|
698
|
+
[_hE]: 404,
|
|
699
|
+
},
|
|
700
|
+
[_M, _SQA],
|
|
701
|
+
[0, 0],
|
|
702
|
+
];
|
|
703
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
704
|
+
var Row = [3, n0, _Ro, 0, [_Da], [() => DatumList]];
|
|
705
|
+
var S3Configuration = [3, n0, _SCo, 0, [_BN, _OKP, _EO], [0, 0, 0]];
|
|
706
|
+
var S3ReportLocation = [3, n0, _SRL, 0, [_BN, _OK], [0, 0]];
|
|
707
|
+
var ScheduleConfiguration = [3, n0, _SCc, 0, [_SE], [0]];
|
|
708
|
+
var ScheduledQuery = [
|
|
709
|
+
3,
|
|
710
|
+
n0,
|
|
711
|
+
_SQ,
|
|
712
|
+
0,
|
|
713
|
+
[_A, _N, _CTr, _St, _PIT, _NIT, _ERC, _TD, _LRS],
|
|
714
|
+
[0, 0, 4, 0, 4, 4, () => ErrorReportConfiguration, () => TargetDestination, 0],
|
|
715
|
+
];
|
|
716
|
+
var ScheduledQueryDescription = [
|
|
717
|
+
3,
|
|
718
|
+
n0,
|
|
719
|
+
_SQD,
|
|
720
|
+
0,
|
|
721
|
+
[_A, _N, _QS, _CTr, _St, _PIT, _NIT, _SCc, _NC, _TC, _SQERA, _KKI, _ERC, _LRSa, _RFR],
|
|
722
|
+
[
|
|
723
|
+
0,
|
|
724
|
+
0,
|
|
725
|
+
[() => QueryString, 0],
|
|
726
|
+
4,
|
|
727
|
+
0,
|
|
728
|
+
4,
|
|
729
|
+
4,
|
|
730
|
+
() => ScheduleConfiguration,
|
|
731
|
+
() => NotificationConfiguration,
|
|
732
|
+
() => TargetConfiguration,
|
|
733
|
+
0,
|
|
734
|
+
0,
|
|
735
|
+
() => ErrorReportConfiguration,
|
|
736
|
+
() => ScheduledQueryRunSummary,
|
|
737
|
+
() => ScheduledQueryRunSummaryList,
|
|
738
|
+
],
|
|
739
|
+
];
|
|
740
|
+
var ScheduledQueryInsights = [3, n0, _SQI, 0, [_Mo], [0]];
|
|
741
|
+
var ScheduledQueryInsightsResponse = [
|
|
742
|
+
3,
|
|
743
|
+
n0,
|
|
744
|
+
_SQIR,
|
|
745
|
+
0,
|
|
746
|
+
[_QSC, _QTR, _QTC, _OR, _OB],
|
|
747
|
+
[() => QuerySpatialCoverage, () => QueryTemporalRange, 1, 1, 1],
|
|
748
|
+
];
|
|
749
|
+
var ScheduledQueryRunSummary = [
|
|
750
|
+
3,
|
|
751
|
+
n0,
|
|
752
|
+
_SQRS,
|
|
753
|
+
0,
|
|
754
|
+
[_IT, _TT, _RS, _ES, _QIR, _ERL, _FR],
|
|
755
|
+
[4, 4, 0, () => ExecutionStats, () => ScheduledQueryInsightsResponse, () => ErrorReportLocation, 0],
|
|
756
|
+
];
|
|
757
|
+
var SelectColumn = [3, n0, _SCe, 0, [_N, _T, _DN, _TN, _Al], [0, () => Type, 0, 0, 2]];
|
|
758
|
+
var ServiceQuotaExceededException = [
|
|
759
|
+
-3,
|
|
760
|
+
n0,
|
|
761
|
+
_SQEE,
|
|
762
|
+
{
|
|
763
|
+
[_e]: _c,
|
|
764
|
+
[_hE]: 402,
|
|
765
|
+
},
|
|
766
|
+
[_M],
|
|
767
|
+
[0],
|
|
768
|
+
];
|
|
769
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
770
|
+
var SnsConfiguration = [3, n0, _SC, 0, [_TAo], [0]];
|
|
771
|
+
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
772
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagList]];
|
|
773
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
774
|
+
var TargetConfiguration = [3, n0, _TC, 0, [_TCi], [() => TimestreamConfiguration]];
|
|
775
|
+
var TargetDestination = [3, n0, _TD, 0, [_TDi], [() => TimestreamDestination]];
|
|
776
|
+
var ThrottlingException = [
|
|
777
|
+
-3,
|
|
778
|
+
n0,
|
|
779
|
+
_TE,
|
|
780
|
+
{
|
|
781
|
+
[_e]: _c,
|
|
782
|
+
[_hE]: 429,
|
|
783
|
+
},
|
|
784
|
+
[_M],
|
|
785
|
+
[0],
|
|
786
|
+
];
|
|
787
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
788
|
+
var TimeSeriesDataPoint = [3, n0, _TSDP, 0, [_Ti, _V], [0, () => Datum]];
|
|
789
|
+
var TimestreamConfiguration = [
|
|
790
|
+
3,
|
|
791
|
+
n0,
|
|
792
|
+
_TCi,
|
|
793
|
+
0,
|
|
794
|
+
[_DN, _TN, _TCim, _DMi, _MMMu, _MMMi, _MNC],
|
|
795
|
+
[0, 0, 0, () => DimensionMappingList, () => MultiMeasureMappings, () => MixedMeasureMappingList, 0],
|
|
796
|
+
];
|
|
797
|
+
var TimestreamDestination = [3, n0, _TDi, 0, [_DN, _TN], [0, 0]];
|
|
798
|
+
var Type = [
|
|
799
|
+
3,
|
|
800
|
+
n0,
|
|
801
|
+
_T,
|
|
802
|
+
0,
|
|
803
|
+
[_ST, _ACI, _TSMVCI, _RCI],
|
|
804
|
+
[0, () => ColumnInfo, () => ColumnInfo, () => ColumnInfoList],
|
|
805
|
+
];
|
|
806
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
807
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
808
|
+
var UpdateAccountSettingsRequest = [
|
|
809
|
+
3,
|
|
810
|
+
n0,
|
|
811
|
+
_UASR,
|
|
812
|
+
0,
|
|
813
|
+
[_MQTCU, _QPM, _QC],
|
|
814
|
+
[1, 0, () => QueryComputeRequest],
|
|
815
|
+
];
|
|
816
|
+
var UpdateAccountSettingsResponse = [
|
|
817
|
+
3,
|
|
818
|
+
n0,
|
|
819
|
+
_UASRp,
|
|
820
|
+
0,
|
|
821
|
+
[_MQTCU, _QPM, _QC],
|
|
822
|
+
[1, 0, () => QueryComputeResponse],
|
|
823
|
+
];
|
|
824
|
+
var UpdateScheduledQueryRequest = [3, n0, _USQR, 0, [_SQA, _St], [0, 0]];
|
|
825
|
+
var ValidationException = [
|
|
826
|
+
-3,
|
|
827
|
+
n0,
|
|
828
|
+
_VE,
|
|
829
|
+
{
|
|
830
|
+
[_e]: _c,
|
|
831
|
+
[_hE]: 400,
|
|
832
|
+
},
|
|
833
|
+
[_M],
|
|
834
|
+
[0],
|
|
835
|
+
];
|
|
836
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
837
|
+
var __Unit = "unit";
|
|
838
|
+
var TimestreamQueryServiceException = [-3, _sm, "TimestreamQueryServiceException", 0, [], []];
|
|
839
|
+
schema.TypeRegistry.for(_sm).registerError(TimestreamQueryServiceException, TimestreamQueryServiceException$1);
|
|
840
|
+
var ColumnInfoList = [1, n0, _CIL, 0, () => ColumnInfo];
|
|
841
|
+
var DatumList = [1, n0, _DL, 0, () => Datum];
|
|
842
|
+
var DimensionMappingList = [1, n0, _DML, 0, () => DimensionMapping];
|
|
843
|
+
var Endpoints = [1, n0, _E, 0, () => Endpoint];
|
|
844
|
+
var MixedMeasureMappingList = [1, n0, _MMML, 0, () => MixedMeasureMapping];
|
|
845
|
+
var MultiMeasureAttributeMappingList = [1, n0, _MMAML, 0, () => MultiMeasureAttributeMapping];
|
|
846
|
+
var ParameterMappingList = [1, n0, _PML, 0, () => ParameterMapping];
|
|
847
|
+
var RowList = [1, n0, _RL, 0, () => Row];
|
|
848
|
+
var ScheduledQueryList = [1, n0, _SQL, 0, () => ScheduledQuery];
|
|
849
|
+
var ScheduledQueryRunSummaryList = [1, n0, _SQRSL, 0, () => ScheduledQueryRunSummary];
|
|
850
|
+
var SelectColumnList = [1, n0, _SCL, 0, () => SelectColumn];
|
|
851
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
852
|
+
var TimeSeriesDataPointList = [1, n0, _TSDPL, 0, () => TimeSeriesDataPoint];
|
|
853
|
+
var CancelQuery = [9, n0, _CQ, 2, () => CancelQueryRequest, () => CancelQueryResponse];
|
|
854
|
+
var CreateScheduledQuery = [
|
|
855
|
+
9,
|
|
856
|
+
n0,
|
|
857
|
+
_CSQ,
|
|
858
|
+
2,
|
|
859
|
+
() => CreateScheduledQueryRequest,
|
|
860
|
+
() => CreateScheduledQueryResponse,
|
|
861
|
+
];
|
|
862
|
+
var DeleteScheduledQuery = [
|
|
863
|
+
9,
|
|
864
|
+
n0,
|
|
865
|
+
_DSQ,
|
|
866
|
+
2,
|
|
867
|
+
() => DeleteScheduledQueryRequest,
|
|
868
|
+
() => __Unit,
|
|
869
|
+
];
|
|
870
|
+
var DescribeAccountSettings = [
|
|
871
|
+
9,
|
|
872
|
+
n0,
|
|
873
|
+
_DAS,
|
|
874
|
+
0,
|
|
875
|
+
() => DescribeAccountSettingsRequest,
|
|
876
|
+
() => DescribeAccountSettingsResponse,
|
|
877
|
+
];
|
|
878
|
+
var DescribeEndpoints = [
|
|
879
|
+
9,
|
|
880
|
+
n0,
|
|
881
|
+
_DE,
|
|
882
|
+
0,
|
|
883
|
+
() => DescribeEndpointsRequest,
|
|
884
|
+
() => DescribeEndpointsResponse,
|
|
885
|
+
];
|
|
886
|
+
var DescribeScheduledQuery = [
|
|
887
|
+
9,
|
|
888
|
+
n0,
|
|
889
|
+
_DSQe,
|
|
890
|
+
0,
|
|
891
|
+
() => DescribeScheduledQueryRequest,
|
|
892
|
+
() => DescribeScheduledQueryResponse,
|
|
893
|
+
];
|
|
894
|
+
var ExecuteScheduledQuery = [
|
|
895
|
+
9,
|
|
896
|
+
n0,
|
|
897
|
+
_ESQ,
|
|
898
|
+
2,
|
|
899
|
+
() => ExecuteScheduledQueryRequest,
|
|
900
|
+
() => __Unit,
|
|
901
|
+
];
|
|
902
|
+
var ListScheduledQueries = [
|
|
903
|
+
9,
|
|
904
|
+
n0,
|
|
905
|
+
_LSQ,
|
|
906
|
+
0,
|
|
907
|
+
() => ListScheduledQueriesRequest,
|
|
908
|
+
() => ListScheduledQueriesResponse,
|
|
909
|
+
];
|
|
910
|
+
var ListTagsForResource = [
|
|
911
|
+
9,
|
|
912
|
+
n0,
|
|
913
|
+
_LTFR,
|
|
914
|
+
0,
|
|
915
|
+
() => ListTagsForResourceRequest,
|
|
916
|
+
() => ListTagsForResourceResponse,
|
|
917
|
+
];
|
|
918
|
+
var PrepareQuery = [9, n0, _PQ, 2, () => PrepareQueryRequest, () => PrepareQueryResponse];
|
|
919
|
+
var Query = [9, n0, _Q, 2, () => QueryRequest, () => QueryResponse];
|
|
920
|
+
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
|
|
921
|
+
var UntagResource = [
|
|
922
|
+
9,
|
|
923
|
+
n0,
|
|
924
|
+
_UR,
|
|
925
|
+
0,
|
|
926
|
+
() => UntagResourceRequest,
|
|
927
|
+
() => UntagResourceResponse,
|
|
928
|
+
];
|
|
929
|
+
var UpdateAccountSettings = [
|
|
930
|
+
9,
|
|
931
|
+
n0,
|
|
932
|
+
_UAS,
|
|
933
|
+
2,
|
|
934
|
+
() => UpdateAccountSettingsRequest,
|
|
935
|
+
() => UpdateAccountSettingsResponse,
|
|
936
|
+
];
|
|
937
|
+
var UpdateScheduledQuery = [
|
|
938
|
+
9,
|
|
939
|
+
n0,
|
|
940
|
+
_USQ,
|
|
941
|
+
0,
|
|
942
|
+
() => UpdateScheduledQueryRequest,
|
|
943
|
+
() => __Unit,
|
|
944
|
+
];
|
|
950
945
|
|
|
951
946
|
class DescribeEndpointsCommand extends smithyClient.Command
|
|
952
947
|
.classBuilder()
|
|
953
948
|
.ep(commonParams)
|
|
954
949
|
.m(function (Command, cs, config, o) {
|
|
955
|
-
return [
|
|
956
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
957
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
958
|
-
];
|
|
950
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
959
951
|
})
|
|
960
952
|
.s("Timestream_20181101", "DescribeEndpoints", {})
|
|
961
953
|
.n("TimestreamQueryClient", "DescribeEndpointsCommand")
|
|
962
|
-
.
|
|
963
|
-
.ser(se_DescribeEndpointsCommand)
|
|
964
|
-
.de(de_DescribeEndpointsCommand)
|
|
954
|
+
.sc(DescribeEndpoints)
|
|
965
955
|
.build() {
|
|
966
956
|
}
|
|
967
957
|
|
|
@@ -1028,19 +1018,20 @@ class TimestreamQueryClient extends smithyClient.Client {
|
|
|
1028
1018
|
});
|
|
1029
1019
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
1030
1020
|
this.config = _config_9;
|
|
1021
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
1031
1022
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
1032
1023
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
1033
1024
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
1034
1025
|
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
1035
1026
|
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
1036
1027
|
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
1037
|
-
this.middlewareStack.use(core
|
|
1028
|
+
this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
1038
1029
|
httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultTimestreamQueryHttpAuthSchemeParametersProvider,
|
|
1039
|
-
identityProviderConfigProvider: async (config) => new core
|
|
1030
|
+
identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
|
|
1040
1031
|
"aws.auth#sigv4": config.credentials,
|
|
1041
1032
|
}),
|
|
1042
1033
|
}));
|
|
1043
|
-
this.middlewareStack.use(core
|
|
1034
|
+
this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
|
|
1044
1035
|
}
|
|
1045
1036
|
destroy() {
|
|
1046
1037
|
super.destroy();
|
|
@@ -1052,7 +1043,6 @@ class CancelQueryCommand extends smithyClient.Command
|
|
|
1052
1043
|
.ep(commonParams)
|
|
1053
1044
|
.m(function (Command, cs, config, o) {
|
|
1054
1045
|
return [
|
|
1055
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1056
1046
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1057
1047
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1058
1048
|
clientStack: cs,
|
|
@@ -1063,9 +1053,7 @@ class CancelQueryCommand extends smithyClient.Command
|
|
|
1063
1053
|
})
|
|
1064
1054
|
.s("Timestream_20181101", "CancelQuery", {})
|
|
1065
1055
|
.n("TimestreamQueryClient", "CancelQueryCommand")
|
|
1066
|
-
.
|
|
1067
|
-
.ser(se_CancelQueryCommand)
|
|
1068
|
-
.de(de_CancelQueryCommand)
|
|
1056
|
+
.sc(CancelQuery)
|
|
1069
1057
|
.build() {
|
|
1070
1058
|
}
|
|
1071
1059
|
|
|
@@ -1074,7 +1062,6 @@ class CreateScheduledQueryCommand extends smithyClient.Command
|
|
|
1074
1062
|
.ep(commonParams)
|
|
1075
1063
|
.m(function (Command, cs, config, o) {
|
|
1076
1064
|
return [
|
|
1077
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1078
1065
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1079
1066
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1080
1067
|
clientStack: cs,
|
|
@@ -1085,9 +1072,7 @@ class CreateScheduledQueryCommand extends smithyClient.Command
|
|
|
1085
1072
|
})
|
|
1086
1073
|
.s("Timestream_20181101", "CreateScheduledQuery", {})
|
|
1087
1074
|
.n("TimestreamQueryClient", "CreateScheduledQueryCommand")
|
|
1088
|
-
.
|
|
1089
|
-
.ser(se_CreateScheduledQueryCommand)
|
|
1090
|
-
.de(de_CreateScheduledQueryCommand)
|
|
1075
|
+
.sc(CreateScheduledQuery)
|
|
1091
1076
|
.build() {
|
|
1092
1077
|
}
|
|
1093
1078
|
|
|
@@ -1096,7 +1081,6 @@ class DeleteScheduledQueryCommand extends smithyClient.Command
|
|
|
1096
1081
|
.ep(commonParams)
|
|
1097
1082
|
.m(function (Command, cs, config, o) {
|
|
1098
1083
|
return [
|
|
1099
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1100
1084
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1101
1085
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1102
1086
|
clientStack: cs,
|
|
@@ -1107,9 +1091,7 @@ class DeleteScheduledQueryCommand extends smithyClient.Command
|
|
|
1107
1091
|
})
|
|
1108
1092
|
.s("Timestream_20181101", "DeleteScheduledQuery", {})
|
|
1109
1093
|
.n("TimestreamQueryClient", "DeleteScheduledQueryCommand")
|
|
1110
|
-
.
|
|
1111
|
-
.ser(se_DeleteScheduledQueryCommand)
|
|
1112
|
-
.de(de_DeleteScheduledQueryCommand)
|
|
1094
|
+
.sc(DeleteScheduledQuery)
|
|
1113
1095
|
.build() {
|
|
1114
1096
|
}
|
|
1115
1097
|
|
|
@@ -1118,7 +1100,6 @@ class DescribeAccountSettingsCommand extends smithyClient.Command
|
|
|
1118
1100
|
.ep(commonParams)
|
|
1119
1101
|
.m(function (Command, cs, config, o) {
|
|
1120
1102
|
return [
|
|
1121
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1122
1103
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1123
1104
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1124
1105
|
clientStack: cs,
|
|
@@ -1129,9 +1110,7 @@ class DescribeAccountSettingsCommand extends smithyClient.Command
|
|
|
1129
1110
|
})
|
|
1130
1111
|
.s("Timestream_20181101", "DescribeAccountSettings", {})
|
|
1131
1112
|
.n("TimestreamQueryClient", "DescribeAccountSettingsCommand")
|
|
1132
|
-
.
|
|
1133
|
-
.ser(se_DescribeAccountSettingsCommand)
|
|
1134
|
-
.de(de_DescribeAccountSettingsCommand)
|
|
1113
|
+
.sc(DescribeAccountSettings)
|
|
1135
1114
|
.build() {
|
|
1136
1115
|
}
|
|
1137
1116
|
|
|
@@ -1140,7 +1119,6 @@ class DescribeScheduledQueryCommand extends smithyClient.Command
|
|
|
1140
1119
|
.ep(commonParams)
|
|
1141
1120
|
.m(function (Command, cs, config, o) {
|
|
1142
1121
|
return [
|
|
1143
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1144
1122
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1145
1123
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1146
1124
|
clientStack: cs,
|
|
@@ -1151,9 +1129,7 @@ class DescribeScheduledQueryCommand extends smithyClient.Command
|
|
|
1151
1129
|
})
|
|
1152
1130
|
.s("Timestream_20181101", "DescribeScheduledQuery", {})
|
|
1153
1131
|
.n("TimestreamQueryClient", "DescribeScheduledQueryCommand")
|
|
1154
|
-
.
|
|
1155
|
-
.ser(se_DescribeScheduledQueryCommand)
|
|
1156
|
-
.de(de_DescribeScheduledQueryCommand)
|
|
1132
|
+
.sc(DescribeScheduledQuery)
|
|
1157
1133
|
.build() {
|
|
1158
1134
|
}
|
|
1159
1135
|
|
|
@@ -1162,7 +1138,6 @@ class ExecuteScheduledQueryCommand extends smithyClient.Command
|
|
|
1162
1138
|
.ep(commonParams)
|
|
1163
1139
|
.m(function (Command, cs, config, o) {
|
|
1164
1140
|
return [
|
|
1165
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1166
1141
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1167
1142
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1168
1143
|
clientStack: cs,
|
|
@@ -1173,9 +1148,7 @@ class ExecuteScheduledQueryCommand extends smithyClient.Command
|
|
|
1173
1148
|
})
|
|
1174
1149
|
.s("Timestream_20181101", "ExecuteScheduledQuery", {})
|
|
1175
1150
|
.n("TimestreamQueryClient", "ExecuteScheduledQueryCommand")
|
|
1176
|
-
.
|
|
1177
|
-
.ser(se_ExecuteScheduledQueryCommand)
|
|
1178
|
-
.de(de_ExecuteScheduledQueryCommand)
|
|
1151
|
+
.sc(ExecuteScheduledQuery)
|
|
1179
1152
|
.build() {
|
|
1180
1153
|
}
|
|
1181
1154
|
|
|
@@ -1184,7 +1157,6 @@ class ListScheduledQueriesCommand extends smithyClient.Command
|
|
|
1184
1157
|
.ep(commonParams)
|
|
1185
1158
|
.m(function (Command, cs, config, o) {
|
|
1186
1159
|
return [
|
|
1187
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1188
1160
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1189
1161
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1190
1162
|
clientStack: cs,
|
|
@@ -1195,9 +1167,7 @@ class ListScheduledQueriesCommand extends smithyClient.Command
|
|
|
1195
1167
|
})
|
|
1196
1168
|
.s("Timestream_20181101", "ListScheduledQueries", {})
|
|
1197
1169
|
.n("TimestreamQueryClient", "ListScheduledQueriesCommand")
|
|
1198
|
-
.
|
|
1199
|
-
.ser(se_ListScheduledQueriesCommand)
|
|
1200
|
-
.de(de_ListScheduledQueriesCommand)
|
|
1170
|
+
.sc(ListScheduledQueries)
|
|
1201
1171
|
.build() {
|
|
1202
1172
|
}
|
|
1203
1173
|
|
|
@@ -1206,7 +1176,6 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1206
1176
|
.ep(commonParams)
|
|
1207
1177
|
.m(function (Command, cs, config, o) {
|
|
1208
1178
|
return [
|
|
1209
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1210
1179
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1211
1180
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1212
1181
|
clientStack: cs,
|
|
@@ -1217,9 +1186,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1217
1186
|
})
|
|
1218
1187
|
.s("Timestream_20181101", "ListTagsForResource", {})
|
|
1219
1188
|
.n("TimestreamQueryClient", "ListTagsForResourceCommand")
|
|
1220
|
-
.
|
|
1221
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1222
|
-
.de(de_ListTagsForResourceCommand)
|
|
1189
|
+
.sc(ListTagsForResource)
|
|
1223
1190
|
.build() {
|
|
1224
1191
|
}
|
|
1225
1192
|
|
|
@@ -1228,7 +1195,6 @@ class PrepareQueryCommand extends smithyClient.Command
|
|
|
1228
1195
|
.ep(commonParams)
|
|
1229
1196
|
.m(function (Command, cs, config, o) {
|
|
1230
1197
|
return [
|
|
1231
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1232
1198
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1233
1199
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1234
1200
|
clientStack: cs,
|
|
@@ -1239,9 +1205,7 @@ class PrepareQueryCommand extends smithyClient.Command
|
|
|
1239
1205
|
})
|
|
1240
1206
|
.s("Timestream_20181101", "PrepareQuery", {})
|
|
1241
1207
|
.n("TimestreamQueryClient", "PrepareQueryCommand")
|
|
1242
|
-
.
|
|
1243
|
-
.ser(se_PrepareQueryCommand)
|
|
1244
|
-
.de(de_PrepareQueryCommand)
|
|
1208
|
+
.sc(PrepareQuery)
|
|
1245
1209
|
.build() {
|
|
1246
1210
|
}
|
|
1247
1211
|
|
|
@@ -1250,7 +1214,6 @@ class QueryCommand extends smithyClient.Command
|
|
|
1250
1214
|
.ep(commonParams)
|
|
1251
1215
|
.m(function (Command, cs, config, o) {
|
|
1252
1216
|
return [
|
|
1253
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1254
1217
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1255
1218
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1256
1219
|
clientStack: cs,
|
|
@@ -1261,9 +1224,7 @@ class QueryCommand extends smithyClient.Command
|
|
|
1261
1224
|
})
|
|
1262
1225
|
.s("Timestream_20181101", "Query", {})
|
|
1263
1226
|
.n("TimestreamQueryClient", "QueryCommand")
|
|
1264
|
-
.
|
|
1265
|
-
.ser(se_QueryCommand)
|
|
1266
|
-
.de(de_QueryCommand)
|
|
1227
|
+
.sc(Query)
|
|
1267
1228
|
.build() {
|
|
1268
1229
|
}
|
|
1269
1230
|
|
|
@@ -1272,7 +1233,6 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1272
1233
|
.ep(commonParams)
|
|
1273
1234
|
.m(function (Command, cs, config, o) {
|
|
1274
1235
|
return [
|
|
1275
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1276
1236
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1277
1237
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1278
1238
|
clientStack: cs,
|
|
@@ -1283,9 +1243,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1283
1243
|
})
|
|
1284
1244
|
.s("Timestream_20181101", "TagResource", {})
|
|
1285
1245
|
.n("TimestreamQueryClient", "TagResourceCommand")
|
|
1286
|
-
.
|
|
1287
|
-
.ser(se_TagResourceCommand)
|
|
1288
|
-
.de(de_TagResourceCommand)
|
|
1246
|
+
.sc(TagResource)
|
|
1289
1247
|
.build() {
|
|
1290
1248
|
}
|
|
1291
1249
|
|
|
@@ -1294,7 +1252,6 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1294
1252
|
.ep(commonParams)
|
|
1295
1253
|
.m(function (Command, cs, config, o) {
|
|
1296
1254
|
return [
|
|
1297
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1298
1255
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1299
1256
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1300
1257
|
clientStack: cs,
|
|
@@ -1305,9 +1262,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1305
1262
|
})
|
|
1306
1263
|
.s("Timestream_20181101", "UntagResource", {})
|
|
1307
1264
|
.n("TimestreamQueryClient", "UntagResourceCommand")
|
|
1308
|
-
.
|
|
1309
|
-
.ser(se_UntagResourceCommand)
|
|
1310
|
-
.de(de_UntagResourceCommand)
|
|
1265
|
+
.sc(UntagResource)
|
|
1311
1266
|
.build() {
|
|
1312
1267
|
}
|
|
1313
1268
|
|
|
@@ -1316,7 +1271,6 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1316
1271
|
.ep(commonParams)
|
|
1317
1272
|
.m(function (Command, cs, config, o) {
|
|
1318
1273
|
return [
|
|
1319
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1320
1274
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1321
1275
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1322
1276
|
clientStack: cs,
|
|
@@ -1327,9 +1281,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
|
|
|
1327
1281
|
})
|
|
1328
1282
|
.s("Timestream_20181101", "UpdateAccountSettings", {})
|
|
1329
1283
|
.n("TimestreamQueryClient", "UpdateAccountSettingsCommand")
|
|
1330
|
-
.
|
|
1331
|
-
.ser(se_UpdateAccountSettingsCommand)
|
|
1332
|
-
.de(de_UpdateAccountSettingsCommand)
|
|
1284
|
+
.sc(UpdateAccountSettings)
|
|
1333
1285
|
.build() {
|
|
1334
1286
|
}
|
|
1335
1287
|
|
|
@@ -1338,7 +1290,6 @@ class UpdateScheduledQueryCommand extends smithyClient.Command
|
|
|
1338
1290
|
.ep(commonParams)
|
|
1339
1291
|
.m(function (Command, cs, config, o) {
|
|
1340
1292
|
return [
|
|
1341
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1342
1293
|
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1343
1294
|
middlewareEndpointDiscovery.getEndpointDiscoveryPlugin(config, {
|
|
1344
1295
|
clientStack: cs,
|
|
@@ -1349,9 +1300,7 @@ class UpdateScheduledQueryCommand extends smithyClient.Command
|
|
|
1349
1300
|
})
|
|
1350
1301
|
.s("Timestream_20181101", "UpdateScheduledQuery", {})
|
|
1351
1302
|
.n("TimestreamQueryClient", "UpdateScheduledQueryCommand")
|
|
1352
|
-
.
|
|
1353
|
-
.ser(se_UpdateScheduledQueryCommand)
|
|
1354
|
-
.de(de_UpdateScheduledQueryCommand)
|
|
1303
|
+
.sc(UpdateScheduledQuery)
|
|
1355
1304
|
.build() {
|
|
1356
1305
|
}
|
|
1357
1306
|
|
|
@@ -1376,11 +1325,11 @@ class TimestreamQuery extends TimestreamQueryClient {
|
|
|
1376
1325
|
}
|
|
1377
1326
|
smithyClient.createAggregatedClient(commands, TimestreamQuery);
|
|
1378
1327
|
|
|
1379
|
-
const paginateListScheduledQueries = core
|
|
1328
|
+
const paginateListScheduledQueries = core.createPaginator(TimestreamQueryClient, ListScheduledQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1380
1329
|
|
|
1381
|
-
const paginateListTagsForResource = core
|
|
1330
|
+
const paginateListTagsForResource = core.createPaginator(TimestreamQueryClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
1382
1331
|
|
|
1383
|
-
const paginateQuery = core
|
|
1332
|
+
const paginateQuery = core.createPaginator(TimestreamQueryClient, QueryCommand, "NextToken", "NextToken", "MaxRows");
|
|
1384
1333
|
|
|
1385
1334
|
Object.defineProperty(exports, "$Command", {
|
|
1386
1335
|
enumerable: true,
|
|
@@ -1390,52 +1339,45 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1390
1339
|
enumerable: true,
|
|
1391
1340
|
get: function () { return smithyClient.Client; }
|
|
1392
1341
|
});
|
|
1393
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1342
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1394
1343
|
exports.CancelQueryCommand = CancelQueryCommand;
|
|
1395
1344
|
exports.ComputeMode = ComputeMode;
|
|
1396
|
-
exports.ConflictException = ConflictException;
|
|
1345
|
+
exports.ConflictException = ConflictException$1;
|
|
1397
1346
|
exports.CreateScheduledQueryCommand = CreateScheduledQueryCommand;
|
|
1398
|
-
exports.CreateScheduledQueryRequestFilterSensitiveLog = CreateScheduledQueryRequestFilterSensitiveLog;
|
|
1399
1347
|
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
1400
1348
|
exports.DescribeAccountSettingsCommand = DescribeAccountSettingsCommand;
|
|
1401
1349
|
exports.DescribeEndpointsCommand = DescribeEndpointsCommand;
|
|
1402
1350
|
exports.DescribeScheduledQueryCommand = DescribeScheduledQueryCommand;
|
|
1403
|
-
exports.DescribeScheduledQueryResponseFilterSensitiveLog = DescribeScheduledQueryResponseFilterSensitiveLog;
|
|
1404
1351
|
exports.DimensionValueType = DimensionValueType;
|
|
1405
1352
|
exports.ExecuteScheduledQueryCommand = ExecuteScheduledQueryCommand;
|
|
1406
|
-
exports.
|
|
1407
|
-
exports.
|
|
1408
|
-
exports.InvalidEndpointException = InvalidEndpointException;
|
|
1353
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1354
|
+
exports.InvalidEndpointException = InvalidEndpointException$1;
|
|
1409
1355
|
exports.LastUpdateStatus = LastUpdateStatus;
|
|
1410
1356
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
1411
1357
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1412
1358
|
exports.MeasureValueType = MeasureValueType;
|
|
1413
1359
|
exports.PrepareQueryCommand = PrepareQueryCommand;
|
|
1414
|
-
exports.PrepareQueryRequestFilterSensitiveLog = PrepareQueryRequestFilterSensitiveLog;
|
|
1415
|
-
exports.PrepareQueryResponseFilterSensitiveLog = PrepareQueryResponseFilterSensitiveLog;
|
|
1416
1360
|
exports.QueryCommand = QueryCommand;
|
|
1417
|
-
exports.QueryExecutionException = QueryExecutionException;
|
|
1361
|
+
exports.QueryExecutionException = QueryExecutionException$1;
|
|
1418
1362
|
exports.QueryInsightsMode = QueryInsightsMode;
|
|
1419
1363
|
exports.QueryPricingModel = QueryPricingModel;
|
|
1420
|
-
exports.
|
|
1421
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1364
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1422
1365
|
exports.S3EncryptionOption = S3EncryptionOption;
|
|
1423
1366
|
exports.ScalarMeasureValueType = ScalarMeasureValueType;
|
|
1424
1367
|
exports.ScalarType = ScalarType;
|
|
1425
|
-
exports.ScheduledQueryDescriptionFilterSensitiveLog = ScheduledQueryDescriptionFilterSensitiveLog;
|
|
1426
1368
|
exports.ScheduledQueryInsightsMode = ScheduledQueryInsightsMode;
|
|
1427
1369
|
exports.ScheduledQueryRunStatus = ScheduledQueryRunStatus;
|
|
1428
1370
|
exports.ScheduledQueryState = ScheduledQueryState;
|
|
1429
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1371
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1430
1372
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1431
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1373
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1432
1374
|
exports.TimestreamQuery = TimestreamQuery;
|
|
1433
1375
|
exports.TimestreamQueryClient = TimestreamQueryClient;
|
|
1434
|
-
exports.TimestreamQueryServiceException = TimestreamQueryServiceException;
|
|
1376
|
+
exports.TimestreamQueryServiceException = TimestreamQueryServiceException$1;
|
|
1435
1377
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1436
1378
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
1437
1379
|
exports.UpdateScheduledQueryCommand = UpdateScheduledQueryCommand;
|
|
1438
|
-
exports.ValidationException = ValidationException;
|
|
1380
|
+
exports.ValidationException = ValidationException$1;
|
|
1439
1381
|
exports.paginateListScheduledQueries = paginateListScheduledQueries;
|
|
1440
1382
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|
|
1441
1383
|
exports.paginateQuery = paginateQuery;
|