@aws-sdk/client-lookoutequipment 3.934.0 → 3.936.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 +19 -19
- 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
|
@@ -1,48 +1,5 @@
|
|
|
1
|
-
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion
|
|
2
|
-
import {
|
|
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
|
-
* @public
|
|
19
|
-
* @enum
|
|
20
|
-
*/
|
|
21
|
-
export declare const AutoPromotionResult: {
|
|
22
|
-
readonly MODEL_NOT_PROMOTED: "MODEL_NOT_PROMOTED";
|
|
23
|
-
readonly MODEL_PROMOTED: "MODEL_PROMOTED";
|
|
24
|
-
readonly RETRAINING_CANCELLED: "RETRAINING_CANCELLED";
|
|
25
|
-
readonly RETRAINING_CUSTOMER_ERROR: "RETRAINING_CUSTOMER_ERROR";
|
|
26
|
-
readonly RETRAINING_INTERNAL_ERROR: "RETRAINING_INTERNAL_ERROR";
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
export type AutoPromotionResult = (typeof AutoPromotionResult)[keyof typeof AutoPromotionResult];
|
|
32
|
-
/**
|
|
33
|
-
* <p> The request could not be completed due to a conflict with the current state of the
|
|
34
|
-
* target resource. </p>
|
|
35
|
-
* @public
|
|
36
|
-
*/
|
|
37
|
-
export declare class ConflictException extends __BaseException {
|
|
38
|
-
readonly name: "ConflictException";
|
|
39
|
-
readonly $fault: "client";
|
|
40
|
-
Message: string | undefined;
|
|
41
|
-
/**
|
|
42
|
-
* @internal
|
|
43
|
-
*/
|
|
44
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
45
|
-
}
|
|
1
|
+
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
|
+
import { AutoPromotionResult, DatasetStatus, DataUploadFrequency, InferenceDataImportStrategy, InferenceExecutionStatus, InferenceSchedulerStatus, IngestionJobStatus, LabelRating, LatestInferenceResult, ModelPromoteMode, ModelQuality, ModelStatus, ModelVersionSourceType, ModelVersionStatus, Monotonicity, RetrainingSchedulerStatus, StatisticalIssueStatus, TargetSamplingRate } from "./enums";
|
|
46
3
|
/**
|
|
47
4
|
* <p>Provides information about the data schema used with the given dataset. </p>
|
|
48
5
|
* @public
|
|
@@ -103,20 +60,6 @@ export interface CreateDatasetRequest {
|
|
|
103
60
|
*/
|
|
104
61
|
Tags?: Tag[] | undefined;
|
|
105
62
|
}
|
|
106
|
-
/**
|
|
107
|
-
* @public
|
|
108
|
-
* @enum
|
|
109
|
-
*/
|
|
110
|
-
export declare const DatasetStatus: {
|
|
111
|
-
readonly ACTIVE: "ACTIVE";
|
|
112
|
-
readonly CREATED: "CREATED";
|
|
113
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
114
|
-
readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
|
|
115
|
-
};
|
|
116
|
-
/**
|
|
117
|
-
* @public
|
|
118
|
-
*/
|
|
119
|
-
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
120
63
|
/**
|
|
121
64
|
* @public
|
|
122
65
|
*/
|
|
@@ -137,60 +80,6 @@ export interface CreateDatasetResponse {
|
|
|
137
80
|
*/
|
|
138
81
|
Status?: DatasetStatus | undefined;
|
|
139
82
|
}
|
|
140
|
-
/**
|
|
141
|
-
* <p> Processing of the request has failed because of an unknown error, exception or failure.
|
|
142
|
-
* </p>
|
|
143
|
-
* @public
|
|
144
|
-
*/
|
|
145
|
-
export declare class InternalServerException extends __BaseException {
|
|
146
|
-
readonly name: "InternalServerException";
|
|
147
|
-
readonly $fault: "server";
|
|
148
|
-
Message: string | undefined;
|
|
149
|
-
/**
|
|
150
|
-
* @internal
|
|
151
|
-
*/
|
|
152
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* <p> Resource limitations have been exceeded. </p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
159
|
-
readonly name: "ServiceQuotaExceededException";
|
|
160
|
-
readonly $fault: "client";
|
|
161
|
-
Message: string | undefined;
|
|
162
|
-
/**
|
|
163
|
-
* @internal
|
|
164
|
-
*/
|
|
165
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* <p>The request was denied due to request throttling.</p>
|
|
169
|
-
* @public
|
|
170
|
-
*/
|
|
171
|
-
export declare class ThrottlingException extends __BaseException {
|
|
172
|
-
readonly name: "ThrottlingException";
|
|
173
|
-
readonly $fault: "client";
|
|
174
|
-
Message: string | undefined;
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a related Amazon Web Services
|
|
182
|
-
* service that's being utilized. </p>
|
|
183
|
-
* @public
|
|
184
|
-
*/
|
|
185
|
-
export declare class ValidationException extends __BaseException {
|
|
186
|
-
readonly name: "ValidationException";
|
|
187
|
-
readonly $fault: "client";
|
|
188
|
-
Message: string | undefined;
|
|
189
|
-
/**
|
|
190
|
-
* @internal
|
|
191
|
-
*/
|
|
192
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
193
|
-
}
|
|
194
83
|
/**
|
|
195
84
|
* <p>Specifies configuration information for the input data for the inference, including
|
|
196
85
|
* timestamp format and delimiter. </p>
|
|
@@ -286,21 +175,6 @@ export interface InferenceOutputConfiguration {
|
|
|
286
175
|
*/
|
|
287
176
|
KmsKeyId?: string | undefined;
|
|
288
177
|
}
|
|
289
|
-
/**
|
|
290
|
-
* @public
|
|
291
|
-
* @enum
|
|
292
|
-
*/
|
|
293
|
-
export declare const DataUploadFrequency: {
|
|
294
|
-
readonly PT10M: "PT10M";
|
|
295
|
-
readonly PT15M: "PT15M";
|
|
296
|
-
readonly PT1H: "PT1H";
|
|
297
|
-
readonly PT30M: "PT30M";
|
|
298
|
-
readonly PT5M: "PT5M";
|
|
299
|
-
};
|
|
300
|
-
/**
|
|
301
|
-
* @public
|
|
302
|
-
*/
|
|
303
|
-
export type DataUploadFrequency = (typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
|
|
304
178
|
/**
|
|
305
179
|
* @public
|
|
306
180
|
*/
|
|
@@ -375,33 +249,6 @@ export interface CreateInferenceSchedulerRequest {
|
|
|
375
249
|
*/
|
|
376
250
|
Tags?: Tag[] | undefined;
|
|
377
251
|
}
|
|
378
|
-
/**
|
|
379
|
-
* @public
|
|
380
|
-
* @enum
|
|
381
|
-
*/
|
|
382
|
-
export declare const ModelQuality: {
|
|
383
|
-
readonly CANNOT_DETERMINE_QUALITY: "CANNOT_DETERMINE_QUALITY";
|
|
384
|
-
readonly POOR_QUALITY_DETECTED: "POOR_QUALITY_DETECTED";
|
|
385
|
-
readonly QUALITY_THRESHOLD_MET: "QUALITY_THRESHOLD_MET";
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* @public
|
|
389
|
-
*/
|
|
390
|
-
export type ModelQuality = (typeof ModelQuality)[keyof typeof ModelQuality];
|
|
391
|
-
/**
|
|
392
|
-
* @public
|
|
393
|
-
* @enum
|
|
394
|
-
*/
|
|
395
|
-
export declare const InferenceSchedulerStatus: {
|
|
396
|
-
readonly PENDING: "PENDING";
|
|
397
|
-
readonly RUNNING: "RUNNING";
|
|
398
|
-
readonly STOPPED: "STOPPED";
|
|
399
|
-
readonly STOPPING: "STOPPING";
|
|
400
|
-
};
|
|
401
|
-
/**
|
|
402
|
-
* @public
|
|
403
|
-
*/
|
|
404
|
-
export type InferenceSchedulerStatus = (typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
|
|
405
252
|
/**
|
|
406
253
|
* @public
|
|
407
254
|
*/
|
|
@@ -438,33 +285,6 @@ export interface CreateInferenceSchedulerResponse {
|
|
|
438
285
|
*/
|
|
439
286
|
ModelQuality?: ModelQuality | undefined;
|
|
440
287
|
}
|
|
441
|
-
/**
|
|
442
|
-
* <p> The resource requested could not be found. Verify the resource ID and retry your
|
|
443
|
-
* request. </p>
|
|
444
|
-
* @public
|
|
445
|
-
*/
|
|
446
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
447
|
-
readonly name: "ResourceNotFoundException";
|
|
448
|
-
readonly $fault: "client";
|
|
449
|
-
Message: string | undefined;
|
|
450
|
-
/**
|
|
451
|
-
* @internal
|
|
452
|
-
*/
|
|
453
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
454
|
-
}
|
|
455
|
-
/**
|
|
456
|
-
* @public
|
|
457
|
-
* @enum
|
|
458
|
-
*/
|
|
459
|
-
export declare const LabelRating: {
|
|
460
|
-
readonly ANOMALY: "ANOMALY";
|
|
461
|
-
readonly NEUTRAL: "NEUTRAL";
|
|
462
|
-
readonly NO_ANOMALY: "NO_ANOMALY";
|
|
463
|
-
};
|
|
464
|
-
/**
|
|
465
|
-
* @public
|
|
466
|
-
*/
|
|
467
|
-
export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
|
|
468
288
|
/**
|
|
469
289
|
* @public
|
|
470
290
|
*/
|
|
@@ -579,27 +399,6 @@ export interface CreateLabelGroupResponse {
|
|
|
579
399
|
*/
|
|
580
400
|
LabelGroupArn?: string | undefined;
|
|
581
401
|
}
|
|
582
|
-
/**
|
|
583
|
-
* @public
|
|
584
|
-
* @enum
|
|
585
|
-
*/
|
|
586
|
-
export declare const TargetSamplingRate: {
|
|
587
|
-
readonly PT10M: "PT10M";
|
|
588
|
-
readonly PT10S: "PT10S";
|
|
589
|
-
readonly PT15M: "PT15M";
|
|
590
|
-
readonly PT15S: "PT15S";
|
|
591
|
-
readonly PT1H: "PT1H";
|
|
592
|
-
readonly PT1M: "PT1M";
|
|
593
|
-
readonly PT1S: "PT1S";
|
|
594
|
-
readonly PT30M: "PT30M";
|
|
595
|
-
readonly PT30S: "PT30S";
|
|
596
|
-
readonly PT5M: "PT5M";
|
|
597
|
-
readonly PT5S: "PT5S";
|
|
598
|
-
};
|
|
599
|
-
/**
|
|
600
|
-
* @public
|
|
601
|
-
*/
|
|
602
|
-
export type TargetSamplingRate = (typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
|
|
603
402
|
/**
|
|
604
403
|
* <p>The configuration is the <code>TargetSamplingRate</code>, which is the sampling rate of
|
|
605
404
|
* the data after post processing by Amazon Lookout for Equipment. For example, if you provide data that has been
|
|
@@ -801,20 +600,6 @@ export interface CreateModelRequest {
|
|
|
801
600
|
*/
|
|
802
601
|
ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
|
|
803
602
|
}
|
|
804
|
-
/**
|
|
805
|
-
* @public
|
|
806
|
-
* @enum
|
|
807
|
-
*/
|
|
808
|
-
export declare const ModelStatus: {
|
|
809
|
-
readonly FAILED: "FAILED";
|
|
810
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
811
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
812
|
-
readonly SUCCESS: "SUCCESS";
|
|
813
|
-
};
|
|
814
|
-
/**
|
|
815
|
-
* @public
|
|
816
|
-
*/
|
|
817
|
-
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
818
603
|
/**
|
|
819
604
|
* @public
|
|
820
605
|
*/
|
|
@@ -830,18 +615,6 @@ export interface CreateModelResponse {
|
|
|
830
615
|
*/
|
|
831
616
|
Status?: ModelStatus | undefined;
|
|
832
617
|
}
|
|
833
|
-
/**
|
|
834
|
-
* @public
|
|
835
|
-
* @enum
|
|
836
|
-
*/
|
|
837
|
-
export declare const ModelPromoteMode: {
|
|
838
|
-
readonly MANAGED: "MANAGED";
|
|
839
|
-
readonly MANUAL: "MANUAL";
|
|
840
|
-
};
|
|
841
|
-
/**
|
|
842
|
-
* @public
|
|
843
|
-
*/
|
|
844
|
-
export type ModelPromoteMode = (typeof ModelPromoteMode)[keyof typeof ModelPromoteMode];
|
|
845
618
|
/**
|
|
846
619
|
* @public
|
|
847
620
|
*/
|
|
@@ -896,20 +669,6 @@ export interface CreateRetrainingSchedulerRequest {
|
|
|
896
669
|
*/
|
|
897
670
|
ClientToken?: string | undefined;
|
|
898
671
|
}
|
|
899
|
-
/**
|
|
900
|
-
* @public
|
|
901
|
-
* @enum
|
|
902
|
-
*/
|
|
903
|
-
export declare const RetrainingSchedulerStatus: {
|
|
904
|
-
readonly PENDING: "PENDING";
|
|
905
|
-
readonly RUNNING: "RUNNING";
|
|
906
|
-
readonly STOPPED: "STOPPED";
|
|
907
|
-
readonly STOPPING: "STOPPING";
|
|
908
|
-
};
|
|
909
|
-
/**
|
|
910
|
-
* @public
|
|
911
|
-
*/
|
|
912
|
-
export type RetrainingSchedulerStatus = (typeof RetrainingSchedulerStatus)[keyof typeof RetrainingSchedulerStatus];
|
|
913
672
|
/**
|
|
914
673
|
* @public
|
|
915
674
|
*/
|
|
@@ -1237,20 +996,6 @@ export interface IngestionInputConfiguration {
|
|
|
1237
996
|
*/
|
|
1238
997
|
S3InputConfiguration: IngestionS3InputConfiguration | undefined;
|
|
1239
998
|
}
|
|
1240
|
-
/**
|
|
1241
|
-
* @public
|
|
1242
|
-
* @enum
|
|
1243
|
-
*/
|
|
1244
|
-
export declare const IngestionJobStatus: {
|
|
1245
|
-
readonly FAILED: "FAILED";
|
|
1246
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
1247
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1248
|
-
readonly SUCCESS: "SUCCESS";
|
|
1249
|
-
};
|
|
1250
|
-
/**
|
|
1251
|
-
* @public
|
|
1252
|
-
*/
|
|
1253
|
-
export type IngestionJobStatus = (typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
|
|
1254
999
|
/**
|
|
1255
1000
|
* @public
|
|
1256
1001
|
*/
|
|
@@ -1442,18 +1187,6 @@ export interface DescribeInferenceSchedulerRequest {
|
|
|
1442
1187
|
*/
|
|
1443
1188
|
InferenceSchedulerName: string | undefined;
|
|
1444
1189
|
}
|
|
1445
|
-
/**
|
|
1446
|
-
* @public
|
|
1447
|
-
* @enum
|
|
1448
|
-
*/
|
|
1449
|
-
export declare const LatestInferenceResult: {
|
|
1450
|
-
readonly ANOMALOUS: "ANOMALOUS";
|
|
1451
|
-
readonly NORMAL: "NORMAL";
|
|
1452
|
-
};
|
|
1453
|
-
/**
|
|
1454
|
-
* @public
|
|
1455
|
-
*/
|
|
1456
|
-
export type LatestInferenceResult = (typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
|
|
1457
1190
|
/**
|
|
1458
1191
|
* @public
|
|
1459
1192
|
*/
|
|
@@ -1671,21 +1404,6 @@ export interface DescribeModelRequest {
|
|
|
1671
1404
|
*/
|
|
1672
1405
|
ModelName: string | undefined;
|
|
1673
1406
|
}
|
|
1674
|
-
/**
|
|
1675
|
-
* @public
|
|
1676
|
-
* @enum
|
|
1677
|
-
*/
|
|
1678
|
-
export declare const ModelVersionStatus: {
|
|
1679
|
-
readonly CANCELED: "CANCELED";
|
|
1680
|
-
readonly FAILED: "FAILED";
|
|
1681
|
-
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
1682
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1683
|
-
readonly SUCCESS: "SUCCESS";
|
|
1684
|
-
};
|
|
1685
|
-
/**
|
|
1686
|
-
* @public
|
|
1687
|
-
*/
|
|
1688
|
-
export type ModelVersionStatus = (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
1689
1407
|
/**
|
|
1690
1408
|
* @public
|
|
1691
1409
|
*/
|
|
@@ -1963,19 +1681,6 @@ export interface DescribeModelVersionRequest {
|
|
|
1963
1681
|
*/
|
|
1964
1682
|
ModelVersion: number | undefined;
|
|
1965
1683
|
}
|
|
1966
|
-
/**
|
|
1967
|
-
* @public
|
|
1968
|
-
* @enum
|
|
1969
|
-
*/
|
|
1970
|
-
export declare const ModelVersionSourceType: {
|
|
1971
|
-
readonly IMPORT: "IMPORT";
|
|
1972
|
-
readonly RETRAINING: "RETRAINING";
|
|
1973
|
-
readonly TRAINING: "TRAINING";
|
|
1974
|
-
};
|
|
1975
|
-
/**
|
|
1976
|
-
* @public
|
|
1977
|
-
*/
|
|
1978
|
-
export type ModelVersionSourceType = (typeof ModelVersionSourceType)[keyof typeof ModelVersionSourceType];
|
|
1979
1684
|
/**
|
|
1980
1685
|
* @public
|
|
1981
1686
|
*/
|
|
@@ -2361,19 +2066,6 @@ export interface ImportDatasetResponse {
|
|
|
2361
2066
|
*/
|
|
2362
2067
|
JobId?: string | undefined;
|
|
2363
2068
|
}
|
|
2364
|
-
/**
|
|
2365
|
-
* @public
|
|
2366
|
-
* @enum
|
|
2367
|
-
*/
|
|
2368
|
-
export declare const InferenceDataImportStrategy: {
|
|
2369
|
-
readonly ADD_WHEN_EMPTY: "ADD_WHEN_EMPTY";
|
|
2370
|
-
readonly NO_IMPORT: "NO_IMPORT";
|
|
2371
|
-
readonly OVERWRITE: "OVERWRITE";
|
|
2372
|
-
};
|
|
2373
|
-
/**
|
|
2374
|
-
* @public
|
|
2375
|
-
*/
|
|
2376
|
-
export type InferenceDataImportStrategy = (typeof InferenceDataImportStrategy)[keyof typeof InferenceDataImportStrategy];
|
|
2377
2069
|
/**
|
|
2378
2070
|
* @public
|
|
2379
2071
|
*/
|
|
@@ -2705,19 +2397,6 @@ export interface ListInferenceEventsResponse {
|
|
|
2705
2397
|
*/
|
|
2706
2398
|
InferenceEventSummaries?: InferenceEventSummary[] | undefined;
|
|
2707
2399
|
}
|
|
2708
|
-
/**
|
|
2709
|
-
* @public
|
|
2710
|
-
* @enum
|
|
2711
|
-
*/
|
|
2712
|
-
export declare const InferenceExecutionStatus: {
|
|
2713
|
-
readonly FAILED: "FAILED";
|
|
2714
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2715
|
-
readonly SUCCESS: "SUCCESS";
|
|
2716
|
-
};
|
|
2717
|
-
/**
|
|
2718
|
-
* @public
|
|
2719
|
-
*/
|
|
2720
|
-
export type InferenceExecutionStatus = (typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
|
|
2721
2400
|
/**
|
|
2722
2401
|
* @public
|
|
2723
2402
|
*/
|
|
@@ -3544,18 +3223,6 @@ export interface ListSensorStatisticsRequest {
|
|
|
3544
3223
|
*/
|
|
3545
3224
|
NextToken?: string | undefined;
|
|
3546
3225
|
}
|
|
3547
|
-
/**
|
|
3548
|
-
* @public
|
|
3549
|
-
* @enum
|
|
3550
|
-
*/
|
|
3551
|
-
export declare const StatisticalIssueStatus: {
|
|
3552
|
-
readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
|
|
3553
|
-
readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
|
|
3554
|
-
};
|
|
3555
|
-
/**
|
|
3556
|
-
* @public
|
|
3557
|
-
*/
|
|
3558
|
-
export type StatisticalIssueStatus = (typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
|
|
3559
3226
|
/**
|
|
3560
3227
|
* <p> Entity that comprises information on categorical values in data. </p>
|
|
3561
3228
|
* @public
|
|
@@ -3612,19 +3279,6 @@ export interface LargeTimestampGaps {
|
|
|
3612
3279
|
*/
|
|
3613
3280
|
MaxTimestampGapInDays?: number | undefined;
|
|
3614
3281
|
}
|
|
3615
|
-
/**
|
|
3616
|
-
* @public
|
|
3617
|
-
* @enum
|
|
3618
|
-
*/
|
|
3619
|
-
export declare const Monotonicity: {
|
|
3620
|
-
readonly DECREASING: "DECREASING";
|
|
3621
|
-
readonly INCREASING: "INCREASING";
|
|
3622
|
-
readonly STATIC: "STATIC";
|
|
3623
|
-
};
|
|
3624
|
-
/**
|
|
3625
|
-
* @public
|
|
3626
|
-
*/
|
|
3627
|
-
export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
|
|
3628
3282
|
/**
|
|
3629
3283
|
* <p> Entity that comprises information on monotonic values in the data. </p>
|
|
3630
3284
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { LookoutEquipmentExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { LookoutEquipmentServiceException } from "./models/LookoutEquipmentServiceException";
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
export declare const AutoPromotionResult: {
|
|
2
|
+
readonly MODEL_NOT_PROMOTED: "MODEL_NOT_PROMOTED";
|
|
3
|
+
readonly MODEL_PROMOTED: "MODEL_PROMOTED";
|
|
4
|
+
readonly RETRAINING_CANCELLED: "RETRAINING_CANCELLED";
|
|
5
|
+
readonly RETRAINING_CUSTOMER_ERROR: "RETRAINING_CUSTOMER_ERROR";
|
|
6
|
+
readonly RETRAINING_INTERNAL_ERROR: "RETRAINING_INTERNAL_ERROR";
|
|
7
|
+
};
|
|
8
|
+
export type AutoPromotionResult =
|
|
9
|
+
(typeof AutoPromotionResult)[keyof typeof AutoPromotionResult];
|
|
10
|
+
export declare const DatasetStatus: {
|
|
11
|
+
readonly ACTIVE: "ACTIVE";
|
|
12
|
+
readonly CREATED: "CREATED";
|
|
13
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
14
|
+
readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
|
|
15
|
+
};
|
|
16
|
+
export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
|
|
17
|
+
export declare const DataUploadFrequency: {
|
|
18
|
+
readonly PT10M: "PT10M";
|
|
19
|
+
readonly PT15M: "PT15M";
|
|
20
|
+
readonly PT1H: "PT1H";
|
|
21
|
+
readonly PT30M: "PT30M";
|
|
22
|
+
readonly PT5M: "PT5M";
|
|
23
|
+
};
|
|
24
|
+
export type DataUploadFrequency =
|
|
25
|
+
(typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
|
|
26
|
+
export declare const ModelQuality: {
|
|
27
|
+
readonly CANNOT_DETERMINE_QUALITY: "CANNOT_DETERMINE_QUALITY";
|
|
28
|
+
readonly POOR_QUALITY_DETECTED: "POOR_QUALITY_DETECTED";
|
|
29
|
+
readonly QUALITY_THRESHOLD_MET: "QUALITY_THRESHOLD_MET";
|
|
30
|
+
};
|
|
31
|
+
export type ModelQuality = (typeof ModelQuality)[keyof typeof ModelQuality];
|
|
32
|
+
export declare const InferenceSchedulerStatus: {
|
|
33
|
+
readonly PENDING: "PENDING";
|
|
34
|
+
readonly RUNNING: "RUNNING";
|
|
35
|
+
readonly STOPPED: "STOPPED";
|
|
36
|
+
readonly STOPPING: "STOPPING";
|
|
37
|
+
};
|
|
38
|
+
export type InferenceSchedulerStatus =
|
|
39
|
+
(typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
|
|
40
|
+
export declare const LabelRating: {
|
|
41
|
+
readonly ANOMALY: "ANOMALY";
|
|
42
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
43
|
+
readonly NO_ANOMALY: "NO_ANOMALY";
|
|
44
|
+
};
|
|
45
|
+
export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
|
|
46
|
+
export declare const TargetSamplingRate: {
|
|
47
|
+
readonly PT10M: "PT10M";
|
|
48
|
+
readonly PT10S: "PT10S";
|
|
49
|
+
readonly PT15M: "PT15M";
|
|
50
|
+
readonly PT15S: "PT15S";
|
|
51
|
+
readonly PT1H: "PT1H";
|
|
52
|
+
readonly PT1M: "PT1M";
|
|
53
|
+
readonly PT1S: "PT1S";
|
|
54
|
+
readonly PT30M: "PT30M";
|
|
55
|
+
readonly PT30S: "PT30S";
|
|
56
|
+
readonly PT5M: "PT5M";
|
|
57
|
+
readonly PT5S: "PT5S";
|
|
58
|
+
};
|
|
59
|
+
export type TargetSamplingRate =
|
|
60
|
+
(typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
|
|
61
|
+
export declare const ModelStatus: {
|
|
62
|
+
readonly FAILED: "FAILED";
|
|
63
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
64
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
65
|
+
readonly SUCCESS: "SUCCESS";
|
|
66
|
+
};
|
|
67
|
+
export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
|
|
68
|
+
export declare const ModelPromoteMode: {
|
|
69
|
+
readonly MANAGED: "MANAGED";
|
|
70
|
+
readonly MANUAL: "MANUAL";
|
|
71
|
+
};
|
|
72
|
+
export type ModelPromoteMode =
|
|
73
|
+
(typeof ModelPromoteMode)[keyof typeof ModelPromoteMode];
|
|
74
|
+
export declare const RetrainingSchedulerStatus: {
|
|
75
|
+
readonly PENDING: "PENDING";
|
|
76
|
+
readonly RUNNING: "RUNNING";
|
|
77
|
+
readonly STOPPED: "STOPPED";
|
|
78
|
+
readonly STOPPING: "STOPPING";
|
|
79
|
+
};
|
|
80
|
+
export type RetrainingSchedulerStatus =
|
|
81
|
+
(typeof RetrainingSchedulerStatus)[keyof typeof RetrainingSchedulerStatus];
|
|
82
|
+
export declare const IngestionJobStatus: {
|
|
83
|
+
readonly FAILED: "FAILED";
|
|
84
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
85
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
86
|
+
readonly SUCCESS: "SUCCESS";
|
|
87
|
+
};
|
|
88
|
+
export type IngestionJobStatus =
|
|
89
|
+
(typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
|
|
90
|
+
export declare const LatestInferenceResult: {
|
|
91
|
+
readonly ANOMALOUS: "ANOMALOUS";
|
|
92
|
+
readonly NORMAL: "NORMAL";
|
|
93
|
+
};
|
|
94
|
+
export type LatestInferenceResult =
|
|
95
|
+
(typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
|
|
96
|
+
export declare const ModelVersionStatus: {
|
|
97
|
+
readonly CANCELED: "CANCELED";
|
|
98
|
+
readonly FAILED: "FAILED";
|
|
99
|
+
readonly IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS";
|
|
100
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
101
|
+
readonly SUCCESS: "SUCCESS";
|
|
102
|
+
};
|
|
103
|
+
export type ModelVersionStatus =
|
|
104
|
+
(typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
105
|
+
export declare const ModelVersionSourceType: {
|
|
106
|
+
readonly IMPORT: "IMPORT";
|
|
107
|
+
readonly RETRAINING: "RETRAINING";
|
|
108
|
+
readonly TRAINING: "TRAINING";
|
|
109
|
+
};
|
|
110
|
+
export type ModelVersionSourceType =
|
|
111
|
+
(typeof ModelVersionSourceType)[keyof typeof ModelVersionSourceType];
|
|
112
|
+
export declare const InferenceDataImportStrategy: {
|
|
113
|
+
readonly ADD_WHEN_EMPTY: "ADD_WHEN_EMPTY";
|
|
114
|
+
readonly NO_IMPORT: "NO_IMPORT";
|
|
115
|
+
readonly OVERWRITE: "OVERWRITE";
|
|
116
|
+
};
|
|
117
|
+
export type InferenceDataImportStrategy =
|
|
118
|
+
(typeof InferenceDataImportStrategy)[keyof typeof InferenceDataImportStrategy];
|
|
119
|
+
export declare const InferenceExecutionStatus: {
|
|
120
|
+
readonly FAILED: "FAILED";
|
|
121
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
122
|
+
readonly SUCCESS: "SUCCESS";
|
|
123
|
+
};
|
|
124
|
+
export type InferenceExecutionStatus =
|
|
125
|
+
(typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
|
|
126
|
+
export declare const StatisticalIssueStatus: {
|
|
127
|
+
readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
|
|
128
|
+
readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
|
|
129
|
+
};
|
|
130
|
+
export type StatisticalIssueStatus =
|
|
131
|
+
(typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
|
|
132
|
+
export declare const Monotonicity: {
|
|
133
|
+
readonly DECREASING: "DECREASING";
|
|
134
|
+
readonly INCREASING: "INCREASING";
|
|
135
|
+
readonly STATIC: "STATIC";
|
|
136
|
+
};
|
|
137
|
+
export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { LookoutEquipmentServiceException as __BaseException } from "./LookoutEquipmentServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
Message: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
26
|
+
readonly name: "ServiceQuotaExceededException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message: string | undefined;
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ThrottlingException extends __BaseException {
|
|
34
|
+
readonly name: "ThrottlingException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ValidationException extends __BaseException {
|
|
42
|
+
readonly name: "ValidationException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
50
|
+
readonly name: "ResourceNotFoundException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
Message: string | undefined;
|
|
53
|
+
constructor(
|
|
54
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
55
|
+
);
|
|
56
|
+
}
|