@aws-sdk/client-forecast 3.92.0 → 3.97.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 +27 -0
- package/dist-cjs/Forecast.js +90 -0
- package/dist-cjs/commands/CreateMonitorCommand.js +36 -0
- package/dist-cjs/commands/DeleteMonitorCommand.js +36 -0
- package/dist-cjs/commands/DescribeMonitorCommand.js +36 -0
- package/dist-cjs/commands/ListMonitorEvaluationsCommand.js +36 -0
- package/dist-cjs/commands/ListMonitorsCommand.js +36 -0
- package/dist-cjs/commands/ResumeResourceCommand.js +36 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +125 -3
- package/dist-cjs/pagination/ListExplainabilitiesPaginator.js +36 -0
- package/dist-cjs/pagination/ListExplainabilityExportsPaginator.js +36 -0
- package/dist-cjs/pagination/ListMonitorEvaluationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListMonitorsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +4 -0
- package/dist-cjs/protocols/Aws_json1_1.js +539 -2
- package/dist-es/Forecast.js +90 -0
- package/dist-es/commands/CreateMonitorCommand.js +39 -0
- package/dist-es/commands/DeleteMonitorCommand.js +39 -0
- package/dist-es/commands/DescribeMonitorCommand.js +39 -0
- package/dist-es/commands/ListMonitorEvaluationsCommand.js +39 -0
- package/dist-es/commands/ListMonitorsCommand.js +39 -0
- package/dist-es/commands/ResumeResourceCommand.js +39 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +80 -0
- package/dist-es/pagination/ListExplainabilitiesPaginator.js +75 -0
- package/dist-es/pagination/ListExplainabilityExportsPaginator.js +75 -0
- package/dist-es/pagination/ListMonitorEvaluationsPaginator.js +75 -0
- package/dist-es/pagination/ListMonitorsPaginator.js +75 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +624 -1
- package/dist-types/Forecast.d.ts +133 -45
- package/dist-types/ForecastClient.d.ts +8 -2
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +7 -5
- package/dist-types/commands/CreateDatasetCommand.d.ts +4 -4
- package/dist-types/commands/CreateDatasetGroupCommand.d.ts +4 -4
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +5 -4
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +2 -2
- package/dist-types/commands/CreateMonitorCommand.d.ts +37 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +5 -6
- package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +2 -2
- package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +3 -2
- package/dist-types/commands/DeleteMonitorCommand.d.ts +35 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -2
- package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMonitorCommand.d.ts +72 -0
- package/dist-types/commands/ListDatasetGroupsCommand.d.ts +5 -4
- package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +5 -4
- package/dist-types/commands/ListDatasetsCommand.d.ts +3 -3
- package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +37 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +36 -0
- package/dist-types/commands/ResumeResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +660 -62
- package/dist-types/pagination/ListExplainabilitiesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListExplainabilityExportsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListMonitorEvaluationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListMonitorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/Forecast.d.ts +30 -0
- package/dist-types/ts3.4/ForecastClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeMonitorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMonitorEvaluationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResumeResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +252 -0
- package/dist-types/ts3.4/pagination/ListExplainabilitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListExplainabilityExportsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMonitorEvaluationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMonitorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +18 -0
- package/package.json +4 -4
|
@@ -50,6 +50,15 @@ export declare namespace EncryptionConfig {
|
|
|
50
50
|
|
|
51
51
|
const filterSensitiveLog: (obj: EncryptionConfig) => any;
|
|
52
52
|
}
|
|
53
|
+
|
|
54
|
+
export interface MonitorConfig {
|
|
55
|
+
|
|
56
|
+
MonitorName: string | undefined;
|
|
57
|
+
}
|
|
58
|
+
export declare namespace MonitorConfig {
|
|
59
|
+
|
|
60
|
+
const filterSensitiveLog: (obj: MonitorConfig) => any;
|
|
61
|
+
}
|
|
53
62
|
export declare enum OptimizationMetric {
|
|
54
63
|
AverageWeightedQuantileLoss = "AverageWeightedQuantileLoss",
|
|
55
64
|
MAPE = "MAPE",
|
|
@@ -91,6 +100,8 @@ export interface CreateAutoPredictorRequest {
|
|
|
91
100
|
ExplainPredictor?: boolean;
|
|
92
101
|
|
|
93
102
|
Tags?: Tag[];
|
|
103
|
+
|
|
104
|
+
MonitorConfig?: MonitorConfig;
|
|
94
105
|
}
|
|
95
106
|
export declare namespace CreateAutoPredictorRequest {
|
|
96
107
|
|
|
@@ -413,6 +424,26 @@ export declare namespace CreateForecastExportJobResponse {
|
|
|
413
424
|
|
|
414
425
|
const filterSensitiveLog: (obj: CreateForecastExportJobResponse) => any;
|
|
415
426
|
}
|
|
427
|
+
export interface CreateMonitorRequest {
|
|
428
|
+
|
|
429
|
+
MonitorName: string | undefined;
|
|
430
|
+
|
|
431
|
+
ResourceArn: string | undefined;
|
|
432
|
+
|
|
433
|
+
Tags?: Tag[];
|
|
434
|
+
}
|
|
435
|
+
export declare namespace CreateMonitorRequest {
|
|
436
|
+
|
|
437
|
+
const filterSensitiveLog: (obj: CreateMonitorRequest) => any;
|
|
438
|
+
}
|
|
439
|
+
export interface CreateMonitorResponse {
|
|
440
|
+
|
|
441
|
+
MonitorArn?: string;
|
|
442
|
+
}
|
|
443
|
+
export declare namespace CreateMonitorResponse {
|
|
444
|
+
|
|
445
|
+
const filterSensitiveLog: (obj: CreateMonitorResponse) => any;
|
|
446
|
+
}
|
|
416
447
|
export declare enum AutoMLOverrideStrategy {
|
|
417
448
|
AccuracyOptimized = "AccuracyOptimized",
|
|
418
449
|
LatencyOptimized = "LatencyOptimized"
|
|
@@ -683,6 +714,14 @@ export declare namespace DeleteForecastExportJobRequest {
|
|
|
683
714
|
|
|
684
715
|
const filterSensitiveLog: (obj: DeleteForecastExportJobRequest) => any;
|
|
685
716
|
}
|
|
717
|
+
export interface DeleteMonitorRequest {
|
|
718
|
+
|
|
719
|
+
MonitorArn: string | undefined;
|
|
720
|
+
}
|
|
721
|
+
export declare namespace DeleteMonitorRequest {
|
|
722
|
+
|
|
723
|
+
const filterSensitiveLog: (obj: DeleteMonitorRequest) => any;
|
|
724
|
+
}
|
|
686
725
|
export interface DeletePredictorRequest {
|
|
687
726
|
|
|
688
727
|
PredictorArn: string | undefined;
|
|
@@ -726,6 +765,17 @@ export declare namespace ExplainabilityInfo {
|
|
|
726
765
|
|
|
727
766
|
const filterSensitiveLog: (obj: ExplainabilityInfo) => any;
|
|
728
767
|
}
|
|
768
|
+
|
|
769
|
+
export interface MonitorInfo {
|
|
770
|
+
|
|
771
|
+
MonitorArn?: string;
|
|
772
|
+
|
|
773
|
+
Status?: string;
|
|
774
|
+
}
|
|
775
|
+
export declare namespace MonitorInfo {
|
|
776
|
+
|
|
777
|
+
const filterSensitiveLog: (obj: MonitorInfo) => any;
|
|
778
|
+
}
|
|
729
779
|
export declare enum State {
|
|
730
780
|
Active = "Active",
|
|
731
781
|
Deleted = "Deleted"
|
|
@@ -776,6 +826,8 @@ export interface DescribeAutoPredictorResponse {
|
|
|
776
826
|
OptimizationMetric?: OptimizationMetric | string;
|
|
777
827
|
|
|
778
828
|
ExplainabilityInfo?: ExplainabilityInfo;
|
|
829
|
+
|
|
830
|
+
MonitorInfo?: MonitorInfo;
|
|
779
831
|
}
|
|
780
832
|
export declare namespace DescribeAutoPredictorResponse {
|
|
781
833
|
|
|
@@ -1056,6 +1108,71 @@ export declare namespace DescribeForecastExportJobResponse {
|
|
|
1056
1108
|
|
|
1057
1109
|
const filterSensitiveLog: (obj: DescribeForecastExportJobResponse) => any;
|
|
1058
1110
|
}
|
|
1111
|
+
export interface DescribeMonitorRequest {
|
|
1112
|
+
|
|
1113
|
+
MonitorArn: string | undefined;
|
|
1114
|
+
}
|
|
1115
|
+
export declare namespace DescribeMonitorRequest {
|
|
1116
|
+
|
|
1117
|
+
const filterSensitiveLog: (obj: DescribeMonitorRequest) => any;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
export interface BaselineMetric {
|
|
1121
|
+
|
|
1122
|
+
Name?: string;
|
|
1123
|
+
|
|
1124
|
+
Value?: number;
|
|
1125
|
+
}
|
|
1126
|
+
export declare namespace BaselineMetric {
|
|
1127
|
+
|
|
1128
|
+
const filterSensitiveLog: (obj: BaselineMetric) => any;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
export interface PredictorBaseline {
|
|
1132
|
+
|
|
1133
|
+
BaselineMetrics?: BaselineMetric[];
|
|
1134
|
+
}
|
|
1135
|
+
export declare namespace PredictorBaseline {
|
|
1136
|
+
|
|
1137
|
+
const filterSensitiveLog: (obj: PredictorBaseline) => any;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
export interface Baseline {
|
|
1141
|
+
|
|
1142
|
+
PredictorBaseline?: PredictorBaseline;
|
|
1143
|
+
}
|
|
1144
|
+
export declare namespace Baseline {
|
|
1145
|
+
|
|
1146
|
+
const filterSensitiveLog: (obj: Baseline) => any;
|
|
1147
|
+
}
|
|
1148
|
+
export interface DescribeMonitorResponse {
|
|
1149
|
+
|
|
1150
|
+
MonitorName?: string;
|
|
1151
|
+
|
|
1152
|
+
MonitorArn?: string;
|
|
1153
|
+
|
|
1154
|
+
ResourceArn?: string;
|
|
1155
|
+
|
|
1156
|
+
Status?: string;
|
|
1157
|
+
|
|
1158
|
+
LastEvaluationTime?: Date;
|
|
1159
|
+
|
|
1160
|
+
LastEvaluationState?: string;
|
|
1161
|
+
|
|
1162
|
+
Baseline?: Baseline;
|
|
1163
|
+
|
|
1164
|
+
Message?: string;
|
|
1165
|
+
|
|
1166
|
+
CreationTime?: Date;
|
|
1167
|
+
|
|
1168
|
+
LastModificationTime?: Date;
|
|
1169
|
+
|
|
1170
|
+
EstimatedEvaluationTimeRemainingInMinutes?: number;
|
|
1171
|
+
}
|
|
1172
|
+
export declare namespace DescribeMonitorResponse {
|
|
1173
|
+
|
|
1174
|
+
const filterSensitiveLog: (obj: DescribeMonitorResponse) => any;
|
|
1175
|
+
}
|
|
1059
1176
|
export interface DescribePredictorRequest {
|
|
1060
1177
|
|
|
1061
1178
|
PredictorArn: string | undefined;
|
|
@@ -1602,6 +1719,133 @@ export declare namespace ListForecastsResponse {
|
|
|
1602
1719
|
|
|
1603
1720
|
const filterSensitiveLog: (obj: ListForecastsResponse) => any;
|
|
1604
1721
|
}
|
|
1722
|
+
export interface ListMonitorEvaluationsRequest {
|
|
1723
|
+
|
|
1724
|
+
NextToken?: string;
|
|
1725
|
+
|
|
1726
|
+
MaxResults?: number;
|
|
1727
|
+
|
|
1728
|
+
MonitorArn: string | undefined;
|
|
1729
|
+
|
|
1730
|
+
Filters?: Filter[];
|
|
1731
|
+
}
|
|
1732
|
+
export declare namespace ListMonitorEvaluationsRequest {
|
|
1733
|
+
|
|
1734
|
+
const filterSensitiveLog: (obj: ListMonitorEvaluationsRequest) => any;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
export interface MetricResult {
|
|
1738
|
+
|
|
1739
|
+
MetricName?: string;
|
|
1740
|
+
|
|
1741
|
+
MetricValue?: number;
|
|
1742
|
+
}
|
|
1743
|
+
export declare namespace MetricResult {
|
|
1744
|
+
|
|
1745
|
+
const filterSensitiveLog: (obj: MetricResult) => any;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
export interface MonitorDataSource {
|
|
1749
|
+
|
|
1750
|
+
DatasetImportJobArn?: string;
|
|
1751
|
+
|
|
1752
|
+
ForecastArn?: string;
|
|
1753
|
+
|
|
1754
|
+
PredictorArn?: string;
|
|
1755
|
+
}
|
|
1756
|
+
export declare namespace MonitorDataSource {
|
|
1757
|
+
|
|
1758
|
+
const filterSensitiveLog: (obj: MonitorDataSource) => any;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
export interface PredictorEvent {
|
|
1762
|
+
|
|
1763
|
+
Detail?: string;
|
|
1764
|
+
|
|
1765
|
+
Datetime?: Date;
|
|
1766
|
+
}
|
|
1767
|
+
export declare namespace PredictorEvent {
|
|
1768
|
+
|
|
1769
|
+
const filterSensitiveLog: (obj: PredictorEvent) => any;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
export interface PredictorMonitorEvaluation {
|
|
1773
|
+
ResourceArn?: string;
|
|
1774
|
+
MonitorArn?: string;
|
|
1775
|
+
|
|
1776
|
+
EvaluationTime?: Date;
|
|
1777
|
+
|
|
1778
|
+
EvaluationState?: string;
|
|
1779
|
+
|
|
1780
|
+
WindowStartDatetime?: Date;
|
|
1781
|
+
|
|
1782
|
+
WindowEndDatetime?: Date;
|
|
1783
|
+
|
|
1784
|
+
PredictorEvent?: PredictorEvent;
|
|
1785
|
+
|
|
1786
|
+
MonitorDataSource?: MonitorDataSource;
|
|
1787
|
+
|
|
1788
|
+
MetricResults?: MetricResult[];
|
|
1789
|
+
|
|
1790
|
+
NumItemsEvaluated?: number;
|
|
1791
|
+
|
|
1792
|
+
Message?: string;
|
|
1793
|
+
}
|
|
1794
|
+
export declare namespace PredictorMonitorEvaluation {
|
|
1795
|
+
|
|
1796
|
+
const filterSensitiveLog: (obj: PredictorMonitorEvaluation) => any;
|
|
1797
|
+
}
|
|
1798
|
+
export interface ListMonitorEvaluationsResponse {
|
|
1799
|
+
|
|
1800
|
+
NextToken?: string;
|
|
1801
|
+
|
|
1802
|
+
PredictorMonitorEvaluations?: PredictorMonitorEvaluation[];
|
|
1803
|
+
}
|
|
1804
|
+
export declare namespace ListMonitorEvaluationsResponse {
|
|
1805
|
+
|
|
1806
|
+
const filterSensitiveLog: (obj: ListMonitorEvaluationsResponse) => any;
|
|
1807
|
+
}
|
|
1808
|
+
export interface ListMonitorsRequest {
|
|
1809
|
+
|
|
1810
|
+
NextToken?: string;
|
|
1811
|
+
|
|
1812
|
+
MaxResults?: number;
|
|
1813
|
+
|
|
1814
|
+
Filters?: Filter[];
|
|
1815
|
+
}
|
|
1816
|
+
export declare namespace ListMonitorsRequest {
|
|
1817
|
+
|
|
1818
|
+
const filterSensitiveLog: (obj: ListMonitorsRequest) => any;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
export interface MonitorSummary {
|
|
1822
|
+
|
|
1823
|
+
MonitorArn?: string;
|
|
1824
|
+
|
|
1825
|
+
MonitorName?: string;
|
|
1826
|
+
|
|
1827
|
+
ResourceArn?: string;
|
|
1828
|
+
|
|
1829
|
+
Status?: string;
|
|
1830
|
+
|
|
1831
|
+
CreationTime?: Date;
|
|
1832
|
+
|
|
1833
|
+
LastModificationTime?: Date;
|
|
1834
|
+
}
|
|
1835
|
+
export declare namespace MonitorSummary {
|
|
1836
|
+
|
|
1837
|
+
const filterSensitiveLog: (obj: MonitorSummary) => any;
|
|
1838
|
+
}
|
|
1839
|
+
export interface ListMonitorsResponse {
|
|
1840
|
+
|
|
1841
|
+
Monitors?: MonitorSummary[];
|
|
1842
|
+
|
|
1843
|
+
NextToken?: string;
|
|
1844
|
+
}
|
|
1845
|
+
export declare namespace ListMonitorsResponse {
|
|
1846
|
+
|
|
1847
|
+
const filterSensitiveLog: (obj: ListMonitorsResponse) => any;
|
|
1848
|
+
}
|
|
1605
1849
|
export interface ListPredictorBacktestExportJobsRequest {
|
|
1606
1850
|
|
|
1607
1851
|
NextToken?: string;
|
|
@@ -1708,6 +1952,14 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1708
1952
|
|
|
1709
1953
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1710
1954
|
}
|
|
1955
|
+
export interface ResumeResourceRequest {
|
|
1956
|
+
|
|
1957
|
+
ResourceArn: string | undefined;
|
|
1958
|
+
}
|
|
1959
|
+
export declare namespace ResumeResourceRequest {
|
|
1960
|
+
|
|
1961
|
+
const filterSensitiveLog: (obj: ResumeResourceRequest) => any;
|
|
1962
|
+
}
|
|
1711
1963
|
export interface StopResourceRequest {
|
|
1712
1964
|
|
|
1713
1965
|
ResourceArn: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } from "../commands/ListExplainabilitiesCommand";
|
|
3
|
+
import { ForecastPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListExplainabilities(config: ForecastPaginationConfiguration, input: ListExplainabilitiesCommandInput, ...additionalArguments: any): Paginator<ListExplainabilitiesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "../commands/ListExplainabilityExportsCommand";
|
|
3
|
+
import { ForecastPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListExplainabilityExports(config: ForecastPaginationConfiguration, input: ListExplainabilityExportsCommandInput, ...additionalArguments: any): Paginator<ListExplainabilityExportsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "../commands/ListMonitorEvaluationsCommand";
|
|
3
|
+
import { ForecastPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListMonitorEvaluations(config: ForecastPaginationConfiguration, input: ListMonitorEvaluationsCommandInput, ...additionalArguments: any): Paginator<ListMonitorEvaluationsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
|
|
3
|
+
import { ForecastPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListMonitors(config: ForecastPaginationConfiguration, input: ListMonitorsCommandInput, ...additionalArguments: any): Paginator<ListMonitorsCommandOutput>;
|
|
@@ -2,7 +2,11 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListDatasetGroupsPaginator";
|
|
3
3
|
export * from "./ListDatasetImportJobsPaginator";
|
|
4
4
|
export * from "./ListDatasetsPaginator";
|
|
5
|
+
export * from "./ListExplainabilitiesPaginator";
|
|
6
|
+
export * from "./ListExplainabilityExportsPaginator";
|
|
5
7
|
export * from "./ListForecastExportJobsPaginator";
|
|
6
8
|
export * from "./ListForecastsPaginator";
|
|
9
|
+
export * from "./ListMonitorEvaluationsPaginator";
|
|
10
|
+
export * from "./ListMonitorsPaginator";
|
|
7
11
|
export * from "./ListPredictorBacktestExportJobsPaginator";
|
|
8
12
|
export * from "./ListPredictorsPaginator";
|
|
@@ -8,6 +8,7 @@ import { CreateExplainabilityCommandInput, CreateExplainabilityCommandOutput } f
|
|
|
8
8
|
import { CreateExplainabilityExportCommandInput, CreateExplainabilityExportCommandOutput } from "../commands/CreateExplainabilityExportCommand";
|
|
9
9
|
import { CreateForecastCommandInput, CreateForecastCommandOutput } from "../commands/CreateForecastCommand";
|
|
10
10
|
import { CreateForecastExportJobCommandInput, CreateForecastExportJobCommandOutput } from "../commands/CreateForecastExportJobCommand";
|
|
11
|
+
import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "../commands/CreateMonitorCommand";
|
|
11
12
|
import { CreatePredictorBacktestExportJobCommandInput, CreatePredictorBacktestExportJobCommandOutput } from "../commands/CreatePredictorBacktestExportJobCommand";
|
|
12
13
|
import { CreatePredictorCommandInput, CreatePredictorCommandOutput } from "../commands/CreatePredictorCommand";
|
|
13
14
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
@@ -17,6 +18,7 @@ import { DeleteExplainabilityCommandInput, DeleteExplainabilityCommandOutput } f
|
|
|
17
18
|
import { DeleteExplainabilityExportCommandInput, DeleteExplainabilityExportCommandOutput } from "../commands/DeleteExplainabilityExportCommand";
|
|
18
19
|
import { DeleteForecastCommandInput, DeleteForecastCommandOutput } from "../commands/DeleteForecastCommand";
|
|
19
20
|
import { DeleteForecastExportJobCommandInput, DeleteForecastExportJobCommandOutput } from "../commands/DeleteForecastExportJobCommand";
|
|
21
|
+
import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "../commands/DeleteMonitorCommand";
|
|
20
22
|
import { DeletePredictorBacktestExportJobCommandInput, DeletePredictorBacktestExportJobCommandOutput } from "../commands/DeletePredictorBacktestExportJobCommand";
|
|
21
23
|
import { DeletePredictorCommandInput, DeletePredictorCommandOutput } from "../commands/DeletePredictorCommand";
|
|
22
24
|
import { DeleteResourceTreeCommandInput, DeleteResourceTreeCommandOutput } from "../commands/DeleteResourceTreeCommand";
|
|
@@ -28,6 +30,7 @@ import { DescribeExplainabilityCommandInput, DescribeExplainabilityCommandOutput
|
|
|
28
30
|
import { DescribeExplainabilityExportCommandInput, DescribeExplainabilityExportCommandOutput } from "../commands/DescribeExplainabilityExportCommand";
|
|
29
31
|
import { DescribeForecastCommandInput, DescribeForecastCommandOutput } from "../commands/DescribeForecastCommand";
|
|
30
32
|
import { DescribeForecastExportJobCommandInput, DescribeForecastExportJobCommandOutput } from "../commands/DescribeForecastExportJobCommand";
|
|
33
|
+
import { DescribeMonitorCommandInput, DescribeMonitorCommandOutput } from "../commands/DescribeMonitorCommand";
|
|
31
34
|
import { DescribePredictorBacktestExportJobCommandInput, DescribePredictorBacktestExportJobCommandOutput } from "../commands/DescribePredictorBacktestExportJobCommand";
|
|
32
35
|
import { DescribePredictorCommandInput, DescribePredictorCommandOutput } from "../commands/DescribePredictorCommand";
|
|
33
36
|
import { GetAccuracyMetricsCommandInput, GetAccuracyMetricsCommandOutput } from "../commands/GetAccuracyMetricsCommand";
|
|
@@ -38,9 +41,12 @@ import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } f
|
|
|
38
41
|
import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "../commands/ListExplainabilityExportsCommand";
|
|
39
42
|
import { ListForecastExportJobsCommandInput, ListForecastExportJobsCommandOutput } from "../commands/ListForecastExportJobsCommand";
|
|
40
43
|
import { ListForecastsCommandInput, ListForecastsCommandOutput } from "../commands/ListForecastsCommand";
|
|
44
|
+
import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "../commands/ListMonitorEvaluationsCommand";
|
|
45
|
+
import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
|
|
41
46
|
import { ListPredictorBacktestExportJobsCommandInput, ListPredictorBacktestExportJobsCommandOutput } from "../commands/ListPredictorBacktestExportJobsCommand";
|
|
42
47
|
import { ListPredictorsCommandInput, ListPredictorsCommandOutput } from "../commands/ListPredictorsCommand";
|
|
43
48
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
49
|
+
import { ResumeResourceCommandInput, ResumeResourceCommandOutput } from "../commands/ResumeResourceCommand";
|
|
44
50
|
import { StopResourceCommandInput, StopResourceCommandOutput } from "../commands/StopResourceCommand";
|
|
45
51
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
46
52
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -53,6 +59,7 @@ export declare const serializeAws_json1_1CreateExplainabilityCommand: (input: Cr
|
|
|
53
59
|
export declare const serializeAws_json1_1CreateExplainabilityExportCommand: (input: CreateExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
60
|
export declare const serializeAws_json1_1CreateForecastCommand: (input: CreateForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
61
|
export declare const serializeAws_json1_1CreateForecastExportJobCommand: (input: CreateForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const serializeAws_json1_1CreateMonitorCommand: (input: CreateMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
63
|
export declare const serializeAws_json1_1CreatePredictorCommand: (input: CreatePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
64
|
export declare const serializeAws_json1_1CreatePredictorBacktestExportJobCommand: (input: CreatePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
65
|
export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -62,6 +69,7 @@ export declare const serializeAws_json1_1DeleteExplainabilityCommand: (input: De
|
|
|
62
69
|
export declare const serializeAws_json1_1DeleteExplainabilityExportCommand: (input: DeleteExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
70
|
export declare const serializeAws_json1_1DeleteForecastCommand: (input: DeleteForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
71
|
export declare const serializeAws_json1_1DeleteForecastExportJobCommand: (input: DeleteForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
export declare const serializeAws_json1_1DeleteMonitorCommand: (input: DeleteMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
73
|
export declare const serializeAws_json1_1DeletePredictorCommand: (input: DeletePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
74
|
export declare const serializeAws_json1_1DeletePredictorBacktestExportJobCommand: (input: DeletePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
75
|
export declare const serializeAws_json1_1DeleteResourceTreeCommand: (input: DeleteResourceTreeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -73,6 +81,7 @@ export declare const serializeAws_json1_1DescribeExplainabilityCommand: (input:
|
|
|
73
81
|
export declare const serializeAws_json1_1DescribeExplainabilityExportCommand: (input: DescribeExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
82
|
export declare const serializeAws_json1_1DescribeForecastCommand: (input: DescribeForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
83
|
export declare const serializeAws_json1_1DescribeForecastExportJobCommand: (input: DescribeForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
export declare const serializeAws_json1_1DescribeMonitorCommand: (input: DescribeMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
85
|
export declare const serializeAws_json1_1DescribePredictorCommand: (input: DescribePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
86
|
export declare const serializeAws_json1_1DescribePredictorBacktestExportJobCommand: (input: DescribePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
87
|
export declare const serializeAws_json1_1GetAccuracyMetricsCommand: (input: GetAccuracyMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -83,9 +92,12 @@ export declare const serializeAws_json1_1ListExplainabilitiesCommand: (input: Li
|
|
|
83
92
|
export declare const serializeAws_json1_1ListExplainabilityExportsCommand: (input: ListExplainabilityExportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
93
|
export declare const serializeAws_json1_1ListForecastExportJobsCommand: (input: ListForecastExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
94
|
export declare const serializeAws_json1_1ListForecastsCommand: (input: ListForecastsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
+
export declare const serializeAws_json1_1ListMonitorEvaluationsCommand: (input: ListMonitorEvaluationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
export declare const serializeAws_json1_1ListMonitorsCommand: (input: ListMonitorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
97
|
export declare const serializeAws_json1_1ListPredictorBacktestExportJobsCommand: (input: ListPredictorBacktestExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
98
|
export declare const serializeAws_json1_1ListPredictorsCommand: (input: ListPredictorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
99
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
export declare const serializeAws_json1_1ResumeResourceCommand: (input: ResumeResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
101
|
export declare const serializeAws_json1_1StopResourceCommand: (input: StopResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
102
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
103
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -98,6 +110,7 @@ export declare const deserializeAws_json1_1CreateExplainabilityCommand: (output:
|
|
|
98
110
|
export declare const deserializeAws_json1_1CreateExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExplainabilityExportCommandOutput>;
|
|
99
111
|
export declare const deserializeAws_json1_1CreateForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateForecastCommandOutput>;
|
|
100
112
|
export declare const deserializeAws_json1_1CreateForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateForecastExportJobCommandOutput>;
|
|
113
|
+
export declare const deserializeAws_json1_1CreateMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMonitorCommandOutput>;
|
|
101
114
|
export declare const deserializeAws_json1_1CreatePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePredictorCommandOutput>;
|
|
102
115
|
export declare const deserializeAws_json1_1CreatePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePredictorBacktestExportJobCommandOutput>;
|
|
103
116
|
export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
@@ -107,6 +120,7 @@ export declare const deserializeAws_json1_1DeleteExplainabilityCommand: (output:
|
|
|
107
120
|
export declare const deserializeAws_json1_1DeleteExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExplainabilityExportCommandOutput>;
|
|
108
121
|
export declare const deserializeAws_json1_1DeleteForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteForecastCommandOutput>;
|
|
109
122
|
export declare const deserializeAws_json1_1DeleteForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteForecastExportJobCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_json1_1DeleteMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMonitorCommandOutput>;
|
|
110
124
|
export declare const deserializeAws_json1_1DeletePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePredictorCommandOutput>;
|
|
111
125
|
export declare const deserializeAws_json1_1DeletePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePredictorBacktestExportJobCommandOutput>;
|
|
112
126
|
export declare const deserializeAws_json1_1DeleteResourceTreeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceTreeCommandOutput>;
|
|
@@ -118,6 +132,7 @@ export declare const deserializeAws_json1_1DescribeExplainabilityCommand: (outpu
|
|
|
118
132
|
export declare const deserializeAws_json1_1DescribeExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExplainabilityExportCommandOutput>;
|
|
119
133
|
export declare const deserializeAws_json1_1DescribeForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeForecastCommandOutput>;
|
|
120
134
|
export declare const deserializeAws_json1_1DescribeForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeForecastExportJobCommandOutput>;
|
|
135
|
+
export declare const deserializeAws_json1_1DescribeMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMonitorCommandOutput>;
|
|
121
136
|
export declare const deserializeAws_json1_1DescribePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePredictorCommandOutput>;
|
|
122
137
|
export declare const deserializeAws_json1_1DescribePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePredictorBacktestExportJobCommandOutput>;
|
|
123
138
|
export declare const deserializeAws_json1_1GetAccuracyMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccuracyMetricsCommandOutput>;
|
|
@@ -128,9 +143,12 @@ export declare const deserializeAws_json1_1ListExplainabilitiesCommand: (output:
|
|
|
128
143
|
export declare const deserializeAws_json1_1ListExplainabilityExportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExplainabilityExportsCommandOutput>;
|
|
129
144
|
export declare const deserializeAws_json1_1ListForecastExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListForecastExportJobsCommandOutput>;
|
|
130
145
|
export declare const deserializeAws_json1_1ListForecastsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListForecastsCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_json1_1ListMonitorEvaluationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMonitorEvaluationsCommandOutput>;
|
|
147
|
+
export declare const deserializeAws_json1_1ListMonitorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMonitorsCommandOutput>;
|
|
131
148
|
export declare const deserializeAws_json1_1ListPredictorBacktestExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPredictorBacktestExportJobsCommandOutput>;
|
|
132
149
|
export declare const deserializeAws_json1_1ListPredictorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPredictorsCommandOutput>;
|
|
133
150
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
151
|
+
export declare const deserializeAws_json1_1ResumeResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeResourceCommandOutput>;
|
|
134
152
|
export declare const deserializeAws_json1_1StopResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopResourceCommandOutput>;
|
|
135
153
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
136
154
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
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.97.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.95.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.95.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.78.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.78.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.94.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.85.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|