@aws-sdk/client-forecast 3.279.0 → 3.282.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/README.md +507 -0
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/CreateForecastCommand.d.ts +6 -0
- package/dist-types/commands/CreateForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateMonitorCommand.d.ts +6 -0
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreatePredictorCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/DeleteForecastCommand.d.ts +6 -0
- package/dist-types/commands/DeleteForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +6 -0
- package/dist-types/commands/DeletePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeletePredictorCommand.d.ts +6 -0
- package/dist-types/commands/DeleteResourceTreeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/DescribeForecastCommand.d.ts +6 -0
- package/dist-types/commands/DescribeForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeMonitorCommand.d.ts +6 -0
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribePredictorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetGroupsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +6 -0
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +6 -0
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +6 -0
- package/dist-types/commands/ListForecastExportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListForecastsCommand.d.ts +6 -0
- package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +6 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +6 -0
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListPredictorsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfAnalysesCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfForecastExportsCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfForecastsCommand.d.ts +6 -0
- package/dist-types/commands/ResumeResourceCommand.d.ts +6 -0
- package/dist-types/commands/StopResourceCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +6 -0
- package/package.json +17 -17
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListExplainabilitiesRequest, ListExplainabilitiesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListExplainabilitiesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListExplainabilitiesCommandInput extends ListExplainabilitiesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListExplainabilitiesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListExplainabilitiesCommandOutput extends ListExplainabilitiesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListExplainabilityExportsRequest, ListExplainabilityExportsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListExplainabilityExportsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListExplainabilityExportsCommandInput extends ListExplainabilityExportsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListExplainabilityExportsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListExplainabilityExportsCommandOutput extends ListExplainabilityExportsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListForecastExportJobsRequest, ListForecastExportJobsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListForecastExportJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListForecastExportJobsCommandInput extends ListForecastExportJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListForecastExportJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListForecastExportJobsCommandOutput extends ListForecastExportJobsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListForecastsRequest, ListForecastsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListForecastsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListForecastsCommandInput extends ListForecastsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListForecastsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListForecastsCommandOutput extends ListForecastsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListMonitorEvaluationsRequest, ListMonitorEvaluationsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListMonitorEvaluationsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListMonitorEvaluationsCommandInput extends ListMonitorEvaluationsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListMonitorEvaluationsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListMonitorEvaluationsCommandOutput extends ListMonitorEvaluationsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListMonitorsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListMonitorsCommandInput extends ListMonitorsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListMonitorsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListMonitorsCommandOutput extends ListMonitorsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListPredictorBacktestExportJobsRequest, ListPredictorBacktestExportJobsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPredictorBacktestExportJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPredictorBacktestExportJobsCommandInput extends ListPredictorBacktestExportJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPredictorBacktestExportJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPredictorBacktestExportJobsCommandOutput extends ListPredictorBacktestExportJobsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListPredictorsRequest, ListPredictorsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListPredictorsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListPredictorsCommandInput extends ListPredictorsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListPredictorsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListPredictorsCommandOutput extends ListPredictorsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListWhatIfAnalysesRequest, ListWhatIfAnalysesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListWhatIfAnalysesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListWhatIfAnalysesCommandInput extends ListWhatIfAnalysesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListWhatIfAnalysesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListWhatIfAnalysesCommandOutput extends ListWhatIfAnalysesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListWhatIfForecastExportsRequest, ListWhatIfForecastExportsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListWhatIfForecastExportsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListWhatIfForecastExportsCommandInput extends ListWhatIfForecastExportsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListWhatIfForecastExportsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListWhatIfForecastExportsCommandOutput extends ListWhatIfForecastExportsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListWhatIfForecastsRequest, ListWhatIfForecastsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListWhatIfForecastsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListWhatIfForecastsCommandInput extends ListWhatIfForecastsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListWhatIfForecastsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListWhatIfForecastsCommandOutput extends ListWhatIfForecastsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ResumeResourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ResumeResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ResumeResourceCommandInput extends ResumeResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ResumeResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ResumeResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { StopResourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StopResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StopResourceCommandInput extends StopResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StopResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StopResourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { UpdateDatasetGroupRequest, UpdateDatasetGroupResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateDatasetGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateDatasetGroupCommandInput extends UpdateDatasetGroupRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateDatasetGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateDatasetGroupCommandOutput extends UpdateDatasetGroupResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-forecast",
|
|
3
3
|
"description": "AWS SDK for JavaScript Forecast Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.282.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",
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|