@aws-sdk/client-timestream-query 3.53.0 → 3.54.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
7
18
 
8
19
 
@@ -24,7 +24,7 @@ export declare class TimestreamQuery extends TimestreamQueryClient {
24
24
  * not completed running before the cancellation request was issued. Because cancellation
25
25
  * is an idempotent operation, subsequent cancellation requests will return a
26
26
  * <code>CancellationMessage</code>, indicating that the query has already been
27
- * canceled. See <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/code-samples.cancel-query.html">code
27
+ * canceled. See <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.cancel-query.html">code
28
28
  * sample</a> for details. </p>
29
29
  */
30
30
  cancelQuery(args: CancelQueryCommandInput, options?: __HttpHandlerOptions): Promise<CancelQueryCommandOutput>;
@@ -54,7 +54,7 @@ export declare class TimestreamQuery extends TimestreamQueryClient {
54
54
  * <i>it is not recommended that you use this API unless</i>:</p>
55
55
  * <ul>
56
56
  * <li>
57
- * <p>You are using <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/VPCEndpoints">VPC endpoints (Amazon Web Services PrivateLink) with Timestream
57
+ * <p>You are using <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/VPCEndpoints">VPC endpoints (Amazon Web Services PrivateLink) with Timestream
58
58
  * </a>
59
59
  * </p>
60
60
  * </li>
@@ -67,7 +67,7 @@ export declare class TimestreamQuery extends TimestreamQueryClient {
67
67
  * </li>
68
68
  * </ul>
69
69
  * <p>For detailed information on how and when to use and implement DescribeEndpoints, see
70
- * <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/Using.API.html#Using-API.endpoint-discovery">The Endpoint Discovery Pattern</a>.</p>
70
+ * <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/Using.API.html#Using-API.endpoint-discovery">The Endpoint Discovery Pattern</a>.</p>
71
71
  */
72
72
  describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
73
73
  describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
@@ -109,7 +109,7 @@ export declare class TimestreamQuery extends TimestreamQueryClient {
109
109
  * <code>Query</code> is a synchronous operation that enables you to run a query against
110
110
  * your Amazon Timestream data. <code>Query</code> will time out after 60 seconds.
111
111
  * You must update the default timeout in the SDK to support a timeout of 60 seconds. See
112
- * the <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/code-samples.run-query.html">code
112
+ * the <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html">code
113
113
  * sample</a> for details. </p>
114
114
  * <p>Your query request will fail in the following cases:</p>
115
115
  * <ul>
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
10
  import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
11
11
  import { CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput } from "./commands/CreateScheduledQueryCommand";
12
12
  import { DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput } from "./commands/DeleteScheduledQueryCommand";
@@ -42,7 +42,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
42
42
  * A function that can calculate the length of a request body.
43
43
  * @internal
44
44
  */
45
- bodyLengthChecker?: (body: any) => number | undefined;
45
+ bodyLengthChecker?: __BodyLengthCalculator;
46
46
  /**
47
47
  * A function that converts a stream into an array of bytes.
48
48
  * @internal
@@ -11,7 +11,7 @@ export interface CancelQueryCommandOutput extends CancelQueryResponse, __Metadat
11
11
  * not completed running before the cancellation request was issued. Because cancellation
12
12
  * is an idempotent operation, subsequent cancellation requests will return a
13
13
  * <code>CancellationMessage</code>, indicating that the query has already been
14
- * canceled. See <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/code-samples.cancel-query.html">code
14
+ * canceled. See <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.cancel-query.html">code
15
15
  * sample</a> for details. </p>
16
16
  * @example
17
17
  * Use a bare-bones client and the command you need to make an API call.
@@ -14,7 +14,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
14
14
  * <i>it is not recommended that you use this API unless</i>:</p>
15
15
  * <ul>
16
16
  * <li>
17
- * <p>You are using <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/VPCEndpoints">VPC endpoints (Amazon Web Services PrivateLink) with Timestream
17
+ * <p>You are using <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/VPCEndpoints">VPC endpoints (Amazon Web Services PrivateLink) with Timestream
18
18
  * </a>
19
19
  * </p>
20
20
  * </li>
@@ -27,7 +27,7 @@ export interface DescribeEndpointsCommandOutput extends DescribeEndpointsRespons
27
27
  * </li>
28
28
  * </ul>
29
29
  * <p>For detailed information on how and when to use and implement DescribeEndpoints, see
30
- * <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/Using.API.html#Using-API.endpoint-discovery">The Endpoint Discovery Pattern</a>.</p>
30
+ * <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/Using.API.html#Using-API.endpoint-discovery">The Endpoint Discovery Pattern</a>.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -11,7 +11,7 @@ export interface QueryCommandOutput extends QueryResponse, __MetadataBearer {
11
11
  * <code>Query</code> is a synchronous operation that enables you to run a query against
12
12
  * your Amazon Timestream data. <code>Query</code> will time out after 60 seconds.
13
13
  * You must update the default timeout in the SDK to support a timeout of 60 seconds. See
14
- * the <a href="https://docs.aws.amazon.com/Timestream/latest/developerguide/code-samples.run-query.html">code
14
+ * the <a href="https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html">code
15
15
  * sample</a> for details. </p>
16
16
  * <p>Your query request will fail in the following cases:</p>
17
17
  * <ul>
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -6,7 +6,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
6
6
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
7
7
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
8
8
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
9
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
10
10
  import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
11
11
  import { CreateScheduledQueryCommandInput, CreateScheduledQueryCommandOutput } from "./commands/CreateScheduledQueryCommand";
12
12
  import { DeleteScheduledQueryCommandInput, DeleteScheduledQueryCommandOutput } from "./commands/DeleteScheduledQueryCommand";
@@ -30,7 +30,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
30
30
 
31
31
  urlParser?: __UrlParser;
32
32
 
33
- bodyLengthChecker?: (body: any) => number | undefined;
33
+ bodyLengthChecker?: __BodyLengthCalculator;
34
34
 
35
35
  streamCollector?: __StreamCollector;
36
36
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TimestreamQueryClientConfig) =>
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
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.53.0",
4
+ "version": "3.54.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",
@@ -18,35 +18,35 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.53.0",
22
- "@aws-sdk/config-resolver": "3.53.0",
23
- "@aws-sdk/credential-provider-node": "3.53.0",
24
- "@aws-sdk/fetch-http-handler": "3.53.0",
25
- "@aws-sdk/hash-node": "3.53.0",
26
- "@aws-sdk/invalid-dependency": "3.53.0",
27
- "@aws-sdk/middleware-content-length": "3.53.0",
28
- "@aws-sdk/middleware-endpoint-discovery": "3.53.0",
29
- "@aws-sdk/middleware-host-header": "3.53.0",
30
- "@aws-sdk/middleware-logger": "3.53.0",
31
- "@aws-sdk/middleware-retry": "3.53.0",
32
- "@aws-sdk/middleware-serde": "3.53.0",
33
- "@aws-sdk/middleware-signing": "3.53.0",
34
- "@aws-sdk/middleware-stack": "3.53.0",
35
- "@aws-sdk/middleware-user-agent": "3.53.0",
36
- "@aws-sdk/node-config-provider": "3.53.0",
37
- "@aws-sdk/node-http-handler": "3.53.0",
38
- "@aws-sdk/protocol-http": "3.53.0",
39
- "@aws-sdk/smithy-client": "3.53.0",
40
- "@aws-sdk/types": "3.53.0",
41
- "@aws-sdk/url-parser": "3.53.0",
21
+ "@aws-sdk/client-sts": "3.54.0",
22
+ "@aws-sdk/config-resolver": "3.54.0",
23
+ "@aws-sdk/credential-provider-node": "3.54.0",
24
+ "@aws-sdk/fetch-http-handler": "3.54.0",
25
+ "@aws-sdk/hash-node": "3.54.0",
26
+ "@aws-sdk/invalid-dependency": "3.54.0",
27
+ "@aws-sdk/middleware-content-length": "3.54.0",
28
+ "@aws-sdk/middleware-endpoint-discovery": "3.54.0",
29
+ "@aws-sdk/middleware-host-header": "3.54.0",
30
+ "@aws-sdk/middleware-logger": "3.54.0",
31
+ "@aws-sdk/middleware-retry": "3.54.0",
32
+ "@aws-sdk/middleware-serde": "3.54.0",
33
+ "@aws-sdk/middleware-signing": "3.54.0",
34
+ "@aws-sdk/middleware-stack": "3.54.0",
35
+ "@aws-sdk/middleware-user-agent": "3.54.0",
36
+ "@aws-sdk/node-config-provider": "3.54.0",
37
+ "@aws-sdk/node-http-handler": "3.54.0",
38
+ "@aws-sdk/protocol-http": "3.54.0",
39
+ "@aws-sdk/smithy-client": "3.54.0",
40
+ "@aws-sdk/types": "3.54.0",
41
+ "@aws-sdk/url-parser": "3.54.0",
42
42
  "@aws-sdk/util-base64-browser": "3.52.0",
43
43
  "@aws-sdk/util-base64-node": "3.52.0",
44
- "@aws-sdk/util-body-length-browser": "3.52.0",
45
- "@aws-sdk/util-body-length-node": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.53.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.53.0",
48
- "@aws-sdk/util-user-agent-browser": "3.53.0",
49
- "@aws-sdk/util-user-agent-node": "3.53.0",
44
+ "@aws-sdk/util-body-length-browser": "3.54.0",
45
+ "@aws-sdk/util-body-length-node": "3.54.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.54.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.54.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.54.0",
49
+ "@aws-sdk/util-user-agent-node": "3.54.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.52.0",
51
51
  "@aws-sdk/util-utf8-node": "3.52.0",
52
52
  "tslib": "^2.3.0",