@aws-sdk/client-lookoutequipment 3.301.0 → 3.306.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.
@@ -30,12 +30,11 @@ class ConflictException extends LookoutEquipmentServiceException_1.LookoutEquipm
30
30
  }
31
31
  }
32
32
  exports.ConflictException = ConflictException;
33
- var DatasetStatus;
34
- (function (DatasetStatus) {
35
- DatasetStatus["ACTIVE"] = "ACTIVE";
36
- DatasetStatus["CREATED"] = "CREATED";
37
- DatasetStatus["INGESTION_IN_PROGRESS"] = "INGESTION_IN_PROGRESS";
38
- })(DatasetStatus = exports.DatasetStatus || (exports.DatasetStatus = {}));
33
+ exports.DatasetStatus = {
34
+ ACTIVE: "ACTIVE",
35
+ CREATED: "CREATED",
36
+ INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS",
37
+ };
39
38
  class InternalServerException extends LookoutEquipmentServiceException_1.LookoutEquipmentServiceException {
40
39
  constructor(opts) {
41
40
  super({
@@ -92,21 +91,19 @@ class ValidationException extends LookoutEquipmentServiceException_1.LookoutEqui
92
91
  }
93
92
  }
94
93
  exports.ValidationException = ValidationException;
95
- var DataUploadFrequency;
96
- (function (DataUploadFrequency) {
97
- DataUploadFrequency["PT10M"] = "PT10M";
98
- DataUploadFrequency["PT15M"] = "PT15M";
99
- DataUploadFrequency["PT1H"] = "PT1H";
100
- DataUploadFrequency["PT30M"] = "PT30M";
101
- DataUploadFrequency["PT5M"] = "PT5M";
102
- })(DataUploadFrequency = exports.DataUploadFrequency || (exports.DataUploadFrequency = {}));
103
- var InferenceSchedulerStatus;
104
- (function (InferenceSchedulerStatus) {
105
- InferenceSchedulerStatus["PENDING"] = "PENDING";
106
- InferenceSchedulerStatus["RUNNING"] = "RUNNING";
107
- InferenceSchedulerStatus["STOPPED"] = "STOPPED";
108
- InferenceSchedulerStatus["STOPPING"] = "STOPPING";
109
- })(InferenceSchedulerStatus = exports.InferenceSchedulerStatus || (exports.InferenceSchedulerStatus = {}));
94
+ exports.DataUploadFrequency = {
95
+ PT10M: "PT10M",
96
+ PT15M: "PT15M",
97
+ PT1H: "PT1H",
98
+ PT30M: "PT30M",
99
+ PT5M: "PT5M",
100
+ };
101
+ exports.InferenceSchedulerStatus = {
102
+ PENDING: "PENDING",
103
+ RUNNING: "RUNNING",
104
+ STOPPED: "STOPPED",
105
+ STOPPING: "STOPPING",
106
+ };
110
107
  class ResourceNotFoundException extends LookoutEquipmentServiceException_1.LookoutEquipmentServiceException {
111
108
  constructor(opts) {
112
109
  super({
@@ -121,57 +118,49 @@ class ResourceNotFoundException extends LookoutEquipmentServiceException_1.Looko
121
118
  }
122
119
  }
123
120
  exports.ResourceNotFoundException = ResourceNotFoundException;
124
- var LabelRating;
125
- (function (LabelRating) {
126
- LabelRating["ANOMALY"] = "ANOMALY";
127
- LabelRating["NEUTRAL"] = "NEUTRAL";
128
- LabelRating["NO_ANOMALY"] = "NO_ANOMALY";
129
- })(LabelRating = exports.LabelRating || (exports.LabelRating = {}));
130
- var TargetSamplingRate;
131
- (function (TargetSamplingRate) {
132
- TargetSamplingRate["PT10M"] = "PT10M";
133
- TargetSamplingRate["PT10S"] = "PT10S";
134
- TargetSamplingRate["PT15M"] = "PT15M";
135
- TargetSamplingRate["PT15S"] = "PT15S";
136
- TargetSamplingRate["PT1H"] = "PT1H";
137
- TargetSamplingRate["PT1M"] = "PT1M";
138
- TargetSamplingRate["PT1S"] = "PT1S";
139
- TargetSamplingRate["PT30M"] = "PT30M";
140
- TargetSamplingRate["PT30S"] = "PT30S";
141
- TargetSamplingRate["PT5M"] = "PT5M";
142
- TargetSamplingRate["PT5S"] = "PT5S";
143
- })(TargetSamplingRate = exports.TargetSamplingRate || (exports.TargetSamplingRate = {}));
144
- var ModelStatus;
145
- (function (ModelStatus) {
146
- ModelStatus["FAILED"] = "FAILED";
147
- ModelStatus["IN_PROGRESS"] = "IN_PROGRESS";
148
- ModelStatus["SUCCESS"] = "SUCCESS";
149
- })(ModelStatus = exports.ModelStatus || (exports.ModelStatus = {}));
150
- var IngestionJobStatus;
151
- (function (IngestionJobStatus) {
152
- IngestionJobStatus["FAILED"] = "FAILED";
153
- IngestionJobStatus["IN_PROGRESS"] = "IN_PROGRESS";
154
- IngestionJobStatus["SUCCESS"] = "SUCCESS";
155
- })(IngestionJobStatus = exports.IngestionJobStatus || (exports.IngestionJobStatus = {}));
156
- var LatestInferenceResult;
157
- (function (LatestInferenceResult) {
158
- LatestInferenceResult["ANOMALOUS"] = "ANOMALOUS";
159
- LatestInferenceResult["NORMAL"] = "NORMAL";
160
- })(LatestInferenceResult = exports.LatestInferenceResult || (exports.LatestInferenceResult = {}));
161
- var InferenceExecutionStatus;
162
- (function (InferenceExecutionStatus) {
163
- InferenceExecutionStatus["FAILED"] = "FAILED";
164
- InferenceExecutionStatus["IN_PROGRESS"] = "IN_PROGRESS";
165
- InferenceExecutionStatus["SUCCESS"] = "SUCCESS";
166
- })(InferenceExecutionStatus = exports.InferenceExecutionStatus || (exports.InferenceExecutionStatus = {}));
167
- var StatisticalIssueStatus;
168
- (function (StatisticalIssueStatus) {
169
- StatisticalIssueStatus["NO_ISSUE_DETECTED"] = "NO_ISSUE_DETECTED";
170
- StatisticalIssueStatus["POTENTIAL_ISSUE_DETECTED"] = "POTENTIAL_ISSUE_DETECTED";
171
- })(StatisticalIssueStatus = exports.StatisticalIssueStatus || (exports.StatisticalIssueStatus = {}));
172
- var Monotonicity;
173
- (function (Monotonicity) {
174
- Monotonicity["DECREASING"] = "DECREASING";
175
- Monotonicity["INCREASING"] = "INCREASING";
176
- Monotonicity["STATIC"] = "STATIC";
177
- })(Monotonicity = exports.Monotonicity || (exports.Monotonicity = {}));
121
+ exports.LabelRating = {
122
+ ANOMALY: "ANOMALY",
123
+ NEUTRAL: "NEUTRAL",
124
+ NO_ANOMALY: "NO_ANOMALY",
125
+ };
126
+ exports.TargetSamplingRate = {
127
+ PT10M: "PT10M",
128
+ PT10S: "PT10S",
129
+ PT15M: "PT15M",
130
+ PT15S: "PT15S",
131
+ PT1H: "PT1H",
132
+ PT1M: "PT1M",
133
+ PT1S: "PT1S",
134
+ PT30M: "PT30M",
135
+ PT30S: "PT30S",
136
+ PT5M: "PT5M",
137
+ PT5S: "PT5S",
138
+ };
139
+ exports.ModelStatus = {
140
+ FAILED: "FAILED",
141
+ IN_PROGRESS: "IN_PROGRESS",
142
+ SUCCESS: "SUCCESS",
143
+ };
144
+ exports.IngestionJobStatus = {
145
+ FAILED: "FAILED",
146
+ IN_PROGRESS: "IN_PROGRESS",
147
+ SUCCESS: "SUCCESS",
148
+ };
149
+ exports.LatestInferenceResult = {
150
+ ANOMALOUS: "ANOMALOUS",
151
+ NORMAL: "NORMAL",
152
+ };
153
+ exports.InferenceExecutionStatus = {
154
+ FAILED: "FAILED",
155
+ IN_PROGRESS: "IN_PROGRESS",
156
+ SUCCESS: "SUCCESS",
157
+ };
158
+ exports.StatisticalIssueStatus = {
159
+ NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED",
160
+ POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED",
161
+ };
162
+ exports.Monotonicity = {
163
+ DECREASING: "DECREASING",
164
+ INCREASING: "INCREASING",
165
+ STATIC: "STATIC",
166
+ };
@@ -25,12 +25,11 @@ export class ConflictException extends __BaseException {
25
25
  this.Message = opts.Message;
26
26
  }
27
27
  }
28
- export var DatasetStatus;
29
- (function (DatasetStatus) {
30
- DatasetStatus["ACTIVE"] = "ACTIVE";
31
- DatasetStatus["CREATED"] = "CREATED";
32
- DatasetStatus["INGESTION_IN_PROGRESS"] = "INGESTION_IN_PROGRESS";
33
- })(DatasetStatus || (DatasetStatus = {}));
28
+ export const DatasetStatus = {
29
+ ACTIVE: "ACTIVE",
30
+ CREATED: "CREATED",
31
+ INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS",
32
+ };
34
33
  export class InternalServerException extends __BaseException {
35
34
  constructor(opts) {
36
35
  super({
@@ -83,21 +82,19 @@ export class ValidationException extends __BaseException {
83
82
  this.Message = opts.Message;
84
83
  }
85
84
  }
86
- export var DataUploadFrequency;
87
- (function (DataUploadFrequency) {
88
- DataUploadFrequency["PT10M"] = "PT10M";
89
- DataUploadFrequency["PT15M"] = "PT15M";
90
- DataUploadFrequency["PT1H"] = "PT1H";
91
- DataUploadFrequency["PT30M"] = "PT30M";
92
- DataUploadFrequency["PT5M"] = "PT5M";
93
- })(DataUploadFrequency || (DataUploadFrequency = {}));
94
- export var InferenceSchedulerStatus;
95
- (function (InferenceSchedulerStatus) {
96
- InferenceSchedulerStatus["PENDING"] = "PENDING";
97
- InferenceSchedulerStatus["RUNNING"] = "RUNNING";
98
- InferenceSchedulerStatus["STOPPED"] = "STOPPED";
99
- InferenceSchedulerStatus["STOPPING"] = "STOPPING";
100
- })(InferenceSchedulerStatus || (InferenceSchedulerStatus = {}));
85
+ export const DataUploadFrequency = {
86
+ PT10M: "PT10M",
87
+ PT15M: "PT15M",
88
+ PT1H: "PT1H",
89
+ PT30M: "PT30M",
90
+ PT5M: "PT5M",
91
+ };
92
+ export const InferenceSchedulerStatus = {
93
+ PENDING: "PENDING",
94
+ RUNNING: "RUNNING",
95
+ STOPPED: "STOPPED",
96
+ STOPPING: "STOPPING",
97
+ };
101
98
  export class ResourceNotFoundException extends __BaseException {
102
99
  constructor(opts) {
103
100
  super({
@@ -111,57 +108,49 @@ export class ResourceNotFoundException extends __BaseException {
111
108
  this.Message = opts.Message;
112
109
  }
113
110
  }
114
- export var LabelRating;
115
- (function (LabelRating) {
116
- LabelRating["ANOMALY"] = "ANOMALY";
117
- LabelRating["NEUTRAL"] = "NEUTRAL";
118
- LabelRating["NO_ANOMALY"] = "NO_ANOMALY";
119
- })(LabelRating || (LabelRating = {}));
120
- export var TargetSamplingRate;
121
- (function (TargetSamplingRate) {
122
- TargetSamplingRate["PT10M"] = "PT10M";
123
- TargetSamplingRate["PT10S"] = "PT10S";
124
- TargetSamplingRate["PT15M"] = "PT15M";
125
- TargetSamplingRate["PT15S"] = "PT15S";
126
- TargetSamplingRate["PT1H"] = "PT1H";
127
- TargetSamplingRate["PT1M"] = "PT1M";
128
- TargetSamplingRate["PT1S"] = "PT1S";
129
- TargetSamplingRate["PT30M"] = "PT30M";
130
- TargetSamplingRate["PT30S"] = "PT30S";
131
- TargetSamplingRate["PT5M"] = "PT5M";
132
- TargetSamplingRate["PT5S"] = "PT5S";
133
- })(TargetSamplingRate || (TargetSamplingRate = {}));
134
- export var ModelStatus;
135
- (function (ModelStatus) {
136
- ModelStatus["FAILED"] = "FAILED";
137
- ModelStatus["IN_PROGRESS"] = "IN_PROGRESS";
138
- ModelStatus["SUCCESS"] = "SUCCESS";
139
- })(ModelStatus || (ModelStatus = {}));
140
- export var IngestionJobStatus;
141
- (function (IngestionJobStatus) {
142
- IngestionJobStatus["FAILED"] = "FAILED";
143
- IngestionJobStatus["IN_PROGRESS"] = "IN_PROGRESS";
144
- IngestionJobStatus["SUCCESS"] = "SUCCESS";
145
- })(IngestionJobStatus || (IngestionJobStatus = {}));
146
- export var LatestInferenceResult;
147
- (function (LatestInferenceResult) {
148
- LatestInferenceResult["ANOMALOUS"] = "ANOMALOUS";
149
- LatestInferenceResult["NORMAL"] = "NORMAL";
150
- })(LatestInferenceResult || (LatestInferenceResult = {}));
151
- export var InferenceExecutionStatus;
152
- (function (InferenceExecutionStatus) {
153
- InferenceExecutionStatus["FAILED"] = "FAILED";
154
- InferenceExecutionStatus["IN_PROGRESS"] = "IN_PROGRESS";
155
- InferenceExecutionStatus["SUCCESS"] = "SUCCESS";
156
- })(InferenceExecutionStatus || (InferenceExecutionStatus = {}));
157
- export var StatisticalIssueStatus;
158
- (function (StatisticalIssueStatus) {
159
- StatisticalIssueStatus["NO_ISSUE_DETECTED"] = "NO_ISSUE_DETECTED";
160
- StatisticalIssueStatus["POTENTIAL_ISSUE_DETECTED"] = "POTENTIAL_ISSUE_DETECTED";
161
- })(StatisticalIssueStatus || (StatisticalIssueStatus = {}));
162
- export var Monotonicity;
163
- (function (Monotonicity) {
164
- Monotonicity["DECREASING"] = "DECREASING";
165
- Monotonicity["INCREASING"] = "INCREASING";
166
- Monotonicity["STATIC"] = "STATIC";
167
- })(Monotonicity || (Monotonicity = {}));
111
+ export const LabelRating = {
112
+ ANOMALY: "ANOMALY",
113
+ NEUTRAL: "NEUTRAL",
114
+ NO_ANOMALY: "NO_ANOMALY",
115
+ };
116
+ export const TargetSamplingRate = {
117
+ PT10M: "PT10M",
118
+ PT10S: "PT10S",
119
+ PT15M: "PT15M",
120
+ PT15S: "PT15S",
121
+ PT1H: "PT1H",
122
+ PT1M: "PT1M",
123
+ PT1S: "PT1S",
124
+ PT30M: "PT30M",
125
+ PT30S: "PT30S",
126
+ PT5M: "PT5M",
127
+ PT5S: "PT5S",
128
+ };
129
+ export const ModelStatus = {
130
+ FAILED: "FAILED",
131
+ IN_PROGRESS: "IN_PROGRESS",
132
+ SUCCESS: "SUCCESS",
133
+ };
134
+ export const IngestionJobStatus = {
135
+ FAILED: "FAILED",
136
+ IN_PROGRESS: "IN_PROGRESS",
137
+ SUCCESS: "SUCCESS",
138
+ };
139
+ export const LatestInferenceResult = {
140
+ ANOMALOUS: "ANOMALOUS",
141
+ NORMAL: "NORMAL",
142
+ };
143
+ export const InferenceExecutionStatus = {
144
+ FAILED: "FAILED",
145
+ IN_PROGRESS: "IN_PROGRESS",
146
+ SUCCESS: "SUCCESS",
147
+ };
148
+ export const StatisticalIssueStatus = {
149
+ NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED",
150
+ POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED",
151
+ };
152
+ export const Monotonicity = {
153
+ DECREASING: "DECREASING",
154
+ INCREASING: "INCREASING",
155
+ STATIC: "STATIC",
156
+ };
@@ -83,12 +83,17 @@ export interface CreateDatasetRequest {
83
83
  }
84
84
  /**
85
85
  * @public
86
+ * @enum
86
87
  */
87
- export declare enum DatasetStatus {
88
- ACTIVE = "ACTIVE",
89
- CREATED = "CREATED",
90
- INGESTION_IN_PROGRESS = "INGESTION_IN_PROGRESS"
91
- }
88
+ export declare const DatasetStatus: {
89
+ readonly ACTIVE: "ACTIVE";
90
+ readonly CREATED: "CREATED";
91
+ readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
92
+ };
93
+ /**
94
+ * @public
95
+ */
96
+ export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
92
97
  /**
93
98
  * @public
94
99
  */
@@ -246,14 +251,19 @@ export interface InferenceOutputConfiguration {
246
251
  }
247
252
  /**
248
253
  * @public
254
+ * @enum
249
255
  */
250
- export declare enum DataUploadFrequency {
251
- PT10M = "PT10M",
252
- PT15M = "PT15M",
253
- PT1H = "PT1H",
254
- PT30M = "PT30M",
255
- PT5M = "PT5M"
256
- }
256
+ export declare const DataUploadFrequency: {
257
+ readonly PT10M: "PT10M";
258
+ readonly PT15M: "PT15M";
259
+ readonly PT1H: "PT1H";
260
+ readonly PT30M: "PT30M";
261
+ readonly PT5M: "PT5M";
262
+ };
263
+ /**
264
+ * @public
265
+ */
266
+ export type DataUploadFrequency = (typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
257
267
  /**
258
268
  * @public
259
269
  */
@@ -315,13 +325,18 @@ export interface CreateInferenceSchedulerRequest {
315
325
  }
316
326
  /**
317
327
  * @public
328
+ * @enum
318
329
  */
319
- export declare enum InferenceSchedulerStatus {
320
- PENDING = "PENDING",
321
- RUNNING = "RUNNING",
322
- STOPPED = "STOPPED",
323
- STOPPING = "STOPPING"
324
- }
330
+ export declare const InferenceSchedulerStatus: {
331
+ readonly PENDING: "PENDING";
332
+ readonly RUNNING: "RUNNING";
333
+ readonly STOPPED: "STOPPED";
334
+ readonly STOPPING: "STOPPING";
335
+ };
336
+ /**
337
+ * @public
338
+ */
339
+ export type InferenceSchedulerStatus = (typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
325
340
  /**
326
341
  * @public
327
342
  */
@@ -355,12 +370,17 @@ export declare class ResourceNotFoundException extends __BaseException {
355
370
  }
356
371
  /**
357
372
  * @public
373
+ * @enum
358
374
  */
359
- export declare enum LabelRating {
360
- ANOMALY = "ANOMALY",
361
- NEUTRAL = "NEUTRAL",
362
- NO_ANOMALY = "NO_ANOMALY"
363
- }
375
+ export declare const LabelRating: {
376
+ readonly ANOMALY: "ANOMALY";
377
+ readonly NEUTRAL: "NEUTRAL";
378
+ readonly NO_ANOMALY: "NO_ANOMALY";
379
+ };
380
+ /**
381
+ * @public
382
+ */
383
+ export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
364
384
  /**
365
385
  * @public
366
386
  */
@@ -479,20 +499,25 @@ export interface CreateLabelGroupResponse {
479
499
  }
480
500
  /**
481
501
  * @public
502
+ * @enum
482
503
  */
483
- export declare enum TargetSamplingRate {
484
- PT10M = "PT10M",
485
- PT10S = "PT10S",
486
- PT15M = "PT15M",
487
- PT15S = "PT15S",
488
- PT1H = "PT1H",
489
- PT1M = "PT1M",
490
- PT1S = "PT1S",
491
- PT30M = "PT30M",
492
- PT30S = "PT30S",
493
- PT5M = "PT5M",
494
- PT5S = "PT5S"
495
- }
504
+ export declare const TargetSamplingRate: {
505
+ readonly PT10M: "PT10M";
506
+ readonly PT10S: "PT10S";
507
+ readonly PT15M: "PT15M";
508
+ readonly PT15S: "PT15S";
509
+ readonly PT1H: "PT1H";
510
+ readonly PT1M: "PT1M";
511
+ readonly PT1S: "PT1S";
512
+ readonly PT30M: "PT30M";
513
+ readonly PT30S: "PT30S";
514
+ readonly PT5M: "PT5M";
515
+ readonly PT5S: "PT5S";
516
+ };
517
+ /**
518
+ * @public
519
+ */
520
+ export type TargetSamplingRate = (typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
496
521
  /**
497
522
  * @public
498
523
  * <p>The configuration is the <code>TargetSamplingRate</code>, which is the sampling rate of
@@ -634,12 +659,17 @@ export interface CreateModelRequest {
634
659
  }
635
660
  /**
636
661
  * @public
662
+ * @enum
637
663
  */
638
- export declare enum ModelStatus {
639
- FAILED = "FAILED",
640
- IN_PROGRESS = "IN_PROGRESS",
641
- SUCCESS = "SUCCESS"
642
- }
664
+ export declare const ModelStatus: {
665
+ readonly FAILED: "FAILED";
666
+ readonly IN_PROGRESS: "IN_PROGRESS";
667
+ readonly SUCCESS: "SUCCESS";
668
+ };
669
+ /**
670
+ * @public
671
+ */
672
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
643
673
  /**
644
674
  * @public
645
675
  */
@@ -909,12 +939,17 @@ export interface IngestionInputConfiguration {
909
939
  }
910
940
  /**
911
941
  * @public
942
+ * @enum
912
943
  */
913
- export declare enum IngestionJobStatus {
914
- FAILED = "FAILED",
915
- IN_PROGRESS = "IN_PROGRESS",
916
- SUCCESS = "SUCCESS"
917
- }
944
+ export declare const IngestionJobStatus: {
945
+ readonly FAILED: "FAILED";
946
+ readonly IN_PROGRESS: "IN_PROGRESS";
947
+ readonly SUCCESS: "SUCCESS";
948
+ };
949
+ /**
950
+ * @public
951
+ */
952
+ export type IngestionJobStatus = (typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
918
953
  /**
919
954
  * @public
920
955
  */
@@ -1068,11 +1103,16 @@ export interface DescribeInferenceSchedulerRequest {
1068
1103
  }
1069
1104
  /**
1070
1105
  * @public
1106
+ * @enum
1071
1107
  */
1072
- export declare enum LatestInferenceResult {
1073
- ANOMALOUS = "ANOMALOUS",
1074
- NORMAL = "NORMAL"
1075
- }
1108
+ export declare const LatestInferenceResult: {
1109
+ readonly ANOMALOUS: "ANOMALOUS";
1110
+ readonly NORMAL: "NORMAL";
1111
+ };
1112
+ /**
1113
+ * @public
1114
+ */
1115
+ export type LatestInferenceResult = (typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
1076
1116
  /**
1077
1117
  * @public
1078
1118
  */
@@ -1600,12 +1640,17 @@ export interface ListInferenceEventsResponse {
1600
1640
  }
1601
1641
  /**
1602
1642
  * @public
1643
+ * @enum
1603
1644
  */
1604
- export declare enum InferenceExecutionStatus {
1605
- FAILED = "FAILED",
1606
- IN_PROGRESS = "IN_PROGRESS",
1607
- SUCCESS = "SUCCESS"
1608
- }
1645
+ export declare const InferenceExecutionStatus: {
1646
+ readonly FAILED: "FAILED";
1647
+ readonly IN_PROGRESS: "IN_PROGRESS";
1648
+ readonly SUCCESS: "SUCCESS";
1649
+ };
1650
+ /**
1651
+ * @public
1652
+ */
1653
+ export type InferenceExecutionStatus = (typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
1609
1654
  /**
1610
1655
  * @public
1611
1656
  */
@@ -2105,11 +2150,16 @@ export interface ListSensorStatisticsRequest {
2105
2150
  }
2106
2151
  /**
2107
2152
  * @public
2153
+ * @enum
2108
2154
  */
2109
- export declare enum StatisticalIssueStatus {
2110
- NO_ISSUE_DETECTED = "NO_ISSUE_DETECTED",
2111
- POTENTIAL_ISSUE_DETECTED = "POTENTIAL_ISSUE_DETECTED"
2112
- }
2155
+ export declare const StatisticalIssueStatus: {
2156
+ readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
2157
+ readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
2158
+ };
2159
+ /**
2160
+ * @public
2161
+ */
2162
+ export type StatisticalIssueStatus = (typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
2113
2163
  /**
2114
2164
  * @public
2115
2165
  * <p> Entity that comprises information on categorical values in data. </p>
@@ -2161,12 +2211,17 @@ export interface LargeTimestampGaps {
2161
2211
  }
2162
2212
  /**
2163
2213
  * @public
2214
+ * @enum
2164
2215
  */
2165
- export declare enum Monotonicity {
2166
- DECREASING = "DECREASING",
2167
- INCREASING = "INCREASING",
2168
- STATIC = "STATIC"
2169
- }
2216
+ export declare const Monotonicity: {
2217
+ readonly DECREASING: "DECREASING";
2218
+ readonly INCREASING: "INCREASING";
2219
+ readonly STATIC: "STATIC";
2220
+ };
2221
+ /**
2222
+ * @public
2223
+ */
2224
+ export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
2170
2225
  /**
2171
2226
  * @public
2172
2227
  * <p> Entity that comprises information on monotonic values in the data. </p>
@@ -31,11 +31,12 @@ export interface CreateDatasetRequest {
31
31
  ClientToken?: string;
32
32
  Tags?: Tag[];
33
33
  }
34
- export declare enum DatasetStatus {
35
- ACTIVE = "ACTIVE",
36
- CREATED = "CREATED",
37
- INGESTION_IN_PROGRESS = "INGESTION_IN_PROGRESS",
38
- }
34
+ export declare const DatasetStatus: {
35
+ readonly ACTIVE: "ACTIVE";
36
+ readonly CREATED: "CREATED";
37
+ readonly INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS";
38
+ };
39
+ export type DatasetStatus = (typeof DatasetStatus)[keyof typeof DatasetStatus];
39
40
  export interface CreateDatasetResponse {
40
41
  DatasetName?: string;
41
42
  DatasetArn?: string;
@@ -94,13 +95,15 @@ export interface InferenceOutputConfiguration {
94
95
  S3OutputConfiguration: InferenceS3OutputConfiguration | undefined;
95
96
  KmsKeyId?: string;
96
97
  }
97
- export declare enum DataUploadFrequency {
98
- PT10M = "PT10M",
99
- PT15M = "PT15M",
100
- PT1H = "PT1H",
101
- PT30M = "PT30M",
102
- PT5M = "PT5M",
103
- }
98
+ export declare const DataUploadFrequency: {
99
+ readonly PT10M: "PT10M";
100
+ readonly PT15M: "PT15M";
101
+ readonly PT1H: "PT1H";
102
+ readonly PT30M: "PT30M";
103
+ readonly PT5M: "PT5M";
104
+ };
105
+ export type DataUploadFrequency =
106
+ (typeof DataUploadFrequency)[keyof typeof DataUploadFrequency];
104
107
  export interface CreateInferenceSchedulerRequest {
105
108
  ModelName: string | undefined;
106
109
  InferenceSchedulerName: string | undefined;
@@ -113,12 +116,14 @@ export interface CreateInferenceSchedulerRequest {
113
116
  ClientToken?: string;
114
117
  Tags?: Tag[];
115
118
  }
116
- export declare enum InferenceSchedulerStatus {
117
- PENDING = "PENDING",
118
- RUNNING = "RUNNING",
119
- STOPPED = "STOPPED",
120
- STOPPING = "STOPPING",
121
- }
119
+ export declare const InferenceSchedulerStatus: {
120
+ readonly PENDING: "PENDING";
121
+ readonly RUNNING: "RUNNING";
122
+ readonly STOPPED: "STOPPED";
123
+ readonly STOPPING: "STOPPING";
124
+ };
125
+ export type InferenceSchedulerStatus =
126
+ (typeof InferenceSchedulerStatus)[keyof typeof InferenceSchedulerStatus];
122
127
  export interface CreateInferenceSchedulerResponse {
123
128
  InferenceSchedulerArn?: string;
124
129
  InferenceSchedulerName?: string;
@@ -132,11 +137,12 @@ export declare class ResourceNotFoundException extends __BaseException {
132
137
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
133
138
  );
134
139
  }
135
- export declare enum LabelRating {
136
- ANOMALY = "ANOMALY",
137
- NEUTRAL = "NEUTRAL",
138
- NO_ANOMALY = "NO_ANOMALY",
139
- }
140
+ export declare const LabelRating: {
141
+ readonly ANOMALY: "ANOMALY";
142
+ readonly NEUTRAL: "NEUTRAL";
143
+ readonly NO_ANOMALY: "NO_ANOMALY";
144
+ };
145
+ export type LabelRating = (typeof LabelRating)[keyof typeof LabelRating];
140
146
  export interface CreateLabelRequest {
141
147
  LabelGroupName: string | undefined;
142
148
  StartTime: Date | undefined;
@@ -160,19 +166,21 @@ export interface CreateLabelGroupResponse {
160
166
  LabelGroupName?: string;
161
167
  LabelGroupArn?: string;
162
168
  }
163
- export declare enum TargetSamplingRate {
164
- PT10M = "PT10M",
165
- PT10S = "PT10S",
166
- PT15M = "PT15M",
167
- PT15S = "PT15S",
168
- PT1H = "PT1H",
169
- PT1M = "PT1M",
170
- PT1S = "PT1S",
171
- PT30M = "PT30M",
172
- PT30S = "PT30S",
173
- PT5M = "PT5M",
174
- PT5S = "PT5S",
175
- }
169
+ export declare const TargetSamplingRate: {
170
+ readonly PT10M: "PT10M";
171
+ readonly PT10S: "PT10S";
172
+ readonly PT15M: "PT15M";
173
+ readonly PT15S: "PT15S";
174
+ readonly PT1H: "PT1H";
175
+ readonly PT1M: "PT1M";
176
+ readonly PT1S: "PT1S";
177
+ readonly PT30M: "PT30M";
178
+ readonly PT30S: "PT30S";
179
+ readonly PT5M: "PT5M";
180
+ readonly PT5S: "PT5S";
181
+ };
182
+ export type TargetSamplingRate =
183
+ (typeof TargetSamplingRate)[keyof typeof TargetSamplingRate];
176
184
  export interface DataPreProcessingConfiguration {
177
185
  TargetSamplingRate?: TargetSamplingRate | string;
178
186
  }
@@ -200,11 +208,12 @@ export interface CreateModelRequest {
200
208
  Tags?: Tag[];
201
209
  OffCondition?: string;
202
210
  }
203
- export declare enum ModelStatus {
204
- FAILED = "FAILED",
205
- IN_PROGRESS = "IN_PROGRESS",
206
- SUCCESS = "SUCCESS",
207
- }
211
+ export declare const ModelStatus: {
212
+ readonly FAILED: "FAILED";
213
+ readonly IN_PROGRESS: "IN_PROGRESS";
214
+ readonly SUCCESS: "SUCCESS";
215
+ };
216
+ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus];
208
217
  export interface CreateModelResponse {
209
218
  ModelArn?: string;
210
219
  Status?: ModelStatus | string;
@@ -276,11 +285,13 @@ export interface IngestionS3InputConfiguration {
276
285
  export interface IngestionInputConfiguration {
277
286
  S3InputConfiguration: IngestionS3InputConfiguration | undefined;
278
287
  }
279
- export declare enum IngestionJobStatus {
280
- FAILED = "FAILED",
281
- IN_PROGRESS = "IN_PROGRESS",
282
- SUCCESS = "SUCCESS",
283
- }
288
+ export declare const IngestionJobStatus: {
289
+ readonly FAILED: "FAILED";
290
+ readonly IN_PROGRESS: "IN_PROGRESS";
291
+ readonly SUCCESS: "SUCCESS";
292
+ };
293
+ export type IngestionJobStatus =
294
+ (typeof IngestionJobStatus)[keyof typeof IngestionJobStatus];
284
295
  export interface DescribeDataIngestionJobResponse {
285
296
  JobId?: string;
286
297
  DatasetArn?: string;
@@ -317,10 +328,12 @@ export interface DescribeDatasetResponse {
317
328
  export interface DescribeInferenceSchedulerRequest {
318
329
  InferenceSchedulerName: string | undefined;
319
330
  }
320
- export declare enum LatestInferenceResult {
321
- ANOMALOUS = "ANOMALOUS",
322
- NORMAL = "NORMAL",
323
- }
331
+ export declare const LatestInferenceResult: {
332
+ readonly ANOMALOUS: "ANOMALOUS";
333
+ readonly NORMAL: "NORMAL";
334
+ };
335
+ export type LatestInferenceResult =
336
+ (typeof LatestInferenceResult)[keyof typeof LatestInferenceResult];
324
337
  export interface DescribeInferenceSchedulerResponse {
325
338
  ModelArn?: string;
326
339
  ModelName?: string;
@@ -440,11 +453,13 @@ export interface ListInferenceEventsResponse {
440
453
  NextToken?: string;
441
454
  InferenceEventSummaries?: InferenceEventSummary[];
442
455
  }
443
- export declare enum InferenceExecutionStatus {
444
- FAILED = "FAILED",
445
- IN_PROGRESS = "IN_PROGRESS",
446
- SUCCESS = "SUCCESS",
447
- }
456
+ export declare const InferenceExecutionStatus: {
457
+ readonly FAILED: "FAILED";
458
+ readonly IN_PROGRESS: "IN_PROGRESS";
459
+ readonly SUCCESS: "SUCCESS";
460
+ };
461
+ export type InferenceExecutionStatus =
462
+ (typeof InferenceExecutionStatus)[keyof typeof InferenceExecutionStatus];
448
463
  export interface ListInferenceExecutionsRequest {
449
464
  NextToken?: string;
450
465
  MaxResults?: number;
@@ -556,10 +571,12 @@ export interface ListSensorStatisticsRequest {
556
571
  MaxResults?: number;
557
572
  NextToken?: string;
558
573
  }
559
- export declare enum StatisticalIssueStatus {
560
- NO_ISSUE_DETECTED = "NO_ISSUE_DETECTED",
561
- POTENTIAL_ISSUE_DETECTED = "POTENTIAL_ISSUE_DETECTED",
562
- }
574
+ export declare const StatisticalIssueStatus: {
575
+ readonly NO_ISSUE_DETECTED: "NO_ISSUE_DETECTED";
576
+ readonly POTENTIAL_ISSUE_DETECTED: "POTENTIAL_ISSUE_DETECTED";
577
+ };
578
+ export type StatisticalIssueStatus =
579
+ (typeof StatisticalIssueStatus)[keyof typeof StatisticalIssueStatus];
563
580
  export interface CategoricalValues {
564
581
  Status: StatisticalIssueStatus | string | undefined;
565
582
  NumberOfCategory?: number;
@@ -573,11 +590,12 @@ export interface LargeTimestampGaps {
573
590
  NumberOfLargeTimestampGaps?: number;
574
591
  MaxTimestampGapInDays?: number;
575
592
  }
576
- export declare enum Monotonicity {
577
- DECREASING = "DECREASING",
578
- INCREASING = "INCREASING",
579
- STATIC = "STATIC",
580
- }
593
+ export declare const Monotonicity: {
594
+ readonly DECREASING: "DECREASING";
595
+ readonly INCREASING: "INCREASING";
596
+ readonly STATIC: "STATIC";
597
+ };
598
+ export type Monotonicity = (typeof Monotonicity)[keyof typeof Monotonicity];
581
599
  export interface MonotonicValues {
582
600
  Status: StatisticalIssueStatus | string | undefined;
583
601
  Monotonicity?: Monotonicity | string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lookoutequipment",
3
3
  "description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
4
- "version": "3.301.0",
4
+ "version": "3.306.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",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "@types/uuid": "^8.3.0",