@aws-sdk/client-lookoutequipment 3.987.0 → 3.988.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 +68 -1566
- package/dist-cjs/models/LookoutEquipmentServiceException.js +12 -0
- package/dist-cjs/models/errors.js +109 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1235 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +49 -43
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var LookoutEquipmentServiceException = require('./models/LookoutEquipmentServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1331 +113,6 @@ class LookoutEquipmentClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class LookoutEquipmentServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, LookoutEquipmentServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends LookoutEquipmentServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends LookoutEquipmentServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends LookoutEquipmentServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServerException",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ServiceQuotaExceededException extends LookoutEquipmentServiceException {
|
|
163
|
-
name = "ServiceQuotaExceededException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ServiceQuotaExceededException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ThrottlingException extends LookoutEquipmentServiceException {
|
|
177
|
-
name = "ThrottlingException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ThrottlingException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ValidationException extends LookoutEquipmentServiceException {
|
|
191
|
-
name = "ValidationException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ValidationException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ResourceNotFoundException extends LookoutEquipmentServiceException {
|
|
205
|
-
name = "ResourceNotFoundException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "ResourceNotFoundException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
const _ADE = "AccessDeniedException";
|
|
220
|
-
const _AIDET = "AccumulatedInferenceDataEndTime";
|
|
221
|
-
const _AIDST = "AccumulatedInferenceDataStartTime";
|
|
222
|
-
const _AMV = "ActiveModelVersion";
|
|
223
|
-
const _AMVA = "ActiveModelVersionArn";
|
|
224
|
-
const _APR = "AutoPromotionResult";
|
|
225
|
-
const _APRR = "AutoPromotionResultReason";
|
|
226
|
-
const _ASC = "AffectedSensorCount";
|
|
227
|
-
const _B = "Bucket";
|
|
228
|
-
const _C = "Count";
|
|
229
|
-
const _CA = "CreatedAt";
|
|
230
|
-
const _CAET = "CreatedAtEndTime";
|
|
231
|
-
const _CAST = "CreatedAtStartTime";
|
|
232
|
-
const _CAV = "CurrentActiveVersion";
|
|
233
|
-
const _CAVA = "CurrentActiveVersionArn";
|
|
234
|
-
const _CD = "CreateDataset";
|
|
235
|
-
const _CDR = "CreateDatasetRequest";
|
|
236
|
-
const _CDRr = "CreateDatasetResponse";
|
|
237
|
-
const _CE = "ConflictException";
|
|
238
|
-
const _CIS = "CreateInferenceScheduler";
|
|
239
|
-
const _CISR = "CreateInferenceSchedulerRequest";
|
|
240
|
-
const _CISRr = "CreateInferenceSchedulerResponse";
|
|
241
|
-
const _CL = "CreateLabel";
|
|
242
|
-
const _CLG = "CreateLabelGroup";
|
|
243
|
-
const _CLGR = "CreateLabelGroupRequest";
|
|
244
|
-
const _CLGRr = "CreateLabelGroupResponse";
|
|
245
|
-
const _CLR = "CreateLabelRequest";
|
|
246
|
-
const _CLRr = "CreateLabelResponse";
|
|
247
|
-
const _CM = "CreateModel";
|
|
248
|
-
const _CMR = "CreateModelRequest";
|
|
249
|
-
const _CMRr = "CreateModelResponse";
|
|
250
|
-
const _CN = "ComponentName";
|
|
251
|
-
const _CP = "CountPercent";
|
|
252
|
-
const _CRO = "CustomerResultObject";
|
|
253
|
-
const _CRS = "CreateRetrainingScheduler";
|
|
254
|
-
const _CRSR = "CreateRetrainingSchedulerRequest";
|
|
255
|
-
const _CRSRr = "CreateRetrainingSchedulerResponse";
|
|
256
|
-
const _CT = "ClientToken";
|
|
257
|
-
const _CTD = "ComponentTimestampDelimiter";
|
|
258
|
-
const _CTr = "CreationTime";
|
|
259
|
-
const _CV = "CategoricalValues";
|
|
260
|
-
const _D = "Diagnostics";
|
|
261
|
-
const _DA = "DatasetArn";
|
|
262
|
-
const _DD = "DeleteDataset";
|
|
263
|
-
const _DDIJ = "DescribeDataIngestionJob";
|
|
264
|
-
const _DDIJR = "DescribeDataIngestionJobRequest";
|
|
265
|
-
const _DDIJRe = "DescribeDataIngestionJobResponse";
|
|
266
|
-
const _DDOIM = "DataDelayOffsetInMinutes";
|
|
267
|
-
const _DDR = "DeleteDatasetRequest";
|
|
268
|
-
const _DDRe = "DescribeDatasetRequest";
|
|
269
|
-
const _DDRes = "DescribeDatasetResponse";
|
|
270
|
-
const _DDe = "DescribeDataset";
|
|
271
|
-
const _DE = "DataExists";
|
|
272
|
-
const _DET = "DataEndTime";
|
|
273
|
-
const _DETB = "DataEndTimeBefore";
|
|
274
|
-
const _DF = "DiscardedFiles";
|
|
275
|
-
const _DIC = "DataInputConfiguration";
|
|
276
|
-
const _DIJS = "DataIngestionJobSummary";
|
|
277
|
-
const _DIJSa = "DataIngestionJobSummaries";
|
|
278
|
-
const _DIS = "DeleteInferenceScheduler";
|
|
279
|
-
const _DISR = "DeleteInferenceSchedulerRequest";
|
|
280
|
-
const _DISRe = "DescribeInferenceSchedulerRequest";
|
|
281
|
-
const _DISRes = "DescribeInferenceSchedulerResponse";
|
|
282
|
-
const _DISe = "DescribeInferenceScheduler";
|
|
283
|
-
const _DL = "DeleteLabel";
|
|
284
|
-
const _DLG = "DeleteLabelGroup";
|
|
285
|
-
const _DLGR = "DeleteLabelGroupRequest";
|
|
286
|
-
const _DLGRe = "DescribeLabelGroupRequest";
|
|
287
|
-
const _DLGRes = "DescribeLabelGroupResponse";
|
|
288
|
-
const _DLGe = "DescribeLabelGroup";
|
|
289
|
-
const _DLR = "DeleteLabelRequest";
|
|
290
|
-
const _DLRe = "DescribeLabelRequest";
|
|
291
|
-
const _DLRes = "DescribeLabelResponse";
|
|
292
|
-
const _DLe = "DescribeLabel";
|
|
293
|
-
const _DM = "DeleteModel";
|
|
294
|
-
const _DMR = "DeleteModelRequest";
|
|
295
|
-
const _DMRe = "DescribeModelRequest";
|
|
296
|
-
const _DMRes = "DescribeModelResponse";
|
|
297
|
-
const _DMV = "DescribeModelVersion";
|
|
298
|
-
const _DMVR = "DescribeModelVersionRequest";
|
|
299
|
-
const _DMVRe = "DescribeModelVersionResponse";
|
|
300
|
-
const _DMe = "DescribeModel";
|
|
301
|
-
const _DN = "DatasetName";
|
|
302
|
-
const _DNBW = "DatasetNameBeginsWith";
|
|
303
|
-
const _DOC = "DataOutputConfiguration";
|
|
304
|
-
const _DPPC = "DataPreProcessingConfiguration";
|
|
305
|
-
const _DQS = "DataQualitySummary";
|
|
306
|
-
const _DRP = "DeleteResourcePolicy";
|
|
307
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
308
|
-
const _DRPRe = "DescribeResourcePolicyRequest";
|
|
309
|
-
const _DRPRes = "DescribeResourcePolicyResponse";
|
|
310
|
-
const _DRPe = "DescribeResourcePolicy";
|
|
311
|
-
const _DRS = "DeleteRetrainingScheduler";
|
|
312
|
-
const _DRSR = "DeleteRetrainingSchedulerRequest";
|
|
313
|
-
const _DRSRe = "DescribeRetrainingSchedulerRequest";
|
|
314
|
-
const _DRSRes = "DescribeRetrainingSchedulerResponse";
|
|
315
|
-
const _DRSe = "DescribeRetrainingScheduler";
|
|
316
|
-
const _DS = "DatasetSchema";
|
|
317
|
-
const _DST = "DataStartTime";
|
|
318
|
-
const _DSTA = "DataStartTimeAfter";
|
|
319
|
-
const _DSa = "DatasetSummary";
|
|
320
|
-
const _DSat = "DatasetSummaries";
|
|
321
|
-
const _DT = "DuplicateTimestamps";
|
|
322
|
-
const _DUF = "DataUploadFrequency";
|
|
323
|
-
const _E = "Equipment";
|
|
324
|
-
const _EDET = "EvaluationDataEndTime";
|
|
325
|
-
const _EDIS = "EventDurationInSeconds";
|
|
326
|
-
const _EDST = "EvaluationDataStartTime";
|
|
327
|
-
const _EET = "EventEndTime";
|
|
328
|
-
const _EST = "EventStartTime";
|
|
329
|
-
const _ET = "EndTime";
|
|
330
|
-
const _FC = "FaultCodes";
|
|
331
|
-
const _FCa = "FaultCode";
|
|
332
|
-
const _FR = "FailedReason";
|
|
333
|
-
const _ID = "ImportDataset";
|
|
334
|
-
const _IDE = "InvalidDateEntries";
|
|
335
|
-
const _IDIS = "InferenceDataImportStrategy";
|
|
336
|
-
const _IDR = "ImportDatasetRequest";
|
|
337
|
-
const _IDRm = "ImportDatasetResponse";
|
|
338
|
-
const _IDS = "InlineDataSchema";
|
|
339
|
-
const _IDSIB = "ImportedDataSizeInBytes";
|
|
340
|
-
const _IDSn = "IngestedDataSize";
|
|
341
|
-
const _IES = "InferenceEventSummary";
|
|
342
|
-
const _IESn = "InferenceExecutionSummary";
|
|
343
|
-
const _IESnf = "InferenceEventSummaries";
|
|
344
|
-
const _IESnfe = "InferenceExecutionSummaries";
|
|
345
|
-
const _IET = "IntervalEndTime";
|
|
346
|
-
const _IFS = "IngestedFilesSummary";
|
|
347
|
-
const _IIC = "IngestionInputConfiguration";
|
|
348
|
-
const _IICn = "InferenceInputConfiguration";
|
|
349
|
-
const _IINC = "InferenceInputNameConfiguration";
|
|
350
|
-
const _IJET = "ImportJobEndTime";
|
|
351
|
-
const _IJI = "IngestionJobId";
|
|
352
|
-
const _IJST = "ImportJobStartTime";
|
|
353
|
-
const _IMV = "ImportModelVersion";
|
|
354
|
-
const _IMVR = "ImportModelVersionRequest";
|
|
355
|
-
const _IMVRm = "ImportModelVersionResponse";
|
|
356
|
-
const _INOF = "IngestedNumberOfFiles";
|
|
357
|
-
const _IOC = "InferenceOutputConfiguration";
|
|
358
|
-
const _ISA = "InferenceSchedulerArn";
|
|
359
|
-
const _ISD = "InsufficientSensorData";
|
|
360
|
-
const _ISDn = "InvalidSensorData";
|
|
361
|
-
const _ISE = "InternalServerException";
|
|
362
|
-
const _ISIC = "InferenceS3InputConfiguration";
|
|
363
|
-
const _ISICn = "IngestionS3InputConfiguration";
|
|
364
|
-
const _ISN = "InferenceSchedulerName";
|
|
365
|
-
const _ISNBW = "InferenceSchedulerNameBeginsWith";
|
|
366
|
-
const _ISOC = "InferenceS3OutputConfiguration";
|
|
367
|
-
const _ISS = "InferenceSchedulerSummary";
|
|
368
|
-
const _ISSn = "InferenceSchedulerSummaries";
|
|
369
|
-
const _IST = "IntervalStartTime";
|
|
370
|
-
const _ITZO = "InputTimeZoneOffset";
|
|
371
|
-
const _IV = "InvalidValues";
|
|
372
|
-
const _JI = "JobId";
|
|
373
|
-
const _K = "Key";
|
|
374
|
-
const _KKI = "KmsKeyId";
|
|
375
|
-
const _KP = "KeyPattern";
|
|
376
|
-
const _LD = "ListDatasets";
|
|
377
|
-
const _LDIJ = "ListDataIngestionJobs";
|
|
378
|
-
const _LDIJR = "ListDataIngestionJobsRequest";
|
|
379
|
-
const _LDIJRi = "ListDataIngestionJobsResponse";
|
|
380
|
-
const _LDR = "ListDatasetsRequest";
|
|
381
|
-
const _LDRi = "ListDatasetsResponse";
|
|
382
|
-
const _LGA = "LabelGroupArn";
|
|
383
|
-
const _LGN = "LabelGroupName";
|
|
384
|
-
const _LGNBW = "LabelGroupNameBeginsWith";
|
|
385
|
-
const _LGS = "LabelGroupSummary";
|
|
386
|
-
const _LGSa = "LabelGroupSummaries";
|
|
387
|
-
const _LI = "LabelId";
|
|
388
|
-
const _LIC = "LabelsInputConfiguration";
|
|
389
|
-
const _LIE = "ListInferenceEvents";
|
|
390
|
-
const _LIER = "ListInferenceEventsRequest";
|
|
391
|
-
const _LIERi = "ListInferenceEventsResponse";
|
|
392
|
-
const _LIERis = "ListInferenceExecutionsRequest";
|
|
393
|
-
const _LIERist = "ListInferenceExecutionsResponse";
|
|
394
|
-
const _LIEi = "ListInferenceExecutions";
|
|
395
|
-
const _LIR = "LatestInferenceResult";
|
|
396
|
-
const _LIS = "ListInferenceSchedulers";
|
|
397
|
-
const _LISR = "ListInferenceSchedulersRequest";
|
|
398
|
-
const _LISRi = "ListInferenceSchedulersResponse";
|
|
399
|
-
const _LL = "ListLabels";
|
|
400
|
-
const _LLG = "ListLabelGroups";
|
|
401
|
-
const _LLGR = "ListLabelGroupsRequest";
|
|
402
|
-
const _LLGRi = "ListLabelGroupsResponse";
|
|
403
|
-
const _LLR = "ListLabelsRequest";
|
|
404
|
-
const _LLRi = "ListLabelsResponse";
|
|
405
|
-
const _LM = "ListModels";
|
|
406
|
-
const _LMR = "ListModelsRequest";
|
|
407
|
-
const _LMRi = "ListModelsResponse";
|
|
408
|
-
const _LMT = "LastModifiedTime";
|
|
409
|
-
const _LMV = "ListModelVersions";
|
|
410
|
-
const _LMVR = "ListModelVersionsRequest";
|
|
411
|
-
const _LMVRi = "ListModelVersionsResponse";
|
|
412
|
-
const _LODF = "ListOfDiscardedFiles";
|
|
413
|
-
const _LRS = "ListRetrainingSchedulers";
|
|
414
|
-
const _LRSR = "ListRetrainingSchedulersRequest";
|
|
415
|
-
const _LRSRi = "ListRetrainingSchedulersResponse";
|
|
416
|
-
const _LS = "LabelSummary";
|
|
417
|
-
const _LSIC = "LabelsS3InputConfiguration";
|
|
418
|
-
const _LSRADID = "LatestScheduledRetrainingAvailableDataInDays";
|
|
419
|
-
const _LSRFR = "LatestScheduledRetrainingFailedReason";
|
|
420
|
-
const _LSRMV = "LatestScheduledRetrainingModelVersion";
|
|
421
|
-
const _LSRS = "LatestScheduledRetrainingStatus";
|
|
422
|
-
const _LSRST = "LatestScheduledRetrainingStartTime";
|
|
423
|
-
const _LSS = "ListSensorStatistics";
|
|
424
|
-
const _LSSR = "ListSensorStatisticsRequest";
|
|
425
|
-
const _LSSRi = "ListSensorStatisticsResponse";
|
|
426
|
-
const _LSa = "LabelSummaries";
|
|
427
|
-
const _LTFR = "ListTagsForResource";
|
|
428
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
429
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
430
|
-
const _LTG = "LargeTimestampGaps";
|
|
431
|
-
const _LUA = "LastUpdatedAt";
|
|
432
|
-
const _LUT = "LastUpdatedTime";
|
|
433
|
-
const _LW = "LookbackWindow";
|
|
434
|
-
const _M = "Message";
|
|
435
|
-
const _MA = "ModelArn";
|
|
436
|
-
const _MCSD = "MissingCompleteSensorData";
|
|
437
|
-
const _MDOC = "ModelDiagnosticsOutputConfiguration";
|
|
438
|
-
const _MDRO = "ModelDiagnosticsResultsObject";
|
|
439
|
-
const _MDSOC = "ModelDiagnosticsS3OutputConfiguration";
|
|
440
|
-
const _MM = "ModelMetrics";
|
|
441
|
-
const _MMV = "MaxModelVersion";
|
|
442
|
-
const _MMVi = "MinModelVersion";
|
|
443
|
-
const _MN = "ModelName";
|
|
444
|
-
const _MNBW = "ModelNameBeginsWith";
|
|
445
|
-
const _MOM = "MultipleOperatingModes";
|
|
446
|
-
const _MQ = "ModelQuality";
|
|
447
|
-
const _MR = "MaxResults";
|
|
448
|
-
const _MS = "ModelSummaries";
|
|
449
|
-
const _MSD = "MissingSensorData";
|
|
450
|
-
const _MSo = "ModelSummary";
|
|
451
|
-
const _MTGID = "MaxTimestampGapInDays";
|
|
452
|
-
const _MV = "ModelVersion";
|
|
453
|
-
const _MVA = "ModelVersionArn";
|
|
454
|
-
const _MVAA = "ModelVersionActivatedAt";
|
|
455
|
-
const _MVS = "ModelVersionSummaries";
|
|
456
|
-
const _MVSo = "ModelVersionSummary";
|
|
457
|
-
const _MVi = "MissingValues";
|
|
458
|
-
const _MVo = "MonotonicValues";
|
|
459
|
-
const _Mo = "Monotonicity";
|
|
460
|
-
const _N = "Notes";
|
|
461
|
-
const _NOC = "NumberOfCategory";
|
|
462
|
-
const _NOLTG = "NumberOfLargeTimestampGaps";
|
|
463
|
-
const _NSRSD = "NextScheduledRetrainingStartDate";
|
|
464
|
-
const _NT = "NextToken";
|
|
465
|
-
const _OC = "OffCondition";
|
|
466
|
-
const _P = "Percentage";
|
|
467
|
-
const _PAMV = "PreviousActiveModelVersion";
|
|
468
|
-
const _PAMVA = "PreviousActiveModelVersionArn";
|
|
469
|
-
const _PAV = "PreviousActiveVersion";
|
|
470
|
-
const _PAVA = "PreviousActiveVersionArn";
|
|
471
|
-
const _PM = "PromoteMode";
|
|
472
|
-
const _PMM = "PriorModelMetrics";
|
|
473
|
-
const _PMVAA = "PreviousModelVersionActivatedAt";
|
|
474
|
-
const _PRI = "PolicyRevisionId";
|
|
475
|
-
const _PRP = "PutResourcePolicy";
|
|
476
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
477
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
478
|
-
const _Pr = "Prefix";
|
|
479
|
-
const _R = "Rating";
|
|
480
|
-
const _RA = "RoleArn";
|
|
481
|
-
const _RADID = "RetrainingAvailableDataInDays";
|
|
482
|
-
const _RAe = "ResourceArn";
|
|
483
|
-
const _RF = "RetrainingFrequency";
|
|
484
|
-
const _RNFE = "ResourceNotFoundException";
|
|
485
|
-
const _RP = "ResourcePolicy";
|
|
486
|
-
const _RSD = "RetrainingStartDate";
|
|
487
|
-
const _RSS = "RetrainingSchedulerStatus";
|
|
488
|
-
const _RSSe = "RetrainingSchedulerSummaries";
|
|
489
|
-
const _RSSet = "RetrainingSchedulerSummary";
|
|
490
|
-
const _S = "Status";
|
|
491
|
-
const _SD = "StatusDetail";
|
|
492
|
-
const _SDA = "SourceDatasetArn";
|
|
493
|
-
const _SDIJ = "StartDataIngestionJob";
|
|
494
|
-
const _SDIJR = "StartDataIngestionJobRequest";
|
|
495
|
-
const _SDIJRt = "StartDataIngestionJobResponse";
|
|
496
|
-
const _SIC = "S3InputConfiguration";
|
|
497
|
-
const _SIS = "StartInferenceScheduler";
|
|
498
|
-
const _SISR = "StartInferenceSchedulerRequest";
|
|
499
|
-
const _SISRt = "StartInferenceSchedulerResponse";
|
|
500
|
-
const _SISRto = "StopInferenceSchedulerRequest";
|
|
501
|
-
const _SISRtop = "StopInferenceSchedulerResponse";
|
|
502
|
-
const _SISt = "StopInferenceScheduler";
|
|
503
|
-
const _SJIDS = "SynthesizedJsonInlineDataSchema";
|
|
504
|
-
const _SJMM = "SynthesizedJsonModelMetrics";
|
|
505
|
-
const _SMVA = "SourceModelVersionArn";
|
|
506
|
-
const _SN = "SensorName";
|
|
507
|
-
const _SO = "S3Object";
|
|
508
|
-
const _SOC = "S3OutputConfiguration";
|
|
509
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
510
|
-
const _SRS = "StartRetrainingScheduler";
|
|
511
|
-
const _SRSR = "StartRetrainingSchedulerRequest";
|
|
512
|
-
const _SRSRt = "StartRetrainingSchedulerResponse";
|
|
513
|
-
const _SRSRto = "StopRetrainingSchedulerRequest";
|
|
514
|
-
const _SRSRtop = "StopRetrainingSchedulerResponse";
|
|
515
|
-
const _SRSt = "StopRetrainingScheduler";
|
|
516
|
-
const _SSKKI = "ServerSideKmsKeyId";
|
|
517
|
-
const _SSS = "SensorStatisticsSummaries";
|
|
518
|
-
const _SSSe = "SensorStatisticsSummary";
|
|
519
|
-
const _SST = "ScheduledStartTime";
|
|
520
|
-
const _ST = "StartTime";
|
|
521
|
-
const _STo = "SourceType";
|
|
522
|
-
const _SWSDR = "SensorsWithShortDateRange";
|
|
523
|
-
const _Sc = "Schema";
|
|
524
|
-
const _T = "Tags";
|
|
525
|
-
const _TDET = "TrainingDataEndTime";
|
|
526
|
-
const _TDST = "TrainingDataStartTime";
|
|
527
|
-
const _TE = "ThrottlingException";
|
|
528
|
-
const _TEET = "TrainingExecutionEndTime";
|
|
529
|
-
const _TEST = "TrainingExecutionStartTime";
|
|
530
|
-
const _TF = "TimestampFormat";
|
|
531
|
-
const _TK = "TagKeys";
|
|
532
|
-
const _TL = "TagList";
|
|
533
|
-
const _TNODT = "TotalNumberOfDuplicateTimestamps";
|
|
534
|
-
const _TNOF = "TotalNumberOfFiles";
|
|
535
|
-
const _TNOIV = "TotalNumberOfInvalidValues";
|
|
536
|
-
const _TNOMV = "TotalNumberOfMissingValues";
|
|
537
|
-
const _TNOUT = "TotalNumberOfUnsupportedTimestamps";
|
|
538
|
-
const _TR = "TagResource";
|
|
539
|
-
const _TRR = "TagResourceRequest";
|
|
540
|
-
const _TRRa = "TagResourceResponse";
|
|
541
|
-
const _TSR = "TargetSamplingRate";
|
|
542
|
-
const _Ta = "Tag";
|
|
543
|
-
const _UA = "UpdatedAt";
|
|
544
|
-
const _UAMV = "UpdateActiveModelVersion";
|
|
545
|
-
const _UAMVR = "UpdateActiveModelVersionRequest";
|
|
546
|
-
const _UAMVRp = "UpdateActiveModelVersionResponse";
|
|
547
|
-
const _UIS = "UpdateInferenceScheduler";
|
|
548
|
-
const _UISR = "UpdateInferenceSchedulerRequest";
|
|
549
|
-
const _ULG = "UpdateLabelGroup";
|
|
550
|
-
const _ULGR = "UpdateLabelGroupRequest";
|
|
551
|
-
const _UM = "UpdateModel";
|
|
552
|
-
const _UMR = "UpdateModelRequest";
|
|
553
|
-
const _UR = "UntagResource";
|
|
554
|
-
const _URR = "UntagResourceRequest";
|
|
555
|
-
const _URRn = "UntagResourceResponse";
|
|
556
|
-
const _URS = "UpdateRetrainingScheduler";
|
|
557
|
-
const _URSR = "UpdateRetrainingSchedulerRequest";
|
|
558
|
-
const _UT = "UnsupportedTimestamps";
|
|
559
|
-
const _V = "Value";
|
|
560
|
-
const _VE = "ValidationException";
|
|
561
|
-
const _a = "application/json";
|
|
562
|
-
const _c = "client";
|
|
563
|
-
const _e = "error";
|
|
564
|
-
const _hE = "httpError";
|
|
565
|
-
const _mT = "mediaType";
|
|
566
|
-
const _s = "server";
|
|
567
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lookoutequipment";
|
|
568
|
-
const n0 = "com.amazonaws.lookoutequipment";
|
|
569
|
-
var SynthesizedJsonInlineDataSchema = [0, n0, _SJIDS, { [_mT]: _a }, 0];
|
|
570
|
-
var SynthesizedJsonModelMetrics = [0, n0, _SJMM, { [_mT]: _a }, 0];
|
|
571
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
572
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
573
|
-
[_M],
|
|
574
|
-
[0], 1
|
|
575
|
-
];
|
|
576
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
577
|
-
var CategoricalValues$ = [3, n0, _CV,
|
|
578
|
-
0,
|
|
579
|
-
[_S, _NOC],
|
|
580
|
-
[0, 1], 1
|
|
581
|
-
];
|
|
582
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
583
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
584
|
-
[_M],
|
|
585
|
-
[0], 1
|
|
586
|
-
];
|
|
587
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
588
|
-
var CountPercent$ = [3, n0, _CP,
|
|
589
|
-
0,
|
|
590
|
-
[_C, _P],
|
|
591
|
-
[1, 1], 2
|
|
592
|
-
];
|
|
593
|
-
var CreateDatasetRequest$ = [3, n0, _CDR,
|
|
594
|
-
0,
|
|
595
|
-
[_DN, _DS, _SSKKI, _CT, _T],
|
|
596
|
-
[0, [() => DatasetSchema$, 0], 0, [0, 4], () => TagList], 1
|
|
597
|
-
];
|
|
598
|
-
var CreateDatasetResponse$ = [3, n0, _CDRr,
|
|
599
|
-
0,
|
|
600
|
-
[_DN, _DA, _S],
|
|
601
|
-
[0, 0, 0]
|
|
602
|
-
];
|
|
603
|
-
var CreateInferenceSchedulerRequest$ = [3, n0, _CISR,
|
|
604
|
-
0,
|
|
605
|
-
[_MN, _ISN, _DUF, _DIC, _DOC, _RA, _DDOIM, _SSKKI, _CT, _T],
|
|
606
|
-
[0, 0, 0, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0, 1, 0, [0, 4], () => TagList], 6
|
|
607
|
-
];
|
|
608
|
-
var CreateInferenceSchedulerResponse$ = [3, n0, _CISRr,
|
|
609
|
-
0,
|
|
610
|
-
[_ISA, _ISN, _S, _MQ],
|
|
611
|
-
[0, 0, 0, 0]
|
|
612
|
-
];
|
|
613
|
-
var CreateLabelGroupRequest$ = [3, n0, _CLGR,
|
|
614
|
-
0,
|
|
615
|
-
[_LGN, _FC, _CT, _T],
|
|
616
|
-
[0, 64 | 0, [0, 4], () => TagList], 1
|
|
617
|
-
];
|
|
618
|
-
var CreateLabelGroupResponse$ = [3, n0, _CLGRr,
|
|
619
|
-
0,
|
|
620
|
-
[_LGN, _LGA],
|
|
621
|
-
[0, 0]
|
|
622
|
-
];
|
|
623
|
-
var CreateLabelRequest$ = [3, n0, _CLR,
|
|
624
|
-
0,
|
|
625
|
-
[_LGN, _ST, _ET, _R, _FCa, _N, _E, _CT],
|
|
626
|
-
[0, 4, 4, 0, 0, 0, 0, [0, 4]], 4
|
|
627
|
-
];
|
|
628
|
-
var CreateLabelResponse$ = [3, n0, _CLRr,
|
|
629
|
-
0,
|
|
630
|
-
[_LI],
|
|
631
|
-
[0]
|
|
632
|
-
];
|
|
633
|
-
var CreateModelRequest$ = [3, n0, _CMR,
|
|
634
|
-
0,
|
|
635
|
-
[_MN, _DN, _DS, _LIC, _CT, _TDST, _TDET, _EDST, _EDET, _RA, _DPPC, _SSKKI, _T, _OC, _MDOC],
|
|
636
|
-
[0, 0, [() => DatasetSchema$, 0], () => LabelsInputConfiguration$, [0, 4], 4, 4, 4, 4, 0, () => DataPreProcessingConfiguration$, 0, () => TagList, 0, () => ModelDiagnosticsOutputConfiguration$], 2
|
|
637
|
-
];
|
|
638
|
-
var CreateModelResponse$ = [3, n0, _CMRr,
|
|
639
|
-
0,
|
|
640
|
-
[_MA, _S],
|
|
641
|
-
[0, 0]
|
|
642
|
-
];
|
|
643
|
-
var CreateRetrainingSchedulerRequest$ = [3, n0, _CRSR,
|
|
644
|
-
0,
|
|
645
|
-
[_MN, _RF, _LW, _RSD, _PM, _CT],
|
|
646
|
-
[0, 0, 0, 4, 0, [0, 4]], 3
|
|
647
|
-
];
|
|
648
|
-
var CreateRetrainingSchedulerResponse$ = [3, n0, _CRSRr,
|
|
649
|
-
0,
|
|
650
|
-
[_MN, _MA, _S],
|
|
651
|
-
[0, 0, 0]
|
|
652
|
-
];
|
|
653
|
-
var DataIngestionJobSummary$ = [3, n0, _DIJS,
|
|
654
|
-
0,
|
|
655
|
-
[_JI, _DN, _DA, _IIC, _S],
|
|
656
|
-
[0, 0, 0, () => IngestionInputConfiguration$, 0]
|
|
657
|
-
];
|
|
658
|
-
var DataPreProcessingConfiguration$ = [3, n0, _DPPC,
|
|
659
|
-
0,
|
|
660
|
-
[_TSR],
|
|
661
|
-
[0]
|
|
662
|
-
];
|
|
663
|
-
var DataQualitySummary$ = [3, n0, _DQS,
|
|
664
|
-
0,
|
|
665
|
-
[_ISD, _MSD, _ISDn, _UT, _DT],
|
|
666
|
-
[() => InsufficientSensorData$, () => MissingSensorData$, () => InvalidSensorData$, () => UnsupportedTimestamps$, () => DuplicateTimestamps$], 5
|
|
667
|
-
];
|
|
668
|
-
var DatasetSchema$ = [3, n0, _DS,
|
|
669
|
-
0,
|
|
670
|
-
[_IDS],
|
|
671
|
-
[[() => SynthesizedJsonInlineDataSchema, 0]]
|
|
672
|
-
];
|
|
673
|
-
var DatasetSummary$ = [3, n0, _DSa,
|
|
674
|
-
0,
|
|
675
|
-
[_DN, _DA, _S, _CA],
|
|
676
|
-
[0, 0, 0, 4]
|
|
677
|
-
];
|
|
678
|
-
var DeleteDatasetRequest$ = [3, n0, _DDR,
|
|
679
|
-
0,
|
|
680
|
-
[_DN],
|
|
681
|
-
[0], 1
|
|
682
|
-
];
|
|
683
|
-
var DeleteInferenceSchedulerRequest$ = [3, n0, _DISR,
|
|
684
|
-
0,
|
|
685
|
-
[_ISN],
|
|
686
|
-
[0], 1
|
|
687
|
-
];
|
|
688
|
-
var DeleteLabelGroupRequest$ = [3, n0, _DLGR,
|
|
689
|
-
0,
|
|
690
|
-
[_LGN],
|
|
691
|
-
[0], 1
|
|
692
|
-
];
|
|
693
|
-
var DeleteLabelRequest$ = [3, n0, _DLR,
|
|
694
|
-
0,
|
|
695
|
-
[_LGN, _LI],
|
|
696
|
-
[0, 0], 2
|
|
697
|
-
];
|
|
698
|
-
var DeleteModelRequest$ = [3, n0, _DMR,
|
|
699
|
-
0,
|
|
700
|
-
[_MN],
|
|
701
|
-
[0], 1
|
|
702
|
-
];
|
|
703
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
704
|
-
0,
|
|
705
|
-
[_RAe],
|
|
706
|
-
[0], 1
|
|
707
|
-
];
|
|
708
|
-
var DeleteRetrainingSchedulerRequest$ = [3, n0, _DRSR,
|
|
709
|
-
0,
|
|
710
|
-
[_MN],
|
|
711
|
-
[0], 1
|
|
712
|
-
];
|
|
713
|
-
var DescribeDataIngestionJobRequest$ = [3, n0, _DDIJR,
|
|
714
|
-
0,
|
|
715
|
-
[_JI],
|
|
716
|
-
[0], 1
|
|
717
|
-
];
|
|
718
|
-
var DescribeDataIngestionJobResponse$ = [3, n0, _DDIJRe,
|
|
719
|
-
0,
|
|
720
|
-
[_JI, _DA, _IIC, _RA, _CA, _S, _FR, _DQS, _IFS, _SD, _IDSn, _DST, _DET, _SDA],
|
|
721
|
-
[0, 0, () => IngestionInputConfiguration$, 0, 4, 0, 0, () => DataQualitySummary$, () => IngestedFilesSummary$, 0, 1, 4, 4, 0]
|
|
722
|
-
];
|
|
723
|
-
var DescribeDatasetRequest$ = [3, n0, _DDRe,
|
|
724
|
-
0,
|
|
725
|
-
[_DN],
|
|
726
|
-
[0], 1
|
|
727
|
-
];
|
|
728
|
-
var DescribeDatasetResponse$ = [3, n0, _DDRes,
|
|
729
|
-
0,
|
|
730
|
-
[_DN, _DA, _CA, _LUA, _S, _Sc, _SSKKI, _IIC, _DQS, _IFS, _RA, _DST, _DET, _SDA],
|
|
731
|
-
[0, 0, 4, 4, 0, [() => SynthesizedJsonInlineDataSchema, 0], 0, () => IngestionInputConfiguration$, () => DataQualitySummary$, () => IngestedFilesSummary$, 0, 4, 4, 0]
|
|
732
|
-
];
|
|
733
|
-
var DescribeInferenceSchedulerRequest$ = [3, n0, _DISRe,
|
|
734
|
-
0,
|
|
735
|
-
[_ISN],
|
|
736
|
-
[0], 1
|
|
737
|
-
];
|
|
738
|
-
var DescribeInferenceSchedulerResponse$ = [3, n0, _DISRes,
|
|
739
|
-
0,
|
|
740
|
-
[_MA, _MN, _ISN, _ISA, _S, _DDOIM, _DUF, _CA, _UA, _DIC, _DOC, _RA, _SSKKI, _LIR],
|
|
741
|
-
[0, 0, 0, 0, 0, 1, 0, 4, 4, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0, 0, 0]
|
|
742
|
-
];
|
|
743
|
-
var DescribeLabelGroupRequest$ = [3, n0, _DLGRe,
|
|
744
|
-
0,
|
|
745
|
-
[_LGN],
|
|
746
|
-
[0], 1
|
|
747
|
-
];
|
|
748
|
-
var DescribeLabelGroupResponse$ = [3, n0, _DLGRes,
|
|
749
|
-
0,
|
|
750
|
-
[_LGN, _LGA, _FC, _CA, _UA],
|
|
751
|
-
[0, 0, 64 | 0, 4, 4]
|
|
752
|
-
];
|
|
753
|
-
var DescribeLabelRequest$ = [3, n0, _DLRe,
|
|
754
|
-
0,
|
|
755
|
-
[_LGN, _LI],
|
|
756
|
-
[0, 0], 2
|
|
757
|
-
];
|
|
758
|
-
var DescribeLabelResponse$ = [3, n0, _DLRes,
|
|
759
|
-
0,
|
|
760
|
-
[_LGN, _LGA, _LI, _ST, _ET, _R, _FCa, _N, _E, _CA],
|
|
761
|
-
[0, 0, 0, 4, 4, 0, 0, 0, 0, 4]
|
|
762
|
-
];
|
|
763
|
-
var DescribeModelRequest$ = [3, n0, _DMRe,
|
|
764
|
-
0,
|
|
765
|
-
[_MN],
|
|
766
|
-
[0], 1
|
|
767
|
-
];
|
|
768
|
-
var DescribeModelResponse$ = [3, n0, _DMRes,
|
|
769
|
-
0,
|
|
770
|
-
[_MN, _MA, _DN, _DA, _Sc, _LIC, _TDST, _TDET, _EDST, _EDET, _RA, _DPPC, _S, _TEST, _TEET, _FR, _MM, _LUT, _CA, _SSKKI, _OC, _SMVA, _IJST, _IJET, _AMV, _AMVA, _MVAA, _PAMV, _PAMVA, _PMVAA, _PMM, _LSRFR, _LSRS, _LSRMV, _LSRST, _LSRADID, _NSRSD, _AIDST, _AIDET, _RSS, _MDOC, _MQ],
|
|
771
|
-
[0, 0, 0, 0, [() => SynthesizedJsonInlineDataSchema, 0], () => LabelsInputConfiguration$, 4, 4, 4, 4, 0, () => DataPreProcessingConfiguration$, 0, 4, 4, 0, [() => SynthesizedJsonModelMetrics, 0], 4, 4, 0, 0, 0, 4, 4, 1, 0, 4, 1, 0, 4, [() => SynthesizedJsonModelMetrics, 0], 0, 0, 1, 4, 1, 4, 4, 4, 0, () => ModelDiagnosticsOutputConfiguration$, 0]
|
|
772
|
-
];
|
|
773
|
-
var DescribeModelVersionRequest$ = [3, n0, _DMVR,
|
|
774
|
-
0,
|
|
775
|
-
[_MN, _MV],
|
|
776
|
-
[0, 1], 2
|
|
777
|
-
];
|
|
778
|
-
var DescribeModelVersionResponse$ = [3, n0, _DMVRe,
|
|
779
|
-
0,
|
|
780
|
-
[_MN, _MA, _MV, _MVA, _S, _STo, _DN, _DA, _Sc, _LIC, _TDST, _TDET, _EDST, _EDET, _RA, _DPPC, _TEST, _TEET, _FR, _MM, _LUT, _CA, _SSKKI, _OC, _SMVA, _IJST, _IJET, _IDSIB, _PMM, _RADID, _APR, _APRR, _MDOC, _MDRO, _MQ],
|
|
781
|
-
[0, 0, 1, 0, 0, 0, 0, 0, 0, () => LabelsInputConfiguration$, 4, 4, 4, 4, 0, () => DataPreProcessingConfiguration$, 4, 4, 0, 0, 4, 4, 0, 0, 0, 4, 4, 1, 0, 1, 0, 0, () => ModelDiagnosticsOutputConfiguration$, () => S3Object$, 0]
|
|
782
|
-
];
|
|
783
|
-
var DescribeResourcePolicyRequest$ = [3, n0, _DRPRe,
|
|
784
|
-
0,
|
|
785
|
-
[_RAe],
|
|
786
|
-
[0], 1
|
|
787
|
-
];
|
|
788
|
-
var DescribeResourcePolicyResponse$ = [3, n0, _DRPRes,
|
|
789
|
-
0,
|
|
790
|
-
[_PRI, _RP, _CTr, _LMT],
|
|
791
|
-
[0, 0, 4, 4]
|
|
792
|
-
];
|
|
793
|
-
var DescribeRetrainingSchedulerRequest$ = [3, n0, _DRSRe,
|
|
794
|
-
0,
|
|
795
|
-
[_MN],
|
|
796
|
-
[0], 1
|
|
797
|
-
];
|
|
798
|
-
var DescribeRetrainingSchedulerResponse$ = [3, n0, _DRSRes,
|
|
799
|
-
0,
|
|
800
|
-
[_MN, _MA, _RSD, _RF, _LW, _S, _PM, _CA, _UA],
|
|
801
|
-
[0, 0, 4, 0, 0, 0, 0, 4, 4]
|
|
802
|
-
];
|
|
803
|
-
var DuplicateTimestamps$ = [3, n0, _DT,
|
|
804
|
-
0,
|
|
805
|
-
[_TNODT],
|
|
806
|
-
[1], 1
|
|
807
|
-
];
|
|
808
|
-
var ImportDatasetRequest$ = [3, n0, _IDR,
|
|
809
|
-
0,
|
|
810
|
-
[_SDA, _DN, _CT, _SSKKI, _T],
|
|
811
|
-
[0, 0, [0, 4], 0, () => TagList], 1
|
|
812
|
-
];
|
|
813
|
-
var ImportDatasetResponse$ = [3, n0, _IDRm,
|
|
814
|
-
0,
|
|
815
|
-
[_DN, _DA, _S, _JI],
|
|
816
|
-
[0, 0, 0, 0]
|
|
817
|
-
];
|
|
818
|
-
var ImportModelVersionRequest$ = [3, n0, _IMVR,
|
|
819
|
-
0,
|
|
820
|
-
[_SMVA, _DN, _MN, _LIC, _CT, _RA, _SSKKI, _T, _IDIS],
|
|
821
|
-
[0, 0, 0, () => LabelsInputConfiguration$, [0, 4], 0, 0, () => TagList, 0], 2
|
|
822
|
-
];
|
|
823
|
-
var ImportModelVersionResponse$ = [3, n0, _IMVRm,
|
|
824
|
-
0,
|
|
825
|
-
[_MN, _MA, _MVA, _MV, _S],
|
|
826
|
-
[0, 0, 0, 1, 0]
|
|
827
|
-
];
|
|
828
|
-
var InferenceEventSummary$ = [3, n0, _IES,
|
|
829
|
-
0,
|
|
830
|
-
[_ISA, _ISN, _EST, _EET, _D, _EDIS],
|
|
831
|
-
[0, 0, 4, 4, 0, 1]
|
|
832
|
-
];
|
|
833
|
-
var InferenceExecutionSummary$ = [3, n0, _IESn,
|
|
834
|
-
0,
|
|
835
|
-
[_MN, _MA, _ISN, _ISA, _SST, _DST, _DET, _DIC, _DOC, _CRO, _S, _FR, _MV, _MVA],
|
|
836
|
-
[0, 0, 0, 0, 4, 4, 4, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, () => S3Object$, 0, 0, 1, 0]
|
|
837
|
-
];
|
|
838
|
-
var InferenceInputConfiguration$ = [3, n0, _IICn,
|
|
839
|
-
0,
|
|
840
|
-
[_SIC, _ITZO, _IINC],
|
|
841
|
-
[() => InferenceS3InputConfiguration$, 0, () => InferenceInputNameConfiguration$]
|
|
842
|
-
];
|
|
843
|
-
var InferenceInputNameConfiguration$ = [3, n0, _IINC,
|
|
844
|
-
0,
|
|
845
|
-
[_TF, _CTD],
|
|
846
|
-
[0, 0]
|
|
847
|
-
];
|
|
848
|
-
var InferenceOutputConfiguration$ = [3, n0, _IOC,
|
|
849
|
-
0,
|
|
850
|
-
[_SOC, _KKI],
|
|
851
|
-
[() => InferenceS3OutputConfiguration$, 0], 1
|
|
852
|
-
];
|
|
853
|
-
var InferenceS3InputConfiguration$ = [3, n0, _ISIC,
|
|
854
|
-
0,
|
|
855
|
-
[_B, _Pr],
|
|
856
|
-
[0, 0], 1
|
|
857
|
-
];
|
|
858
|
-
var InferenceS3OutputConfiguration$ = [3, n0, _ISOC,
|
|
859
|
-
0,
|
|
860
|
-
[_B, _Pr],
|
|
861
|
-
[0, 0], 1
|
|
862
|
-
];
|
|
863
|
-
var InferenceSchedulerSummary$ = [3, n0, _ISS,
|
|
864
|
-
0,
|
|
865
|
-
[_MN, _MA, _ISN, _ISA, _S, _DDOIM, _DUF, _LIR],
|
|
866
|
-
[0, 0, 0, 0, 0, 1, 0, 0]
|
|
867
|
-
];
|
|
868
|
-
var IngestedFilesSummary$ = [3, n0, _IFS,
|
|
869
|
-
0,
|
|
870
|
-
[_TNOF, _INOF, _DF],
|
|
871
|
-
[1, 1, () => ListOfDiscardedFiles], 2
|
|
872
|
-
];
|
|
873
|
-
var IngestionInputConfiguration$ = [3, n0, _IIC,
|
|
874
|
-
0,
|
|
875
|
-
[_SIC],
|
|
876
|
-
[() => IngestionS3InputConfiguration$], 1
|
|
877
|
-
];
|
|
878
|
-
var IngestionS3InputConfiguration$ = [3, n0, _ISICn,
|
|
879
|
-
0,
|
|
880
|
-
[_B, _Pr, _KP],
|
|
881
|
-
[0, 0, 0], 1
|
|
882
|
-
];
|
|
883
|
-
var InsufficientSensorData$ = [3, n0, _ISD,
|
|
884
|
-
0,
|
|
885
|
-
[_MCSD, _SWSDR],
|
|
886
|
-
[() => MissingCompleteSensorData$, () => SensorsWithShortDateRange$], 2
|
|
887
|
-
];
|
|
888
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
889
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
890
|
-
[_M],
|
|
891
|
-
[0], 1
|
|
892
|
-
];
|
|
893
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
894
|
-
var InvalidSensorData$ = [3, n0, _ISDn,
|
|
895
|
-
0,
|
|
896
|
-
[_ASC, _TNOIV],
|
|
897
|
-
[1, 1], 2
|
|
898
|
-
];
|
|
899
|
-
var LabelGroupSummary$ = [3, n0, _LGS,
|
|
900
|
-
0,
|
|
901
|
-
[_LGN, _LGA, _CA, _UA],
|
|
902
|
-
[0, 0, 4, 4]
|
|
903
|
-
];
|
|
904
|
-
var LabelsInputConfiguration$ = [3, n0, _LIC,
|
|
905
|
-
0,
|
|
906
|
-
[_SIC, _LGN],
|
|
907
|
-
[() => LabelsS3InputConfiguration$, 0]
|
|
908
|
-
];
|
|
909
|
-
var LabelsS3InputConfiguration$ = [3, n0, _LSIC,
|
|
910
|
-
0,
|
|
911
|
-
[_B, _Pr],
|
|
912
|
-
[0, 0], 1
|
|
913
|
-
];
|
|
914
|
-
var LabelSummary$ = [3, n0, _LS,
|
|
915
|
-
0,
|
|
916
|
-
[_LGN, _LI, _LGA, _ST, _ET, _R, _FCa, _E, _CA],
|
|
917
|
-
[0, 0, 0, 4, 4, 0, 0, 0, 4]
|
|
918
|
-
];
|
|
919
|
-
var LargeTimestampGaps$ = [3, n0, _LTG,
|
|
920
|
-
0,
|
|
921
|
-
[_S, _NOLTG, _MTGID],
|
|
922
|
-
[0, 1, 1], 1
|
|
923
|
-
];
|
|
924
|
-
var ListDataIngestionJobsRequest$ = [3, n0, _LDIJR,
|
|
925
|
-
0,
|
|
926
|
-
[_DN, _NT, _MR, _S],
|
|
927
|
-
[0, 0, 1, 0]
|
|
928
|
-
];
|
|
929
|
-
var ListDataIngestionJobsResponse$ = [3, n0, _LDIJRi,
|
|
930
|
-
0,
|
|
931
|
-
[_NT, _DIJSa],
|
|
932
|
-
[0, () => DataIngestionJobSummaries]
|
|
933
|
-
];
|
|
934
|
-
var ListDatasetsRequest$ = [3, n0, _LDR,
|
|
935
|
-
0,
|
|
936
|
-
[_NT, _MR, _DNBW],
|
|
937
|
-
[0, 1, 0]
|
|
938
|
-
];
|
|
939
|
-
var ListDatasetsResponse$ = [3, n0, _LDRi,
|
|
940
|
-
0,
|
|
941
|
-
[_NT, _DSat],
|
|
942
|
-
[0, () => DatasetSummaries]
|
|
943
|
-
];
|
|
944
|
-
var ListInferenceEventsRequest$ = [3, n0, _LIER,
|
|
945
|
-
0,
|
|
946
|
-
[_ISN, _IST, _IET, _NT, _MR],
|
|
947
|
-
[0, 4, 4, 0, 1], 3
|
|
948
|
-
];
|
|
949
|
-
var ListInferenceEventsResponse$ = [3, n0, _LIERi,
|
|
950
|
-
0,
|
|
951
|
-
[_NT, _IESnf],
|
|
952
|
-
[0, () => InferenceEventSummaries]
|
|
953
|
-
];
|
|
954
|
-
var ListInferenceExecutionsRequest$ = [3, n0, _LIERis,
|
|
955
|
-
0,
|
|
956
|
-
[_ISN, _NT, _MR, _DSTA, _DETB, _S],
|
|
957
|
-
[0, 0, 1, 4, 4, 0], 1
|
|
958
|
-
];
|
|
959
|
-
var ListInferenceExecutionsResponse$ = [3, n0, _LIERist,
|
|
960
|
-
0,
|
|
961
|
-
[_NT, _IESnfe],
|
|
962
|
-
[0, () => InferenceExecutionSummaries]
|
|
963
|
-
];
|
|
964
|
-
var ListInferenceSchedulersRequest$ = [3, n0, _LISR,
|
|
965
|
-
0,
|
|
966
|
-
[_NT, _MR, _ISNBW, _MN, _S],
|
|
967
|
-
[0, 1, 0, 0, 0]
|
|
968
|
-
];
|
|
969
|
-
var ListInferenceSchedulersResponse$ = [3, n0, _LISRi,
|
|
970
|
-
0,
|
|
971
|
-
[_NT, _ISSn],
|
|
972
|
-
[0, () => InferenceSchedulerSummaries]
|
|
973
|
-
];
|
|
974
|
-
var ListLabelGroupsRequest$ = [3, n0, _LLGR,
|
|
975
|
-
0,
|
|
976
|
-
[_LGNBW, _NT, _MR],
|
|
977
|
-
[0, 0, 1]
|
|
978
|
-
];
|
|
979
|
-
var ListLabelGroupsResponse$ = [3, n0, _LLGRi,
|
|
980
|
-
0,
|
|
981
|
-
[_NT, _LGSa],
|
|
982
|
-
[0, () => LabelGroupSummaries]
|
|
983
|
-
];
|
|
984
|
-
var ListLabelsRequest$ = [3, n0, _LLR,
|
|
985
|
-
0,
|
|
986
|
-
[_LGN, _IST, _IET, _FCa, _E, _NT, _MR],
|
|
987
|
-
[0, 4, 4, 0, 0, 0, 1], 1
|
|
988
|
-
];
|
|
989
|
-
var ListLabelsResponse$ = [3, n0, _LLRi,
|
|
990
|
-
0,
|
|
991
|
-
[_NT, _LSa],
|
|
992
|
-
[0, () => LabelSummaries]
|
|
993
|
-
];
|
|
994
|
-
var ListModelsRequest$ = [3, n0, _LMR,
|
|
995
|
-
0,
|
|
996
|
-
[_NT, _MR, _S, _MNBW, _DNBW],
|
|
997
|
-
[0, 1, 0, 0, 0]
|
|
998
|
-
];
|
|
999
|
-
var ListModelsResponse$ = [3, n0, _LMRi,
|
|
1000
|
-
0,
|
|
1001
|
-
[_NT, _MS],
|
|
1002
|
-
[0, () => ModelSummaries]
|
|
1003
|
-
];
|
|
1004
|
-
var ListModelVersionsRequest$ = [3, n0, _LMVR,
|
|
1005
|
-
0,
|
|
1006
|
-
[_MN, _NT, _MR, _S, _STo, _CAET, _CAST, _MMV, _MMVi],
|
|
1007
|
-
[0, 0, 1, 0, 0, 4, 4, 1, 1], 1
|
|
1008
|
-
];
|
|
1009
|
-
var ListModelVersionsResponse$ = [3, n0, _LMVRi,
|
|
1010
|
-
0,
|
|
1011
|
-
[_NT, _MVS],
|
|
1012
|
-
[0, () => ModelVersionSummaries]
|
|
1013
|
-
];
|
|
1014
|
-
var ListRetrainingSchedulersRequest$ = [3, n0, _LRSR,
|
|
1015
|
-
0,
|
|
1016
|
-
[_MNBW, _S, _NT, _MR],
|
|
1017
|
-
[0, 0, 0, 1]
|
|
1018
|
-
];
|
|
1019
|
-
var ListRetrainingSchedulersResponse$ = [3, n0, _LRSRi,
|
|
1020
|
-
0,
|
|
1021
|
-
[_RSSe, _NT],
|
|
1022
|
-
[() => RetrainingSchedulerSummaries, 0]
|
|
1023
|
-
];
|
|
1024
|
-
var ListSensorStatisticsRequest$ = [3, n0, _LSSR,
|
|
1025
|
-
0,
|
|
1026
|
-
[_DN, _IJI, _MR, _NT],
|
|
1027
|
-
[0, 0, 1, 0], 1
|
|
1028
|
-
];
|
|
1029
|
-
var ListSensorStatisticsResponse$ = [3, n0, _LSSRi,
|
|
1030
|
-
0,
|
|
1031
|
-
[_SSS, _NT],
|
|
1032
|
-
[() => SensorStatisticsSummaries, 0]
|
|
1033
|
-
];
|
|
1034
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1035
|
-
0,
|
|
1036
|
-
[_RAe],
|
|
1037
|
-
[0], 1
|
|
1038
|
-
];
|
|
1039
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1040
|
-
0,
|
|
1041
|
-
[_T],
|
|
1042
|
-
[() => TagList]
|
|
1043
|
-
];
|
|
1044
|
-
var MissingCompleteSensorData$ = [3, n0, _MCSD,
|
|
1045
|
-
0,
|
|
1046
|
-
[_ASC],
|
|
1047
|
-
[1], 1
|
|
1048
|
-
];
|
|
1049
|
-
var MissingSensorData$ = [3, n0, _MSD,
|
|
1050
|
-
0,
|
|
1051
|
-
[_ASC, _TNOMV],
|
|
1052
|
-
[1, 1], 2
|
|
1053
|
-
];
|
|
1054
|
-
var ModelDiagnosticsOutputConfiguration$ = [3, n0, _MDOC,
|
|
1055
|
-
0,
|
|
1056
|
-
[_SOC, _KKI],
|
|
1057
|
-
[() => ModelDiagnosticsS3OutputConfiguration$, 0], 1
|
|
1058
|
-
];
|
|
1059
|
-
var ModelDiagnosticsS3OutputConfiguration$ = [3, n0, _MDSOC,
|
|
1060
|
-
0,
|
|
1061
|
-
[_B, _Pr],
|
|
1062
|
-
[0, 0], 1
|
|
1063
|
-
];
|
|
1064
|
-
var ModelSummary$ = [3, n0, _MSo,
|
|
1065
|
-
0,
|
|
1066
|
-
[_MN, _MA, _DN, _DA, _S, _CA, _AMV, _AMVA, _LSRS, _LSRMV, _LSRST, _NSRSD, _RSS, _MDOC, _MQ],
|
|
1067
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 4, 4, 0, () => ModelDiagnosticsOutputConfiguration$, 0]
|
|
1068
|
-
];
|
|
1069
|
-
var ModelVersionSummary$ = [3, n0, _MVSo,
|
|
1070
|
-
0,
|
|
1071
|
-
[_MN, _MA, _MV, _MVA, _CA, _S, _STo, _MQ],
|
|
1072
|
-
[0, 0, 1, 0, 4, 0, 0, 0]
|
|
1073
|
-
];
|
|
1074
|
-
var MonotonicValues$ = [3, n0, _MVo,
|
|
1075
|
-
0,
|
|
1076
|
-
[_S, _Mo],
|
|
1077
|
-
[0, 0], 1
|
|
1078
|
-
];
|
|
1079
|
-
var MultipleOperatingModes$ = [3, n0, _MOM,
|
|
1080
|
-
0,
|
|
1081
|
-
[_S],
|
|
1082
|
-
[0], 1
|
|
1083
|
-
];
|
|
1084
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1085
|
-
0,
|
|
1086
|
-
[_RAe, _RP, _PRI, _CT],
|
|
1087
|
-
[0, 0, 0, [0, 4]], 2
|
|
1088
|
-
];
|
|
1089
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1090
|
-
0,
|
|
1091
|
-
[_RAe, _PRI],
|
|
1092
|
-
[0, 0]
|
|
1093
|
-
];
|
|
1094
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1095
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1096
|
-
[_M],
|
|
1097
|
-
[0], 1
|
|
1098
|
-
];
|
|
1099
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1100
|
-
var RetrainingSchedulerSummary$ = [3, n0, _RSSet,
|
|
1101
|
-
0,
|
|
1102
|
-
[_MN, _MA, _S, _RSD, _RF, _LW],
|
|
1103
|
-
[0, 0, 0, 4, 0, 0]
|
|
1104
|
-
];
|
|
1105
|
-
var S3Object$ = [3, n0, _SO,
|
|
1106
|
-
0,
|
|
1107
|
-
[_B, _K],
|
|
1108
|
-
[0, 0], 2
|
|
1109
|
-
];
|
|
1110
|
-
var SensorStatisticsSummary$ = [3, n0, _SSSe,
|
|
1111
|
-
0,
|
|
1112
|
-
[_CN, _SN, _DE, _MVi, _IV, _IDE, _DT, _CV, _MOM, _LTG, _MVo, _DST, _DET],
|
|
1113
|
-
[0, 0, 2, () => CountPercent$, () => CountPercent$, () => CountPercent$, () => CountPercent$, () => CategoricalValues$, () => MultipleOperatingModes$, () => LargeTimestampGaps$, () => MonotonicValues$, 4, 4]
|
|
1114
|
-
];
|
|
1115
|
-
var SensorsWithShortDateRange$ = [3, n0, _SWSDR,
|
|
1116
|
-
0,
|
|
1117
|
-
[_ASC],
|
|
1118
|
-
[1], 1
|
|
1119
|
-
];
|
|
1120
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1121
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1122
|
-
[_M],
|
|
1123
|
-
[0], 1
|
|
1124
|
-
];
|
|
1125
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1126
|
-
var StartDataIngestionJobRequest$ = [3, n0, _SDIJR,
|
|
1127
|
-
0,
|
|
1128
|
-
[_DN, _IIC, _RA, _CT],
|
|
1129
|
-
[0, () => IngestionInputConfiguration$, 0, [0, 4]], 3
|
|
1130
|
-
];
|
|
1131
|
-
var StartDataIngestionJobResponse$ = [3, n0, _SDIJRt,
|
|
1132
|
-
0,
|
|
1133
|
-
[_JI, _S],
|
|
1134
|
-
[0, 0]
|
|
1135
|
-
];
|
|
1136
|
-
var StartInferenceSchedulerRequest$ = [3, n0, _SISR,
|
|
1137
|
-
0,
|
|
1138
|
-
[_ISN],
|
|
1139
|
-
[0], 1
|
|
1140
|
-
];
|
|
1141
|
-
var StartInferenceSchedulerResponse$ = [3, n0, _SISRt,
|
|
1142
|
-
0,
|
|
1143
|
-
[_MA, _MN, _ISN, _ISA, _S],
|
|
1144
|
-
[0, 0, 0, 0, 0]
|
|
1145
|
-
];
|
|
1146
|
-
var StartRetrainingSchedulerRequest$ = [3, n0, _SRSR,
|
|
1147
|
-
0,
|
|
1148
|
-
[_MN],
|
|
1149
|
-
[0], 1
|
|
1150
|
-
];
|
|
1151
|
-
var StartRetrainingSchedulerResponse$ = [3, n0, _SRSRt,
|
|
1152
|
-
0,
|
|
1153
|
-
[_MN, _MA, _S],
|
|
1154
|
-
[0, 0, 0]
|
|
1155
|
-
];
|
|
1156
|
-
var StopInferenceSchedulerRequest$ = [3, n0, _SISRto,
|
|
1157
|
-
0,
|
|
1158
|
-
[_ISN],
|
|
1159
|
-
[0], 1
|
|
1160
|
-
];
|
|
1161
|
-
var StopInferenceSchedulerResponse$ = [3, n0, _SISRtop,
|
|
1162
|
-
0,
|
|
1163
|
-
[_MA, _MN, _ISN, _ISA, _S],
|
|
1164
|
-
[0, 0, 0, 0, 0]
|
|
1165
|
-
];
|
|
1166
|
-
var StopRetrainingSchedulerRequest$ = [3, n0, _SRSRto,
|
|
1167
|
-
0,
|
|
1168
|
-
[_MN],
|
|
1169
|
-
[0], 1
|
|
1170
|
-
];
|
|
1171
|
-
var StopRetrainingSchedulerResponse$ = [3, n0, _SRSRtop,
|
|
1172
|
-
0,
|
|
1173
|
-
[_MN, _MA, _S],
|
|
1174
|
-
[0, 0, 0]
|
|
1175
|
-
];
|
|
1176
|
-
var Tag$ = [3, n0, _Ta,
|
|
1177
|
-
0,
|
|
1178
|
-
[_K, _V],
|
|
1179
|
-
[0, 0], 2
|
|
1180
|
-
];
|
|
1181
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1182
|
-
0,
|
|
1183
|
-
[_RAe, _T],
|
|
1184
|
-
[0, () => TagList], 2
|
|
1185
|
-
];
|
|
1186
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1187
|
-
0,
|
|
1188
|
-
[],
|
|
1189
|
-
[]
|
|
1190
|
-
];
|
|
1191
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1192
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1193
|
-
[_M],
|
|
1194
|
-
[0], 1
|
|
1195
|
-
];
|
|
1196
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1197
|
-
var UnsupportedTimestamps$ = [3, n0, _UT,
|
|
1198
|
-
0,
|
|
1199
|
-
[_TNOUT],
|
|
1200
|
-
[1], 1
|
|
1201
|
-
];
|
|
1202
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1203
|
-
0,
|
|
1204
|
-
[_RAe, _TK],
|
|
1205
|
-
[0, 64 | 0], 2
|
|
1206
|
-
];
|
|
1207
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1208
|
-
0,
|
|
1209
|
-
[],
|
|
1210
|
-
[]
|
|
1211
|
-
];
|
|
1212
|
-
var UpdateActiveModelVersionRequest$ = [3, n0, _UAMVR,
|
|
1213
|
-
0,
|
|
1214
|
-
[_MN, _MV],
|
|
1215
|
-
[0, 1], 2
|
|
1216
|
-
];
|
|
1217
|
-
var UpdateActiveModelVersionResponse$ = [3, n0, _UAMVRp,
|
|
1218
|
-
0,
|
|
1219
|
-
[_MN, _MA, _CAV, _PAV, _CAVA, _PAVA],
|
|
1220
|
-
[0, 0, 1, 1, 0, 0]
|
|
1221
|
-
];
|
|
1222
|
-
var UpdateInferenceSchedulerRequest$ = [3, n0, _UISR,
|
|
1223
|
-
0,
|
|
1224
|
-
[_ISN, _DDOIM, _DUF, _DIC, _DOC, _RA],
|
|
1225
|
-
[0, 1, 0, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0], 1
|
|
1226
|
-
];
|
|
1227
|
-
var UpdateLabelGroupRequest$ = [3, n0, _ULGR,
|
|
1228
|
-
0,
|
|
1229
|
-
[_LGN, _FC],
|
|
1230
|
-
[0, 64 | 0], 1
|
|
1231
|
-
];
|
|
1232
|
-
var UpdateModelRequest$ = [3, n0, _UMR,
|
|
1233
|
-
0,
|
|
1234
|
-
[_MN, _LIC, _RA, _MDOC],
|
|
1235
|
-
[0, () => LabelsInputConfiguration$, 0, () => ModelDiagnosticsOutputConfiguration$], 1
|
|
1236
|
-
];
|
|
1237
|
-
var UpdateRetrainingSchedulerRequest$ = [3, n0, _URSR,
|
|
1238
|
-
0,
|
|
1239
|
-
[_MN, _RSD, _RF, _LW, _PM],
|
|
1240
|
-
[0, 4, 0, 0, 0], 1
|
|
1241
|
-
];
|
|
1242
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1243
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1244
|
-
[_M],
|
|
1245
|
-
[0], 1
|
|
1246
|
-
];
|
|
1247
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1248
|
-
var __Unit = "unit";
|
|
1249
|
-
var LookoutEquipmentServiceException$ = [-3, _sm, "LookoutEquipmentServiceException", 0, [], []];
|
|
1250
|
-
schema.TypeRegistry.for(_sm).registerError(LookoutEquipmentServiceException$, LookoutEquipmentServiceException);
|
|
1251
|
-
var DataIngestionJobSummaries = [1, n0, _DIJSa,
|
|
1252
|
-
0, () => DataIngestionJobSummary$
|
|
1253
|
-
];
|
|
1254
|
-
var DatasetSummaries = [1, n0, _DSat,
|
|
1255
|
-
0, () => DatasetSummary$
|
|
1256
|
-
];
|
|
1257
|
-
var InferenceEventSummaries = [1, n0, _IESnf,
|
|
1258
|
-
0, () => InferenceEventSummary$
|
|
1259
|
-
];
|
|
1260
|
-
var InferenceExecutionSummaries = [1, n0, _IESnfe,
|
|
1261
|
-
0, () => InferenceExecutionSummary$
|
|
1262
|
-
];
|
|
1263
|
-
var InferenceSchedulerSummaries = [1, n0, _ISSn,
|
|
1264
|
-
0, () => InferenceSchedulerSummary$
|
|
1265
|
-
];
|
|
1266
|
-
var LabelGroupSummaries = [1, n0, _LGSa,
|
|
1267
|
-
0, () => LabelGroupSummary$
|
|
1268
|
-
];
|
|
1269
|
-
var LabelSummaries = [1, n0, _LSa,
|
|
1270
|
-
0, () => LabelSummary$
|
|
1271
|
-
];
|
|
1272
|
-
var ListOfDiscardedFiles = [1, n0, _LODF,
|
|
1273
|
-
0, () => S3Object$
|
|
1274
|
-
];
|
|
1275
|
-
var ModelSummaries = [1, n0, _MS,
|
|
1276
|
-
0, () => ModelSummary$
|
|
1277
|
-
];
|
|
1278
|
-
var ModelVersionSummaries = [1, n0, _MVS,
|
|
1279
|
-
0, () => ModelVersionSummary$
|
|
1280
|
-
];
|
|
1281
|
-
var RetrainingSchedulerSummaries = [1, n0, _RSSe,
|
|
1282
|
-
0, () => RetrainingSchedulerSummary$
|
|
1283
|
-
];
|
|
1284
|
-
var SensorStatisticsSummaries = [1, n0, _SSS,
|
|
1285
|
-
0, () => SensorStatisticsSummary$
|
|
1286
|
-
];
|
|
1287
|
-
var TagList = [1, n0, _TL,
|
|
1288
|
-
0, () => Tag$
|
|
1289
|
-
];
|
|
1290
|
-
var CreateDataset$ = [9, n0, _CD,
|
|
1291
|
-
0, () => CreateDatasetRequest$, () => CreateDatasetResponse$
|
|
1292
|
-
];
|
|
1293
|
-
var CreateInferenceScheduler$ = [9, n0, _CIS,
|
|
1294
|
-
0, () => CreateInferenceSchedulerRequest$, () => CreateInferenceSchedulerResponse$
|
|
1295
|
-
];
|
|
1296
|
-
var CreateLabel$ = [9, n0, _CL,
|
|
1297
|
-
0, () => CreateLabelRequest$, () => CreateLabelResponse$
|
|
1298
|
-
];
|
|
1299
|
-
var CreateLabelGroup$ = [9, n0, _CLG,
|
|
1300
|
-
0, () => CreateLabelGroupRequest$, () => CreateLabelGroupResponse$
|
|
1301
|
-
];
|
|
1302
|
-
var CreateModel$ = [9, n0, _CM,
|
|
1303
|
-
0, () => CreateModelRequest$, () => CreateModelResponse$
|
|
1304
|
-
];
|
|
1305
|
-
var CreateRetrainingScheduler$ = [9, n0, _CRS,
|
|
1306
|
-
0, () => CreateRetrainingSchedulerRequest$, () => CreateRetrainingSchedulerResponse$
|
|
1307
|
-
];
|
|
1308
|
-
var DeleteDataset$ = [9, n0, _DD,
|
|
1309
|
-
0, () => DeleteDatasetRequest$, () => __Unit
|
|
1310
|
-
];
|
|
1311
|
-
var DeleteInferenceScheduler$ = [9, n0, _DIS,
|
|
1312
|
-
0, () => DeleteInferenceSchedulerRequest$, () => __Unit
|
|
1313
|
-
];
|
|
1314
|
-
var DeleteLabel$ = [9, n0, _DL,
|
|
1315
|
-
0, () => DeleteLabelRequest$, () => __Unit
|
|
1316
|
-
];
|
|
1317
|
-
var DeleteLabelGroup$ = [9, n0, _DLG,
|
|
1318
|
-
0, () => DeleteLabelGroupRequest$, () => __Unit
|
|
1319
|
-
];
|
|
1320
|
-
var DeleteModel$ = [9, n0, _DM,
|
|
1321
|
-
0, () => DeleteModelRequest$, () => __Unit
|
|
1322
|
-
];
|
|
1323
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1324
|
-
0, () => DeleteResourcePolicyRequest$, () => __Unit
|
|
1325
|
-
];
|
|
1326
|
-
var DeleteRetrainingScheduler$ = [9, n0, _DRS,
|
|
1327
|
-
0, () => DeleteRetrainingSchedulerRequest$, () => __Unit
|
|
1328
|
-
];
|
|
1329
|
-
var DescribeDataIngestionJob$ = [9, n0, _DDIJ,
|
|
1330
|
-
0, () => DescribeDataIngestionJobRequest$, () => DescribeDataIngestionJobResponse$
|
|
1331
|
-
];
|
|
1332
|
-
var DescribeDataset$ = [9, n0, _DDe,
|
|
1333
|
-
0, () => DescribeDatasetRequest$, () => DescribeDatasetResponse$
|
|
1334
|
-
];
|
|
1335
|
-
var DescribeInferenceScheduler$ = [9, n0, _DISe,
|
|
1336
|
-
0, () => DescribeInferenceSchedulerRequest$, () => DescribeInferenceSchedulerResponse$
|
|
1337
|
-
];
|
|
1338
|
-
var DescribeLabel$ = [9, n0, _DLe,
|
|
1339
|
-
0, () => DescribeLabelRequest$, () => DescribeLabelResponse$
|
|
1340
|
-
];
|
|
1341
|
-
var DescribeLabelGroup$ = [9, n0, _DLGe,
|
|
1342
|
-
0, () => DescribeLabelGroupRequest$, () => DescribeLabelGroupResponse$
|
|
1343
|
-
];
|
|
1344
|
-
var DescribeModel$ = [9, n0, _DMe,
|
|
1345
|
-
0, () => DescribeModelRequest$, () => DescribeModelResponse$
|
|
1346
|
-
];
|
|
1347
|
-
var DescribeModelVersion$ = [9, n0, _DMV,
|
|
1348
|
-
0, () => DescribeModelVersionRequest$, () => DescribeModelVersionResponse$
|
|
1349
|
-
];
|
|
1350
|
-
var DescribeResourcePolicy$ = [9, n0, _DRPe,
|
|
1351
|
-
0, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
|
|
1352
|
-
];
|
|
1353
|
-
var DescribeRetrainingScheduler$ = [9, n0, _DRSe,
|
|
1354
|
-
0, () => DescribeRetrainingSchedulerRequest$, () => DescribeRetrainingSchedulerResponse$
|
|
1355
|
-
];
|
|
1356
|
-
var ImportDataset$ = [9, n0, _ID,
|
|
1357
|
-
0, () => ImportDatasetRequest$, () => ImportDatasetResponse$
|
|
1358
|
-
];
|
|
1359
|
-
var ImportModelVersion$ = [9, n0, _IMV,
|
|
1360
|
-
0, () => ImportModelVersionRequest$, () => ImportModelVersionResponse$
|
|
1361
|
-
];
|
|
1362
|
-
var ListDataIngestionJobs$ = [9, n0, _LDIJ,
|
|
1363
|
-
0, () => ListDataIngestionJobsRequest$, () => ListDataIngestionJobsResponse$
|
|
1364
|
-
];
|
|
1365
|
-
var ListDatasets$ = [9, n0, _LD,
|
|
1366
|
-
0, () => ListDatasetsRequest$, () => ListDatasetsResponse$
|
|
1367
|
-
];
|
|
1368
|
-
var ListInferenceEvents$ = [9, n0, _LIE,
|
|
1369
|
-
0, () => ListInferenceEventsRequest$, () => ListInferenceEventsResponse$
|
|
1370
|
-
];
|
|
1371
|
-
var ListInferenceExecutions$ = [9, n0, _LIEi,
|
|
1372
|
-
0, () => ListInferenceExecutionsRequest$, () => ListInferenceExecutionsResponse$
|
|
1373
|
-
];
|
|
1374
|
-
var ListInferenceSchedulers$ = [9, n0, _LIS,
|
|
1375
|
-
0, () => ListInferenceSchedulersRequest$, () => ListInferenceSchedulersResponse$
|
|
1376
|
-
];
|
|
1377
|
-
var ListLabelGroups$ = [9, n0, _LLG,
|
|
1378
|
-
0, () => ListLabelGroupsRequest$, () => ListLabelGroupsResponse$
|
|
1379
|
-
];
|
|
1380
|
-
var ListLabels$ = [9, n0, _LL,
|
|
1381
|
-
0, () => ListLabelsRequest$, () => ListLabelsResponse$
|
|
1382
|
-
];
|
|
1383
|
-
var ListModels$ = [9, n0, _LM,
|
|
1384
|
-
0, () => ListModelsRequest$, () => ListModelsResponse$
|
|
1385
|
-
];
|
|
1386
|
-
var ListModelVersions$ = [9, n0, _LMV,
|
|
1387
|
-
0, () => ListModelVersionsRequest$, () => ListModelVersionsResponse$
|
|
1388
|
-
];
|
|
1389
|
-
var ListRetrainingSchedulers$ = [9, n0, _LRS,
|
|
1390
|
-
0, () => ListRetrainingSchedulersRequest$, () => ListRetrainingSchedulersResponse$
|
|
1391
|
-
];
|
|
1392
|
-
var ListSensorStatistics$ = [9, n0, _LSS,
|
|
1393
|
-
0, () => ListSensorStatisticsRequest$, () => ListSensorStatisticsResponse$
|
|
1394
|
-
];
|
|
1395
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1396
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1397
|
-
];
|
|
1398
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1399
|
-
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
1400
|
-
];
|
|
1401
|
-
var StartDataIngestionJob$ = [9, n0, _SDIJ,
|
|
1402
|
-
0, () => StartDataIngestionJobRequest$, () => StartDataIngestionJobResponse$
|
|
1403
|
-
];
|
|
1404
|
-
var StartInferenceScheduler$ = [9, n0, _SIS,
|
|
1405
|
-
0, () => StartInferenceSchedulerRequest$, () => StartInferenceSchedulerResponse$
|
|
1406
|
-
];
|
|
1407
|
-
var StartRetrainingScheduler$ = [9, n0, _SRS,
|
|
1408
|
-
0, () => StartRetrainingSchedulerRequest$, () => StartRetrainingSchedulerResponse$
|
|
1409
|
-
];
|
|
1410
|
-
var StopInferenceScheduler$ = [9, n0, _SISt,
|
|
1411
|
-
0, () => StopInferenceSchedulerRequest$, () => StopInferenceSchedulerResponse$
|
|
1412
|
-
];
|
|
1413
|
-
var StopRetrainingScheduler$ = [9, n0, _SRSt,
|
|
1414
|
-
0, () => StopRetrainingSchedulerRequest$, () => StopRetrainingSchedulerResponse$
|
|
1415
|
-
];
|
|
1416
|
-
var TagResource$ = [9, n0, _TR,
|
|
1417
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1418
|
-
];
|
|
1419
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1420
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1421
|
-
];
|
|
1422
|
-
var UpdateActiveModelVersion$ = [9, n0, _UAMV,
|
|
1423
|
-
0, () => UpdateActiveModelVersionRequest$, () => UpdateActiveModelVersionResponse$
|
|
1424
|
-
];
|
|
1425
|
-
var UpdateInferenceScheduler$ = [9, n0, _UIS,
|
|
1426
|
-
0, () => UpdateInferenceSchedulerRequest$, () => __Unit
|
|
1427
|
-
];
|
|
1428
|
-
var UpdateLabelGroup$ = [9, n0, _ULG,
|
|
1429
|
-
0, () => UpdateLabelGroupRequest$, () => __Unit
|
|
1430
|
-
];
|
|
1431
|
-
var UpdateModel$ = [9, n0, _UM,
|
|
1432
|
-
0, () => UpdateModelRequest$, () => __Unit
|
|
1433
|
-
];
|
|
1434
|
-
var UpdateRetrainingScheduler$ = [9, n0, _URS,
|
|
1435
|
-
0, () => UpdateRetrainingSchedulerRequest$, () => __Unit
|
|
1436
|
-
];
|
|
1437
|
-
|
|
1438
116
|
class CreateDatasetCommand extends smithyClient.Command
|
|
1439
117
|
.classBuilder()
|
|
1440
118
|
.ep(commonParams)
|
|
@@ -1443,7 +121,7 @@ class CreateDatasetCommand extends smithyClient.Command
|
|
|
1443
121
|
})
|
|
1444
122
|
.s("AWSLookoutEquipmentFrontendService", "CreateDataset", {})
|
|
1445
123
|
.n("LookoutEquipmentClient", "CreateDatasetCommand")
|
|
1446
|
-
.sc(CreateDataset$)
|
|
124
|
+
.sc(schemas_0.CreateDataset$)
|
|
1447
125
|
.build() {
|
|
1448
126
|
}
|
|
1449
127
|
|
|
@@ -1455,7 +133,7 @@ class CreateInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1455
133
|
})
|
|
1456
134
|
.s("AWSLookoutEquipmentFrontendService", "CreateInferenceScheduler", {})
|
|
1457
135
|
.n("LookoutEquipmentClient", "CreateInferenceSchedulerCommand")
|
|
1458
|
-
.sc(CreateInferenceScheduler$)
|
|
136
|
+
.sc(schemas_0.CreateInferenceScheduler$)
|
|
1459
137
|
.build() {
|
|
1460
138
|
}
|
|
1461
139
|
|
|
@@ -1467,7 +145,7 @@ class CreateLabelCommand extends smithyClient.Command
|
|
|
1467
145
|
})
|
|
1468
146
|
.s("AWSLookoutEquipmentFrontendService", "CreateLabel", {})
|
|
1469
147
|
.n("LookoutEquipmentClient", "CreateLabelCommand")
|
|
1470
|
-
.sc(CreateLabel$)
|
|
148
|
+
.sc(schemas_0.CreateLabel$)
|
|
1471
149
|
.build() {
|
|
1472
150
|
}
|
|
1473
151
|
|
|
@@ -1479,7 +157,7 @@ class CreateLabelGroupCommand extends smithyClient.Command
|
|
|
1479
157
|
})
|
|
1480
158
|
.s("AWSLookoutEquipmentFrontendService", "CreateLabelGroup", {})
|
|
1481
159
|
.n("LookoutEquipmentClient", "CreateLabelGroupCommand")
|
|
1482
|
-
.sc(CreateLabelGroup$)
|
|
160
|
+
.sc(schemas_0.CreateLabelGroup$)
|
|
1483
161
|
.build() {
|
|
1484
162
|
}
|
|
1485
163
|
|
|
@@ -1491,7 +169,7 @@ class CreateModelCommand extends smithyClient.Command
|
|
|
1491
169
|
})
|
|
1492
170
|
.s("AWSLookoutEquipmentFrontendService", "CreateModel", {})
|
|
1493
171
|
.n("LookoutEquipmentClient", "CreateModelCommand")
|
|
1494
|
-
.sc(CreateModel$)
|
|
172
|
+
.sc(schemas_0.CreateModel$)
|
|
1495
173
|
.build() {
|
|
1496
174
|
}
|
|
1497
175
|
|
|
@@ -1503,7 +181,7 @@ class CreateRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
1503
181
|
})
|
|
1504
182
|
.s("AWSLookoutEquipmentFrontendService", "CreateRetrainingScheduler", {})
|
|
1505
183
|
.n("LookoutEquipmentClient", "CreateRetrainingSchedulerCommand")
|
|
1506
|
-
.sc(CreateRetrainingScheduler$)
|
|
184
|
+
.sc(schemas_0.CreateRetrainingScheduler$)
|
|
1507
185
|
.build() {
|
|
1508
186
|
}
|
|
1509
187
|
|
|
@@ -1515,7 +193,7 @@ class DeleteDatasetCommand extends smithyClient.Command
|
|
|
1515
193
|
})
|
|
1516
194
|
.s("AWSLookoutEquipmentFrontendService", "DeleteDataset", {})
|
|
1517
195
|
.n("LookoutEquipmentClient", "DeleteDatasetCommand")
|
|
1518
|
-
.sc(DeleteDataset$)
|
|
196
|
+
.sc(schemas_0.DeleteDataset$)
|
|
1519
197
|
.build() {
|
|
1520
198
|
}
|
|
1521
199
|
|
|
@@ -1527,7 +205,7 @@ class DeleteInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1527
205
|
})
|
|
1528
206
|
.s("AWSLookoutEquipmentFrontendService", "DeleteInferenceScheduler", {})
|
|
1529
207
|
.n("LookoutEquipmentClient", "DeleteInferenceSchedulerCommand")
|
|
1530
|
-
.sc(DeleteInferenceScheduler$)
|
|
208
|
+
.sc(schemas_0.DeleteInferenceScheduler$)
|
|
1531
209
|
.build() {
|
|
1532
210
|
}
|
|
1533
211
|
|
|
@@ -1539,7 +217,7 @@ class DeleteLabelCommand extends smithyClient.Command
|
|
|
1539
217
|
})
|
|
1540
218
|
.s("AWSLookoutEquipmentFrontendService", "DeleteLabel", {})
|
|
1541
219
|
.n("LookoutEquipmentClient", "DeleteLabelCommand")
|
|
1542
|
-
.sc(DeleteLabel$)
|
|
220
|
+
.sc(schemas_0.DeleteLabel$)
|
|
1543
221
|
.build() {
|
|
1544
222
|
}
|
|
1545
223
|
|
|
@@ -1551,7 +229,7 @@ class DeleteLabelGroupCommand extends smithyClient.Command
|
|
|
1551
229
|
})
|
|
1552
230
|
.s("AWSLookoutEquipmentFrontendService", "DeleteLabelGroup", {})
|
|
1553
231
|
.n("LookoutEquipmentClient", "DeleteLabelGroupCommand")
|
|
1554
|
-
.sc(DeleteLabelGroup$)
|
|
232
|
+
.sc(schemas_0.DeleteLabelGroup$)
|
|
1555
233
|
.build() {
|
|
1556
234
|
}
|
|
1557
235
|
|
|
@@ -1563,7 +241,7 @@ class DeleteModelCommand extends smithyClient.Command
|
|
|
1563
241
|
})
|
|
1564
242
|
.s("AWSLookoutEquipmentFrontendService", "DeleteModel", {})
|
|
1565
243
|
.n("LookoutEquipmentClient", "DeleteModelCommand")
|
|
1566
|
-
.sc(DeleteModel$)
|
|
244
|
+
.sc(schemas_0.DeleteModel$)
|
|
1567
245
|
.build() {
|
|
1568
246
|
}
|
|
1569
247
|
|
|
@@ -1575,7 +253,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1575
253
|
})
|
|
1576
254
|
.s("AWSLookoutEquipmentFrontendService", "DeleteResourcePolicy", {})
|
|
1577
255
|
.n("LookoutEquipmentClient", "DeleteResourcePolicyCommand")
|
|
1578
|
-
.sc(DeleteResourcePolicy$)
|
|
256
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
1579
257
|
.build() {
|
|
1580
258
|
}
|
|
1581
259
|
|
|
@@ -1587,7 +265,7 @@ class DeleteRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
1587
265
|
})
|
|
1588
266
|
.s("AWSLookoutEquipmentFrontendService", "DeleteRetrainingScheduler", {})
|
|
1589
267
|
.n("LookoutEquipmentClient", "DeleteRetrainingSchedulerCommand")
|
|
1590
|
-
.sc(DeleteRetrainingScheduler$)
|
|
268
|
+
.sc(schemas_0.DeleteRetrainingScheduler$)
|
|
1591
269
|
.build() {
|
|
1592
270
|
}
|
|
1593
271
|
|
|
@@ -1599,7 +277,7 @@ class DescribeDataIngestionJobCommand extends smithyClient.Command
|
|
|
1599
277
|
})
|
|
1600
278
|
.s("AWSLookoutEquipmentFrontendService", "DescribeDataIngestionJob", {})
|
|
1601
279
|
.n("LookoutEquipmentClient", "DescribeDataIngestionJobCommand")
|
|
1602
|
-
.sc(DescribeDataIngestionJob$)
|
|
280
|
+
.sc(schemas_0.DescribeDataIngestionJob$)
|
|
1603
281
|
.build() {
|
|
1604
282
|
}
|
|
1605
283
|
|
|
@@ -1611,7 +289,7 @@ class DescribeDatasetCommand extends smithyClient.Command
|
|
|
1611
289
|
})
|
|
1612
290
|
.s("AWSLookoutEquipmentFrontendService", "DescribeDataset", {})
|
|
1613
291
|
.n("LookoutEquipmentClient", "DescribeDatasetCommand")
|
|
1614
|
-
.sc(DescribeDataset$)
|
|
292
|
+
.sc(schemas_0.DescribeDataset$)
|
|
1615
293
|
.build() {
|
|
1616
294
|
}
|
|
1617
295
|
|
|
@@ -1623,7 +301,7 @@ class DescribeInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1623
301
|
})
|
|
1624
302
|
.s("AWSLookoutEquipmentFrontendService", "DescribeInferenceScheduler", {})
|
|
1625
303
|
.n("LookoutEquipmentClient", "DescribeInferenceSchedulerCommand")
|
|
1626
|
-
.sc(DescribeInferenceScheduler$)
|
|
304
|
+
.sc(schemas_0.DescribeInferenceScheduler$)
|
|
1627
305
|
.build() {
|
|
1628
306
|
}
|
|
1629
307
|
|
|
@@ -1635,7 +313,7 @@ class DescribeLabelCommand extends smithyClient.Command
|
|
|
1635
313
|
})
|
|
1636
314
|
.s("AWSLookoutEquipmentFrontendService", "DescribeLabel", {})
|
|
1637
315
|
.n("LookoutEquipmentClient", "DescribeLabelCommand")
|
|
1638
|
-
.sc(DescribeLabel$)
|
|
316
|
+
.sc(schemas_0.DescribeLabel$)
|
|
1639
317
|
.build() {
|
|
1640
318
|
}
|
|
1641
319
|
|
|
@@ -1647,7 +325,7 @@ class DescribeLabelGroupCommand extends smithyClient.Command
|
|
|
1647
325
|
})
|
|
1648
326
|
.s("AWSLookoutEquipmentFrontendService", "DescribeLabelGroup", {})
|
|
1649
327
|
.n("LookoutEquipmentClient", "DescribeLabelGroupCommand")
|
|
1650
|
-
.sc(DescribeLabelGroup$)
|
|
328
|
+
.sc(schemas_0.DescribeLabelGroup$)
|
|
1651
329
|
.build() {
|
|
1652
330
|
}
|
|
1653
331
|
|
|
@@ -1659,7 +337,7 @@ class DescribeModelCommand extends smithyClient.Command
|
|
|
1659
337
|
})
|
|
1660
338
|
.s("AWSLookoutEquipmentFrontendService", "DescribeModel", {})
|
|
1661
339
|
.n("LookoutEquipmentClient", "DescribeModelCommand")
|
|
1662
|
-
.sc(DescribeModel$)
|
|
340
|
+
.sc(schemas_0.DescribeModel$)
|
|
1663
341
|
.build() {
|
|
1664
342
|
}
|
|
1665
343
|
|
|
@@ -1671,7 +349,7 @@ class DescribeModelVersionCommand extends smithyClient.Command
|
|
|
1671
349
|
})
|
|
1672
350
|
.s("AWSLookoutEquipmentFrontendService", "DescribeModelVersion", {})
|
|
1673
351
|
.n("LookoutEquipmentClient", "DescribeModelVersionCommand")
|
|
1674
|
-
.sc(DescribeModelVersion$)
|
|
352
|
+
.sc(schemas_0.DescribeModelVersion$)
|
|
1675
353
|
.build() {
|
|
1676
354
|
}
|
|
1677
355
|
|
|
@@ -1683,7 +361,7 @@ class DescribeResourcePolicyCommand extends smithyClient.Command
|
|
|
1683
361
|
})
|
|
1684
362
|
.s("AWSLookoutEquipmentFrontendService", "DescribeResourcePolicy", {})
|
|
1685
363
|
.n("LookoutEquipmentClient", "DescribeResourcePolicyCommand")
|
|
1686
|
-
.sc(DescribeResourcePolicy$)
|
|
364
|
+
.sc(schemas_0.DescribeResourcePolicy$)
|
|
1687
365
|
.build() {
|
|
1688
366
|
}
|
|
1689
367
|
|
|
@@ -1695,7 +373,7 @@ class DescribeRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
1695
373
|
})
|
|
1696
374
|
.s("AWSLookoutEquipmentFrontendService", "DescribeRetrainingScheduler", {})
|
|
1697
375
|
.n("LookoutEquipmentClient", "DescribeRetrainingSchedulerCommand")
|
|
1698
|
-
.sc(DescribeRetrainingScheduler$)
|
|
376
|
+
.sc(schemas_0.DescribeRetrainingScheduler$)
|
|
1699
377
|
.build() {
|
|
1700
378
|
}
|
|
1701
379
|
|
|
@@ -1707,7 +385,7 @@ class ImportDatasetCommand extends smithyClient.Command
|
|
|
1707
385
|
})
|
|
1708
386
|
.s("AWSLookoutEquipmentFrontendService", "ImportDataset", {})
|
|
1709
387
|
.n("LookoutEquipmentClient", "ImportDatasetCommand")
|
|
1710
|
-
.sc(ImportDataset$)
|
|
388
|
+
.sc(schemas_0.ImportDataset$)
|
|
1711
389
|
.build() {
|
|
1712
390
|
}
|
|
1713
391
|
|
|
@@ -1719,7 +397,7 @@ class ImportModelVersionCommand extends smithyClient.Command
|
|
|
1719
397
|
})
|
|
1720
398
|
.s("AWSLookoutEquipmentFrontendService", "ImportModelVersion", {})
|
|
1721
399
|
.n("LookoutEquipmentClient", "ImportModelVersionCommand")
|
|
1722
|
-
.sc(ImportModelVersion$)
|
|
400
|
+
.sc(schemas_0.ImportModelVersion$)
|
|
1723
401
|
.build() {
|
|
1724
402
|
}
|
|
1725
403
|
|
|
@@ -1731,7 +409,7 @@ class ListDataIngestionJobsCommand extends smithyClient.Command
|
|
|
1731
409
|
})
|
|
1732
410
|
.s("AWSLookoutEquipmentFrontendService", "ListDataIngestionJobs", {})
|
|
1733
411
|
.n("LookoutEquipmentClient", "ListDataIngestionJobsCommand")
|
|
1734
|
-
.sc(ListDataIngestionJobs$)
|
|
412
|
+
.sc(schemas_0.ListDataIngestionJobs$)
|
|
1735
413
|
.build() {
|
|
1736
414
|
}
|
|
1737
415
|
|
|
@@ -1743,7 +421,7 @@ class ListDatasetsCommand extends smithyClient.Command
|
|
|
1743
421
|
})
|
|
1744
422
|
.s("AWSLookoutEquipmentFrontendService", "ListDatasets", {})
|
|
1745
423
|
.n("LookoutEquipmentClient", "ListDatasetsCommand")
|
|
1746
|
-
.sc(ListDatasets$)
|
|
424
|
+
.sc(schemas_0.ListDatasets$)
|
|
1747
425
|
.build() {
|
|
1748
426
|
}
|
|
1749
427
|
|
|
@@ -1755,7 +433,7 @@ class ListInferenceEventsCommand extends smithyClient.Command
|
|
|
1755
433
|
})
|
|
1756
434
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceEvents", {})
|
|
1757
435
|
.n("LookoutEquipmentClient", "ListInferenceEventsCommand")
|
|
1758
|
-
.sc(ListInferenceEvents$)
|
|
436
|
+
.sc(schemas_0.ListInferenceEvents$)
|
|
1759
437
|
.build() {
|
|
1760
438
|
}
|
|
1761
439
|
|
|
@@ -1767,7 +445,7 @@ class ListInferenceExecutionsCommand extends smithyClient.Command
|
|
|
1767
445
|
})
|
|
1768
446
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceExecutions", {})
|
|
1769
447
|
.n("LookoutEquipmentClient", "ListInferenceExecutionsCommand")
|
|
1770
|
-
.sc(ListInferenceExecutions$)
|
|
448
|
+
.sc(schemas_0.ListInferenceExecutions$)
|
|
1771
449
|
.build() {
|
|
1772
450
|
}
|
|
1773
451
|
|
|
@@ -1779,7 +457,7 @@ class ListInferenceSchedulersCommand extends smithyClient.Command
|
|
|
1779
457
|
})
|
|
1780
458
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceSchedulers", {})
|
|
1781
459
|
.n("LookoutEquipmentClient", "ListInferenceSchedulersCommand")
|
|
1782
|
-
.sc(ListInferenceSchedulers$)
|
|
460
|
+
.sc(schemas_0.ListInferenceSchedulers$)
|
|
1783
461
|
.build() {
|
|
1784
462
|
}
|
|
1785
463
|
|
|
@@ -1791,7 +469,7 @@ class ListLabelGroupsCommand extends smithyClient.Command
|
|
|
1791
469
|
})
|
|
1792
470
|
.s("AWSLookoutEquipmentFrontendService", "ListLabelGroups", {})
|
|
1793
471
|
.n("LookoutEquipmentClient", "ListLabelGroupsCommand")
|
|
1794
|
-
.sc(ListLabelGroups$)
|
|
472
|
+
.sc(schemas_0.ListLabelGroups$)
|
|
1795
473
|
.build() {
|
|
1796
474
|
}
|
|
1797
475
|
|
|
@@ -1803,7 +481,7 @@ class ListLabelsCommand extends smithyClient.Command
|
|
|
1803
481
|
})
|
|
1804
482
|
.s("AWSLookoutEquipmentFrontendService", "ListLabels", {})
|
|
1805
483
|
.n("LookoutEquipmentClient", "ListLabelsCommand")
|
|
1806
|
-
.sc(ListLabels$)
|
|
484
|
+
.sc(schemas_0.ListLabels$)
|
|
1807
485
|
.build() {
|
|
1808
486
|
}
|
|
1809
487
|
|
|
@@ -1815,7 +493,7 @@ class ListModelsCommand extends smithyClient.Command
|
|
|
1815
493
|
})
|
|
1816
494
|
.s("AWSLookoutEquipmentFrontendService", "ListModels", {})
|
|
1817
495
|
.n("LookoutEquipmentClient", "ListModelsCommand")
|
|
1818
|
-
.sc(ListModels$)
|
|
496
|
+
.sc(schemas_0.ListModels$)
|
|
1819
497
|
.build() {
|
|
1820
498
|
}
|
|
1821
499
|
|
|
@@ -1827,7 +505,7 @@ class ListModelVersionsCommand extends smithyClient.Command
|
|
|
1827
505
|
})
|
|
1828
506
|
.s("AWSLookoutEquipmentFrontendService", "ListModelVersions", {})
|
|
1829
507
|
.n("LookoutEquipmentClient", "ListModelVersionsCommand")
|
|
1830
|
-
.sc(ListModelVersions$)
|
|
508
|
+
.sc(schemas_0.ListModelVersions$)
|
|
1831
509
|
.build() {
|
|
1832
510
|
}
|
|
1833
511
|
|
|
@@ -1839,7 +517,7 @@ class ListRetrainingSchedulersCommand extends smithyClient.Command
|
|
|
1839
517
|
})
|
|
1840
518
|
.s("AWSLookoutEquipmentFrontendService", "ListRetrainingSchedulers", {})
|
|
1841
519
|
.n("LookoutEquipmentClient", "ListRetrainingSchedulersCommand")
|
|
1842
|
-
.sc(ListRetrainingSchedulers$)
|
|
520
|
+
.sc(schemas_0.ListRetrainingSchedulers$)
|
|
1843
521
|
.build() {
|
|
1844
522
|
}
|
|
1845
523
|
|
|
@@ -1851,7 +529,7 @@ class ListSensorStatisticsCommand extends smithyClient.Command
|
|
|
1851
529
|
})
|
|
1852
530
|
.s("AWSLookoutEquipmentFrontendService", "ListSensorStatistics", {})
|
|
1853
531
|
.n("LookoutEquipmentClient", "ListSensorStatisticsCommand")
|
|
1854
|
-
.sc(ListSensorStatistics$)
|
|
532
|
+
.sc(schemas_0.ListSensorStatistics$)
|
|
1855
533
|
.build() {
|
|
1856
534
|
}
|
|
1857
535
|
|
|
@@ -1863,7 +541,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1863
541
|
})
|
|
1864
542
|
.s("AWSLookoutEquipmentFrontendService", "ListTagsForResource", {})
|
|
1865
543
|
.n("LookoutEquipmentClient", "ListTagsForResourceCommand")
|
|
1866
|
-
.sc(ListTagsForResource$)
|
|
544
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1867
545
|
.build() {
|
|
1868
546
|
}
|
|
1869
547
|
|
|
@@ -1875,7 +553,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1875
553
|
})
|
|
1876
554
|
.s("AWSLookoutEquipmentFrontendService", "PutResourcePolicy", {})
|
|
1877
555
|
.n("LookoutEquipmentClient", "PutResourcePolicyCommand")
|
|
1878
|
-
.sc(PutResourcePolicy$)
|
|
556
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
1879
557
|
.build() {
|
|
1880
558
|
}
|
|
1881
559
|
|
|
@@ -1887,7 +565,7 @@ class StartDataIngestionJobCommand extends smithyClient.Command
|
|
|
1887
565
|
})
|
|
1888
566
|
.s("AWSLookoutEquipmentFrontendService", "StartDataIngestionJob", {})
|
|
1889
567
|
.n("LookoutEquipmentClient", "StartDataIngestionJobCommand")
|
|
1890
|
-
.sc(StartDataIngestionJob$)
|
|
568
|
+
.sc(schemas_0.StartDataIngestionJob$)
|
|
1891
569
|
.build() {
|
|
1892
570
|
}
|
|
1893
571
|
|
|
@@ -1899,7 +577,7 @@ class StartInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1899
577
|
})
|
|
1900
578
|
.s("AWSLookoutEquipmentFrontendService", "StartInferenceScheduler", {})
|
|
1901
579
|
.n("LookoutEquipmentClient", "StartInferenceSchedulerCommand")
|
|
1902
|
-
.sc(StartInferenceScheduler$)
|
|
580
|
+
.sc(schemas_0.StartInferenceScheduler$)
|
|
1903
581
|
.build() {
|
|
1904
582
|
}
|
|
1905
583
|
|
|
@@ -1911,7 +589,7 @@ class StartRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
1911
589
|
})
|
|
1912
590
|
.s("AWSLookoutEquipmentFrontendService", "StartRetrainingScheduler", {})
|
|
1913
591
|
.n("LookoutEquipmentClient", "StartRetrainingSchedulerCommand")
|
|
1914
|
-
.sc(StartRetrainingScheduler$)
|
|
592
|
+
.sc(schemas_0.StartRetrainingScheduler$)
|
|
1915
593
|
.build() {
|
|
1916
594
|
}
|
|
1917
595
|
|
|
@@ -1923,7 +601,7 @@ class StopInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1923
601
|
})
|
|
1924
602
|
.s("AWSLookoutEquipmentFrontendService", "StopInferenceScheduler", {})
|
|
1925
603
|
.n("LookoutEquipmentClient", "StopInferenceSchedulerCommand")
|
|
1926
|
-
.sc(StopInferenceScheduler$)
|
|
604
|
+
.sc(schemas_0.StopInferenceScheduler$)
|
|
1927
605
|
.build() {
|
|
1928
606
|
}
|
|
1929
607
|
|
|
@@ -1935,7 +613,7 @@ class StopRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
1935
613
|
})
|
|
1936
614
|
.s("AWSLookoutEquipmentFrontendService", "StopRetrainingScheduler", {})
|
|
1937
615
|
.n("LookoutEquipmentClient", "StopRetrainingSchedulerCommand")
|
|
1938
|
-
.sc(StopRetrainingScheduler$)
|
|
616
|
+
.sc(schemas_0.StopRetrainingScheduler$)
|
|
1939
617
|
.build() {
|
|
1940
618
|
}
|
|
1941
619
|
|
|
@@ -1947,7 +625,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1947
625
|
})
|
|
1948
626
|
.s("AWSLookoutEquipmentFrontendService", "TagResource", {})
|
|
1949
627
|
.n("LookoutEquipmentClient", "TagResourceCommand")
|
|
1950
|
-
.sc(TagResource$)
|
|
628
|
+
.sc(schemas_0.TagResource$)
|
|
1951
629
|
.build() {
|
|
1952
630
|
}
|
|
1953
631
|
|
|
@@ -1959,7 +637,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1959
637
|
})
|
|
1960
638
|
.s("AWSLookoutEquipmentFrontendService", "UntagResource", {})
|
|
1961
639
|
.n("LookoutEquipmentClient", "UntagResourceCommand")
|
|
1962
|
-
.sc(UntagResource$)
|
|
640
|
+
.sc(schemas_0.UntagResource$)
|
|
1963
641
|
.build() {
|
|
1964
642
|
}
|
|
1965
643
|
|
|
@@ -1971,7 +649,7 @@ class UpdateActiveModelVersionCommand extends smithyClient.Command
|
|
|
1971
649
|
})
|
|
1972
650
|
.s("AWSLookoutEquipmentFrontendService", "UpdateActiveModelVersion", {})
|
|
1973
651
|
.n("LookoutEquipmentClient", "UpdateActiveModelVersionCommand")
|
|
1974
|
-
.sc(UpdateActiveModelVersion$)
|
|
652
|
+
.sc(schemas_0.UpdateActiveModelVersion$)
|
|
1975
653
|
.build() {
|
|
1976
654
|
}
|
|
1977
655
|
|
|
@@ -1983,7 +661,7 @@ class UpdateInferenceSchedulerCommand extends smithyClient.Command
|
|
|
1983
661
|
})
|
|
1984
662
|
.s("AWSLookoutEquipmentFrontendService", "UpdateInferenceScheduler", {})
|
|
1985
663
|
.n("LookoutEquipmentClient", "UpdateInferenceSchedulerCommand")
|
|
1986
|
-
.sc(UpdateInferenceScheduler$)
|
|
664
|
+
.sc(schemas_0.UpdateInferenceScheduler$)
|
|
1987
665
|
.build() {
|
|
1988
666
|
}
|
|
1989
667
|
|
|
@@ -1995,7 +673,7 @@ class UpdateLabelGroupCommand extends smithyClient.Command
|
|
|
1995
673
|
})
|
|
1996
674
|
.s("AWSLookoutEquipmentFrontendService", "UpdateLabelGroup", {})
|
|
1997
675
|
.n("LookoutEquipmentClient", "UpdateLabelGroupCommand")
|
|
1998
|
-
.sc(UpdateLabelGroup$)
|
|
676
|
+
.sc(schemas_0.UpdateLabelGroup$)
|
|
1999
677
|
.build() {
|
|
2000
678
|
}
|
|
2001
679
|
|
|
@@ -2007,7 +685,7 @@ class UpdateModelCommand extends smithyClient.Command
|
|
|
2007
685
|
})
|
|
2008
686
|
.s("AWSLookoutEquipmentFrontendService", "UpdateModel", {})
|
|
2009
687
|
.n("LookoutEquipmentClient", "UpdateModelCommand")
|
|
2010
|
-
.sc(UpdateModel$)
|
|
688
|
+
.sc(schemas_0.UpdateModel$)
|
|
2011
689
|
.build() {
|
|
2012
690
|
}
|
|
2013
691
|
|
|
@@ -2019,7 +697,7 @@ class UpdateRetrainingSchedulerCommand extends smithyClient.Command
|
|
|
2019
697
|
})
|
|
2020
698
|
.s("AWSLookoutEquipmentFrontendService", "UpdateRetrainingScheduler", {})
|
|
2021
699
|
.n("LookoutEquipmentClient", "UpdateRetrainingSchedulerCommand")
|
|
2022
|
-
.sc(UpdateRetrainingScheduler$)
|
|
700
|
+
.sc(schemas_0.UpdateRetrainingScheduler$)
|
|
2023
701
|
.build() {
|
|
2024
702
|
}
|
|
2025
703
|
|
|
@@ -2228,267 +906,79 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2228
906
|
enumerable: true,
|
|
2229
907
|
get: function () { return smithyClient.Client; }
|
|
2230
908
|
});
|
|
2231
|
-
exports
|
|
2232
|
-
|
|
909
|
+
Object.defineProperty(exports, "LookoutEquipmentServiceException", {
|
|
910
|
+
enumerable: true,
|
|
911
|
+
get: function () { return LookoutEquipmentServiceException.LookoutEquipmentServiceException; }
|
|
912
|
+
});
|
|
2233
913
|
exports.AutoPromotionResult = AutoPromotionResult;
|
|
2234
|
-
exports.CategoricalValues$ = CategoricalValues$;
|
|
2235
|
-
exports.ConflictException = ConflictException;
|
|
2236
|
-
exports.ConflictException$ = ConflictException$;
|
|
2237
|
-
exports.CountPercent$ = CountPercent$;
|
|
2238
|
-
exports.CreateDataset$ = CreateDataset$;
|
|
2239
914
|
exports.CreateDatasetCommand = CreateDatasetCommand;
|
|
2240
|
-
exports.CreateDatasetRequest$ = CreateDatasetRequest$;
|
|
2241
|
-
exports.CreateDatasetResponse$ = CreateDatasetResponse$;
|
|
2242
|
-
exports.CreateInferenceScheduler$ = CreateInferenceScheduler$;
|
|
2243
915
|
exports.CreateInferenceSchedulerCommand = CreateInferenceSchedulerCommand;
|
|
2244
|
-
exports.CreateInferenceSchedulerRequest$ = CreateInferenceSchedulerRequest$;
|
|
2245
|
-
exports.CreateInferenceSchedulerResponse$ = CreateInferenceSchedulerResponse$;
|
|
2246
|
-
exports.CreateLabel$ = CreateLabel$;
|
|
2247
916
|
exports.CreateLabelCommand = CreateLabelCommand;
|
|
2248
|
-
exports.CreateLabelGroup$ = CreateLabelGroup$;
|
|
2249
917
|
exports.CreateLabelGroupCommand = CreateLabelGroupCommand;
|
|
2250
|
-
exports.CreateLabelGroupRequest$ = CreateLabelGroupRequest$;
|
|
2251
|
-
exports.CreateLabelGroupResponse$ = CreateLabelGroupResponse$;
|
|
2252
|
-
exports.CreateLabelRequest$ = CreateLabelRequest$;
|
|
2253
|
-
exports.CreateLabelResponse$ = CreateLabelResponse$;
|
|
2254
|
-
exports.CreateModel$ = CreateModel$;
|
|
2255
918
|
exports.CreateModelCommand = CreateModelCommand;
|
|
2256
|
-
exports.CreateModelRequest$ = CreateModelRequest$;
|
|
2257
|
-
exports.CreateModelResponse$ = CreateModelResponse$;
|
|
2258
|
-
exports.CreateRetrainingScheduler$ = CreateRetrainingScheduler$;
|
|
2259
919
|
exports.CreateRetrainingSchedulerCommand = CreateRetrainingSchedulerCommand;
|
|
2260
|
-
exports.CreateRetrainingSchedulerRequest$ = CreateRetrainingSchedulerRequest$;
|
|
2261
|
-
exports.CreateRetrainingSchedulerResponse$ = CreateRetrainingSchedulerResponse$;
|
|
2262
|
-
exports.DataIngestionJobSummary$ = DataIngestionJobSummary$;
|
|
2263
|
-
exports.DataPreProcessingConfiguration$ = DataPreProcessingConfiguration$;
|
|
2264
|
-
exports.DataQualitySummary$ = DataQualitySummary$;
|
|
2265
920
|
exports.DataUploadFrequency = DataUploadFrequency;
|
|
2266
|
-
exports.DatasetSchema$ = DatasetSchema$;
|
|
2267
921
|
exports.DatasetStatus = DatasetStatus;
|
|
2268
|
-
exports.DatasetSummary$ = DatasetSummary$;
|
|
2269
|
-
exports.DeleteDataset$ = DeleteDataset$;
|
|
2270
922
|
exports.DeleteDatasetCommand = DeleteDatasetCommand;
|
|
2271
|
-
exports.DeleteDatasetRequest$ = DeleteDatasetRequest$;
|
|
2272
|
-
exports.DeleteInferenceScheduler$ = DeleteInferenceScheduler$;
|
|
2273
923
|
exports.DeleteInferenceSchedulerCommand = DeleteInferenceSchedulerCommand;
|
|
2274
|
-
exports.DeleteInferenceSchedulerRequest$ = DeleteInferenceSchedulerRequest$;
|
|
2275
|
-
exports.DeleteLabel$ = DeleteLabel$;
|
|
2276
924
|
exports.DeleteLabelCommand = DeleteLabelCommand;
|
|
2277
|
-
exports.DeleteLabelGroup$ = DeleteLabelGroup$;
|
|
2278
925
|
exports.DeleteLabelGroupCommand = DeleteLabelGroupCommand;
|
|
2279
|
-
exports.DeleteLabelGroupRequest$ = DeleteLabelGroupRequest$;
|
|
2280
|
-
exports.DeleteLabelRequest$ = DeleteLabelRequest$;
|
|
2281
|
-
exports.DeleteModel$ = DeleteModel$;
|
|
2282
926
|
exports.DeleteModelCommand = DeleteModelCommand;
|
|
2283
|
-
exports.DeleteModelRequest$ = DeleteModelRequest$;
|
|
2284
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
2285
927
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
2286
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
2287
|
-
exports.DeleteRetrainingScheduler$ = DeleteRetrainingScheduler$;
|
|
2288
928
|
exports.DeleteRetrainingSchedulerCommand = DeleteRetrainingSchedulerCommand;
|
|
2289
|
-
exports.DeleteRetrainingSchedulerRequest$ = DeleteRetrainingSchedulerRequest$;
|
|
2290
|
-
exports.DescribeDataIngestionJob$ = DescribeDataIngestionJob$;
|
|
2291
929
|
exports.DescribeDataIngestionJobCommand = DescribeDataIngestionJobCommand;
|
|
2292
|
-
exports.DescribeDataIngestionJobRequest$ = DescribeDataIngestionJobRequest$;
|
|
2293
|
-
exports.DescribeDataIngestionJobResponse$ = DescribeDataIngestionJobResponse$;
|
|
2294
|
-
exports.DescribeDataset$ = DescribeDataset$;
|
|
2295
930
|
exports.DescribeDatasetCommand = DescribeDatasetCommand;
|
|
2296
|
-
exports.DescribeDatasetRequest$ = DescribeDatasetRequest$;
|
|
2297
|
-
exports.DescribeDatasetResponse$ = DescribeDatasetResponse$;
|
|
2298
|
-
exports.DescribeInferenceScheduler$ = DescribeInferenceScheduler$;
|
|
2299
931
|
exports.DescribeInferenceSchedulerCommand = DescribeInferenceSchedulerCommand;
|
|
2300
|
-
exports.DescribeInferenceSchedulerRequest$ = DescribeInferenceSchedulerRequest$;
|
|
2301
|
-
exports.DescribeInferenceSchedulerResponse$ = DescribeInferenceSchedulerResponse$;
|
|
2302
|
-
exports.DescribeLabel$ = DescribeLabel$;
|
|
2303
932
|
exports.DescribeLabelCommand = DescribeLabelCommand;
|
|
2304
|
-
exports.DescribeLabelGroup$ = DescribeLabelGroup$;
|
|
2305
933
|
exports.DescribeLabelGroupCommand = DescribeLabelGroupCommand;
|
|
2306
|
-
exports.DescribeLabelGroupRequest$ = DescribeLabelGroupRequest$;
|
|
2307
|
-
exports.DescribeLabelGroupResponse$ = DescribeLabelGroupResponse$;
|
|
2308
|
-
exports.DescribeLabelRequest$ = DescribeLabelRequest$;
|
|
2309
|
-
exports.DescribeLabelResponse$ = DescribeLabelResponse$;
|
|
2310
|
-
exports.DescribeModel$ = DescribeModel$;
|
|
2311
934
|
exports.DescribeModelCommand = DescribeModelCommand;
|
|
2312
|
-
exports.DescribeModelRequest$ = DescribeModelRequest$;
|
|
2313
|
-
exports.DescribeModelResponse$ = DescribeModelResponse$;
|
|
2314
|
-
exports.DescribeModelVersion$ = DescribeModelVersion$;
|
|
2315
935
|
exports.DescribeModelVersionCommand = DescribeModelVersionCommand;
|
|
2316
|
-
exports.DescribeModelVersionRequest$ = DescribeModelVersionRequest$;
|
|
2317
|
-
exports.DescribeModelVersionResponse$ = DescribeModelVersionResponse$;
|
|
2318
|
-
exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
|
|
2319
936
|
exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
|
|
2320
|
-
exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
|
|
2321
|
-
exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
|
|
2322
|
-
exports.DescribeRetrainingScheduler$ = DescribeRetrainingScheduler$;
|
|
2323
937
|
exports.DescribeRetrainingSchedulerCommand = DescribeRetrainingSchedulerCommand;
|
|
2324
|
-
exports.DescribeRetrainingSchedulerRequest$ = DescribeRetrainingSchedulerRequest$;
|
|
2325
|
-
exports.DescribeRetrainingSchedulerResponse$ = DescribeRetrainingSchedulerResponse$;
|
|
2326
|
-
exports.DuplicateTimestamps$ = DuplicateTimestamps$;
|
|
2327
|
-
exports.ImportDataset$ = ImportDataset$;
|
|
2328
938
|
exports.ImportDatasetCommand = ImportDatasetCommand;
|
|
2329
|
-
exports.ImportDatasetRequest$ = ImportDatasetRequest$;
|
|
2330
|
-
exports.ImportDatasetResponse$ = ImportDatasetResponse$;
|
|
2331
|
-
exports.ImportModelVersion$ = ImportModelVersion$;
|
|
2332
939
|
exports.ImportModelVersionCommand = ImportModelVersionCommand;
|
|
2333
|
-
exports.ImportModelVersionRequest$ = ImportModelVersionRequest$;
|
|
2334
|
-
exports.ImportModelVersionResponse$ = ImportModelVersionResponse$;
|
|
2335
940
|
exports.InferenceDataImportStrategy = InferenceDataImportStrategy;
|
|
2336
|
-
exports.InferenceEventSummary$ = InferenceEventSummary$;
|
|
2337
941
|
exports.InferenceExecutionStatus = InferenceExecutionStatus;
|
|
2338
|
-
exports.InferenceExecutionSummary$ = InferenceExecutionSummary$;
|
|
2339
|
-
exports.InferenceInputConfiguration$ = InferenceInputConfiguration$;
|
|
2340
|
-
exports.InferenceInputNameConfiguration$ = InferenceInputNameConfiguration$;
|
|
2341
|
-
exports.InferenceOutputConfiguration$ = InferenceOutputConfiguration$;
|
|
2342
|
-
exports.InferenceS3InputConfiguration$ = InferenceS3InputConfiguration$;
|
|
2343
|
-
exports.InferenceS3OutputConfiguration$ = InferenceS3OutputConfiguration$;
|
|
2344
942
|
exports.InferenceSchedulerStatus = InferenceSchedulerStatus;
|
|
2345
|
-
exports.InferenceSchedulerSummary$ = InferenceSchedulerSummary$;
|
|
2346
|
-
exports.IngestedFilesSummary$ = IngestedFilesSummary$;
|
|
2347
|
-
exports.IngestionInputConfiguration$ = IngestionInputConfiguration$;
|
|
2348
943
|
exports.IngestionJobStatus = IngestionJobStatus;
|
|
2349
|
-
exports.IngestionS3InputConfiguration$ = IngestionS3InputConfiguration$;
|
|
2350
|
-
exports.InsufficientSensorData$ = InsufficientSensorData$;
|
|
2351
|
-
exports.InternalServerException = InternalServerException;
|
|
2352
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2353
|
-
exports.InvalidSensorData$ = InvalidSensorData$;
|
|
2354
|
-
exports.LabelGroupSummary$ = LabelGroupSummary$;
|
|
2355
944
|
exports.LabelRating = LabelRating;
|
|
2356
|
-
exports.LabelSummary$ = LabelSummary$;
|
|
2357
|
-
exports.LabelsInputConfiguration$ = LabelsInputConfiguration$;
|
|
2358
|
-
exports.LabelsS3InputConfiguration$ = LabelsS3InputConfiguration$;
|
|
2359
|
-
exports.LargeTimestampGaps$ = LargeTimestampGaps$;
|
|
2360
945
|
exports.LatestInferenceResult = LatestInferenceResult;
|
|
2361
|
-
exports.ListDataIngestionJobs$ = ListDataIngestionJobs$;
|
|
2362
946
|
exports.ListDataIngestionJobsCommand = ListDataIngestionJobsCommand;
|
|
2363
|
-
exports.ListDataIngestionJobsRequest$ = ListDataIngestionJobsRequest$;
|
|
2364
|
-
exports.ListDataIngestionJobsResponse$ = ListDataIngestionJobsResponse$;
|
|
2365
|
-
exports.ListDatasets$ = ListDatasets$;
|
|
2366
947
|
exports.ListDatasetsCommand = ListDatasetsCommand;
|
|
2367
|
-
exports.ListDatasetsRequest$ = ListDatasetsRequest$;
|
|
2368
|
-
exports.ListDatasetsResponse$ = ListDatasetsResponse$;
|
|
2369
|
-
exports.ListInferenceEvents$ = ListInferenceEvents$;
|
|
2370
948
|
exports.ListInferenceEventsCommand = ListInferenceEventsCommand;
|
|
2371
|
-
exports.ListInferenceEventsRequest$ = ListInferenceEventsRequest$;
|
|
2372
|
-
exports.ListInferenceEventsResponse$ = ListInferenceEventsResponse$;
|
|
2373
|
-
exports.ListInferenceExecutions$ = ListInferenceExecutions$;
|
|
2374
949
|
exports.ListInferenceExecutionsCommand = ListInferenceExecutionsCommand;
|
|
2375
|
-
exports.ListInferenceExecutionsRequest$ = ListInferenceExecutionsRequest$;
|
|
2376
|
-
exports.ListInferenceExecutionsResponse$ = ListInferenceExecutionsResponse$;
|
|
2377
|
-
exports.ListInferenceSchedulers$ = ListInferenceSchedulers$;
|
|
2378
950
|
exports.ListInferenceSchedulersCommand = ListInferenceSchedulersCommand;
|
|
2379
|
-
exports.ListInferenceSchedulersRequest$ = ListInferenceSchedulersRequest$;
|
|
2380
|
-
exports.ListInferenceSchedulersResponse$ = ListInferenceSchedulersResponse$;
|
|
2381
|
-
exports.ListLabelGroups$ = ListLabelGroups$;
|
|
2382
951
|
exports.ListLabelGroupsCommand = ListLabelGroupsCommand;
|
|
2383
|
-
exports.ListLabelGroupsRequest$ = ListLabelGroupsRequest$;
|
|
2384
|
-
exports.ListLabelGroupsResponse$ = ListLabelGroupsResponse$;
|
|
2385
|
-
exports.ListLabels$ = ListLabels$;
|
|
2386
952
|
exports.ListLabelsCommand = ListLabelsCommand;
|
|
2387
|
-
exports.ListLabelsRequest$ = ListLabelsRequest$;
|
|
2388
|
-
exports.ListLabelsResponse$ = ListLabelsResponse$;
|
|
2389
|
-
exports.ListModelVersions$ = ListModelVersions$;
|
|
2390
953
|
exports.ListModelVersionsCommand = ListModelVersionsCommand;
|
|
2391
|
-
exports.ListModelVersionsRequest$ = ListModelVersionsRequest$;
|
|
2392
|
-
exports.ListModelVersionsResponse$ = ListModelVersionsResponse$;
|
|
2393
|
-
exports.ListModels$ = ListModels$;
|
|
2394
954
|
exports.ListModelsCommand = ListModelsCommand;
|
|
2395
|
-
exports.ListModelsRequest$ = ListModelsRequest$;
|
|
2396
|
-
exports.ListModelsResponse$ = ListModelsResponse$;
|
|
2397
|
-
exports.ListRetrainingSchedulers$ = ListRetrainingSchedulers$;
|
|
2398
955
|
exports.ListRetrainingSchedulersCommand = ListRetrainingSchedulersCommand;
|
|
2399
|
-
exports.ListRetrainingSchedulersRequest$ = ListRetrainingSchedulersRequest$;
|
|
2400
|
-
exports.ListRetrainingSchedulersResponse$ = ListRetrainingSchedulersResponse$;
|
|
2401
|
-
exports.ListSensorStatistics$ = ListSensorStatistics$;
|
|
2402
956
|
exports.ListSensorStatisticsCommand = ListSensorStatisticsCommand;
|
|
2403
|
-
exports.ListSensorStatisticsRequest$ = ListSensorStatisticsRequest$;
|
|
2404
|
-
exports.ListSensorStatisticsResponse$ = ListSensorStatisticsResponse$;
|
|
2405
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2406
957
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2407
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2408
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2409
958
|
exports.LookoutEquipment = LookoutEquipment;
|
|
2410
959
|
exports.LookoutEquipmentClient = LookoutEquipmentClient;
|
|
2411
|
-
exports.LookoutEquipmentServiceException = LookoutEquipmentServiceException;
|
|
2412
|
-
exports.LookoutEquipmentServiceException$ = LookoutEquipmentServiceException$;
|
|
2413
|
-
exports.MissingCompleteSensorData$ = MissingCompleteSensorData$;
|
|
2414
|
-
exports.MissingSensorData$ = MissingSensorData$;
|
|
2415
|
-
exports.ModelDiagnosticsOutputConfiguration$ = ModelDiagnosticsOutputConfiguration$;
|
|
2416
|
-
exports.ModelDiagnosticsS3OutputConfiguration$ = ModelDiagnosticsS3OutputConfiguration$;
|
|
2417
960
|
exports.ModelPromoteMode = ModelPromoteMode;
|
|
2418
961
|
exports.ModelQuality = ModelQuality;
|
|
2419
962
|
exports.ModelStatus = ModelStatus;
|
|
2420
|
-
exports.ModelSummary$ = ModelSummary$;
|
|
2421
963
|
exports.ModelVersionSourceType = ModelVersionSourceType;
|
|
2422
964
|
exports.ModelVersionStatus = ModelVersionStatus;
|
|
2423
|
-
exports.ModelVersionSummary$ = ModelVersionSummary$;
|
|
2424
|
-
exports.MonotonicValues$ = MonotonicValues$;
|
|
2425
965
|
exports.Monotonicity = Monotonicity;
|
|
2426
|
-
exports.MultipleOperatingModes$ = MultipleOperatingModes$;
|
|
2427
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
2428
966
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2429
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
2430
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
2431
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2432
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2433
967
|
exports.RetrainingSchedulerStatus = RetrainingSchedulerStatus;
|
|
2434
|
-
exports.RetrainingSchedulerSummary$ = RetrainingSchedulerSummary$;
|
|
2435
|
-
exports.S3Object$ = S3Object$;
|
|
2436
|
-
exports.SensorStatisticsSummary$ = SensorStatisticsSummary$;
|
|
2437
|
-
exports.SensorsWithShortDateRange$ = SensorsWithShortDateRange$;
|
|
2438
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2439
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2440
|
-
exports.StartDataIngestionJob$ = StartDataIngestionJob$;
|
|
2441
968
|
exports.StartDataIngestionJobCommand = StartDataIngestionJobCommand;
|
|
2442
|
-
exports.StartDataIngestionJobRequest$ = StartDataIngestionJobRequest$;
|
|
2443
|
-
exports.StartDataIngestionJobResponse$ = StartDataIngestionJobResponse$;
|
|
2444
|
-
exports.StartInferenceScheduler$ = StartInferenceScheduler$;
|
|
2445
969
|
exports.StartInferenceSchedulerCommand = StartInferenceSchedulerCommand;
|
|
2446
|
-
exports.StartInferenceSchedulerRequest$ = StartInferenceSchedulerRequest$;
|
|
2447
|
-
exports.StartInferenceSchedulerResponse$ = StartInferenceSchedulerResponse$;
|
|
2448
|
-
exports.StartRetrainingScheduler$ = StartRetrainingScheduler$;
|
|
2449
970
|
exports.StartRetrainingSchedulerCommand = StartRetrainingSchedulerCommand;
|
|
2450
|
-
exports.StartRetrainingSchedulerRequest$ = StartRetrainingSchedulerRequest$;
|
|
2451
|
-
exports.StartRetrainingSchedulerResponse$ = StartRetrainingSchedulerResponse$;
|
|
2452
971
|
exports.StatisticalIssueStatus = StatisticalIssueStatus;
|
|
2453
|
-
exports.StopInferenceScheduler$ = StopInferenceScheduler$;
|
|
2454
972
|
exports.StopInferenceSchedulerCommand = StopInferenceSchedulerCommand;
|
|
2455
|
-
exports.StopInferenceSchedulerRequest$ = StopInferenceSchedulerRequest$;
|
|
2456
|
-
exports.StopInferenceSchedulerResponse$ = StopInferenceSchedulerResponse$;
|
|
2457
|
-
exports.StopRetrainingScheduler$ = StopRetrainingScheduler$;
|
|
2458
973
|
exports.StopRetrainingSchedulerCommand = StopRetrainingSchedulerCommand;
|
|
2459
|
-
exports.StopRetrainingSchedulerRequest$ = StopRetrainingSchedulerRequest$;
|
|
2460
|
-
exports.StopRetrainingSchedulerResponse$ = StopRetrainingSchedulerResponse$;
|
|
2461
|
-
exports.Tag$ = Tag$;
|
|
2462
|
-
exports.TagResource$ = TagResource$;
|
|
2463
974
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2464
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2465
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2466
975
|
exports.TargetSamplingRate = TargetSamplingRate;
|
|
2467
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2468
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2469
|
-
exports.UnsupportedTimestamps$ = UnsupportedTimestamps$;
|
|
2470
|
-
exports.UntagResource$ = UntagResource$;
|
|
2471
976
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2472
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2473
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2474
|
-
exports.UpdateActiveModelVersion$ = UpdateActiveModelVersion$;
|
|
2475
977
|
exports.UpdateActiveModelVersionCommand = UpdateActiveModelVersionCommand;
|
|
2476
|
-
exports.UpdateActiveModelVersionRequest$ = UpdateActiveModelVersionRequest$;
|
|
2477
|
-
exports.UpdateActiveModelVersionResponse$ = UpdateActiveModelVersionResponse$;
|
|
2478
|
-
exports.UpdateInferenceScheduler$ = UpdateInferenceScheduler$;
|
|
2479
978
|
exports.UpdateInferenceSchedulerCommand = UpdateInferenceSchedulerCommand;
|
|
2480
|
-
exports.UpdateInferenceSchedulerRequest$ = UpdateInferenceSchedulerRequest$;
|
|
2481
|
-
exports.UpdateLabelGroup$ = UpdateLabelGroup$;
|
|
2482
979
|
exports.UpdateLabelGroupCommand = UpdateLabelGroupCommand;
|
|
2483
|
-
exports.UpdateLabelGroupRequest$ = UpdateLabelGroupRequest$;
|
|
2484
|
-
exports.UpdateModel$ = UpdateModel$;
|
|
2485
980
|
exports.UpdateModelCommand = UpdateModelCommand;
|
|
2486
|
-
exports.UpdateModelRequest$ = UpdateModelRequest$;
|
|
2487
|
-
exports.UpdateRetrainingScheduler$ = UpdateRetrainingScheduler$;
|
|
2488
981
|
exports.UpdateRetrainingSchedulerCommand = UpdateRetrainingSchedulerCommand;
|
|
2489
|
-
exports.UpdateRetrainingSchedulerRequest$ = UpdateRetrainingSchedulerRequest$;
|
|
2490
|
-
exports.ValidationException = ValidationException;
|
|
2491
|
-
exports.ValidationException$ = ValidationException$;
|
|
2492
982
|
exports.paginateListDataIngestionJobs = paginateListDataIngestionJobs;
|
|
2493
983
|
exports.paginateListDatasets = paginateListDatasets;
|
|
2494
984
|
exports.paginateListInferenceEvents = paginateListInferenceEvents;
|
|
@@ -2500,3 +990,15 @@ exports.paginateListModelVersions = paginateListModelVersions;
|
|
|
2500
990
|
exports.paginateListModels = paginateListModels;
|
|
2501
991
|
exports.paginateListRetrainingSchedulers = paginateListRetrainingSchedulers;
|
|
2502
992
|
exports.paginateListSensorStatistics = paginateListSensorStatistics;
|
|
993
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
994
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
995
|
+
enumerable: true,
|
|
996
|
+
get: function () { return schemas_0[k]; }
|
|
997
|
+
});
|
|
998
|
+
});
|
|
999
|
+
Object.keys(errors).forEach(function (k) {
|
|
1000
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1001
|
+
enumerable: true,
|
|
1002
|
+
get: function () { return errors[k]; }
|
|
1003
|
+
});
|
|
1004
|
+
});
|