@aws-sdk/client-timestream-query 3.296.0 → 3.298.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/commands/CancelQueryCommand.js +2 -3
- package/dist-cjs/commands/CreateScheduledQueryCommand.js +1 -1
- package/dist-cjs/commands/DeleteScheduledQueryCommand.js +2 -3
- package/dist-cjs/commands/DescribeEndpointsCommand.js +2 -3
- package/dist-cjs/commands/DescribeScheduledQueryCommand.js +1 -1
- package/dist-cjs/commands/ExecuteScheduledQueryCommand.js +1 -1
- package/dist-cjs/commands/ListScheduledQueriesCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/QueryCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateScheduledQueryCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -182
- package/dist-es/commands/CancelQueryCommand.js +2 -3
- package/dist-es/commands/CreateScheduledQueryCommand.js +2 -2
- package/dist-es/commands/DeleteScheduledQueryCommand.js +2 -3
- package/dist-es/commands/DescribeEndpointsCommand.js +2 -3
- package/dist-es/commands/DescribeScheduledQueryCommand.js +2 -2
- package/dist-es/commands/ExecuteScheduledQueryCommand.js +1 -1
- package/dist-es/commands/ListScheduledQueriesCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/QueryCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateScheduledQueryCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -135
- package/dist-types/TimestreamQuery.d.ts +14 -0
- package/dist-types/TimestreamQueryClient.d.ts +24 -4
- package/dist-types/commands/CancelQueryCommand.d.ts +16 -0
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeScheduledQueryCommand.d.ts +16 -0
- package/dist-types/commands/ExecuteScheduledQueryCommand.d.ts +16 -0
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PrepareQueryCommand.d.ts +16 -0
- package/dist-types/commands/QueryCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +16 -0
- package/dist-types/models/TimestreamQueryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +128 -180
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/QueryPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -119
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { TimestreamQueryClient } from "../TimestreamQueryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface TimestreamQueryPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: TimestreamQueryClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "../commands/ListScheduledQueriesCommand";
|
|
3
3
|
import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListScheduledQueries(config: TimestreamQueryPaginationConfiguration, input: ListScheduledQueriesCommandInput, ...additionalArguments: any): Paginator<ListScheduledQueriesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
3
3
|
import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTagsForResource(config: TimestreamQueryPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand";
|
|
3
3
|
import { TimestreamQueryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateQuery(config: TimestreamQueryPaginationConfiguration, input: QueryCommandInput, ...additionalArguments: any): Paginator<QueryCommandOutput>;
|
|
@@ -361,77 +361,9 @@ export interface PrepareQueryResponse {
|
|
|
361
361
|
Columns: SelectColumn[] | undefined;
|
|
362
362
|
Parameters: ParameterMapping[] | undefined;
|
|
363
363
|
}
|
|
364
|
-
export declare const CancelQueryRequestFilterSensitiveLog: (
|
|
365
|
-
obj: CancelQueryRequest
|
|
366
|
-
) => any;
|
|
367
|
-
export declare const CancelQueryResponseFilterSensitiveLog: (
|
|
368
|
-
obj: CancelQueryResponse
|
|
369
|
-
) => any;
|
|
370
|
-
export declare const S3ConfigurationFilterSensitiveLog: (
|
|
371
|
-
obj: S3Configuration
|
|
372
|
-
) => any;
|
|
373
|
-
export declare const ErrorReportConfigurationFilterSensitiveLog: (
|
|
374
|
-
obj: ErrorReportConfiguration
|
|
375
|
-
) => any;
|
|
376
|
-
export declare const SnsConfigurationFilterSensitiveLog: (
|
|
377
|
-
obj: SnsConfiguration
|
|
378
|
-
) => any;
|
|
379
|
-
export declare const NotificationConfigurationFilterSensitiveLog: (
|
|
380
|
-
obj: NotificationConfiguration
|
|
381
|
-
) => any;
|
|
382
|
-
export declare const ScheduleConfigurationFilterSensitiveLog: (
|
|
383
|
-
obj: ScheduleConfiguration
|
|
384
|
-
) => any;
|
|
385
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
386
|
-
export declare const DimensionMappingFilterSensitiveLog: (
|
|
387
|
-
obj: DimensionMapping
|
|
388
|
-
) => any;
|
|
389
|
-
export declare const MultiMeasureAttributeMappingFilterSensitiveLog: (
|
|
390
|
-
obj: MultiMeasureAttributeMapping
|
|
391
|
-
) => any;
|
|
392
|
-
export declare const MixedMeasureMappingFilterSensitiveLog: (
|
|
393
|
-
obj: MixedMeasureMapping
|
|
394
|
-
) => any;
|
|
395
|
-
export declare const MultiMeasureMappingsFilterSensitiveLog: (
|
|
396
|
-
obj: MultiMeasureMappings
|
|
397
|
-
) => any;
|
|
398
|
-
export declare const TimestreamConfigurationFilterSensitiveLog: (
|
|
399
|
-
obj: TimestreamConfiguration
|
|
400
|
-
) => any;
|
|
401
|
-
export declare const TargetConfigurationFilterSensitiveLog: (
|
|
402
|
-
obj: TargetConfiguration
|
|
403
|
-
) => any;
|
|
404
364
|
export declare const CreateScheduledQueryRequestFilterSensitiveLog: (
|
|
405
365
|
obj: CreateScheduledQueryRequest
|
|
406
366
|
) => any;
|
|
407
|
-
export declare const CreateScheduledQueryResponseFilterSensitiveLog: (
|
|
408
|
-
obj: CreateScheduledQueryResponse
|
|
409
|
-
) => any;
|
|
410
|
-
export declare const DeleteScheduledQueryRequestFilterSensitiveLog: (
|
|
411
|
-
obj: DeleteScheduledQueryRequest
|
|
412
|
-
) => any;
|
|
413
|
-
export declare const DescribeEndpointsRequestFilterSensitiveLog: (
|
|
414
|
-
obj: DescribeEndpointsRequest
|
|
415
|
-
) => any;
|
|
416
|
-
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
417
|
-
export declare const DescribeEndpointsResponseFilterSensitiveLog: (
|
|
418
|
-
obj: DescribeEndpointsResponse
|
|
419
|
-
) => any;
|
|
420
|
-
export declare const DescribeScheduledQueryRequestFilterSensitiveLog: (
|
|
421
|
-
obj: DescribeScheduledQueryRequest
|
|
422
|
-
) => any;
|
|
423
|
-
export declare const S3ReportLocationFilterSensitiveLog: (
|
|
424
|
-
obj: S3ReportLocation
|
|
425
|
-
) => any;
|
|
426
|
-
export declare const ErrorReportLocationFilterSensitiveLog: (
|
|
427
|
-
obj: ErrorReportLocation
|
|
428
|
-
) => any;
|
|
429
|
-
export declare const ExecutionStatsFilterSensitiveLog: (
|
|
430
|
-
obj: ExecutionStats
|
|
431
|
-
) => any;
|
|
432
|
-
export declare const ScheduledQueryRunSummaryFilterSensitiveLog: (
|
|
433
|
-
obj: ScheduledQueryRunSummary
|
|
434
|
-
) => any;
|
|
435
367
|
export declare const ScheduledQueryDescriptionFilterSensitiveLog: (
|
|
436
368
|
obj: ScheduledQueryDescription
|
|
437
369
|
) => any;
|
|
@@ -441,61 +373,10 @@ export declare const DescribeScheduledQueryResponseFilterSensitiveLog: (
|
|
|
441
373
|
export declare const ExecuteScheduledQueryRequestFilterSensitiveLog: (
|
|
442
374
|
obj: ExecuteScheduledQueryRequest
|
|
443
375
|
) => any;
|
|
444
|
-
export declare const ListScheduledQueriesRequestFilterSensitiveLog: (
|
|
445
|
-
obj: ListScheduledQueriesRequest
|
|
446
|
-
) => any;
|
|
447
|
-
export declare const TimestreamDestinationFilterSensitiveLog: (
|
|
448
|
-
obj: TimestreamDestination
|
|
449
|
-
) => any;
|
|
450
|
-
export declare const TargetDestinationFilterSensitiveLog: (
|
|
451
|
-
obj: TargetDestination
|
|
452
|
-
) => any;
|
|
453
|
-
export declare const ScheduledQueryFilterSensitiveLog: (
|
|
454
|
-
obj: ScheduledQuery
|
|
455
|
-
) => any;
|
|
456
|
-
export declare const ListScheduledQueriesResponseFilterSensitiveLog: (
|
|
457
|
-
obj: ListScheduledQueriesResponse
|
|
458
|
-
) => any;
|
|
459
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
460
|
-
obj: ListTagsForResourceRequest
|
|
461
|
-
) => any;
|
|
462
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
463
|
-
obj: ListTagsForResourceResponse
|
|
464
|
-
) => any;
|
|
465
376
|
export declare const PrepareQueryRequestFilterSensitiveLog: (
|
|
466
377
|
obj: PrepareQueryRequest
|
|
467
378
|
) => any;
|
|
468
379
|
export declare const QueryRequestFilterSensitiveLog: (obj: QueryRequest) => any;
|
|
469
|
-
export declare const QueryStatusFilterSensitiveLog: (obj: QueryStatus) => any;
|
|
470
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
471
|
-
obj: TagResourceRequest
|
|
472
|
-
) => any;
|
|
473
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
474
|
-
obj: TagResourceResponse
|
|
475
|
-
) => any;
|
|
476
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
477
|
-
obj: UntagResourceRequest
|
|
478
|
-
) => any;
|
|
479
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
480
|
-
obj: UntagResourceResponse
|
|
481
|
-
) => any;
|
|
482
|
-
export declare const UpdateScheduledQueryRequestFilterSensitiveLog: (
|
|
483
|
-
obj: UpdateScheduledQueryRequest
|
|
484
|
-
) => any;
|
|
485
|
-
export declare const ColumnInfoFilterSensitiveLog: (obj: ColumnInfo) => any;
|
|
486
|
-
export declare const TypeFilterSensitiveLog: (obj: Type) => any;
|
|
487
|
-
export declare const DatumFilterSensitiveLog: (obj: Datum) => any;
|
|
488
|
-
export declare const ParameterMappingFilterSensitiveLog: (
|
|
489
|
-
obj: ParameterMapping
|
|
490
|
-
) => any;
|
|
491
|
-
export declare const SelectColumnFilterSensitiveLog: (obj: SelectColumn) => any;
|
|
492
|
-
export declare const TimeSeriesDataPointFilterSensitiveLog: (
|
|
493
|
-
obj: TimeSeriesDataPoint
|
|
494
|
-
) => any;
|
|
495
|
-
export declare const RowFilterSensitiveLog: (obj: Row) => any;
|
|
496
|
-
export declare const QueryResponseFilterSensitiveLog: (
|
|
497
|
-
obj: QueryResponse
|
|
498
|
-
) => any;
|
|
499
380
|
export declare const PrepareQueryResponseFilterSensitiveLog: (
|
|
500
381
|
obj: PrepareQueryResponse
|
|
501
382
|
) => any;
|
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.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo timestream-query"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|