@aws-sdk/client-timestream-query 3.987.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
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultTimestreamQueryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2018-11-01",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.timestreamquery",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2018-11-01",
|
|
30
32
|
serviceTarget: "Timestream_20181101",
|
|
31
33
|
},
|
|
@@ -206,21 +206,77 @@ const _aQE = "awsQueryError";
|
|
|
206
206
|
const _c = "client";
|
|
207
207
|
const _e = "error";
|
|
208
208
|
const _hE = "httpError";
|
|
209
|
-
const _s = "
|
|
210
|
-
const
|
|
209
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.timestreamquery";
|
|
210
|
+
const _se = "server";
|
|
211
211
|
const n0 = "com.amazonaws.timestreamquery";
|
|
212
212
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
213
213
|
import { AccessDeniedException, ConflictException, InternalServerException, InvalidEndpointException, QueryExecutionException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
214
214
|
import { TimestreamQueryServiceException } from "../models/TimestreamQueryServiceException";
|
|
215
|
-
|
|
216
|
-
var
|
|
217
|
-
|
|
215
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
216
|
+
export var TimestreamQueryServiceException$ = [-3, _s, "TimestreamQueryServiceException", 0, [], []];
|
|
217
|
+
_s_registry.registerError(TimestreamQueryServiceException$, TimestreamQueryServiceException);
|
|
218
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
218
219
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
219
220
|
{ [_aQE]: [`AccessDenied`, 403], [_e]: _c, [_hE]: 403 },
|
|
220
221
|
[_M],
|
|
221
222
|
[0]
|
|
222
223
|
];
|
|
223
|
-
|
|
224
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
225
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
226
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
227
|
+
[_M],
|
|
228
|
+
[0]
|
|
229
|
+
];
|
|
230
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
231
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
232
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
233
|
+
[_M],
|
|
234
|
+
[0]
|
|
235
|
+
];
|
|
236
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
237
|
+
export var InvalidEndpointException$ = [-3, n0, _IEE,
|
|
238
|
+
{ [_e]: _c, [_hE]: 421 },
|
|
239
|
+
[_M],
|
|
240
|
+
[0]
|
|
241
|
+
];
|
|
242
|
+
n0_registry.registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
243
|
+
export var QueryExecutionException$ = [-3, n0, _QEE,
|
|
244
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
245
|
+
[_M],
|
|
246
|
+
[0]
|
|
247
|
+
];
|
|
248
|
+
n0_registry.registerError(QueryExecutionException$, QueryExecutionException);
|
|
249
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
250
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
251
|
+
[_M, _SQA],
|
|
252
|
+
[0, 0]
|
|
253
|
+
];
|
|
254
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
255
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
256
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
257
|
+
[_M],
|
|
258
|
+
[0]
|
|
259
|
+
];
|
|
260
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
261
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
262
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
263
|
+
[_M],
|
|
264
|
+
[0]
|
|
265
|
+
];
|
|
266
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
267
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
268
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
269
|
+
[_M],
|
|
270
|
+
[0]
|
|
271
|
+
];
|
|
272
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
273
|
+
export const errorTypeRegistries = [
|
|
274
|
+
_s_registry,
|
|
275
|
+
n0_registry,
|
|
276
|
+
];
|
|
277
|
+
var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
278
|
+
var ClientToken = [0, n0, _CT, 8, 0];
|
|
279
|
+
var QueryString = [0, n0, _QS, 8, 0];
|
|
224
280
|
export var AccountSettingsNotificationConfiguration$ = [3, n0, _ASNC,
|
|
225
281
|
0,
|
|
226
282
|
[_RA, _SC],
|
|
@@ -241,12 +297,6 @@ export var ColumnInfo$ = [3, n0, _CI,
|
|
|
241
297
|
[_T, _N],
|
|
242
298
|
[() => Type$, 0], 1
|
|
243
299
|
];
|
|
244
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
245
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
246
|
-
[_M],
|
|
247
|
-
[0]
|
|
248
|
-
];
|
|
249
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
250
300
|
export var CreateScheduledQueryRequest$ = [3, n0, _CSQR,
|
|
251
301
|
0,
|
|
252
302
|
[_N, _QS, _SCc, _NC, _SQERA, _ERC, _TC, _CT, _Ta, _KKI],
|
|
@@ -327,18 +377,6 @@ export var ExecutionStats$ = [3, n0, _ES,
|
|
|
327
377
|
[_ETIM, _DW, _BM, _CBS, _RI, _QRR],
|
|
328
378
|
[1, 1, 1, 1, 1, 1]
|
|
329
379
|
];
|
|
330
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
331
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
332
|
-
[_M],
|
|
333
|
-
[0]
|
|
334
|
-
];
|
|
335
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
336
|
-
export var InvalidEndpointException$ = [-3, n0, _IEE,
|
|
337
|
-
{ [_e]: _c, [_hE]: 421 },
|
|
338
|
-
[_M],
|
|
339
|
-
[0]
|
|
340
|
-
];
|
|
341
|
-
TypeRegistry.for(n0).registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
342
380
|
export var LastUpdate$ = [3, n0, _LU,
|
|
343
381
|
0,
|
|
344
382
|
[_TQTCU, _S, _SM],
|
|
@@ -419,12 +457,6 @@ export var QueryComputeResponse$ = [3, n0, _QCRu,
|
|
|
419
457
|
[_CMo, _PC],
|
|
420
458
|
[0, () => ProvisionedCapacityResponse$]
|
|
421
459
|
];
|
|
422
|
-
export var QueryExecutionException$ = [-3, n0, _QEE,
|
|
423
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
424
|
-
[_M],
|
|
425
|
-
[0]
|
|
426
|
-
];
|
|
427
|
-
TypeRegistry.for(n0).registerError(QueryExecutionException$, QueryExecutionException);
|
|
428
460
|
export var QueryInsights$ = [3, n0, _QIu,
|
|
429
461
|
0,
|
|
430
462
|
[_Mo],
|
|
@@ -470,12 +502,6 @@ export var QueryTemporalRangeMax$ = [3, n0, _QTRM,
|
|
|
470
502
|
[_V, _TA],
|
|
471
503
|
[1, 0]
|
|
472
504
|
];
|
|
473
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
474
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
475
|
-
[_M, _SQA],
|
|
476
|
-
[0, 0]
|
|
477
|
-
];
|
|
478
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
479
505
|
export var Row$ = [3, n0, _Ro,
|
|
480
506
|
0,
|
|
481
507
|
[_Da],
|
|
@@ -526,12 +552,6 @@ export var SelectColumn$ = [3, n0, _SCe,
|
|
|
526
552
|
[_N, _T, _DN, _TN, _Al],
|
|
527
553
|
[0, () => Type$, 0, 0, 2]
|
|
528
554
|
];
|
|
529
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
530
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
531
|
-
[_M],
|
|
532
|
-
[0]
|
|
533
|
-
];
|
|
534
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
535
555
|
export var SnsConfiguration$ = [3, n0, _SC,
|
|
536
556
|
0,
|
|
537
557
|
[_TAo],
|
|
@@ -562,12 +582,6 @@ export var TargetDestination$ = [3, n0, _TD,
|
|
|
562
582
|
[_TDi],
|
|
563
583
|
[() => TimestreamDestination$]
|
|
564
584
|
];
|
|
565
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
566
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
567
|
-
[_M],
|
|
568
|
-
[0]
|
|
569
|
-
];
|
|
570
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
571
585
|
export var TimeSeriesDataPoint$ = [3, n0, _TSDP,
|
|
572
586
|
0,
|
|
573
587
|
[_Ti, _V],
|
|
@@ -613,15 +627,7 @@ export var UpdateScheduledQueryRequest$ = [3, n0, _USQR,
|
|
|
613
627
|
[_SQA, _St],
|
|
614
628
|
[0, 0], 2
|
|
615
629
|
];
|
|
616
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
617
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
618
|
-
[_M],
|
|
619
|
-
[0]
|
|
620
|
-
];
|
|
621
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
622
630
|
var __Unit = "unit";
|
|
623
|
-
export var TimestreamQueryServiceException$ = [-3, _sm, "TimestreamQueryServiceException", 0, [], []];
|
|
624
|
-
TypeRegistry.for(_sm).registerError(TimestreamQueryServiceException$, TimestreamQueryServiceException);
|
|
625
631
|
var ColumnInfoList = [1, n0, _CIL,
|
|
626
632
|
0, () => ColumnInfo$
|
|
627
633
|
];
|
|
@@ -1,10 +1,25 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var TimestreamQueryServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
7
|
+
export declare var InvalidEndpointException$: StaticErrorSchema;
|
|
8
|
+
export declare var QueryExecutionException$: StaticErrorSchema;
|
|
9
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
12
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
13
|
+
/**
|
|
14
|
+
* TypeRegistry instances containing modeled errors.
|
|
15
|
+
* @internal
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
19
|
export declare var AccountSettingsNotificationConfiguration$: StaticStructureSchema;
|
|
4
20
|
export declare var CancelQueryRequest$: StaticStructureSchema;
|
|
5
21
|
export declare var CancelQueryResponse$: StaticStructureSchema;
|
|
6
22
|
export declare var ColumnInfo$: StaticStructureSchema;
|
|
7
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
8
23
|
export declare var CreateScheduledQueryRequest$: StaticStructureSchema;
|
|
9
24
|
export declare var CreateScheduledQueryResponse$: StaticStructureSchema;
|
|
10
25
|
export declare var Datum$: StaticStructureSchema;
|
|
@@ -21,8 +36,6 @@ export declare var ErrorReportConfiguration$: StaticStructureSchema;
|
|
|
21
36
|
export declare var ErrorReportLocation$: StaticStructureSchema;
|
|
22
37
|
export declare var ExecuteScheduledQueryRequest$: StaticStructureSchema;
|
|
23
38
|
export declare var ExecutionStats$: StaticStructureSchema;
|
|
24
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
25
|
-
export declare var InvalidEndpointException$: StaticErrorSchema;
|
|
26
39
|
export declare var LastUpdate$: StaticStructureSchema;
|
|
27
40
|
export declare var ListScheduledQueriesRequest$: StaticStructureSchema;
|
|
28
41
|
export declare var ListScheduledQueriesResponse$: StaticStructureSchema;
|
|
@@ -39,7 +52,6 @@ export declare var ProvisionedCapacityRequest$: StaticStructureSchema;
|
|
|
39
52
|
export declare var ProvisionedCapacityResponse$: StaticStructureSchema;
|
|
40
53
|
export declare var QueryComputeRequest$: StaticStructureSchema;
|
|
41
54
|
export declare var QueryComputeResponse$: StaticStructureSchema;
|
|
42
|
-
export declare var QueryExecutionException$: StaticErrorSchema;
|
|
43
55
|
export declare var QueryInsights$: StaticStructureSchema;
|
|
44
56
|
export declare var QueryInsightsResponse$: StaticStructureSchema;
|
|
45
57
|
export declare var QueryRequest$: StaticStructureSchema;
|
|
@@ -49,7 +61,6 @@ export declare var QuerySpatialCoverageMax$: StaticStructureSchema;
|
|
|
49
61
|
export declare var QueryStatus$: StaticStructureSchema;
|
|
50
62
|
export declare var QueryTemporalRange$: StaticStructureSchema;
|
|
51
63
|
export declare var QueryTemporalRangeMax$: StaticStructureSchema;
|
|
52
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
53
64
|
export declare var Row$: StaticStructureSchema;
|
|
54
65
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
55
66
|
export declare var S3ReportLocation$: StaticStructureSchema;
|
|
@@ -60,14 +71,12 @@ export declare var ScheduledQueryInsights$: StaticStructureSchema;
|
|
|
60
71
|
export declare var ScheduledQueryInsightsResponse$: StaticStructureSchema;
|
|
61
72
|
export declare var ScheduledQueryRunSummary$: StaticStructureSchema;
|
|
62
73
|
export declare var SelectColumn$: StaticStructureSchema;
|
|
63
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
64
74
|
export declare var SnsConfiguration$: StaticStructureSchema;
|
|
65
75
|
export declare var Tag$: StaticStructureSchema;
|
|
66
76
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
67
77
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
68
78
|
export declare var TargetConfiguration$: StaticStructureSchema;
|
|
69
79
|
export declare var TargetDestination$: StaticStructureSchema;
|
|
70
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
71
80
|
export declare var TimeSeriesDataPoint$: StaticStructureSchema;
|
|
72
81
|
export declare var TimestreamConfiguration$: StaticStructureSchema;
|
|
73
82
|
export declare var TimestreamDestination$: StaticStructureSchema;
|
|
@@ -77,8 +86,6 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
77
86
|
export declare var UpdateAccountSettingsRequest$: StaticStructureSchema;
|
|
78
87
|
export declare var UpdateAccountSettingsResponse$: StaticStructureSchema;
|
|
79
88
|
export declare var UpdateScheduledQueryRequest$: StaticStructureSchema;
|
|
80
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
81
|
-
export declare var TimestreamQueryServiceException$: StaticErrorSchema;
|
|
82
89
|
export declare var CancelQuery$: StaticOperationSchema;
|
|
83
90
|
export declare var CreateScheduledQuery$: StaticOperationSchema;
|
|
84
91
|
export declare var DeleteScheduledQuery$: StaticOperationSchema;
|
|
@@ -1,14 +1,24 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var TimestreamQueryServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
11
|
+
export declare var InvalidEndpointException$: StaticErrorSchema;
|
|
12
|
+
export declare var QueryExecutionException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
16
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
7
18
|
export declare var AccountSettingsNotificationConfiguration$: StaticStructureSchema;
|
|
8
19
|
export declare var CancelQueryRequest$: StaticStructureSchema;
|
|
9
20
|
export declare var CancelQueryResponse$: StaticStructureSchema;
|
|
10
21
|
export declare var ColumnInfo$: StaticStructureSchema;
|
|
11
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
12
22
|
export declare var CreateScheduledQueryRequest$: StaticStructureSchema;
|
|
13
23
|
export declare var CreateScheduledQueryResponse$: StaticStructureSchema;
|
|
14
24
|
export declare var Datum$: StaticStructureSchema;
|
|
@@ -25,8 +35,6 @@ export declare var ErrorReportConfiguration$: StaticStructureSchema;
|
|
|
25
35
|
export declare var ErrorReportLocation$: StaticStructureSchema;
|
|
26
36
|
export declare var ExecuteScheduledQueryRequest$: StaticStructureSchema;
|
|
27
37
|
export declare var ExecutionStats$: StaticStructureSchema;
|
|
28
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
29
|
-
export declare var InvalidEndpointException$: StaticErrorSchema;
|
|
30
38
|
export declare var LastUpdate$: StaticStructureSchema;
|
|
31
39
|
export declare var ListScheduledQueriesRequest$: StaticStructureSchema;
|
|
32
40
|
export declare var ListScheduledQueriesResponse$: StaticStructureSchema;
|
|
@@ -43,7 +51,6 @@ export declare var ProvisionedCapacityRequest$: StaticStructureSchema;
|
|
|
43
51
|
export declare var ProvisionedCapacityResponse$: StaticStructureSchema;
|
|
44
52
|
export declare var QueryComputeRequest$: StaticStructureSchema;
|
|
45
53
|
export declare var QueryComputeResponse$: StaticStructureSchema;
|
|
46
|
-
export declare var QueryExecutionException$: StaticErrorSchema;
|
|
47
54
|
export declare var QueryInsights$: StaticStructureSchema;
|
|
48
55
|
export declare var QueryInsightsResponse$: StaticStructureSchema;
|
|
49
56
|
export declare var QueryRequest$: StaticStructureSchema;
|
|
@@ -53,7 +60,6 @@ export declare var QuerySpatialCoverageMax$: StaticStructureSchema;
|
|
|
53
60
|
export declare var QueryStatus$: StaticStructureSchema;
|
|
54
61
|
export declare var QueryTemporalRange$: StaticStructureSchema;
|
|
55
62
|
export declare var QueryTemporalRangeMax$: StaticStructureSchema;
|
|
56
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
57
63
|
export declare var Row$: StaticStructureSchema;
|
|
58
64
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
59
65
|
export declare var S3ReportLocation$: StaticStructureSchema;
|
|
@@ -64,14 +70,12 @@ export declare var ScheduledQueryInsights$: StaticStructureSchema;
|
|
|
64
70
|
export declare var ScheduledQueryInsightsResponse$: StaticStructureSchema;
|
|
65
71
|
export declare var ScheduledQueryRunSummary$: StaticStructureSchema;
|
|
66
72
|
export declare var SelectColumn$: StaticStructureSchema;
|
|
67
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
68
73
|
export declare var SnsConfiguration$: StaticStructureSchema;
|
|
69
74
|
export declare var Tag$: StaticStructureSchema;
|
|
70
75
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
71
76
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
72
77
|
export declare var TargetConfiguration$: StaticStructureSchema;
|
|
73
78
|
export declare var TargetDestination$: StaticStructureSchema;
|
|
74
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
75
79
|
export declare var TimeSeriesDataPoint$: StaticStructureSchema;
|
|
76
80
|
export declare var TimestreamConfiguration$: StaticStructureSchema;
|
|
77
81
|
export declare var TimestreamDestination$: StaticStructureSchema;
|
|
@@ -81,8 +85,6 @@ export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
|
81
85
|
export declare var UpdateAccountSettingsRequest$: StaticStructureSchema;
|
|
82
86
|
export declare var UpdateAccountSettingsResponse$: StaticStructureSchema;
|
|
83
87
|
export declare var UpdateScheduledQueryRequest$: StaticStructureSchema;
|
|
84
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
85
|
-
export declare var TimestreamQueryServiceException$: StaticErrorSchema;
|
|
86
88
|
export declare var CancelQuery$: StaticOperationSchema;
|
|
87
89
|
export declare var CreateScheduledQuery$: StaticOperationSchema;
|
|
88
90
|
export declare var DeleteScheduledQuery$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-query",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Query Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-timestream-query",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-endpoint-discovery": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
32
32
|
"@aws-sdk/types": "^3.973.1",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.6",
|
|
37
|
-
"@smithy/core": "^3.
|
|
37
|
+
"@smithy/core": "^3.23.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
39
39
|
"@smithy/hash-node": "^4.2.8",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
43
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
44
44
|
"@smithy/middleware-serde": "^4.2.9",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.8",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.8",
|
|
47
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.8",
|
|
49
|
-
"@smithy/smithy-client": "^4.11.
|
|
49
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
50
50
|
"@smithy/types": "^4.12.0",
|
|
51
51
|
"@smithy/url-parser": "^4.2.8",
|
|
52
52
|
"@smithy/util-base64": "^4.3.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
57
57
|
"@smithy/util-endpoints": "^3.2.8",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.8",
|
|
59
59
|
"@smithy/util-retry": "^4.2.8",
|