@aws-sdk/client-forecastquery 3.169.0 → 3.171.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,22 @@
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-forecastquery
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-forecastquery
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-forecastquery
@@ -1,15 +1,38 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { QueryForecastCommandInput, QueryForecastCommandOutput } from "./commands/QueryForecastCommand";
3
- import { QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput } from "./commands/QueryWhatIfForecastCommand";
4
- import { ForecastqueryClient } from "./ForecastqueryClient";
5
-
6
- export declare class Forecastquery extends ForecastqueryClient {
7
-
8
- queryForecast(args: QueryForecastCommandInput, options?: __HttpHandlerOptions): Promise<QueryForecastCommandOutput>;
9
- queryForecast(args: QueryForecastCommandInput, cb: (err: any, data?: QueryForecastCommandOutput) => void): void;
10
- queryForecast(args: QueryForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryForecastCommandOutput) => void): void;
11
-
12
- queryWhatIfForecast(args: QueryWhatIfForecastCommandInput, options?: __HttpHandlerOptions): Promise<QueryWhatIfForecastCommandOutput>;
13
- queryWhatIfForecast(args: QueryWhatIfForecastCommandInput, cb: (err: any, data?: QueryWhatIfForecastCommandOutput) => void): void;
14
- queryWhatIfForecast(args: QueryWhatIfForecastCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryWhatIfForecastCommandOutput) => void): void;
15
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ QueryForecastCommandInput,
4
+ QueryForecastCommandOutput,
5
+ } from "./commands/QueryForecastCommand";
6
+ import {
7
+ QueryWhatIfForecastCommandInput,
8
+ QueryWhatIfForecastCommandOutput,
9
+ } from "./commands/QueryWhatIfForecastCommand";
10
+ import { ForecastqueryClient } from "./ForecastqueryClient";
11
+ export declare class Forecastquery extends ForecastqueryClient {
12
+ queryForecast(
13
+ args: QueryForecastCommandInput,
14
+ options?: __HttpHandlerOptions
15
+ ): Promise<QueryForecastCommandOutput>;
16
+ queryForecast(
17
+ args: QueryForecastCommandInput,
18
+ cb: (err: any, data?: QueryForecastCommandOutput) => void
19
+ ): void;
20
+ queryForecast(
21
+ args: QueryForecastCommandInput,
22
+ options: __HttpHandlerOptions,
23
+ cb: (err: any, data?: QueryForecastCommandOutput) => void
24
+ ): void;
25
+ queryWhatIfForecast(
26
+ args: QueryWhatIfForecastCommandInput,
27
+ options?: __HttpHandlerOptions
28
+ ): Promise<QueryWhatIfForecastCommandOutput>;
29
+ queryWhatIfForecast(
30
+ args: QueryWhatIfForecastCommandInput,
31
+ cb: (err: any, data?: QueryWhatIfForecastCommandOutput) => void
32
+ ): void;
33
+ queryWhatIfForecast(
34
+ args: QueryWhatIfForecastCommandInput,
35
+ options: __HttpHandlerOptions,
36
+ cb: (err: any, data?: QueryWhatIfForecastCommandOutput) => void
37
+ ): void;
38
+ }
@@ -1,75 +1,117 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- 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";
9
- import { QueryForecastCommandInput, QueryForecastCommandOutput } from "./commands/QueryForecastCommand";
10
- import { QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput } from "./commands/QueryWhatIfForecastCommand";
11
- export declare type ServiceInputTypes = QueryForecastCommandInput | QueryWhatIfForecastCommandInput;
12
- export declare type ServiceOutputTypes = QueryForecastCommandOutput | QueryWhatIfForecastCommandOutput;
13
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
14
-
15
- requestHandler?: __HttpHandler;
16
-
17
- sha256?: __HashConstructor;
18
-
19
- urlParser?: __UrlParser;
20
-
21
- bodyLengthChecker?: __BodyLengthCalculator;
22
-
23
- streamCollector?: __StreamCollector;
24
-
25
- base64Decoder?: __Decoder;
26
-
27
- base64Encoder?: __Encoder;
28
-
29
- utf8Decoder?: __Decoder;
30
-
31
- utf8Encoder?: __Encoder;
32
-
33
- runtime?: string;
34
-
35
- disableHostPrefix?: boolean;
36
-
37
- maxAttempts?: number | __Provider<number>;
38
-
39
- retryMode?: string | __Provider<string>;
40
-
41
- logger?: __Logger;
42
-
43
- useDualstackEndpoint?: boolean | __Provider<boolean>;
44
-
45
- useFipsEndpoint?: boolean | __Provider<boolean>;
46
-
47
- serviceId?: string;
48
-
49
- region?: string | __Provider<string>;
50
-
51
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
52
-
53
- regionInfoProvider?: RegionInfoProvider;
54
-
55
- defaultUserAgentProvider?: Provider<__UserAgent>;
56
-
57
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
58
- }
59
- declare type ForecastqueryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
60
-
61
- export interface ForecastqueryClientConfig extends ForecastqueryClientConfigType {
62
- }
63
- declare type ForecastqueryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
64
-
65
- export interface ForecastqueryClientResolvedConfig extends ForecastqueryClientResolvedConfigType {
66
- }
67
-
68
- export declare class ForecastqueryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ForecastqueryClientResolvedConfig> {
69
-
70
- readonly config: ForecastqueryClientResolvedConfig;
71
- constructor(configuration: ForecastqueryClientConfig);
72
-
73
- destroy(): void;
74
- }
75
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ QueryForecastCommandInput,
47
+ QueryForecastCommandOutput,
48
+ } from "./commands/QueryForecastCommand";
49
+ import {
50
+ QueryWhatIfForecastCommandInput,
51
+ QueryWhatIfForecastCommandOutput,
52
+ } from "./commands/QueryWhatIfForecastCommand";
53
+ export declare type ServiceInputTypes =
54
+ | QueryForecastCommandInput
55
+ | QueryWhatIfForecastCommandInput;
56
+ export declare type ServiceOutputTypes =
57
+ | QueryForecastCommandOutput
58
+ | QueryWhatIfForecastCommandOutput;
59
+ export interface ClientDefaults
60
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
61
+ requestHandler?: __HttpHandler;
62
+ sha256?: __HashConstructor;
63
+ urlParser?: __UrlParser;
64
+ bodyLengthChecker?: __BodyLengthCalculator;
65
+ streamCollector?: __StreamCollector;
66
+ base64Decoder?: __Decoder;
67
+ base64Encoder?: __Encoder;
68
+ utf8Decoder?: __Decoder;
69
+ utf8Encoder?: __Encoder;
70
+ runtime?: string;
71
+ disableHostPrefix?: boolean;
72
+ maxAttempts?: number | __Provider<number>;
73
+ retryMode?: string | __Provider<string>;
74
+ logger?: __Logger;
75
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
76
+ useFipsEndpoint?: boolean | __Provider<boolean>;
77
+ serviceId?: string;
78
+ region?: string | __Provider<string>;
79
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
80
+ regionInfoProvider?: RegionInfoProvider;
81
+ defaultUserAgentProvider?: Provider<__UserAgent>;
82
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
83
+ }
84
+ declare type ForecastqueryClientConfigType = Partial<
85
+ __SmithyConfiguration<__HttpHandlerOptions>
86
+ > &
87
+ ClientDefaults &
88
+ RegionInputConfig &
89
+ EndpointsInputConfig &
90
+ RetryInputConfig &
91
+ HostHeaderInputConfig &
92
+ AwsAuthInputConfig &
93
+ UserAgentInputConfig;
94
+ export interface ForecastqueryClientConfig
95
+ extends ForecastqueryClientConfigType {}
96
+ declare type ForecastqueryClientResolvedConfigType =
97
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
98
+ Required<ClientDefaults> &
99
+ RegionResolvedConfig &
100
+ EndpointsResolvedConfig &
101
+ RetryResolvedConfig &
102
+ HostHeaderResolvedConfig &
103
+ AwsAuthResolvedConfig &
104
+ UserAgentResolvedConfig;
105
+ export interface ForecastqueryClientResolvedConfig
106
+ extends ForecastqueryClientResolvedConfigType {}
107
+ export declare class ForecastqueryClient extends __Client<
108
+ __HttpHandlerOptions,
109
+ ServiceInputTypes,
110
+ ServiceOutputTypes,
111
+ ForecastqueryClientResolvedConfig
112
+ > {
113
+ readonly config: ForecastqueryClientResolvedConfig;
114
+ constructor(configuration: ForecastqueryClientConfig);
115
+ destroy(): void;
116
+ }
117
+ export {};
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient";
4
- import { QueryForecastRequest, QueryForecastResponse } from "../models/models_0";
5
- export interface QueryForecastCommandInput extends QueryForecastRequest {
6
- }
7
- export interface QueryForecastCommandOutput extends QueryForecastResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class QueryForecastCommand extends $Command<QueryForecastCommandInput, QueryForecastCommandOutput, ForecastqueryClientResolvedConfig> {
11
- readonly input: QueryForecastCommandInput;
12
- constructor(input: QueryForecastCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastqueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryForecastCommandInput, QueryForecastCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ForecastqueryClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ForecastqueryClient";
13
+ import {
14
+ QueryForecastRequest,
15
+ QueryForecastResponse,
16
+ } from "../models/models_0";
17
+ export interface QueryForecastCommandInput extends QueryForecastRequest {}
18
+ export interface QueryForecastCommandOutput
19
+ extends QueryForecastResponse,
20
+ __MetadataBearer {}
21
+ export declare class QueryForecastCommand extends $Command<
22
+ QueryForecastCommandInput,
23
+ QueryForecastCommandOutput,
24
+ ForecastqueryClientResolvedConfig
25
+ > {
26
+ readonly input: QueryForecastCommandInput;
27
+ constructor(input: QueryForecastCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ForecastqueryClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<QueryForecastCommandInput, QueryForecastCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient";
4
- import { QueryWhatIfForecastRequest, QueryWhatIfForecastResponse } from "../models/models_0";
5
- export interface QueryWhatIfForecastCommandInput extends QueryWhatIfForecastRequest {
6
- }
7
- export interface QueryWhatIfForecastCommandOutput extends QueryWhatIfForecastResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class QueryWhatIfForecastCommand extends $Command<QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput, ForecastqueryClientResolvedConfig> {
11
- readonly input: QueryWhatIfForecastCommandInput;
12
- constructor(input: QueryWhatIfForecastCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastqueryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ForecastqueryClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ForecastqueryClient";
13
+ import {
14
+ QueryWhatIfForecastRequest,
15
+ QueryWhatIfForecastResponse,
16
+ } from "../models/models_0";
17
+ export interface QueryWhatIfForecastCommandInput
18
+ extends QueryWhatIfForecastRequest {}
19
+ export interface QueryWhatIfForecastCommandOutput
20
+ extends QueryWhatIfForecastResponse,
21
+ __MetadataBearer {}
22
+ export declare class QueryWhatIfForecastCommand extends $Command<
23
+ QueryWhatIfForecastCommandInput,
24
+ QueryWhatIfForecastCommandOutput,
25
+ ForecastqueryClientResolvedConfig
26
+ > {
27
+ readonly input: QueryWhatIfForecastCommandInput;
28
+ constructor(input: QueryWhatIfForecastCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ForecastqueryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,2 +1,2 @@
1
- export * from "./QueryForecastCommand";
2
- export * from "./QueryWhatIfForecastCommand";
1
+ export * from "./QueryForecastCommand";
2
+ export * from "./QueryWhatIfForecastCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./Forecastquery";
2
- export * from "./ForecastqueryClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { ForecastqueryServiceException } from "./models/ForecastqueryServiceException";
1
+ export * from "./Forecastquery";
2
+ export * from "./ForecastqueryClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { ForecastqueryServiceException } from "./models/ForecastqueryServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ForecastqueryServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class ForecastqueryServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";
@@ -1,98 +1,83 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ForecastqueryServiceException as __BaseException } from "./ForecastqueryServiceException";
3
-
4
- export declare class InvalidInputException extends __BaseException {
5
- readonly name: "InvalidInputException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
10
- }
11
-
12
- export declare class InvalidNextTokenException extends __BaseException {
13
- readonly name: "InvalidNextTokenException";
14
- readonly $fault: "client";
15
- Message?: string;
16
-
17
- constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
18
- }
19
-
20
- export declare class LimitExceededException extends __BaseException {
21
- readonly name: "LimitExceededException";
22
- readonly $fault: "client";
23
- Message?: string;
24
-
25
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
26
- }
27
- export interface QueryForecastRequest {
28
-
29
- ForecastArn: string | undefined;
30
-
31
- StartDate?: string;
32
-
33
- EndDate?: string;
34
-
35
- Filters: Record<string, string> | undefined;
36
-
37
- NextToken?: string;
38
- }
39
-
40
- export interface DataPoint {
41
-
42
- Timestamp?: string;
43
-
44
- Value?: number;
45
- }
46
-
47
- export interface Forecast {
48
-
49
- Predictions?: Record<string, DataPoint[]>;
50
- }
51
- export interface QueryForecastResponse {
52
-
53
- Forecast?: Forecast;
54
- }
55
-
56
- export declare class ResourceInUseException extends __BaseException {
57
- readonly name: "ResourceInUseException";
58
- readonly $fault: "client";
59
- Message?: string;
60
-
61
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
62
- }
63
-
64
- export declare class ResourceNotFoundException extends __BaseException {
65
- readonly name: "ResourceNotFoundException";
66
- readonly $fault: "client";
67
- Message?: string;
68
-
69
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
70
- }
71
- export interface QueryWhatIfForecastRequest {
72
-
73
- WhatIfForecastArn: string | undefined;
74
-
75
- StartDate?: string;
76
-
77
- EndDate?: string;
78
-
79
- Filters: Record<string, string> | undefined;
80
-
81
- NextToken?: string;
82
- }
83
- export interface QueryWhatIfForecastResponse {
84
-
85
- Forecast?: Forecast;
86
- }
87
-
88
- export declare const QueryForecastRequestFilterSensitiveLog: (obj: QueryForecastRequest) => any;
89
-
90
- export declare const DataPointFilterSensitiveLog: (obj: DataPoint) => any;
91
-
92
- export declare const ForecastFilterSensitiveLog: (obj: Forecast) => any;
93
-
94
- export declare const QueryForecastResponseFilterSensitiveLog: (obj: QueryForecastResponse) => any;
95
-
96
- export declare const QueryWhatIfForecastRequestFilterSensitiveLog: (obj: QueryWhatIfForecastRequest) => any;
97
-
98
- export declare const QueryWhatIfForecastResponseFilterSensitiveLog: (obj: QueryWhatIfForecastResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ForecastqueryServiceException as __BaseException } from "./ForecastqueryServiceException";
3
+ export declare class InvalidInputException extends __BaseException {
4
+ readonly name: "InvalidInputException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<InvalidInputException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InvalidNextTokenException extends __BaseException {
12
+ readonly name: "InvalidNextTokenException";
13
+ readonly $fault: "client";
14
+ Message?: string;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
17
+ );
18
+ }
19
+ export declare class LimitExceededException extends __BaseException {
20
+ readonly name: "LimitExceededException";
21
+ readonly $fault: "client";
22
+ Message?: string;
23
+ constructor(
24
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
25
+ );
26
+ }
27
+ export interface QueryForecastRequest {
28
+ ForecastArn: string | undefined;
29
+ StartDate?: string;
30
+ EndDate?: string;
31
+ Filters: Record<string, string> | undefined;
32
+ NextToken?: string;
33
+ }
34
+ export interface DataPoint {
35
+ Timestamp?: string;
36
+ Value?: number;
37
+ }
38
+ export interface Forecast {
39
+ Predictions?: Record<string, DataPoint[]>;
40
+ }
41
+ export interface QueryForecastResponse {
42
+ Forecast?: Forecast;
43
+ }
44
+ export declare class ResourceInUseException extends __BaseException {
45
+ readonly name: "ResourceInUseException";
46
+ readonly $fault: "client";
47
+ Message?: string;
48
+ constructor(
49
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
50
+ );
51
+ }
52
+ export declare class ResourceNotFoundException extends __BaseException {
53
+ readonly name: "ResourceNotFoundException";
54
+ readonly $fault: "client";
55
+ Message?: string;
56
+ constructor(
57
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
58
+ );
59
+ }
60
+ export interface QueryWhatIfForecastRequest {
61
+ WhatIfForecastArn: string | undefined;
62
+ StartDate?: string;
63
+ EndDate?: string;
64
+ Filters: Record<string, string> | undefined;
65
+ NextToken?: string;
66
+ }
67
+ export interface QueryWhatIfForecastResponse {
68
+ Forecast?: Forecast;
69
+ }
70
+ export declare const QueryForecastRequestFilterSensitiveLog: (
71
+ obj: QueryForecastRequest
72
+ ) => any;
73
+ export declare const DataPointFilterSensitiveLog: (obj: DataPoint) => any;
74
+ export declare const ForecastFilterSensitiveLog: (obj: Forecast) => any;
75
+ export declare const QueryForecastResponseFilterSensitiveLog: (
76
+ obj: QueryForecastResponse
77
+ ) => any;
78
+ export declare const QueryWhatIfForecastRequestFilterSensitiveLog: (
79
+ obj: QueryWhatIfForecastRequest
80
+ ) => any;
81
+ export declare const QueryWhatIfForecastResponseFilterSensitiveLog: (
82
+ obj: QueryWhatIfForecastResponse
83
+ ) => any;
@@ -1,8 +1,29 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { QueryForecastCommandInput, QueryForecastCommandOutput } from "../commands/QueryForecastCommand";
4
- import { QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput } from "../commands/QueryWhatIfForecastCommand";
5
- export declare const serializeAws_json1_1QueryForecastCommand: (input: QueryForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
6
- export declare const serializeAws_json1_1QueryWhatIfForecastCommand: (input: QueryWhatIfForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
7
- export declare const deserializeAws_json1_1QueryForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryForecastCommandOutput>;
8
- export declare const deserializeAws_json1_1QueryWhatIfForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryWhatIfForecastCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ QueryForecastCommandInput,
8
+ QueryForecastCommandOutput,
9
+ } from "../commands/QueryForecastCommand";
10
+ import {
11
+ QueryWhatIfForecastCommandInput,
12
+ QueryWhatIfForecastCommandOutput,
13
+ } from "../commands/QueryWhatIfForecastCommand";
14
+ export declare const serializeAws_json1_1QueryForecastCommand: (
15
+ input: QueryForecastCommandInput,
16
+ context: __SerdeContext
17
+ ) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_json1_1QueryWhatIfForecastCommand: (
19
+ input: QueryWhatIfForecastCommandInput,
20
+ context: __SerdeContext
21
+ ) => Promise<__HttpRequest>;
22
+ export declare const deserializeAws_json1_1QueryForecastCommand: (
23
+ output: __HttpResponse,
24
+ context: __SerdeContext
25
+ ) => Promise<QueryForecastCommandOutput>;
26
+ export declare const deserializeAws_json1_1QueryWhatIfForecastCommand: (
27
+ output: __HttpResponse,
28
+ context: __SerdeContext
29
+ ) => Promise<QueryWhatIfForecastCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
-
4
- export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
+ export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,38 +1,65 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
-
4
- export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
+ export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,37 +1,66 @@
1
- import { ForecastqueryClientConfig } from "./ForecastqueryClient";
2
-
3
- export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
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
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { ForecastqueryClientConfig } from "./ForecastqueryClient";
2
+ export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@aws-sdk/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@aws-sdk/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@aws-sdk/types").HttpHandlerOptions
10
+ > &
11
+ import("@aws-sdk/protocol-http").HttpHandler)
12
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ urlParser: import("@aws-sdk/types").UrlParser;
15
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
16
+ streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ base64Decoder: import("@aws-sdk/types").Decoder;
18
+ base64Encoder: import("@aws-sdk/types").Encoder;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ disableHostPrefix: boolean;
22
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
23
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
26
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
27
+ serviceId: string;
28
+ region: string | import("@aws-sdk/types").Provider<any>;
29
+ credentialDefaultProvider: (
30
+ input: any
31
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
32
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
33
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
34
+ import("@aws-sdk/types").UserAgent
35
+ >;
36
+ defaultsMode:
37
+ | import("@aws-sdk/smithy-client").DefaultsMode
38
+ | import("@aws-sdk/types").Provider<
39
+ import("@aws-sdk/smithy-client").DefaultsMode
40
+ >;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };
@@ -1,11 +1,10 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
- import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
-
4
- export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
5
- apiVersion: string;
6
- disableHostPrefix: boolean;
7
- logger: __Logger;
8
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
- serviceId: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- };
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { ForecastqueryClientConfig } from "./ForecastqueryClient";
3
+ export declare const getRuntimeConfig: (config: ForecastqueryClientConfig) => {
4
+ apiVersion: string;
5
+ disableHostPrefix: boolean;
6
+ logger: __Logger;
7
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
8
+ serviceId: string;
9
+ urlParser: import("@aws-sdk/types").UrlParser;
10
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-forecastquery",
3
3
  "description": "AWS SDK for JavaScript Forecastquery Client for Node.js, Browser and React Native",
4
- "version": "3.169.0",
4
+ "version": "3.171.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",
@@ -19,45 +19,45 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.169.0",
23
- "@aws-sdk/config-resolver": "3.168.0",
24
- "@aws-sdk/credential-provider-node": "3.169.0",
25
- "@aws-sdk/fetch-http-handler": "3.168.0",
26
- "@aws-sdk/hash-node": "3.168.0",
27
- "@aws-sdk/invalid-dependency": "3.168.0",
28
- "@aws-sdk/middleware-content-length": "3.168.0",
29
- "@aws-sdk/middleware-host-header": "3.168.0",
30
- "@aws-sdk/middleware-logger": "3.168.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.168.0",
32
- "@aws-sdk/middleware-retry": "3.169.0",
33
- "@aws-sdk/middleware-serde": "3.168.0",
34
- "@aws-sdk/middleware-signing": "3.168.0",
35
- "@aws-sdk/middleware-stack": "3.168.0",
36
- "@aws-sdk/middleware-user-agent": "3.168.0",
37
- "@aws-sdk/node-config-provider": "3.168.0",
38
- "@aws-sdk/node-http-handler": "3.168.0",
39
- "@aws-sdk/protocol-http": "3.168.0",
40
- "@aws-sdk/smithy-client": "3.168.0",
41
- "@aws-sdk/types": "3.168.0",
42
- "@aws-sdk/url-parser": "3.168.0",
43
- "@aws-sdk/util-base64-browser": "3.168.0",
44
- "@aws-sdk/util-base64-node": "3.168.0",
45
- "@aws-sdk/util-body-length-browser": "3.168.0",
46
- "@aws-sdk/util-body-length-node": "3.168.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.168.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.168.0",
49
- "@aws-sdk/util-user-agent-browser": "3.168.0",
50
- "@aws-sdk/util-user-agent-node": "3.168.0",
51
- "@aws-sdk/util-utf8-browser": "3.168.0",
52
- "@aws-sdk/util-utf8-node": "3.168.0",
22
+ "@aws-sdk/client-sts": "3.171.0",
23
+ "@aws-sdk/config-resolver": "3.171.0",
24
+ "@aws-sdk/credential-provider-node": "3.171.0",
25
+ "@aws-sdk/fetch-http-handler": "3.171.0",
26
+ "@aws-sdk/hash-node": "3.171.0",
27
+ "@aws-sdk/invalid-dependency": "3.171.0",
28
+ "@aws-sdk/middleware-content-length": "3.171.0",
29
+ "@aws-sdk/middleware-host-header": "3.171.0",
30
+ "@aws-sdk/middleware-logger": "3.171.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.171.0",
32
+ "@aws-sdk/middleware-retry": "3.171.0",
33
+ "@aws-sdk/middleware-serde": "3.171.0",
34
+ "@aws-sdk/middleware-signing": "3.171.0",
35
+ "@aws-sdk/middleware-stack": "3.171.0",
36
+ "@aws-sdk/middleware-user-agent": "3.171.0",
37
+ "@aws-sdk/node-config-provider": "3.171.0",
38
+ "@aws-sdk/node-http-handler": "3.171.0",
39
+ "@aws-sdk/protocol-http": "3.171.0",
40
+ "@aws-sdk/smithy-client": "3.171.0",
41
+ "@aws-sdk/types": "3.171.0",
42
+ "@aws-sdk/url-parser": "3.171.0",
43
+ "@aws-sdk/util-base64-browser": "3.170.0",
44
+ "@aws-sdk/util-base64-node": "3.170.0",
45
+ "@aws-sdk/util-body-length-browser": "3.170.0",
46
+ "@aws-sdk/util-body-length-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.171.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.171.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.171.0",
50
+ "@aws-sdk/util-user-agent-node": "3.171.0",
51
+ "@aws-sdk/util-utf8-browser": "3.170.0",
52
+ "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.168.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.170.0",
57
57
  "@tsconfig/recommended": "1.0.1",
58
58
  "@types/node": "^12.7.5",
59
59
  "concurrently": "7.0.0",
60
- "downlevel-dts": "0.7.0",
60
+ "downlevel-dts": "0.10.1",
61
61
  "rimraf": "3.0.2",
62
62
  "typedoc": "0.19.2",
63
63
  "typescript": "~4.6.2"