@aws-sdk/client-lookoutequipment 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +107 -106
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +106 -0
- package/dist-es/models/errors.js +99 -0
- package/dist-es/models/models_0.js +1 -205
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +250 -0
- package/dist-types/models/errors.d.ts +98 -0
- package/dist-types/models/models_0.d.ts +2 -348
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +137 -0
- package/dist-types/ts3.4/models/errors.d.ts +56 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -195
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AutoPromotionResult: {
|
|
6
|
+
readonly MODEL_NOT_PROMOTED: "MODEL_NOT_PROMOTED";
|
|
7
|
+
readonly MODEL_PROMOTED: "MODEL_PROMOTED";
|
|
8
|
+
readonly RETRAINING_CANCELLED: "RETRAINING_CANCELLED";
|
|
9
|
+
readonly RETRAINING_CUSTOMER_ERROR: "RETRAINING_CUSTOMER_ERROR";
|
|
10
|
+
readonly RETRAINING_INTERNAL_ERROR: "RETRAINING_INTERNAL_ERROR";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type AutoPromotionResult = (typeof AutoPromotionResult)[keyof typeof AutoPromotionResult];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const DatasetStatus: {
|
|
21
|
+
readonly ACTIVE: "ACTIVE";
|
|
22
|
+
readonly CREATED: "CREATED";
|
|
23
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
24
|
+
readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const DataUploadFrequency: {
|
|
35
|
+
readonly PT10M: "PT10M";
|
|
36
|
+
readonly PT15M: "PT15M";
|
|
37
|
+
readonly PT1H: "PT1H";
|
|
38
|
+
readonly PT30M: "PT30M";
|
|
39
|
+
readonly PT5M: "PT5M";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type DataUploadFrequency = (typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @enum
|
|
48
|
+
*/
|
|
49
|
+
export declare const ModelQuality: {
|
|
50
|
+
readonly CANNOT_DETERMINE_QUALITY: "CANNOT_DETERMINE_QUALITY";
|
|
51
|
+
readonly POOR_QUALITY_DETECTED: "POOR_QUALITY_DETECTED";
|
|
52
|
+
readonly QUALITY_THRESHOLD_MET: "QUALITY_THRESHOLD_MET";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export type ModelQuality = (typeof ModelQuality)[keyof typeof ModelQuality];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const InferenceSchedulerStatus: {
|
|
63
|
+
readonly PENDING: "PENDING";
|
|
64
|
+
readonly RUNNING: "RUNNING";
|
|
65
|
+
readonly STOPPED: "STOPPED";
|
|
66
|
+
readonly STOPPING: "STOPPING";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type InferenceSchedulerStatus = (typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* @enum
|
|
75
|
+
*/
|
|
76
|
+
export declare const LabelRating: {
|
|
77
|
+
readonly ANOMALY: "ANOMALY";
|
|
78
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
79
|
+
readonly NO_ANOMALY: "NO_ANOMALY";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* @enum
|
|
88
|
+
*/
|
|
89
|
+
export declare const TargetSamplingRate: {
|
|
90
|
+
readonly PT10M: "PT10M";
|
|
91
|
+
readonly PT10S: "PT10S";
|
|
92
|
+
readonly PT15M: "PT15M";
|
|
93
|
+
readonly PT15S: "PT15S";
|
|
94
|
+
readonly PT1H: "PT1H";
|
|
95
|
+
readonly PT1M: "PT1M";
|
|
96
|
+
readonly PT1S: "PT1S";
|
|
97
|
+
readonly PT30M: "PT30M";
|
|
98
|
+
readonly PT30S: "PT30S";
|
|
99
|
+
readonly PT5M: "PT5M";
|
|
100
|
+
readonly PT5S: "PT5S";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export type TargetSamplingRate = (typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* @enum
|
|
109
|
+
*/
|
|
110
|
+
export declare const ModelStatus: {
|
|
111
|
+
readonly FAILED: "FAILED";
|
|
112
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
113
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
114
|
+
readonly SUCCESS: "SUCCESS";
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* @enum
|
|
123
|
+
*/
|
|
124
|
+
export declare const ModelPromoteMode: {
|
|
125
|
+
readonly MANAGED: "MANAGED";
|
|
126
|
+
readonly MANUAL: "MANUAL";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export type ModelPromoteMode = (typeof ModelPromoteMode)[keyof typeof ModelPromoteMode];
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* @enum
|
|
135
|
+
*/
|
|
136
|
+
export declare const RetrainingSchedulerStatus: {
|
|
137
|
+
readonly PENDING: "PENDING";
|
|
138
|
+
readonly RUNNING: "RUNNING";
|
|
139
|
+
readonly STOPPED: "STOPPED";
|
|
140
|
+
readonly STOPPING: "STOPPING";
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export type RetrainingSchedulerStatus = (typeof RetrainingSchedulerStatus)[keyof typeof RetrainingSchedulerStatus];
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* @enum
|
|
149
|
+
*/
|
|
150
|
+
export declare const IngestionJobStatus: {
|
|
151
|
+
readonly FAILED: "FAILED";
|
|
152
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
153
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
154
|
+
readonly SUCCESS: "SUCCESS";
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export type IngestionJobStatus = (typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
* @enum
|
|
163
|
+
*/
|
|
164
|
+
export declare const LatestInferenceResult: {
|
|
165
|
+
readonly ANOMALOUS: "ANOMALOUS";
|
|
166
|
+
readonly NORMAL: "NORMAL";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type LatestInferenceResult = (typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const ModelVersionStatus: {
|
|
177
|
+
readonly CANCELED: "CANCELED";
|
|
178
|
+
readonly FAILED: "FAILED";
|
|
179
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
180
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
181
|
+
readonly SUCCESS: "SUCCESS";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type ModelVersionStatus = (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const ModelVersionSourceType: {
|
|
192
|
+
readonly IMPORT: "IMPORT";
|
|
193
|
+
readonly RETRAINING: "RETRAINING";
|
|
194
|
+
readonly TRAINING: "TRAINING";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type ModelVersionSourceType = (typeof ModelVersionSourceType)[keyof typeof ModelVersionSourceType];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
export declare const InferenceDataImportStrategy: {
|
|
205
|
+
readonly ADD_WHEN_EMPTY: "ADD_WHEN_EMPTY";
|
|
206
|
+
readonly NO_IMPORT: "NO_IMPORT";
|
|
207
|
+
readonly OVERWRITE: "OVERWRITE";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type InferenceDataImportStrategy = (typeof InferenceDataImportStrategy)[keyof typeof InferenceDataImportStrategy];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const InferenceExecutionStatus: {
|
|
218
|
+
readonly FAILED: "FAILED";
|
|
219
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
220
|
+
readonly SUCCESS: "SUCCESS";
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export type InferenceExecutionStatus = (typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
* @enum
|
|
229
|
+
*/
|
|
230
|
+
export declare const StatisticalIssueStatus: {
|
|
231
|
+
readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
|
|
232
|
+
readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export type StatisticalIssueStatus = (typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const Monotonicity: {
|
|
243
|
+
readonly DECREASING: "DECREASING";
|
|
244
|
+
readonly INCREASING: "INCREASING";
|
|
245
|
+
readonly STATIC: "STATIC";
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LookoutEquipmentServiceException as __BaseException } from "./LookoutEquipmentServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The request could not be completed because you do not have access to the resource.
|
|
5
|
+
* </p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
+
readonly name: "AccessDeniedException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p> The request could not be completed due to a conflict with the current state of the
|
|
19
|
+
* target resource. </p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export declare class ConflictException extends __BaseException {
|
|
23
|
+
readonly name: "ConflictException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* <p> Processing of the request has failed because of an unknown error, exception or failure.
|
|
33
|
+
* </p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export declare class InternalServerException extends __BaseException {
|
|
37
|
+
readonly name: "InternalServerException";
|
|
38
|
+
readonly $fault: "server";
|
|
39
|
+
Message: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* @internal
|
|
42
|
+
*/
|
|
43
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* <p> Resource limitations have been exceeded. </p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
50
|
+
readonly name: "ServiceQuotaExceededException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
Message: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* <p>The request was denied due to request throttling.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export declare class ThrottlingException extends __BaseException {
|
|
63
|
+
readonly name: "ThrottlingException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Message: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related Amazon Web Services
|
|
73
|
+
* service that's being utilized. </p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class ValidationException extends __BaseException {
|
|
77
|
+
readonly name: "ValidationException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* <p> The resource requested could not be found. Verify the resource ID and retry your
|
|
87
|
+
* request. </p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
91
|
+
readonly name: "ResourceNotFoundException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
Message: string | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
98
|
+
}
|