@aws-sdk/client-lookoutequipment 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +2 -2
- package/dist-cjs/commands/CreateInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/CreateModelCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatasetCommand.js +1 -1
- package/dist-cjs/commands/DeleteInferenceSchedulerCommand.js +1 -1
- package/dist-cjs/commands/DeleteModelCommand.js +1 -1
- package/dist-cjs/commands/DescribeDataIngestionJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeDatasetCommand.js +2 -2
- package/dist-cjs/commands/DescribeInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/DescribeModelCommand.js +2 -2
- package/dist-cjs/commands/ListDataIngestionJobsCommand.js +2 -2
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceEventsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceExecutionsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceSchedulersCommand.js +2 -2
- package/dist-cjs/commands/ListModelsCommand.js +2 -2
- package/dist-cjs/commands/ListSensorStatisticsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartDataIngestionJobCommand.js +2 -2
- package/dist-cjs/commands/StartInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/StopInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateInferenceSchedulerCommand.js +1 -1
- package/dist-cjs/models/models_0.js +314 -470
- package/dist-es/commands/CreateDatasetCommand.js +3 -3
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/CreateModelCommand.js +3 -3
- package/dist-es/commands/DeleteDatasetCommand.js +2 -2
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/DeleteModelCommand.js +2 -2
- package/dist-es/commands/DescribeDataIngestionJobCommand.js +3 -3
- package/dist-es/commands/DescribeDatasetCommand.js +3 -3
- package/dist-es/commands/DescribeInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/DescribeModelCommand.js +3 -3
- package/dist-es/commands/ListDataIngestionJobsCommand.js +3 -3
- package/dist-es/commands/ListDatasetsCommand.js +3 -3
- package/dist-es/commands/ListInferenceEventsCommand.js +3 -3
- package/dist-es/commands/ListInferenceExecutionsCommand.js +3 -3
- package/dist-es/commands/ListInferenceSchedulersCommand.js +3 -3
- package/dist-es/commands/ListModelsCommand.js +3 -3
- package/dist-es/commands/ListSensorStatisticsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartDataIngestionJobCommand.js +3 -3
- package/dist-es/commands/StartInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/StopInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateInferenceSchedulerCommand.js +2 -2
- package/dist-es/models/models_0.js +78 -312
- package/dist-types/models/models_0.d.ts +312 -468
- package/dist-types/ts3.4/models/models_0.d.ts +0 -120
- package/package.json +6 -6
|
@@ -21,10 +21,6 @@ export interface DatasetSchema {
|
|
|
21
21
|
|
|
22
22
|
InlineDataSchema?: __LazyJsonString | string;
|
|
23
23
|
}
|
|
24
|
-
export declare namespace DatasetSchema {
|
|
25
|
-
|
|
26
|
-
const filterSensitiveLog: (obj: DatasetSchema) => any;
|
|
27
|
-
}
|
|
28
24
|
|
|
29
25
|
export interface Tag {
|
|
30
26
|
|
|
@@ -32,10 +28,6 @@ export interface Tag {
|
|
|
32
28
|
|
|
33
29
|
Value: string | undefined;
|
|
34
30
|
}
|
|
35
|
-
export declare namespace Tag {
|
|
36
|
-
|
|
37
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
38
|
-
}
|
|
39
31
|
export interface CreateDatasetRequest {
|
|
40
32
|
|
|
41
33
|
DatasetName: string | undefined;
|
|
@@ -48,10 +40,6 @@ export interface CreateDatasetRequest {
|
|
|
48
40
|
|
|
49
41
|
Tags?: Tag[];
|
|
50
42
|
}
|
|
51
|
-
export declare namespace CreateDatasetRequest {
|
|
52
|
-
|
|
53
|
-
const filterSensitiveLog: (obj: CreateDatasetRequest) => any;
|
|
54
|
-
}
|
|
55
43
|
export declare enum DatasetStatus {
|
|
56
44
|
ACTIVE = "ACTIVE",
|
|
57
45
|
CREATED = "CREATED",
|
|
@@ -65,10 +53,6 @@ export interface CreateDatasetResponse {
|
|
|
65
53
|
|
|
66
54
|
Status?: DatasetStatus | string;
|
|
67
55
|
}
|
|
68
|
-
export declare namespace CreateDatasetResponse {
|
|
69
|
-
|
|
70
|
-
const filterSensitiveLog: (obj: CreateDatasetResponse) => any;
|
|
71
|
-
}
|
|
72
56
|
|
|
73
57
|
export declare class InternalServerException extends __BaseException {
|
|
74
58
|
readonly name: "InternalServerException";
|
|
@@ -108,10 +92,6 @@ export interface InferenceInputNameConfiguration {
|
|
|
108
92
|
|
|
109
93
|
ComponentTimestampDelimiter?: string;
|
|
110
94
|
}
|
|
111
|
-
export declare namespace InferenceInputNameConfiguration {
|
|
112
|
-
|
|
113
|
-
const filterSensitiveLog: (obj: InferenceInputNameConfiguration) => any;
|
|
114
|
-
}
|
|
115
95
|
|
|
116
96
|
export interface InferenceS3InputConfiguration {
|
|
117
97
|
|
|
@@ -119,10 +99,6 @@ export interface InferenceS3InputConfiguration {
|
|
|
119
99
|
|
|
120
100
|
Prefix?: string;
|
|
121
101
|
}
|
|
122
|
-
export declare namespace InferenceS3InputConfiguration {
|
|
123
|
-
|
|
124
|
-
const filterSensitiveLog: (obj: InferenceS3InputConfiguration) => any;
|
|
125
|
-
}
|
|
126
102
|
|
|
127
103
|
export interface InferenceInputConfiguration {
|
|
128
104
|
|
|
@@ -132,10 +108,6 @@ export interface InferenceInputConfiguration {
|
|
|
132
108
|
|
|
133
109
|
InferenceInputNameConfiguration?: InferenceInputNameConfiguration;
|
|
134
110
|
}
|
|
135
|
-
export declare namespace InferenceInputConfiguration {
|
|
136
|
-
|
|
137
|
-
const filterSensitiveLog: (obj: InferenceInputConfiguration) => any;
|
|
138
|
-
}
|
|
139
111
|
|
|
140
112
|
export interface InferenceS3OutputConfiguration {
|
|
141
113
|
|
|
@@ -143,10 +115,6 @@ export interface InferenceS3OutputConfiguration {
|
|
|
143
115
|
|
|
144
116
|
Prefix?: string;
|
|
145
117
|
}
|
|
146
|
-
export declare namespace InferenceS3OutputConfiguration {
|
|
147
|
-
|
|
148
|
-
const filterSensitiveLog: (obj: InferenceS3OutputConfiguration) => any;
|
|
149
|
-
}
|
|
150
118
|
|
|
151
119
|
export interface InferenceOutputConfiguration {
|
|
152
120
|
|
|
@@ -154,10 +122,6 @@ export interface InferenceOutputConfiguration {
|
|
|
154
122
|
|
|
155
123
|
KmsKeyId?: string;
|
|
156
124
|
}
|
|
157
|
-
export declare namespace InferenceOutputConfiguration {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: InferenceOutputConfiguration) => any;
|
|
160
|
-
}
|
|
161
125
|
export declare enum DataUploadFrequency {
|
|
162
126
|
PT10M = "PT10M",
|
|
163
127
|
PT15M = "PT15M",
|
|
@@ -187,10 +151,6 @@ export interface CreateInferenceSchedulerRequest {
|
|
|
187
151
|
|
|
188
152
|
Tags?: Tag[];
|
|
189
153
|
}
|
|
190
|
-
export declare namespace CreateInferenceSchedulerRequest {
|
|
191
|
-
|
|
192
|
-
const filterSensitiveLog: (obj: CreateInferenceSchedulerRequest) => any;
|
|
193
|
-
}
|
|
194
154
|
export declare enum InferenceSchedulerStatus {
|
|
195
155
|
PENDING = "PENDING",
|
|
196
156
|
RUNNING = "RUNNING",
|
|
@@ -205,10 +165,6 @@ export interface CreateInferenceSchedulerResponse {
|
|
|
205
165
|
|
|
206
166
|
Status?: InferenceSchedulerStatus | string;
|
|
207
167
|
}
|
|
208
|
-
export declare namespace CreateInferenceSchedulerResponse {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: CreateInferenceSchedulerResponse) => any;
|
|
211
|
-
}
|
|
212
168
|
|
|
213
169
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
214
170
|
readonly name: "ResourceNotFoundException";
|
|
@@ -235,10 +191,6 @@ export interface DataPreProcessingConfiguration {
|
|
|
235
191
|
|
|
236
192
|
TargetSamplingRate?: TargetSamplingRate | string;
|
|
237
193
|
}
|
|
238
|
-
export declare namespace DataPreProcessingConfiguration {
|
|
239
|
-
|
|
240
|
-
const filterSensitiveLog: (obj: DataPreProcessingConfiguration) => any;
|
|
241
|
-
}
|
|
242
194
|
|
|
243
195
|
export interface LabelsS3InputConfiguration {
|
|
244
196
|
|
|
@@ -246,19 +198,11 @@ export interface LabelsS3InputConfiguration {
|
|
|
246
198
|
|
|
247
199
|
Prefix?: string;
|
|
248
200
|
}
|
|
249
|
-
export declare namespace LabelsS3InputConfiguration {
|
|
250
|
-
|
|
251
|
-
const filterSensitiveLog: (obj: LabelsS3InputConfiguration) => any;
|
|
252
|
-
}
|
|
253
201
|
|
|
254
202
|
export interface LabelsInputConfiguration {
|
|
255
203
|
|
|
256
204
|
S3InputConfiguration: LabelsS3InputConfiguration | undefined;
|
|
257
205
|
}
|
|
258
|
-
export declare namespace LabelsInputConfiguration {
|
|
259
|
-
|
|
260
|
-
const filterSensitiveLog: (obj: LabelsInputConfiguration) => any;
|
|
261
|
-
}
|
|
262
206
|
export interface CreateModelRequest {
|
|
263
207
|
|
|
264
208
|
ModelName: string | undefined;
|
|
@@ -289,10 +233,6 @@ export interface CreateModelRequest {
|
|
|
289
233
|
|
|
290
234
|
OffCondition?: string;
|
|
291
235
|
}
|
|
292
|
-
export declare namespace CreateModelRequest {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: CreateModelRequest) => any;
|
|
295
|
-
}
|
|
296
236
|
export declare enum ModelStatus {
|
|
297
237
|
FAILED = "FAILED",
|
|
298
238
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -304,69 +244,37 @@ export interface CreateModelResponse {
|
|
|
304
244
|
|
|
305
245
|
Status?: ModelStatus | string;
|
|
306
246
|
}
|
|
307
|
-
export declare namespace CreateModelResponse {
|
|
308
|
-
|
|
309
|
-
const filterSensitiveLog: (obj: CreateModelResponse) => any;
|
|
310
|
-
}
|
|
311
247
|
export interface DeleteDatasetRequest {
|
|
312
248
|
|
|
313
249
|
DatasetName: string | undefined;
|
|
314
250
|
}
|
|
315
|
-
export declare namespace DeleteDatasetRequest {
|
|
316
|
-
|
|
317
|
-
const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
318
|
-
}
|
|
319
251
|
export interface DeleteInferenceSchedulerRequest {
|
|
320
252
|
|
|
321
253
|
InferenceSchedulerName: string | undefined;
|
|
322
254
|
}
|
|
323
|
-
export declare namespace DeleteInferenceSchedulerRequest {
|
|
324
|
-
|
|
325
|
-
const filterSensitiveLog: (obj: DeleteInferenceSchedulerRequest) => any;
|
|
326
|
-
}
|
|
327
255
|
export interface DeleteModelRequest {
|
|
328
256
|
|
|
329
257
|
ModelName: string | undefined;
|
|
330
258
|
}
|
|
331
|
-
export declare namespace DeleteModelRequest {
|
|
332
|
-
|
|
333
|
-
const filterSensitiveLog: (obj: DeleteModelRequest) => any;
|
|
334
|
-
}
|
|
335
259
|
export interface DescribeDataIngestionJobRequest {
|
|
336
260
|
|
|
337
261
|
JobId: string | undefined;
|
|
338
262
|
}
|
|
339
|
-
export declare namespace DescribeDataIngestionJobRequest {
|
|
340
|
-
|
|
341
|
-
const filterSensitiveLog: (obj: DescribeDataIngestionJobRequest) => any;
|
|
342
|
-
}
|
|
343
263
|
|
|
344
264
|
export interface DuplicateTimestamps {
|
|
345
265
|
|
|
346
266
|
TotalNumberOfDuplicateTimestamps: number | undefined;
|
|
347
267
|
}
|
|
348
|
-
export declare namespace DuplicateTimestamps {
|
|
349
|
-
|
|
350
|
-
const filterSensitiveLog: (obj: DuplicateTimestamps) => any;
|
|
351
|
-
}
|
|
352
268
|
|
|
353
269
|
export interface MissingCompleteSensorData {
|
|
354
270
|
|
|
355
271
|
AffectedSensorCount: number | undefined;
|
|
356
272
|
}
|
|
357
|
-
export declare namespace MissingCompleteSensorData {
|
|
358
|
-
|
|
359
|
-
const filterSensitiveLog: (obj: MissingCompleteSensorData) => any;
|
|
360
|
-
}
|
|
361
273
|
|
|
362
274
|
export interface SensorsWithShortDateRange {
|
|
363
275
|
|
|
364
276
|
AffectedSensorCount: number | undefined;
|
|
365
277
|
}
|
|
366
|
-
export declare namespace SensorsWithShortDateRange {
|
|
367
|
-
|
|
368
|
-
const filterSensitiveLog: (obj: SensorsWithShortDateRange) => any;
|
|
369
|
-
}
|
|
370
278
|
|
|
371
279
|
export interface InsufficientSensorData {
|
|
372
280
|
|
|
@@ -374,10 +282,6 @@ export interface InsufficientSensorData {
|
|
|
374
282
|
|
|
375
283
|
SensorsWithShortDateRange: SensorsWithShortDateRange | undefined;
|
|
376
284
|
}
|
|
377
|
-
export declare namespace InsufficientSensorData {
|
|
378
|
-
|
|
379
|
-
const filterSensitiveLog: (obj: InsufficientSensorData) => any;
|
|
380
|
-
}
|
|
381
285
|
|
|
382
286
|
export interface InvalidSensorData {
|
|
383
287
|
|
|
@@ -385,10 +289,6 @@ export interface InvalidSensorData {
|
|
|
385
289
|
|
|
386
290
|
TotalNumberOfInvalidValues: number | undefined;
|
|
387
291
|
}
|
|
388
|
-
export declare namespace InvalidSensorData {
|
|
389
|
-
|
|
390
|
-
const filterSensitiveLog: (obj: InvalidSensorData) => any;
|
|
391
|
-
}
|
|
392
292
|
|
|
393
293
|
export interface MissingSensorData {
|
|
394
294
|
|
|
@@ -396,19 +296,11 @@ export interface MissingSensorData {
|
|
|
396
296
|
|
|
397
297
|
TotalNumberOfMissingValues: number | undefined;
|
|
398
298
|
}
|
|
399
|
-
export declare namespace MissingSensorData {
|
|
400
|
-
|
|
401
|
-
const filterSensitiveLog: (obj: MissingSensorData) => any;
|
|
402
|
-
}
|
|
403
299
|
|
|
404
300
|
export interface UnsupportedTimestamps {
|
|
405
301
|
|
|
406
302
|
TotalNumberOfUnsupportedTimestamps: number | undefined;
|
|
407
303
|
}
|
|
408
|
-
export declare namespace UnsupportedTimestamps {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: UnsupportedTimestamps) => any;
|
|
411
|
-
}
|
|
412
304
|
|
|
413
305
|
export interface DataQualitySummary {
|
|
414
306
|
|
|
@@ -422,10 +314,6 @@ export interface DataQualitySummary {
|
|
|
422
314
|
|
|
423
315
|
DuplicateTimestamps: DuplicateTimestamps | undefined;
|
|
424
316
|
}
|
|
425
|
-
export declare namespace DataQualitySummary {
|
|
426
|
-
|
|
427
|
-
const filterSensitiveLog: (obj: DataQualitySummary) => any;
|
|
428
|
-
}
|
|
429
317
|
|
|
430
318
|
export interface S3Object {
|
|
431
319
|
|
|
@@ -433,10 +321,6 @@ export interface S3Object {
|
|
|
433
321
|
|
|
434
322
|
Key: string | undefined;
|
|
435
323
|
}
|
|
436
|
-
export declare namespace S3Object {
|
|
437
|
-
|
|
438
|
-
const filterSensitiveLog: (obj: S3Object) => any;
|
|
439
|
-
}
|
|
440
324
|
|
|
441
325
|
export interface IngestedFilesSummary {
|
|
442
326
|
|
|
@@ -446,10 +330,6 @@ export interface IngestedFilesSummary {
|
|
|
446
330
|
|
|
447
331
|
DiscardedFiles?: S3Object[];
|
|
448
332
|
}
|
|
449
|
-
export declare namespace IngestedFilesSummary {
|
|
450
|
-
|
|
451
|
-
const filterSensitiveLog: (obj: IngestedFilesSummary) => any;
|
|
452
|
-
}
|
|
453
333
|
|
|
454
334
|
export interface IngestionS3InputConfiguration {
|
|
455
335
|
|
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.
|
|
4
|
+
"version": "3.137.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.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|