@aws-sdk/client-lookoutequipment 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultLookoutEquipmentHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateDataset$, CreateInferenceScheduler$, CreateLabel$, CreateLabelGroup$, CreateModel$, CreateRetrainingScheduler$, DeleteDataset$, DeleteInferenceScheduler$, DeleteLabel$, DeleteLabelGroup$, DeleteModel$, DeleteResourcePolicy$, DeleteRetrainingScheduler$, DescribeDataIngestionJob$, DescribeDataset$, DescribeInferenceScheduler$, DescribeLabel$, DescribeLabelGroup$, DescribeModel$, DescribeModelVersion$, DescribeResourcePolicy$, DescribeRetrainingScheduler$, ImportDataset$, ImportModelVersion$, ListDataIngestionJobs$, ListDatasets$, ListInferenceEvents$, ListInferenceExecutions$, ListInferenceSchedulers$, ListLabelGroups$, ListLabels$, ListModels$, ListModelVersions$, ListRetrainingSchedulers$, ListSensorStatistics$, ListTagsForResource$, PutResourcePolicy$, StartDataIngestionJob$, StartInferenceScheduler$, StartRetrainingScheduler$, StopInferenceScheduler$, StopRetrainingScheduler$, TagResource$, UntagResource$, UpdateActiveModelVersion$, UpdateInferenceScheduler$, UpdateLabelGroup$, UpdateModel$, UpdateRetrainingScheduler$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { LookoutEquipmentServiceException } = require("./models/LookoutEquipmentServiceException");
18
- exports.LookoutEquipmentServiceException = LookoutEquipmentServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultLookoutEquipmentHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "lookoutequipment",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultLookoutEquipmentHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1465 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://lookoutequipment-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://lookoutequipment-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://lookoutequipment.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://lookoutequipment.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class LookoutEquipmentServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, LookoutEquipmentServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends LookoutEquipmentServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "AccessDeniedException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
151
+ this.Message = opts.Message;
152
+ }
153
+ }
154
+ class ConflictException extends LookoutEquipmentServiceException {
155
+ name = "ConflictException";
156
+ $fault = "client";
157
+ Message;
158
+ constructor(opts) {
159
+ super({
160
+ name: "ConflictException",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ Object.setPrototypeOf(this, ConflictException.prototype);
165
+ this.Message = opts.Message;
166
+ }
167
+ }
168
+ class InternalServerException extends LookoutEquipmentServiceException {
169
+ name = "InternalServerException";
170
+ $fault = "server";
171
+ Message;
172
+ constructor(opts) {
173
+ super({
174
+ name: "InternalServerException",
175
+ $fault: "server",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, InternalServerException.prototype);
179
+ this.Message = opts.Message;
180
+ }
181
+ }
182
+ class ServiceQuotaExceededException extends LookoutEquipmentServiceException {
183
+ name = "ServiceQuotaExceededException";
184
+ $fault = "client";
185
+ Message;
186
+ constructor(opts) {
187
+ super({
188
+ name: "ServiceQuotaExceededException",
189
+ $fault: "client",
190
+ ...opts,
191
+ });
192
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
193
+ this.Message = opts.Message;
194
+ }
195
+ }
196
+ class ThrottlingException extends LookoutEquipmentServiceException {
197
+ name = "ThrottlingException";
198
+ $fault = "client";
199
+ Message;
200
+ constructor(opts) {
201
+ super({
202
+ name: "ThrottlingException",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
207
+ this.Message = opts.Message;
208
+ }
209
+ }
210
+ class ValidationException extends LookoutEquipmentServiceException {
211
+ name = "ValidationException";
212
+ $fault = "client";
213
+ Message;
214
+ constructor(opts) {
215
+ super({
216
+ name: "ValidationException",
217
+ $fault: "client",
218
+ ...opts,
219
+ });
220
+ Object.setPrototypeOf(this, ValidationException.prototype);
221
+ this.Message = opts.Message;
222
+ }
223
+ }
224
+ class ResourceNotFoundException extends LookoutEquipmentServiceException {
225
+ name = "ResourceNotFoundException";
226
+ $fault = "client";
227
+ Message;
228
+ constructor(opts) {
229
+ super({
230
+ name: "ResourceNotFoundException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
235
+ this.Message = opts.Message;
236
+ }
237
+ }
238
+
239
+ const _ADE = "AccessDeniedException";
240
+ const _AIDET = "AccumulatedInferenceDataEndTime";
241
+ const _AIDST = "AccumulatedInferenceDataStartTime";
242
+ const _AMV = "ActiveModelVersion";
243
+ const _AMVA = "ActiveModelVersionArn";
244
+ const _APR = "AutoPromotionResult";
245
+ const _APRR = "AutoPromotionResultReason";
246
+ const _ASC = "AffectedSensorCount";
247
+ const _B = "Bucket";
248
+ const _C = "Count";
249
+ const _CA = "CreatedAt";
250
+ const _CAET = "CreatedAtEndTime";
251
+ const _CAST = "CreatedAtStartTime";
252
+ const _CAV = "CurrentActiveVersion";
253
+ const _CAVA = "CurrentActiveVersionArn";
254
+ const _CD = "CreateDataset";
255
+ const _CDR = "CreateDatasetRequest";
256
+ const _CDRr = "CreateDatasetResponse";
257
+ const _CE = "ConflictException";
258
+ const _CIS = "CreateInferenceScheduler";
259
+ const _CISR = "CreateInferenceSchedulerRequest";
260
+ const _CISRr = "CreateInferenceSchedulerResponse";
261
+ const _CL = "CreateLabel";
262
+ const _CLG = "CreateLabelGroup";
263
+ const _CLGR = "CreateLabelGroupRequest";
264
+ const _CLGRr = "CreateLabelGroupResponse";
265
+ const _CLR = "CreateLabelRequest";
266
+ const _CLRr = "CreateLabelResponse";
267
+ const _CM = "CreateModel";
268
+ const _CMR = "CreateModelRequest";
269
+ const _CMRr = "CreateModelResponse";
270
+ const _CN = "ComponentName";
271
+ const _CP = "CountPercent";
272
+ const _CRO = "CustomerResultObject";
273
+ const _CRS = "CreateRetrainingScheduler";
274
+ const _CRSR = "CreateRetrainingSchedulerRequest";
275
+ const _CRSRr = "CreateRetrainingSchedulerResponse";
276
+ const _CT = "ClientToken";
277
+ const _CTD = "ComponentTimestampDelimiter";
278
+ const _CTr = "CreationTime";
279
+ const _CV = "CategoricalValues";
280
+ const _D = "Diagnostics";
281
+ const _DA = "DatasetArn";
282
+ const _DD = "DeleteDataset";
283
+ const _DDIJ = "DescribeDataIngestionJob";
284
+ const _DDIJR = "DescribeDataIngestionJobRequest";
285
+ const _DDIJRe = "DescribeDataIngestionJobResponse";
286
+ const _DDOIM = "DataDelayOffsetInMinutes";
287
+ const _DDR = "DeleteDatasetRequest";
288
+ const _DDRe = "DescribeDatasetRequest";
289
+ const _DDRes = "DescribeDatasetResponse";
290
+ const _DDe = "DescribeDataset";
291
+ const _DE = "DataExists";
292
+ const _DET = "DataEndTime";
293
+ const _DETB = "DataEndTimeBefore";
294
+ const _DF = "DiscardedFiles";
295
+ const _DIC = "DataInputConfiguration";
296
+ const _DIJS = "DataIngestionJobSummary";
297
+ const _DIJSa = "DataIngestionJobSummaries";
298
+ const _DIS = "DeleteInferenceScheduler";
299
+ const _DISR = "DeleteInferenceSchedulerRequest";
300
+ const _DISRe = "DescribeInferenceSchedulerRequest";
301
+ const _DISRes = "DescribeInferenceSchedulerResponse";
302
+ const _DISe = "DescribeInferenceScheduler";
303
+ const _DL = "DeleteLabel";
304
+ const _DLG = "DeleteLabelGroup";
305
+ const _DLGR = "DeleteLabelGroupRequest";
306
+ const _DLGRe = "DescribeLabelGroupRequest";
307
+ const _DLGRes = "DescribeLabelGroupResponse";
308
+ const _DLGe = "DescribeLabelGroup";
309
+ const _DLR = "DeleteLabelRequest";
310
+ const _DLRe = "DescribeLabelRequest";
311
+ const _DLRes = "DescribeLabelResponse";
312
+ const _DLe = "DescribeLabel";
313
+ const _DM = "DeleteModel";
314
+ const _DMR = "DeleteModelRequest";
315
+ const _DMRe = "DescribeModelRequest";
316
+ const _DMRes = "DescribeModelResponse";
317
+ const _DMV = "DescribeModelVersion";
318
+ const _DMVR = "DescribeModelVersionRequest";
319
+ const _DMVRe = "DescribeModelVersionResponse";
320
+ const _DMe = "DescribeModel";
321
+ const _DN = "DatasetName";
322
+ const _DNBW = "DatasetNameBeginsWith";
323
+ const _DOC = "DataOutputConfiguration";
324
+ const _DPPC = "DataPreProcessingConfiguration";
325
+ const _DQS = "DataQualitySummary";
326
+ const _DRP = "DeleteResourcePolicy";
327
+ const _DRPR = "DeleteResourcePolicyRequest";
328
+ const _DRPRe = "DescribeResourcePolicyRequest";
329
+ const _DRPRes = "DescribeResourcePolicyResponse";
330
+ const _DRPe = "DescribeResourcePolicy";
331
+ const _DRS = "DeleteRetrainingScheduler";
332
+ const _DRSR = "DeleteRetrainingSchedulerRequest";
333
+ const _DRSRe = "DescribeRetrainingSchedulerRequest";
334
+ const _DRSRes = "DescribeRetrainingSchedulerResponse";
335
+ const _DRSe = "DescribeRetrainingScheduler";
336
+ const _DS = "DatasetSchema";
337
+ const _DST = "DataStartTime";
338
+ const _DSTA = "DataStartTimeAfter";
339
+ const _DSa = "DatasetSummary";
340
+ const _DSat = "DatasetSummaries";
341
+ const _DT = "DuplicateTimestamps";
342
+ const _DUF = "DataUploadFrequency";
343
+ const _E = "Equipment";
344
+ const _EDET = "EvaluationDataEndTime";
345
+ const _EDIS = "EventDurationInSeconds";
346
+ const _EDST = "EvaluationDataStartTime";
347
+ const _EET = "EventEndTime";
348
+ const _EST = "EventStartTime";
349
+ const _ET = "EndTime";
350
+ const _FC = "FaultCodes";
351
+ const _FCa = "FaultCode";
352
+ const _FR = "FailedReason";
353
+ const _ID = "ImportDataset";
354
+ const _IDE = "InvalidDateEntries";
355
+ const _IDIS = "InferenceDataImportStrategy";
356
+ const _IDR = "ImportDatasetRequest";
357
+ const _IDRm = "ImportDatasetResponse";
358
+ const _IDS = "InlineDataSchema";
359
+ const _IDSIB = "ImportedDataSizeInBytes";
360
+ const _IDSn = "IngestedDataSize";
361
+ const _IES = "InferenceEventSummary";
362
+ const _IESn = "InferenceExecutionSummary";
363
+ const _IESnf = "InferenceEventSummaries";
364
+ const _IESnfe = "InferenceExecutionSummaries";
365
+ const _IET = "IntervalEndTime";
366
+ const _IFS = "IngestedFilesSummary";
367
+ const _IIC = "IngestionInputConfiguration";
368
+ const _IICn = "InferenceInputConfiguration";
369
+ const _IINC = "InferenceInputNameConfiguration";
370
+ const _IJET = "ImportJobEndTime";
371
+ const _IJI = "IngestionJobId";
372
+ const _IJST = "ImportJobStartTime";
373
+ const _IMV = "ImportModelVersion";
374
+ const _IMVR = "ImportModelVersionRequest";
375
+ const _IMVRm = "ImportModelVersionResponse";
376
+ const _INOF = "IngestedNumberOfFiles";
377
+ const _IOC = "InferenceOutputConfiguration";
378
+ const _ISA = "InferenceSchedulerArn";
379
+ const _ISD = "InsufficientSensorData";
380
+ const _ISDn = "InvalidSensorData";
381
+ const _ISE = "InternalServerException";
382
+ const _ISIC = "InferenceS3InputConfiguration";
383
+ const _ISICn = "IngestionS3InputConfiguration";
384
+ const _ISN = "InferenceSchedulerName";
385
+ const _ISNBW = "InferenceSchedulerNameBeginsWith";
386
+ const _ISOC = "InferenceS3OutputConfiguration";
387
+ const _ISS = "InferenceSchedulerSummary";
388
+ const _ISSn = "InferenceSchedulerSummaries";
389
+ const _IST = "IntervalStartTime";
390
+ const _ITZO = "InputTimeZoneOffset";
391
+ const _IV = "InvalidValues";
392
+ const _JI = "JobId";
393
+ const _K = "Key";
394
+ const _KKI = "KmsKeyId";
395
+ const _KP = "KeyPattern";
396
+ const _LD = "ListDatasets";
397
+ const _LDIJ = "ListDataIngestionJobs";
398
+ const _LDIJR = "ListDataIngestionJobsRequest";
399
+ const _LDIJRi = "ListDataIngestionJobsResponse";
400
+ const _LDR = "ListDatasetsRequest";
401
+ const _LDRi = "ListDatasetsResponse";
402
+ const _LGA = "LabelGroupArn";
403
+ const _LGN = "LabelGroupName";
404
+ const _LGNBW = "LabelGroupNameBeginsWith";
405
+ const _LGS = "LabelGroupSummary";
406
+ const _LGSa = "LabelGroupSummaries";
407
+ const _LI = "LabelId";
408
+ const _LIC = "LabelsInputConfiguration";
409
+ const _LIE = "ListInferenceEvents";
410
+ const _LIER = "ListInferenceEventsRequest";
411
+ const _LIERi = "ListInferenceEventsResponse";
412
+ const _LIERis = "ListInferenceExecutionsRequest";
413
+ const _LIERist = "ListInferenceExecutionsResponse";
414
+ const _LIEi = "ListInferenceExecutions";
415
+ const _LIR = "LatestInferenceResult";
416
+ const _LIS = "ListInferenceSchedulers";
417
+ const _LISR = "ListInferenceSchedulersRequest";
418
+ const _LISRi = "ListInferenceSchedulersResponse";
419
+ const _LL = "ListLabels";
420
+ const _LLG = "ListLabelGroups";
421
+ const _LLGR = "ListLabelGroupsRequest";
422
+ const _LLGRi = "ListLabelGroupsResponse";
423
+ const _LLR = "ListLabelsRequest";
424
+ const _LLRi = "ListLabelsResponse";
425
+ const _LM = "ListModels";
426
+ const _LMR = "ListModelsRequest";
427
+ const _LMRi = "ListModelsResponse";
428
+ const _LMT = "LastModifiedTime";
429
+ const _LMV = "ListModelVersions";
430
+ const _LMVR = "ListModelVersionsRequest";
431
+ const _LMVRi = "ListModelVersionsResponse";
432
+ const _LODF = "ListOfDiscardedFiles";
433
+ const _LRS = "ListRetrainingSchedulers";
434
+ const _LRSR = "ListRetrainingSchedulersRequest";
435
+ const _LRSRi = "ListRetrainingSchedulersResponse";
436
+ const _LS = "LabelSummary";
437
+ const _LSIC = "LabelsS3InputConfiguration";
438
+ const _LSRADID = "LatestScheduledRetrainingAvailableDataInDays";
439
+ const _LSRFR = "LatestScheduledRetrainingFailedReason";
440
+ const _LSRMV = "LatestScheduledRetrainingModelVersion";
441
+ const _LSRS = "LatestScheduledRetrainingStatus";
442
+ const _LSRST = "LatestScheduledRetrainingStartTime";
443
+ const _LSS = "ListSensorStatistics";
444
+ const _LSSR = "ListSensorStatisticsRequest";
445
+ const _LSSRi = "ListSensorStatisticsResponse";
446
+ const _LSa = "LabelSummaries";
447
+ const _LTFR = "ListTagsForResource";
448
+ const _LTFRR = "ListTagsForResourceRequest";
449
+ const _LTFRRi = "ListTagsForResourceResponse";
450
+ const _LTG = "LargeTimestampGaps";
451
+ const _LUA = "LastUpdatedAt";
452
+ const _LUT = "LastUpdatedTime";
453
+ const _LW = "LookbackWindow";
454
+ const _M = "Message";
455
+ const _MA = "ModelArn";
456
+ const _MCSD = "MissingCompleteSensorData";
457
+ const _MDOC = "ModelDiagnosticsOutputConfiguration";
458
+ const _MDRO = "ModelDiagnosticsResultsObject";
459
+ const _MDSOC = "ModelDiagnosticsS3OutputConfiguration";
460
+ const _MM = "ModelMetrics";
461
+ const _MMV = "MaxModelVersion";
462
+ const _MMVi = "MinModelVersion";
463
+ const _MN = "ModelName";
464
+ const _MNBW = "ModelNameBeginsWith";
465
+ const _MOM = "MultipleOperatingModes";
466
+ const _MQ = "ModelQuality";
467
+ const _MR = "MaxResults";
468
+ const _MS = "ModelSummaries";
469
+ const _MSD = "MissingSensorData";
470
+ const _MSo = "ModelSummary";
471
+ const _MTGID = "MaxTimestampGapInDays";
472
+ const _MV = "ModelVersion";
473
+ const _MVA = "ModelVersionArn";
474
+ const _MVAA = "ModelVersionActivatedAt";
475
+ const _MVS = "ModelVersionSummaries";
476
+ const _MVSo = "ModelVersionSummary";
477
+ const _MVi = "MissingValues";
478
+ const _MVo = "MonotonicValues";
479
+ const _Mo = "Monotonicity";
480
+ const _N = "Notes";
481
+ const _NOC = "NumberOfCategory";
482
+ const _NOLTG = "NumberOfLargeTimestampGaps";
483
+ const _NSRSD = "NextScheduledRetrainingStartDate";
484
+ const _NT = "NextToken";
485
+ const _OC = "OffCondition";
486
+ const _P = "Percentage";
487
+ const _PAMV = "PreviousActiveModelVersion";
488
+ const _PAMVA = "PreviousActiveModelVersionArn";
489
+ const _PAV = "PreviousActiveVersion";
490
+ const _PAVA = "PreviousActiveVersionArn";
491
+ const _PM = "PromoteMode";
492
+ const _PMM = "PriorModelMetrics";
493
+ const _PMVAA = "PreviousModelVersionActivatedAt";
494
+ const _PRI = "PolicyRevisionId";
495
+ const _PRP = "PutResourcePolicy";
496
+ const _PRPR = "PutResourcePolicyRequest";
497
+ const _PRPRu = "PutResourcePolicyResponse";
498
+ const _Pr = "Prefix";
499
+ const _R = "Rating";
500
+ const _RA = "RoleArn";
501
+ const _RADID = "RetrainingAvailableDataInDays";
502
+ const _RAe = "ResourceArn";
503
+ const _RF = "RetrainingFrequency";
504
+ const _RNFE = "ResourceNotFoundException";
505
+ const _RP = "ResourcePolicy";
506
+ const _RSD = "RetrainingStartDate";
507
+ const _RSS = "RetrainingSchedulerStatus";
508
+ const _RSSe = "RetrainingSchedulerSummaries";
509
+ const _RSSet = "RetrainingSchedulerSummary";
510
+ const _S = "Status";
511
+ const _SD = "StatusDetail";
512
+ const _SDA = "SourceDatasetArn";
513
+ const _SDIJ = "StartDataIngestionJob";
514
+ const _SDIJR = "StartDataIngestionJobRequest";
515
+ const _SDIJRt = "StartDataIngestionJobResponse";
516
+ const _SIC = "S3InputConfiguration";
517
+ const _SIS = "StartInferenceScheduler";
518
+ const _SISR = "StartInferenceSchedulerRequest";
519
+ const _SISRt = "StartInferenceSchedulerResponse";
520
+ const _SISRto = "StopInferenceSchedulerRequest";
521
+ const _SISRtop = "StopInferenceSchedulerResponse";
522
+ const _SISt = "StopInferenceScheduler";
523
+ const _SJIDS = "SynthesizedJsonInlineDataSchema";
524
+ const _SJMM = "SynthesizedJsonModelMetrics";
525
+ const _SMVA = "SourceModelVersionArn";
526
+ const _SN = "SensorName";
527
+ const _SO = "S3Object";
528
+ const _SOC = "S3OutputConfiguration";
529
+ const _SQEE = "ServiceQuotaExceededException";
530
+ const _SRS = "StartRetrainingScheduler";
531
+ const _SRSR = "StartRetrainingSchedulerRequest";
532
+ const _SRSRt = "StartRetrainingSchedulerResponse";
533
+ const _SRSRto = "StopRetrainingSchedulerRequest";
534
+ const _SRSRtop = "StopRetrainingSchedulerResponse";
535
+ const _SRSt = "StopRetrainingScheduler";
536
+ const _SSKKI = "ServerSideKmsKeyId";
537
+ const _SSS = "SensorStatisticsSummaries";
538
+ const _SSSe = "SensorStatisticsSummary";
539
+ const _SST = "ScheduledStartTime";
540
+ const _ST = "StartTime";
541
+ const _STo = "SourceType";
542
+ const _SWSDR = "SensorsWithShortDateRange";
543
+ const _Sc = "Schema";
544
+ const _T = "Tags";
545
+ const _TDET = "TrainingDataEndTime";
546
+ const _TDST = "TrainingDataStartTime";
547
+ const _TE = "ThrottlingException";
548
+ const _TEET = "TrainingExecutionEndTime";
549
+ const _TEST = "TrainingExecutionStartTime";
550
+ const _TF = "TimestampFormat";
551
+ const _TK = "TagKeys";
552
+ const _TL = "TagList";
553
+ const _TNODT = "TotalNumberOfDuplicateTimestamps";
554
+ const _TNOF = "TotalNumberOfFiles";
555
+ const _TNOIV = "TotalNumberOfInvalidValues";
556
+ const _TNOMV = "TotalNumberOfMissingValues";
557
+ const _TNOUT = "TotalNumberOfUnsupportedTimestamps";
558
+ const _TR = "TagResource";
559
+ const _TRR = "TagResourceRequest";
560
+ const _TRRa = "TagResourceResponse";
561
+ const _TSR = "TargetSamplingRate";
562
+ const _Ta = "Tag";
563
+ const _UA = "UpdatedAt";
564
+ const _UAMV = "UpdateActiveModelVersion";
565
+ const _UAMVR = "UpdateActiveModelVersionRequest";
566
+ const _UAMVRp = "UpdateActiveModelVersionResponse";
567
+ const _UIS = "UpdateInferenceScheduler";
568
+ const _UISR = "UpdateInferenceSchedulerRequest";
569
+ const _ULG = "UpdateLabelGroup";
570
+ const _ULGR = "UpdateLabelGroupRequest";
571
+ const _UM = "UpdateModel";
572
+ const _UMR = "UpdateModelRequest";
573
+ const _UR = "UntagResource";
574
+ const _URR = "UntagResourceRequest";
575
+ const _URRn = "UntagResourceResponse";
576
+ const _URS = "UpdateRetrainingScheduler";
577
+ const _URSR = "UpdateRetrainingSchedulerRequest";
578
+ const _UT = "UnsupportedTimestamps";
579
+ const _V = "Value";
580
+ const _VE = "ValidationException";
581
+ const _a = "application/json";
582
+ const _c = "client";
583
+ const _e = "error";
584
+ const _hE = "httpError";
585
+ const _mT = "mediaType";
586
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.lookoutequipment";
587
+ const _se = "server";
588
+ const n0 = "com.amazonaws.lookoutequipment";
589
+ const _s_registry = TypeRegistry.for(_s);
590
+ var LookoutEquipmentServiceException$ = [-3, _s, "LookoutEquipmentServiceException", 0, [], []];
591
+ _s_registry.registerError(LookoutEquipmentServiceException$, LookoutEquipmentServiceException);
592
+ const n0_registry = TypeRegistry.for(n0);
593
+ var AccessDeniedException$ = [-3, n0, _ADE,
594
+ { [_e]: _c, [_hE]: 403 },
595
+ [_M],
596
+ [0], 1
597
+ ];
598
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
599
+ var ConflictException$ = [-3, n0, _CE,
600
+ { [_e]: _c, [_hE]: 409 },
601
+ [_M],
602
+ [0], 1
603
+ ];
604
+ n0_registry.registerError(ConflictException$, ConflictException);
605
+ var InternalServerException$ = [-3, n0, _ISE,
606
+ { [_e]: _se, [_hE]: 500 },
607
+ [_M],
608
+ [0], 1
609
+ ];
610
+ n0_registry.registerError(InternalServerException$, InternalServerException);
611
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
612
+ { [_e]: _c, [_hE]: 404 },
613
+ [_M],
614
+ [0], 1
615
+ ];
616
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
617
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
618
+ { [_e]: _c, [_hE]: 402 },
619
+ [_M],
620
+ [0], 1
621
+ ];
622
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
623
+ var ThrottlingException$ = [-3, n0, _TE,
624
+ { [_e]: _c, [_hE]: 429 },
625
+ [_M],
626
+ [0], 1
627
+ ];
628
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
629
+ var ValidationException$ = [-3, n0, _VE,
630
+ { [_e]: _c, [_hE]: 400 },
631
+ [_M],
632
+ [0], 1
633
+ ];
634
+ n0_registry.registerError(ValidationException$, ValidationException);
635
+ const errorTypeRegistries = [
636
+ _s_registry,
637
+ n0_registry,
638
+ ];
639
+ var SynthesizedJsonInlineDataSchema = [0, n0, _SJIDS, { [_mT]: _a }, 0];
640
+ var SynthesizedJsonModelMetrics = [0, n0, _SJMM, { [_mT]: _a }, 0];
641
+ var CategoricalValues$ = [3, n0, _CV,
642
+ 0,
643
+ [_S, _NOC],
644
+ [0, 1], 1
645
+ ];
646
+ var CountPercent$ = [3, n0, _CP,
647
+ 0,
648
+ [_C, _P],
649
+ [1, 1], 2
650
+ ];
651
+ var CreateDatasetRequest$ = [3, n0, _CDR,
652
+ 0,
653
+ [_DN, _DS, _SSKKI, _CT, _T],
654
+ [0, [() => DatasetSchema$, 0], 0, [0, 4], () => TagList], 1
655
+ ];
656
+ var CreateDatasetResponse$ = [3, n0, _CDRr,
657
+ 0,
658
+ [_DN, _DA, _S],
659
+ [0, 0, 0]
660
+ ];
661
+ var CreateInferenceSchedulerRequest$ = [3, n0, _CISR,
662
+ 0,
663
+ [_MN, _ISN, _DUF, _DIC, _DOC, _RA, _DDOIM, _SSKKI, _CT, _T],
664
+ [0, 0, 0, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0, 1, 0, [0, 4], () => TagList], 6
665
+ ];
666
+ var CreateInferenceSchedulerResponse$ = [3, n0, _CISRr,
667
+ 0,
668
+ [_ISA, _ISN, _S, _MQ],
669
+ [0, 0, 0, 0]
670
+ ];
671
+ var CreateLabelGroupRequest$ = [3, n0, _CLGR,
672
+ 0,
673
+ [_LGN, _FC, _CT, _T],
674
+ [0, 64 | 0, [0, 4], () => TagList], 1
675
+ ];
676
+ var CreateLabelGroupResponse$ = [3, n0, _CLGRr,
677
+ 0,
678
+ [_LGN, _LGA],
679
+ [0, 0]
680
+ ];
681
+ var CreateLabelRequest$ = [3, n0, _CLR,
682
+ 0,
683
+ [_LGN, _ST, _ET, _R, _FCa, _N, _E, _CT],
684
+ [0, 4, 4, 0, 0, 0, 0, [0, 4]], 4
685
+ ];
686
+ var CreateLabelResponse$ = [3, n0, _CLRr,
687
+ 0,
688
+ [_LI],
689
+ [0]
690
+ ];
691
+ var CreateModelRequest$ = [3, n0, _CMR,
692
+ 0,
693
+ [_MN, _DN, _DS, _LIC, _CT, _TDST, _TDET, _EDST, _EDET, _RA, _DPPC, _SSKKI, _T, _OC, _MDOC],
694
+ [0, 0, [() => DatasetSchema$, 0], () => LabelsInputConfiguration$, [0, 4], 4, 4, 4, 4, 0, () => DataPreProcessingConfiguration$, 0, () => TagList, 0, () => ModelDiagnosticsOutputConfiguration$], 2
695
+ ];
696
+ var CreateModelResponse$ = [3, n0, _CMRr,
697
+ 0,
698
+ [_MA, _S],
699
+ [0, 0]
700
+ ];
701
+ var CreateRetrainingSchedulerRequest$ = [3, n0, _CRSR,
702
+ 0,
703
+ [_MN, _RF, _LW, _RSD, _PM, _CT],
704
+ [0, 0, 0, 4, 0, [0, 4]], 3
705
+ ];
706
+ var CreateRetrainingSchedulerResponse$ = [3, n0, _CRSRr,
707
+ 0,
708
+ [_MN, _MA, _S],
709
+ [0, 0, 0]
710
+ ];
711
+ var DataIngestionJobSummary$ = [3, n0, _DIJS,
712
+ 0,
713
+ [_JI, _DN, _DA, _IIC, _S],
714
+ [0, 0, 0, () => IngestionInputConfiguration$, 0]
715
+ ];
716
+ var DataPreProcessingConfiguration$ = [3, n0, _DPPC,
717
+ 0,
718
+ [_TSR],
719
+ [0]
720
+ ];
721
+ var DataQualitySummary$ = [3, n0, _DQS,
722
+ 0,
723
+ [_ISD, _MSD, _ISDn, _UT, _DT],
724
+ [() => InsufficientSensorData$, () => MissingSensorData$, () => InvalidSensorData$, () => UnsupportedTimestamps$, () => DuplicateTimestamps$], 5
725
+ ];
726
+ var DatasetSchema$ = [3, n0, _DS,
727
+ 0,
728
+ [_IDS],
729
+ [[() => SynthesizedJsonInlineDataSchema, 0]]
730
+ ];
731
+ var DatasetSummary$ = [3, n0, _DSa,
732
+ 0,
733
+ [_DN, _DA, _S, _CA],
734
+ [0, 0, 0, 4]
735
+ ];
736
+ var DeleteDatasetRequest$ = [3, n0, _DDR,
737
+ 0,
738
+ [_DN],
739
+ [0], 1
740
+ ];
741
+ var DeleteInferenceSchedulerRequest$ = [3, n0, _DISR,
742
+ 0,
743
+ [_ISN],
744
+ [0], 1
745
+ ];
746
+ var DeleteLabelGroupRequest$ = [3, n0, _DLGR,
747
+ 0,
748
+ [_LGN],
749
+ [0], 1
750
+ ];
751
+ var DeleteLabelRequest$ = [3, n0, _DLR,
752
+ 0,
753
+ [_LGN, _LI],
754
+ [0, 0], 2
755
+ ];
756
+ var DeleteModelRequest$ = [3, n0, _DMR,
757
+ 0,
758
+ [_MN],
759
+ [0], 1
760
+ ];
761
+ var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
762
+ 0,
763
+ [_RAe],
764
+ [0], 1
765
+ ];
766
+ var DeleteRetrainingSchedulerRequest$ = [3, n0, _DRSR,
767
+ 0,
768
+ [_MN],
769
+ [0], 1
770
+ ];
771
+ var DescribeDataIngestionJobRequest$ = [3, n0, _DDIJR,
772
+ 0,
773
+ [_JI],
774
+ [0], 1
775
+ ];
776
+ var DescribeDataIngestionJobResponse$ = [3, n0, _DDIJRe,
777
+ 0,
778
+ [_JI, _DA, _IIC, _RA, _CA, _S, _FR, _DQS, _IFS, _SD, _IDSn, _DST, _DET, _SDA],
779
+ [0, 0, () => IngestionInputConfiguration$, 0, 4, 0, 0, () => DataQualitySummary$, () => IngestedFilesSummary$, 0, 1, 4, 4, 0]
780
+ ];
781
+ var DescribeDatasetRequest$ = [3, n0, _DDRe,
782
+ 0,
783
+ [_DN],
784
+ [0], 1
785
+ ];
786
+ var DescribeDatasetResponse$ = [3, n0, _DDRes,
787
+ 0,
788
+ [_DN, _DA, _CA, _LUA, _S, _Sc, _SSKKI, _IIC, _DQS, _IFS, _RA, _DST, _DET, _SDA],
789
+ [0, 0, 4, 4, 0, [() => SynthesizedJsonInlineDataSchema, 0], 0, () => IngestionInputConfiguration$, () => DataQualitySummary$, () => IngestedFilesSummary$, 0, 4, 4, 0]
790
+ ];
791
+ var DescribeInferenceSchedulerRequest$ = [3, n0, _DISRe,
792
+ 0,
793
+ [_ISN],
794
+ [0], 1
795
+ ];
796
+ var DescribeInferenceSchedulerResponse$ = [3, n0, _DISRes,
797
+ 0,
798
+ [_MA, _MN, _ISN, _ISA, _S, _DDOIM, _DUF, _CA, _UA, _DIC, _DOC, _RA, _SSKKI, _LIR],
799
+ [0, 0, 0, 0, 0, 1, 0, 4, 4, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0, 0, 0]
800
+ ];
801
+ var DescribeLabelGroupRequest$ = [3, n0, _DLGRe,
802
+ 0,
803
+ [_LGN],
804
+ [0], 1
805
+ ];
806
+ var DescribeLabelGroupResponse$ = [3, n0, _DLGRes,
807
+ 0,
808
+ [_LGN, _LGA, _FC, _CA, _UA],
809
+ [0, 0, 64 | 0, 4, 4]
810
+ ];
811
+ var DescribeLabelRequest$ = [3, n0, _DLRe,
812
+ 0,
813
+ [_LGN, _LI],
814
+ [0, 0], 2
815
+ ];
816
+ var DescribeLabelResponse$ = [3, n0, _DLRes,
817
+ 0,
818
+ [_LGN, _LGA, _LI, _ST, _ET, _R, _FCa, _N, _E, _CA],
819
+ [0, 0, 0, 4, 4, 0, 0, 0, 0, 4]
820
+ ];
821
+ var DescribeModelRequest$ = [3, n0, _DMRe,
822
+ 0,
823
+ [_MN],
824
+ [0], 1
825
+ ];
826
+ var DescribeModelResponse$ = [3, n0, _DMRes,
827
+ 0,
828
+ [_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],
829
+ [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]
830
+ ];
831
+ var DescribeModelVersionRequest$ = [3, n0, _DMVR,
832
+ 0,
833
+ [_MN, _MV],
834
+ [0, 1], 2
835
+ ];
836
+ var DescribeModelVersionResponse$ = [3, n0, _DMVRe,
837
+ 0,
838
+ [_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],
839
+ [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]
840
+ ];
841
+ var DescribeResourcePolicyRequest$ = [3, n0, _DRPRe,
842
+ 0,
843
+ [_RAe],
844
+ [0], 1
845
+ ];
846
+ var DescribeResourcePolicyResponse$ = [3, n0, _DRPRes,
847
+ 0,
848
+ [_PRI, _RP, _CTr, _LMT],
849
+ [0, 0, 4, 4]
850
+ ];
851
+ var DescribeRetrainingSchedulerRequest$ = [3, n0, _DRSRe,
852
+ 0,
853
+ [_MN],
854
+ [0], 1
855
+ ];
856
+ var DescribeRetrainingSchedulerResponse$ = [3, n0, _DRSRes,
857
+ 0,
858
+ [_MN, _MA, _RSD, _RF, _LW, _S, _PM, _CA, _UA],
859
+ [0, 0, 4, 0, 0, 0, 0, 4, 4]
860
+ ];
861
+ var DuplicateTimestamps$ = [3, n0, _DT,
862
+ 0,
863
+ [_TNODT],
864
+ [1], 1
865
+ ];
866
+ var ImportDatasetRequest$ = [3, n0, _IDR,
867
+ 0,
868
+ [_SDA, _DN, _CT, _SSKKI, _T],
869
+ [0, 0, [0, 4], 0, () => TagList], 1
870
+ ];
871
+ var ImportDatasetResponse$ = [3, n0, _IDRm,
872
+ 0,
873
+ [_DN, _DA, _S, _JI],
874
+ [0, 0, 0, 0]
875
+ ];
876
+ var ImportModelVersionRequest$ = [3, n0, _IMVR,
877
+ 0,
878
+ [_SMVA, _DN, _MN, _LIC, _CT, _RA, _SSKKI, _T, _IDIS],
879
+ [0, 0, 0, () => LabelsInputConfiguration$, [0, 4], 0, 0, () => TagList, 0], 2
880
+ ];
881
+ var ImportModelVersionResponse$ = [3, n0, _IMVRm,
882
+ 0,
883
+ [_MN, _MA, _MVA, _MV, _S],
884
+ [0, 0, 0, 1, 0]
885
+ ];
886
+ var InferenceEventSummary$ = [3, n0, _IES,
887
+ 0,
888
+ [_ISA, _ISN, _EST, _EET, _D, _EDIS],
889
+ [0, 0, 4, 4, 0, 1]
890
+ ];
891
+ var InferenceExecutionSummary$ = [3, n0, _IESn,
892
+ 0,
893
+ [_MN, _MA, _ISN, _ISA, _SST, _DST, _DET, _DIC, _DOC, _CRO, _S, _FR, _MV, _MVA],
894
+ [0, 0, 0, 0, 4, 4, 4, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, () => S3Object$, 0, 0, 1, 0]
895
+ ];
896
+ var InferenceInputConfiguration$ = [3, n0, _IICn,
897
+ 0,
898
+ [_SIC, _ITZO, _IINC],
899
+ [() => InferenceS3InputConfiguration$, 0, () => InferenceInputNameConfiguration$]
900
+ ];
901
+ var InferenceInputNameConfiguration$ = [3, n0, _IINC,
902
+ 0,
903
+ [_TF, _CTD],
904
+ [0, 0]
905
+ ];
906
+ var InferenceOutputConfiguration$ = [3, n0, _IOC,
907
+ 0,
908
+ [_SOC, _KKI],
909
+ [() => InferenceS3OutputConfiguration$, 0], 1
910
+ ];
911
+ var InferenceS3InputConfiguration$ = [3, n0, _ISIC,
912
+ 0,
913
+ [_B, _Pr],
914
+ [0, 0], 1
915
+ ];
916
+ var InferenceS3OutputConfiguration$ = [3, n0, _ISOC,
917
+ 0,
918
+ [_B, _Pr],
919
+ [0, 0], 1
920
+ ];
921
+ var InferenceSchedulerSummary$ = [3, n0, _ISS,
922
+ 0,
923
+ [_MN, _MA, _ISN, _ISA, _S, _DDOIM, _DUF, _LIR],
924
+ [0, 0, 0, 0, 0, 1, 0, 0]
925
+ ];
926
+ var IngestedFilesSummary$ = [3, n0, _IFS,
927
+ 0,
928
+ [_TNOF, _INOF, _DF],
929
+ [1, 1, () => ListOfDiscardedFiles], 2
930
+ ];
931
+ var IngestionInputConfiguration$ = [3, n0, _IIC,
932
+ 0,
933
+ [_SIC],
934
+ [() => IngestionS3InputConfiguration$], 1
935
+ ];
936
+ var IngestionS3InputConfiguration$ = [3, n0, _ISICn,
937
+ 0,
938
+ [_B, _Pr, _KP],
939
+ [0, 0, 0], 1
940
+ ];
941
+ var InsufficientSensorData$ = [3, n0, _ISD,
942
+ 0,
943
+ [_MCSD, _SWSDR],
944
+ [() => MissingCompleteSensorData$, () => SensorsWithShortDateRange$], 2
945
+ ];
946
+ var InvalidSensorData$ = [3, n0, _ISDn,
947
+ 0,
948
+ [_ASC, _TNOIV],
949
+ [1, 1], 2
950
+ ];
951
+ var LabelGroupSummary$ = [3, n0, _LGS,
952
+ 0,
953
+ [_LGN, _LGA, _CA, _UA],
954
+ [0, 0, 4, 4]
955
+ ];
956
+ var LabelsInputConfiguration$ = [3, n0, _LIC,
957
+ 0,
958
+ [_SIC, _LGN],
959
+ [() => LabelsS3InputConfiguration$, 0]
960
+ ];
961
+ var LabelsS3InputConfiguration$ = [3, n0, _LSIC,
962
+ 0,
963
+ [_B, _Pr],
964
+ [0, 0], 1
965
+ ];
966
+ var LabelSummary$ = [3, n0, _LS,
967
+ 0,
968
+ [_LGN, _LI, _LGA, _ST, _ET, _R, _FCa, _E, _CA],
969
+ [0, 0, 0, 4, 4, 0, 0, 0, 4]
970
+ ];
971
+ var LargeTimestampGaps$ = [3, n0, _LTG,
972
+ 0,
973
+ [_S, _NOLTG, _MTGID],
974
+ [0, 1, 1], 1
975
+ ];
976
+ var ListDataIngestionJobsRequest$ = [3, n0, _LDIJR,
977
+ 0,
978
+ [_DN, _NT, _MR, _S],
979
+ [0, 0, 1, 0]
980
+ ];
981
+ var ListDataIngestionJobsResponse$ = [3, n0, _LDIJRi,
982
+ 0,
983
+ [_NT, _DIJSa],
984
+ [0, () => DataIngestionJobSummaries]
985
+ ];
986
+ var ListDatasetsRequest$ = [3, n0, _LDR,
987
+ 0,
988
+ [_NT, _MR, _DNBW],
989
+ [0, 1, 0]
990
+ ];
991
+ var ListDatasetsResponse$ = [3, n0, _LDRi,
992
+ 0,
993
+ [_NT, _DSat],
994
+ [0, () => DatasetSummaries]
995
+ ];
996
+ var ListInferenceEventsRequest$ = [3, n0, _LIER,
997
+ 0,
998
+ [_ISN, _IST, _IET, _NT, _MR],
999
+ [0, 4, 4, 0, 1], 3
1000
+ ];
1001
+ var ListInferenceEventsResponse$ = [3, n0, _LIERi,
1002
+ 0,
1003
+ [_NT, _IESnf],
1004
+ [0, () => InferenceEventSummaries]
1005
+ ];
1006
+ var ListInferenceExecutionsRequest$ = [3, n0, _LIERis,
1007
+ 0,
1008
+ [_ISN, _NT, _MR, _DSTA, _DETB, _S],
1009
+ [0, 0, 1, 4, 4, 0], 1
1010
+ ];
1011
+ var ListInferenceExecutionsResponse$ = [3, n0, _LIERist,
1012
+ 0,
1013
+ [_NT, _IESnfe],
1014
+ [0, () => InferenceExecutionSummaries]
1015
+ ];
1016
+ var ListInferenceSchedulersRequest$ = [3, n0, _LISR,
1017
+ 0,
1018
+ [_NT, _MR, _ISNBW, _MN, _S],
1019
+ [0, 1, 0, 0, 0]
1020
+ ];
1021
+ var ListInferenceSchedulersResponse$ = [3, n0, _LISRi,
1022
+ 0,
1023
+ [_NT, _ISSn],
1024
+ [0, () => InferenceSchedulerSummaries]
1025
+ ];
1026
+ var ListLabelGroupsRequest$ = [3, n0, _LLGR,
1027
+ 0,
1028
+ [_LGNBW, _NT, _MR],
1029
+ [0, 0, 1]
1030
+ ];
1031
+ var ListLabelGroupsResponse$ = [3, n0, _LLGRi,
1032
+ 0,
1033
+ [_NT, _LGSa],
1034
+ [0, () => LabelGroupSummaries]
1035
+ ];
1036
+ var ListLabelsRequest$ = [3, n0, _LLR,
1037
+ 0,
1038
+ [_LGN, _IST, _IET, _FCa, _E, _NT, _MR],
1039
+ [0, 4, 4, 0, 0, 0, 1], 1
1040
+ ];
1041
+ var ListLabelsResponse$ = [3, n0, _LLRi,
1042
+ 0,
1043
+ [_NT, _LSa],
1044
+ [0, () => LabelSummaries]
1045
+ ];
1046
+ var ListModelsRequest$ = [3, n0, _LMR,
1047
+ 0,
1048
+ [_NT, _MR, _S, _MNBW, _DNBW],
1049
+ [0, 1, 0, 0, 0]
1050
+ ];
1051
+ var ListModelsResponse$ = [3, n0, _LMRi,
1052
+ 0,
1053
+ [_NT, _MS],
1054
+ [0, () => ModelSummaries]
1055
+ ];
1056
+ var ListModelVersionsRequest$ = [3, n0, _LMVR,
1057
+ 0,
1058
+ [_MN, _NT, _MR, _S, _STo, _CAET, _CAST, _MMV, _MMVi],
1059
+ [0, 0, 1, 0, 0, 4, 4, 1, 1], 1
1060
+ ];
1061
+ var ListModelVersionsResponse$ = [3, n0, _LMVRi,
1062
+ 0,
1063
+ [_NT, _MVS],
1064
+ [0, () => ModelVersionSummaries]
1065
+ ];
1066
+ var ListRetrainingSchedulersRequest$ = [3, n0, _LRSR,
1067
+ 0,
1068
+ [_MNBW, _S, _NT, _MR],
1069
+ [0, 0, 0, 1]
1070
+ ];
1071
+ var ListRetrainingSchedulersResponse$ = [3, n0, _LRSRi,
1072
+ 0,
1073
+ [_RSSe, _NT],
1074
+ [() => RetrainingSchedulerSummaries, 0]
1075
+ ];
1076
+ var ListSensorStatisticsRequest$ = [3, n0, _LSSR,
1077
+ 0,
1078
+ [_DN, _IJI, _MR, _NT],
1079
+ [0, 0, 1, 0], 1
1080
+ ];
1081
+ var ListSensorStatisticsResponse$ = [3, n0, _LSSRi,
1082
+ 0,
1083
+ [_SSS, _NT],
1084
+ [() => SensorStatisticsSummaries, 0]
1085
+ ];
1086
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1087
+ 0,
1088
+ [_RAe],
1089
+ [0], 1
1090
+ ];
1091
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1092
+ 0,
1093
+ [_T],
1094
+ [() => TagList]
1095
+ ];
1096
+ var MissingCompleteSensorData$ = [3, n0, _MCSD,
1097
+ 0,
1098
+ [_ASC],
1099
+ [1], 1
1100
+ ];
1101
+ var MissingSensorData$ = [3, n0, _MSD,
1102
+ 0,
1103
+ [_ASC, _TNOMV],
1104
+ [1, 1], 2
1105
+ ];
1106
+ var ModelDiagnosticsOutputConfiguration$ = [3, n0, _MDOC,
1107
+ 0,
1108
+ [_SOC, _KKI],
1109
+ [() => ModelDiagnosticsS3OutputConfiguration$, 0], 1
1110
+ ];
1111
+ var ModelDiagnosticsS3OutputConfiguration$ = [3, n0, _MDSOC,
1112
+ 0,
1113
+ [_B, _Pr],
1114
+ [0, 0], 1
1115
+ ];
1116
+ var ModelSummary$ = [3, n0, _MSo,
1117
+ 0,
1118
+ [_MN, _MA, _DN, _DA, _S, _CA, _AMV, _AMVA, _LSRS, _LSRMV, _LSRST, _NSRSD, _RSS, _MDOC, _MQ],
1119
+ [0, 0, 0, 0, 0, 4, 1, 0, 0, 1, 4, 4, 0, () => ModelDiagnosticsOutputConfiguration$, 0]
1120
+ ];
1121
+ var ModelVersionSummary$ = [3, n0, _MVSo,
1122
+ 0,
1123
+ [_MN, _MA, _MV, _MVA, _CA, _S, _STo, _MQ],
1124
+ [0, 0, 1, 0, 4, 0, 0, 0]
1125
+ ];
1126
+ var MonotonicValues$ = [3, n0, _MVo,
1127
+ 0,
1128
+ [_S, _Mo],
1129
+ [0, 0], 1
1130
+ ];
1131
+ var MultipleOperatingModes$ = [3, n0, _MOM,
1132
+ 0,
1133
+ [_S],
1134
+ [0], 1
1135
+ ];
1136
+ var PutResourcePolicyRequest$ = [3, n0, _PRPR,
1137
+ 0,
1138
+ [_RAe, _RP, _PRI, _CT],
1139
+ [0, 0, 0, [0, 4]], 2
1140
+ ];
1141
+ var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
1142
+ 0,
1143
+ [_RAe, _PRI],
1144
+ [0, 0]
1145
+ ];
1146
+ var RetrainingSchedulerSummary$ = [3, n0, _RSSet,
1147
+ 0,
1148
+ [_MN, _MA, _S, _RSD, _RF, _LW],
1149
+ [0, 0, 0, 4, 0, 0]
1150
+ ];
1151
+ var S3Object$ = [3, n0, _SO,
1152
+ 0,
1153
+ [_B, _K],
1154
+ [0, 0], 2
1155
+ ];
1156
+ var SensorStatisticsSummary$ = [3, n0, _SSSe,
1157
+ 0,
1158
+ [_CN, _SN, _DE, _MVi, _IV, _IDE, _DT, _CV, _MOM, _LTG, _MVo, _DST, _DET],
1159
+ [0, 0, 2, () => CountPercent$, () => CountPercent$, () => CountPercent$, () => CountPercent$, () => CategoricalValues$, () => MultipleOperatingModes$, () => LargeTimestampGaps$, () => MonotonicValues$, 4, 4]
1160
+ ];
1161
+ var SensorsWithShortDateRange$ = [3, n0, _SWSDR,
1162
+ 0,
1163
+ [_ASC],
1164
+ [1], 1
1165
+ ];
1166
+ var StartDataIngestionJobRequest$ = [3, n0, _SDIJR,
1167
+ 0,
1168
+ [_DN, _IIC, _RA, _CT],
1169
+ [0, () => IngestionInputConfiguration$, 0, [0, 4]], 3
1170
+ ];
1171
+ var StartDataIngestionJobResponse$ = [3, n0, _SDIJRt,
1172
+ 0,
1173
+ [_JI, _S],
1174
+ [0, 0]
1175
+ ];
1176
+ var StartInferenceSchedulerRequest$ = [3, n0, _SISR,
1177
+ 0,
1178
+ [_ISN],
1179
+ [0], 1
1180
+ ];
1181
+ var StartInferenceSchedulerResponse$ = [3, n0, _SISRt,
1182
+ 0,
1183
+ [_MA, _MN, _ISN, _ISA, _S],
1184
+ [0, 0, 0, 0, 0]
1185
+ ];
1186
+ var StartRetrainingSchedulerRequest$ = [3, n0, _SRSR,
1187
+ 0,
1188
+ [_MN],
1189
+ [0], 1
1190
+ ];
1191
+ var StartRetrainingSchedulerResponse$ = [3, n0, _SRSRt,
1192
+ 0,
1193
+ [_MN, _MA, _S],
1194
+ [0, 0, 0]
1195
+ ];
1196
+ var StopInferenceSchedulerRequest$ = [3, n0, _SISRto,
1197
+ 0,
1198
+ [_ISN],
1199
+ [0], 1
1200
+ ];
1201
+ var StopInferenceSchedulerResponse$ = [3, n0, _SISRtop,
1202
+ 0,
1203
+ [_MA, _MN, _ISN, _ISA, _S],
1204
+ [0, 0, 0, 0, 0]
1205
+ ];
1206
+ var StopRetrainingSchedulerRequest$ = [3, n0, _SRSRto,
1207
+ 0,
1208
+ [_MN],
1209
+ [0], 1
1210
+ ];
1211
+ var StopRetrainingSchedulerResponse$ = [3, n0, _SRSRtop,
1212
+ 0,
1213
+ [_MN, _MA, _S],
1214
+ [0, 0, 0]
1215
+ ];
1216
+ var Tag$ = [3, n0, _Ta,
1217
+ 0,
1218
+ [_K, _V],
1219
+ [0, 0], 2
1220
+ ];
1221
+ var TagResourceRequest$ = [3, n0, _TRR,
1222
+ 0,
1223
+ [_RAe, _T],
1224
+ [0, () => TagList], 2
1225
+ ];
1226
+ var TagResourceResponse$ = [3, n0, _TRRa,
1227
+ 0,
1228
+ [],
1229
+ []
1230
+ ];
1231
+ var UnsupportedTimestamps$ = [3, n0, _UT,
1232
+ 0,
1233
+ [_TNOUT],
1234
+ [1], 1
1235
+ ];
1236
+ var UntagResourceRequest$ = [3, n0, _URR,
1237
+ 0,
1238
+ [_RAe, _TK],
1239
+ [0, 64 | 0], 2
1240
+ ];
1241
+ var UntagResourceResponse$ = [3, n0, _URRn,
1242
+ 0,
1243
+ [],
1244
+ []
1245
+ ];
1246
+ var UpdateActiveModelVersionRequest$ = [3, n0, _UAMVR,
1247
+ 0,
1248
+ [_MN, _MV],
1249
+ [0, 1], 2
1250
+ ];
1251
+ var UpdateActiveModelVersionResponse$ = [3, n0, _UAMVRp,
1252
+ 0,
1253
+ [_MN, _MA, _CAV, _PAV, _CAVA, _PAVA],
1254
+ [0, 0, 1, 1, 0, 0]
1255
+ ];
1256
+ var UpdateInferenceSchedulerRequest$ = [3, n0, _UISR,
1257
+ 0,
1258
+ [_ISN, _DDOIM, _DUF, _DIC, _DOC, _RA],
1259
+ [0, 1, 0, () => InferenceInputConfiguration$, () => InferenceOutputConfiguration$, 0], 1
1260
+ ];
1261
+ var UpdateLabelGroupRequest$ = [3, n0, _ULGR,
1262
+ 0,
1263
+ [_LGN, _FC],
1264
+ [0, 64 | 0], 1
1265
+ ];
1266
+ var UpdateModelRequest$ = [3, n0, _UMR,
1267
+ 0,
1268
+ [_MN, _LIC, _RA, _MDOC],
1269
+ [0, () => LabelsInputConfiguration$, 0, () => ModelDiagnosticsOutputConfiguration$], 1
1270
+ ];
1271
+ var UpdateRetrainingSchedulerRequest$ = [3, n0, _URSR,
1272
+ 0,
1273
+ [_MN, _RSD, _RF, _LW, _PM],
1274
+ [0, 4, 0, 0, 0], 1
1275
+ ];
1276
+ var __Unit = "unit";
1277
+ var DataIngestionJobSummaries = [1, n0, _DIJSa,
1278
+ 0, () => DataIngestionJobSummary$
1279
+ ];
1280
+ var DatasetSummaries = [1, n0, _DSat,
1281
+ 0, () => DatasetSummary$
1282
+ ];
1283
+ var InferenceEventSummaries = [1, n0, _IESnf,
1284
+ 0, () => InferenceEventSummary$
1285
+ ];
1286
+ var InferenceExecutionSummaries = [1, n0, _IESnfe,
1287
+ 0, () => InferenceExecutionSummary$
1288
+ ];
1289
+ var InferenceSchedulerSummaries = [1, n0, _ISSn,
1290
+ 0, () => InferenceSchedulerSummary$
1291
+ ];
1292
+ var LabelGroupSummaries = [1, n0, _LGSa,
1293
+ 0, () => LabelGroupSummary$
1294
+ ];
1295
+ var LabelSummaries = [1, n0, _LSa,
1296
+ 0, () => LabelSummary$
1297
+ ];
1298
+ var ListOfDiscardedFiles = [1, n0, _LODF,
1299
+ 0, () => S3Object$
1300
+ ];
1301
+ var ModelSummaries = [1, n0, _MS,
1302
+ 0, () => ModelSummary$
1303
+ ];
1304
+ var ModelVersionSummaries = [1, n0, _MVS,
1305
+ 0, () => ModelVersionSummary$
1306
+ ];
1307
+ var RetrainingSchedulerSummaries = [1, n0, _RSSe,
1308
+ 0, () => RetrainingSchedulerSummary$
1309
+ ];
1310
+ var SensorStatisticsSummaries = [1, n0, _SSS,
1311
+ 0, () => SensorStatisticsSummary$
1312
+ ];
1313
+ var TagList = [1, n0, _TL,
1314
+ 0, () => Tag$
1315
+ ];
1316
+ var CreateDataset$ = [9, n0, _CD,
1317
+ 0, () => CreateDatasetRequest$, () => CreateDatasetResponse$
1318
+ ];
1319
+ var CreateInferenceScheduler$ = [9, n0, _CIS,
1320
+ 0, () => CreateInferenceSchedulerRequest$, () => CreateInferenceSchedulerResponse$
1321
+ ];
1322
+ var CreateLabel$ = [9, n0, _CL,
1323
+ 0, () => CreateLabelRequest$, () => CreateLabelResponse$
1324
+ ];
1325
+ var CreateLabelGroup$ = [9, n0, _CLG,
1326
+ 0, () => CreateLabelGroupRequest$, () => CreateLabelGroupResponse$
1327
+ ];
1328
+ var CreateModel$ = [9, n0, _CM,
1329
+ 0, () => CreateModelRequest$, () => CreateModelResponse$
1330
+ ];
1331
+ var CreateRetrainingScheduler$ = [9, n0, _CRS,
1332
+ 0, () => CreateRetrainingSchedulerRequest$, () => CreateRetrainingSchedulerResponse$
1333
+ ];
1334
+ var DeleteDataset$ = [9, n0, _DD,
1335
+ 0, () => DeleteDatasetRequest$, () => __Unit
1336
+ ];
1337
+ var DeleteInferenceScheduler$ = [9, n0, _DIS,
1338
+ 0, () => DeleteInferenceSchedulerRequest$, () => __Unit
1339
+ ];
1340
+ var DeleteLabel$ = [9, n0, _DL,
1341
+ 0, () => DeleteLabelRequest$, () => __Unit
1342
+ ];
1343
+ var DeleteLabelGroup$ = [9, n0, _DLG,
1344
+ 0, () => DeleteLabelGroupRequest$, () => __Unit
1345
+ ];
1346
+ var DeleteModel$ = [9, n0, _DM,
1347
+ 0, () => DeleteModelRequest$, () => __Unit
1348
+ ];
1349
+ var DeleteResourcePolicy$ = [9, n0, _DRP,
1350
+ 0, () => DeleteResourcePolicyRequest$, () => __Unit
1351
+ ];
1352
+ var DeleteRetrainingScheduler$ = [9, n0, _DRS,
1353
+ 0, () => DeleteRetrainingSchedulerRequest$, () => __Unit
1354
+ ];
1355
+ var DescribeDataIngestionJob$ = [9, n0, _DDIJ,
1356
+ 0, () => DescribeDataIngestionJobRequest$, () => DescribeDataIngestionJobResponse$
1357
+ ];
1358
+ var DescribeDataset$ = [9, n0, _DDe,
1359
+ 0, () => DescribeDatasetRequest$, () => DescribeDatasetResponse$
1360
+ ];
1361
+ var DescribeInferenceScheduler$ = [9, n0, _DISe,
1362
+ 0, () => DescribeInferenceSchedulerRequest$, () => DescribeInferenceSchedulerResponse$
1363
+ ];
1364
+ var DescribeLabel$ = [9, n0, _DLe,
1365
+ 0, () => DescribeLabelRequest$, () => DescribeLabelResponse$
1366
+ ];
1367
+ var DescribeLabelGroup$ = [9, n0, _DLGe,
1368
+ 0, () => DescribeLabelGroupRequest$, () => DescribeLabelGroupResponse$
1369
+ ];
1370
+ var DescribeModel$ = [9, n0, _DMe,
1371
+ 0, () => DescribeModelRequest$, () => DescribeModelResponse$
1372
+ ];
1373
+ var DescribeModelVersion$ = [9, n0, _DMV,
1374
+ 0, () => DescribeModelVersionRequest$, () => DescribeModelVersionResponse$
1375
+ ];
1376
+ var DescribeResourcePolicy$ = [9, n0, _DRPe,
1377
+ 0, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
1378
+ ];
1379
+ var DescribeRetrainingScheduler$ = [9, n0, _DRSe,
1380
+ 0, () => DescribeRetrainingSchedulerRequest$, () => DescribeRetrainingSchedulerResponse$
1381
+ ];
1382
+ var ImportDataset$ = [9, n0, _ID,
1383
+ 0, () => ImportDatasetRequest$, () => ImportDatasetResponse$
1384
+ ];
1385
+ var ImportModelVersion$ = [9, n0, _IMV,
1386
+ 0, () => ImportModelVersionRequest$, () => ImportModelVersionResponse$
1387
+ ];
1388
+ var ListDataIngestionJobs$ = [9, n0, _LDIJ,
1389
+ 0, () => ListDataIngestionJobsRequest$, () => ListDataIngestionJobsResponse$
1390
+ ];
1391
+ var ListDatasets$ = [9, n0, _LD,
1392
+ 0, () => ListDatasetsRequest$, () => ListDatasetsResponse$
1393
+ ];
1394
+ var ListInferenceEvents$ = [9, n0, _LIE,
1395
+ 0, () => ListInferenceEventsRequest$, () => ListInferenceEventsResponse$
1396
+ ];
1397
+ var ListInferenceExecutions$ = [9, n0, _LIEi,
1398
+ 0, () => ListInferenceExecutionsRequest$, () => ListInferenceExecutionsResponse$
1399
+ ];
1400
+ var ListInferenceSchedulers$ = [9, n0, _LIS,
1401
+ 0, () => ListInferenceSchedulersRequest$, () => ListInferenceSchedulersResponse$
1402
+ ];
1403
+ var ListLabelGroups$ = [9, n0, _LLG,
1404
+ 0, () => ListLabelGroupsRequest$, () => ListLabelGroupsResponse$
1405
+ ];
1406
+ var ListLabels$ = [9, n0, _LL,
1407
+ 0, () => ListLabelsRequest$, () => ListLabelsResponse$
1408
+ ];
1409
+ var ListModels$ = [9, n0, _LM,
1410
+ 0, () => ListModelsRequest$, () => ListModelsResponse$
1411
+ ];
1412
+ var ListModelVersions$ = [9, n0, _LMV,
1413
+ 0, () => ListModelVersionsRequest$, () => ListModelVersionsResponse$
1414
+ ];
1415
+ var ListRetrainingSchedulers$ = [9, n0, _LRS,
1416
+ 0, () => ListRetrainingSchedulersRequest$, () => ListRetrainingSchedulersResponse$
1417
+ ];
1418
+ var ListSensorStatistics$ = [9, n0, _LSS,
1419
+ 0, () => ListSensorStatisticsRequest$, () => ListSensorStatisticsResponse$
1420
+ ];
1421
+ var ListTagsForResource$ = [9, n0, _LTFR,
1422
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1423
+ ];
1424
+ var PutResourcePolicy$ = [9, n0, _PRP,
1425
+ 0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
1426
+ ];
1427
+ var StartDataIngestionJob$ = [9, n0, _SDIJ,
1428
+ 0, () => StartDataIngestionJobRequest$, () => StartDataIngestionJobResponse$
1429
+ ];
1430
+ var StartInferenceScheduler$ = [9, n0, _SIS,
1431
+ 0, () => StartInferenceSchedulerRequest$, () => StartInferenceSchedulerResponse$
1432
+ ];
1433
+ var StartRetrainingScheduler$ = [9, n0, _SRS,
1434
+ 0, () => StartRetrainingSchedulerRequest$, () => StartRetrainingSchedulerResponse$
1435
+ ];
1436
+ var StopInferenceScheduler$ = [9, n0, _SISt,
1437
+ 0, () => StopInferenceSchedulerRequest$, () => StopInferenceSchedulerResponse$
1438
+ ];
1439
+ var StopRetrainingScheduler$ = [9, n0, _SRSt,
1440
+ 0, () => StopRetrainingSchedulerRequest$, () => StopRetrainingSchedulerResponse$
1441
+ ];
1442
+ var TagResource$ = [9, n0, _TR,
1443
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1444
+ ];
1445
+ var UntagResource$ = [9, n0, _UR,
1446
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1447
+ ];
1448
+ var UpdateActiveModelVersion$ = [9, n0, _UAMV,
1449
+ 0, () => UpdateActiveModelVersionRequest$, () => UpdateActiveModelVersionResponse$
1450
+ ];
1451
+ var UpdateInferenceScheduler$ = [9, n0, _UIS,
1452
+ 0, () => UpdateInferenceSchedulerRequest$, () => __Unit
1453
+ ];
1454
+ var UpdateLabelGroup$ = [9, n0, _ULG,
1455
+ 0, () => UpdateLabelGroupRequest$, () => __Unit
1456
+ ];
1457
+ var UpdateModel$ = [9, n0, _UM,
1458
+ 0, () => UpdateModelRequest$, () => __Unit
1459
+ ];
1460
+ var UpdateRetrainingScheduler$ = [9, n0, _URS,
1461
+ 0, () => UpdateRetrainingSchedulerRequest$, () => __Unit
1462
+ ];
1463
+
1464
+ const getRuntimeConfig$1 = (config) => {
1465
+ return {
1466
+ apiVersion: "2020-12-15",
1467
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1468
+ base64Encoder: config?.base64Encoder ?? toBase64,
1469
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1470
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1471
+ extensions: config?.extensions ?? [],
1472
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultLookoutEquipmentHttpAuthSchemeProvider,
1473
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1474
+ {
1475
+ schemeId: "aws.auth#sigv4",
1476
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1477
+ signer: new AwsSdkSigV4Signer(),
1478
+ },
1479
+ ],
1480
+ logger: config?.logger ?? new NoOpLogger(),
1481
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1482
+ protocolSettings: config?.protocolSettings ?? {
1483
+ defaultNamespace: "com.amazonaws.lookoutequipment",
1484
+ errorTypeRegistries,
1485
+ version: "2020-12-15",
1486
+ serviceTarget: "AWSLookoutEquipmentFrontendService",
1487
+ },
1488
+ serviceId: config?.serviceId ?? "LookoutEquipment",
1489
+ sha256: config?.sha256 ?? Sha256,
1490
+ urlParser: config?.urlParser ?? parseUrl,
1491
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1492
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1493
+ };
1494
+ };
1495
+
1496
+ const getRuntimeConfig = (config) => {
1497
+ emitWarningIfUnsupportedVersion(process.version);
1498
+ const defaultsMode = resolveDefaultsModeConfig(config);
1499
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1500
+ const clientSharedValues = getRuntimeConfig$1(config);
1501
+ emitWarningIfUnsupportedVersion$1(process.version);
1502
+ const loaderConfig = {
1503
+ profile: config?.profile,
1504
+ logger: clientSharedValues.logger,
1505
+ };
1506
+ return {
1507
+ ...clientSharedValues,
1508
+ ...config,
1509
+ runtime: "node",
1510
+ defaultsMode,
1511
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1512
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1513
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1514
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1515
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1516
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1517
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1518
+ retryMode: config?.retryMode ??
1519
+ loadConfig({
1520
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1521
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1522
+ }, config),
1523
+ streamCollector: config?.streamCollector ?? streamCollector,
1524
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1525
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1526
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1527
+ };
1528
+ };
1529
+
34
1530
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1531
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1532
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -896,75 +2392,268 @@ const Monotonicity = {
896
2392
  STATIC: "STATIC",
897
2393
  };
898
2394
 
2395
+ exports.AccessDeniedException = AccessDeniedException;
2396
+ exports.AccessDeniedException$ = AccessDeniedException$;
899
2397
  exports.AutoPromotionResult = AutoPromotionResult;
2398
+ exports.CategoricalValues$ = CategoricalValues$;
2399
+ exports.ConflictException = ConflictException;
2400
+ exports.ConflictException$ = ConflictException$;
2401
+ exports.CountPercent$ = CountPercent$;
2402
+ exports.CreateDataset$ = CreateDataset$;
900
2403
  exports.CreateDatasetCommand = CreateDatasetCommand;
2404
+ exports.CreateDatasetRequest$ = CreateDatasetRequest$;
2405
+ exports.CreateDatasetResponse$ = CreateDatasetResponse$;
2406
+ exports.CreateInferenceScheduler$ = CreateInferenceScheduler$;
901
2407
  exports.CreateInferenceSchedulerCommand = CreateInferenceSchedulerCommand;
2408
+ exports.CreateInferenceSchedulerRequest$ = CreateInferenceSchedulerRequest$;
2409
+ exports.CreateInferenceSchedulerResponse$ = CreateInferenceSchedulerResponse$;
2410
+ exports.CreateLabel$ = CreateLabel$;
902
2411
  exports.CreateLabelCommand = CreateLabelCommand;
2412
+ exports.CreateLabelGroup$ = CreateLabelGroup$;
903
2413
  exports.CreateLabelGroupCommand = CreateLabelGroupCommand;
2414
+ exports.CreateLabelGroupRequest$ = CreateLabelGroupRequest$;
2415
+ exports.CreateLabelGroupResponse$ = CreateLabelGroupResponse$;
2416
+ exports.CreateLabelRequest$ = CreateLabelRequest$;
2417
+ exports.CreateLabelResponse$ = CreateLabelResponse$;
2418
+ exports.CreateModel$ = CreateModel$;
904
2419
  exports.CreateModelCommand = CreateModelCommand;
2420
+ exports.CreateModelRequest$ = CreateModelRequest$;
2421
+ exports.CreateModelResponse$ = CreateModelResponse$;
2422
+ exports.CreateRetrainingScheduler$ = CreateRetrainingScheduler$;
905
2423
  exports.CreateRetrainingSchedulerCommand = CreateRetrainingSchedulerCommand;
2424
+ exports.CreateRetrainingSchedulerRequest$ = CreateRetrainingSchedulerRequest$;
2425
+ exports.CreateRetrainingSchedulerResponse$ = CreateRetrainingSchedulerResponse$;
2426
+ exports.DataIngestionJobSummary$ = DataIngestionJobSummary$;
2427
+ exports.DataPreProcessingConfiguration$ = DataPreProcessingConfiguration$;
2428
+ exports.DataQualitySummary$ = DataQualitySummary$;
906
2429
  exports.DataUploadFrequency = DataUploadFrequency;
2430
+ exports.DatasetSchema$ = DatasetSchema$;
907
2431
  exports.DatasetStatus = DatasetStatus;
2432
+ exports.DatasetSummary$ = DatasetSummary$;
2433
+ exports.DeleteDataset$ = DeleteDataset$;
908
2434
  exports.DeleteDatasetCommand = DeleteDatasetCommand;
2435
+ exports.DeleteDatasetRequest$ = DeleteDatasetRequest$;
2436
+ exports.DeleteInferenceScheduler$ = DeleteInferenceScheduler$;
909
2437
  exports.DeleteInferenceSchedulerCommand = DeleteInferenceSchedulerCommand;
2438
+ exports.DeleteInferenceSchedulerRequest$ = DeleteInferenceSchedulerRequest$;
2439
+ exports.DeleteLabel$ = DeleteLabel$;
910
2440
  exports.DeleteLabelCommand = DeleteLabelCommand;
2441
+ exports.DeleteLabelGroup$ = DeleteLabelGroup$;
911
2442
  exports.DeleteLabelGroupCommand = DeleteLabelGroupCommand;
2443
+ exports.DeleteLabelGroupRequest$ = DeleteLabelGroupRequest$;
2444
+ exports.DeleteLabelRequest$ = DeleteLabelRequest$;
2445
+ exports.DeleteModel$ = DeleteModel$;
912
2446
  exports.DeleteModelCommand = DeleteModelCommand;
2447
+ exports.DeleteModelRequest$ = DeleteModelRequest$;
2448
+ exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
913
2449
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
2450
+ exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
2451
+ exports.DeleteRetrainingScheduler$ = DeleteRetrainingScheduler$;
914
2452
  exports.DeleteRetrainingSchedulerCommand = DeleteRetrainingSchedulerCommand;
2453
+ exports.DeleteRetrainingSchedulerRequest$ = DeleteRetrainingSchedulerRequest$;
2454
+ exports.DescribeDataIngestionJob$ = DescribeDataIngestionJob$;
915
2455
  exports.DescribeDataIngestionJobCommand = DescribeDataIngestionJobCommand;
2456
+ exports.DescribeDataIngestionJobRequest$ = DescribeDataIngestionJobRequest$;
2457
+ exports.DescribeDataIngestionJobResponse$ = DescribeDataIngestionJobResponse$;
2458
+ exports.DescribeDataset$ = DescribeDataset$;
916
2459
  exports.DescribeDatasetCommand = DescribeDatasetCommand;
2460
+ exports.DescribeDatasetRequest$ = DescribeDatasetRequest$;
2461
+ exports.DescribeDatasetResponse$ = DescribeDatasetResponse$;
2462
+ exports.DescribeInferenceScheduler$ = DescribeInferenceScheduler$;
917
2463
  exports.DescribeInferenceSchedulerCommand = DescribeInferenceSchedulerCommand;
2464
+ exports.DescribeInferenceSchedulerRequest$ = DescribeInferenceSchedulerRequest$;
2465
+ exports.DescribeInferenceSchedulerResponse$ = DescribeInferenceSchedulerResponse$;
2466
+ exports.DescribeLabel$ = DescribeLabel$;
918
2467
  exports.DescribeLabelCommand = DescribeLabelCommand;
2468
+ exports.DescribeLabelGroup$ = DescribeLabelGroup$;
919
2469
  exports.DescribeLabelGroupCommand = DescribeLabelGroupCommand;
2470
+ exports.DescribeLabelGroupRequest$ = DescribeLabelGroupRequest$;
2471
+ exports.DescribeLabelGroupResponse$ = DescribeLabelGroupResponse$;
2472
+ exports.DescribeLabelRequest$ = DescribeLabelRequest$;
2473
+ exports.DescribeLabelResponse$ = DescribeLabelResponse$;
2474
+ exports.DescribeModel$ = DescribeModel$;
920
2475
  exports.DescribeModelCommand = DescribeModelCommand;
2476
+ exports.DescribeModelRequest$ = DescribeModelRequest$;
2477
+ exports.DescribeModelResponse$ = DescribeModelResponse$;
2478
+ exports.DescribeModelVersion$ = DescribeModelVersion$;
921
2479
  exports.DescribeModelVersionCommand = DescribeModelVersionCommand;
2480
+ exports.DescribeModelVersionRequest$ = DescribeModelVersionRequest$;
2481
+ exports.DescribeModelVersionResponse$ = DescribeModelVersionResponse$;
2482
+ exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
922
2483
  exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
2484
+ exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
2485
+ exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
2486
+ exports.DescribeRetrainingScheduler$ = DescribeRetrainingScheduler$;
923
2487
  exports.DescribeRetrainingSchedulerCommand = DescribeRetrainingSchedulerCommand;
2488
+ exports.DescribeRetrainingSchedulerRequest$ = DescribeRetrainingSchedulerRequest$;
2489
+ exports.DescribeRetrainingSchedulerResponse$ = DescribeRetrainingSchedulerResponse$;
2490
+ exports.DuplicateTimestamps$ = DuplicateTimestamps$;
2491
+ exports.ImportDataset$ = ImportDataset$;
924
2492
  exports.ImportDatasetCommand = ImportDatasetCommand;
2493
+ exports.ImportDatasetRequest$ = ImportDatasetRequest$;
2494
+ exports.ImportDatasetResponse$ = ImportDatasetResponse$;
2495
+ exports.ImportModelVersion$ = ImportModelVersion$;
925
2496
  exports.ImportModelVersionCommand = ImportModelVersionCommand;
2497
+ exports.ImportModelVersionRequest$ = ImportModelVersionRequest$;
2498
+ exports.ImportModelVersionResponse$ = ImportModelVersionResponse$;
926
2499
  exports.InferenceDataImportStrategy = InferenceDataImportStrategy;
2500
+ exports.InferenceEventSummary$ = InferenceEventSummary$;
927
2501
  exports.InferenceExecutionStatus = InferenceExecutionStatus;
2502
+ exports.InferenceExecutionSummary$ = InferenceExecutionSummary$;
2503
+ exports.InferenceInputConfiguration$ = InferenceInputConfiguration$;
2504
+ exports.InferenceInputNameConfiguration$ = InferenceInputNameConfiguration$;
2505
+ exports.InferenceOutputConfiguration$ = InferenceOutputConfiguration$;
2506
+ exports.InferenceS3InputConfiguration$ = InferenceS3InputConfiguration$;
2507
+ exports.InferenceS3OutputConfiguration$ = InferenceS3OutputConfiguration$;
928
2508
  exports.InferenceSchedulerStatus = InferenceSchedulerStatus;
2509
+ exports.InferenceSchedulerSummary$ = InferenceSchedulerSummary$;
2510
+ exports.IngestedFilesSummary$ = IngestedFilesSummary$;
2511
+ exports.IngestionInputConfiguration$ = IngestionInputConfiguration$;
929
2512
  exports.IngestionJobStatus = IngestionJobStatus;
2513
+ exports.IngestionS3InputConfiguration$ = IngestionS3InputConfiguration$;
2514
+ exports.InsufficientSensorData$ = InsufficientSensorData$;
2515
+ exports.InternalServerException = InternalServerException;
2516
+ exports.InternalServerException$ = InternalServerException$;
2517
+ exports.InvalidSensorData$ = InvalidSensorData$;
2518
+ exports.LabelGroupSummary$ = LabelGroupSummary$;
930
2519
  exports.LabelRating = LabelRating;
2520
+ exports.LabelSummary$ = LabelSummary$;
2521
+ exports.LabelsInputConfiguration$ = LabelsInputConfiguration$;
2522
+ exports.LabelsS3InputConfiguration$ = LabelsS3InputConfiguration$;
2523
+ exports.LargeTimestampGaps$ = LargeTimestampGaps$;
931
2524
  exports.LatestInferenceResult = LatestInferenceResult;
2525
+ exports.ListDataIngestionJobs$ = ListDataIngestionJobs$;
932
2526
  exports.ListDataIngestionJobsCommand = ListDataIngestionJobsCommand;
2527
+ exports.ListDataIngestionJobsRequest$ = ListDataIngestionJobsRequest$;
2528
+ exports.ListDataIngestionJobsResponse$ = ListDataIngestionJobsResponse$;
2529
+ exports.ListDatasets$ = ListDatasets$;
933
2530
  exports.ListDatasetsCommand = ListDatasetsCommand;
2531
+ exports.ListDatasetsRequest$ = ListDatasetsRequest$;
2532
+ exports.ListDatasetsResponse$ = ListDatasetsResponse$;
2533
+ exports.ListInferenceEvents$ = ListInferenceEvents$;
934
2534
  exports.ListInferenceEventsCommand = ListInferenceEventsCommand;
2535
+ exports.ListInferenceEventsRequest$ = ListInferenceEventsRequest$;
2536
+ exports.ListInferenceEventsResponse$ = ListInferenceEventsResponse$;
2537
+ exports.ListInferenceExecutions$ = ListInferenceExecutions$;
935
2538
  exports.ListInferenceExecutionsCommand = ListInferenceExecutionsCommand;
2539
+ exports.ListInferenceExecutionsRequest$ = ListInferenceExecutionsRequest$;
2540
+ exports.ListInferenceExecutionsResponse$ = ListInferenceExecutionsResponse$;
2541
+ exports.ListInferenceSchedulers$ = ListInferenceSchedulers$;
936
2542
  exports.ListInferenceSchedulersCommand = ListInferenceSchedulersCommand;
2543
+ exports.ListInferenceSchedulersRequest$ = ListInferenceSchedulersRequest$;
2544
+ exports.ListInferenceSchedulersResponse$ = ListInferenceSchedulersResponse$;
2545
+ exports.ListLabelGroups$ = ListLabelGroups$;
937
2546
  exports.ListLabelGroupsCommand = ListLabelGroupsCommand;
2547
+ exports.ListLabelGroupsRequest$ = ListLabelGroupsRequest$;
2548
+ exports.ListLabelGroupsResponse$ = ListLabelGroupsResponse$;
2549
+ exports.ListLabels$ = ListLabels$;
938
2550
  exports.ListLabelsCommand = ListLabelsCommand;
2551
+ exports.ListLabelsRequest$ = ListLabelsRequest$;
2552
+ exports.ListLabelsResponse$ = ListLabelsResponse$;
2553
+ exports.ListModelVersions$ = ListModelVersions$;
939
2554
  exports.ListModelVersionsCommand = ListModelVersionsCommand;
2555
+ exports.ListModelVersionsRequest$ = ListModelVersionsRequest$;
2556
+ exports.ListModelVersionsResponse$ = ListModelVersionsResponse$;
2557
+ exports.ListModels$ = ListModels$;
940
2558
  exports.ListModelsCommand = ListModelsCommand;
2559
+ exports.ListModelsRequest$ = ListModelsRequest$;
2560
+ exports.ListModelsResponse$ = ListModelsResponse$;
2561
+ exports.ListRetrainingSchedulers$ = ListRetrainingSchedulers$;
941
2562
  exports.ListRetrainingSchedulersCommand = ListRetrainingSchedulersCommand;
2563
+ exports.ListRetrainingSchedulersRequest$ = ListRetrainingSchedulersRequest$;
2564
+ exports.ListRetrainingSchedulersResponse$ = ListRetrainingSchedulersResponse$;
2565
+ exports.ListSensorStatistics$ = ListSensorStatistics$;
942
2566
  exports.ListSensorStatisticsCommand = ListSensorStatisticsCommand;
2567
+ exports.ListSensorStatisticsRequest$ = ListSensorStatisticsRequest$;
2568
+ exports.ListSensorStatisticsResponse$ = ListSensorStatisticsResponse$;
2569
+ exports.ListTagsForResource$ = ListTagsForResource$;
943
2570
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2571
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2572
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
944
2573
  exports.LookoutEquipment = LookoutEquipment;
945
2574
  exports.LookoutEquipmentClient = LookoutEquipmentClient;
2575
+ exports.LookoutEquipmentServiceException = LookoutEquipmentServiceException;
2576
+ exports.LookoutEquipmentServiceException$ = LookoutEquipmentServiceException$;
2577
+ exports.MissingCompleteSensorData$ = MissingCompleteSensorData$;
2578
+ exports.MissingSensorData$ = MissingSensorData$;
2579
+ exports.ModelDiagnosticsOutputConfiguration$ = ModelDiagnosticsOutputConfiguration$;
2580
+ exports.ModelDiagnosticsS3OutputConfiguration$ = ModelDiagnosticsS3OutputConfiguration$;
946
2581
  exports.ModelPromoteMode = ModelPromoteMode;
947
2582
  exports.ModelQuality = ModelQuality;
948
2583
  exports.ModelStatus = ModelStatus;
2584
+ exports.ModelSummary$ = ModelSummary$;
949
2585
  exports.ModelVersionSourceType = ModelVersionSourceType;
950
2586
  exports.ModelVersionStatus = ModelVersionStatus;
2587
+ exports.ModelVersionSummary$ = ModelVersionSummary$;
2588
+ exports.MonotonicValues$ = MonotonicValues$;
951
2589
  exports.Monotonicity = Monotonicity;
2590
+ exports.MultipleOperatingModes$ = MultipleOperatingModes$;
2591
+ exports.PutResourcePolicy$ = PutResourcePolicy$;
952
2592
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
2593
+ exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
2594
+ exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
2595
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2596
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
953
2597
  exports.RetrainingSchedulerStatus = RetrainingSchedulerStatus;
2598
+ exports.RetrainingSchedulerSummary$ = RetrainingSchedulerSummary$;
2599
+ exports.S3Object$ = S3Object$;
2600
+ exports.SensorStatisticsSummary$ = SensorStatisticsSummary$;
2601
+ exports.SensorsWithShortDateRange$ = SensorsWithShortDateRange$;
2602
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2603
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2604
+ exports.StartDataIngestionJob$ = StartDataIngestionJob$;
954
2605
  exports.StartDataIngestionJobCommand = StartDataIngestionJobCommand;
2606
+ exports.StartDataIngestionJobRequest$ = StartDataIngestionJobRequest$;
2607
+ exports.StartDataIngestionJobResponse$ = StartDataIngestionJobResponse$;
2608
+ exports.StartInferenceScheduler$ = StartInferenceScheduler$;
955
2609
  exports.StartInferenceSchedulerCommand = StartInferenceSchedulerCommand;
2610
+ exports.StartInferenceSchedulerRequest$ = StartInferenceSchedulerRequest$;
2611
+ exports.StartInferenceSchedulerResponse$ = StartInferenceSchedulerResponse$;
2612
+ exports.StartRetrainingScheduler$ = StartRetrainingScheduler$;
956
2613
  exports.StartRetrainingSchedulerCommand = StartRetrainingSchedulerCommand;
2614
+ exports.StartRetrainingSchedulerRequest$ = StartRetrainingSchedulerRequest$;
2615
+ exports.StartRetrainingSchedulerResponse$ = StartRetrainingSchedulerResponse$;
957
2616
  exports.StatisticalIssueStatus = StatisticalIssueStatus;
2617
+ exports.StopInferenceScheduler$ = StopInferenceScheduler$;
958
2618
  exports.StopInferenceSchedulerCommand = StopInferenceSchedulerCommand;
2619
+ exports.StopInferenceSchedulerRequest$ = StopInferenceSchedulerRequest$;
2620
+ exports.StopInferenceSchedulerResponse$ = StopInferenceSchedulerResponse$;
2621
+ exports.StopRetrainingScheduler$ = StopRetrainingScheduler$;
959
2622
  exports.StopRetrainingSchedulerCommand = StopRetrainingSchedulerCommand;
2623
+ exports.StopRetrainingSchedulerRequest$ = StopRetrainingSchedulerRequest$;
2624
+ exports.StopRetrainingSchedulerResponse$ = StopRetrainingSchedulerResponse$;
2625
+ exports.Tag$ = Tag$;
2626
+ exports.TagResource$ = TagResource$;
960
2627
  exports.TagResourceCommand = TagResourceCommand;
2628
+ exports.TagResourceRequest$ = TagResourceRequest$;
2629
+ exports.TagResourceResponse$ = TagResourceResponse$;
961
2630
  exports.TargetSamplingRate = TargetSamplingRate;
2631
+ exports.ThrottlingException = ThrottlingException;
2632
+ exports.ThrottlingException$ = ThrottlingException$;
2633
+ exports.UnsupportedTimestamps$ = UnsupportedTimestamps$;
2634
+ exports.UntagResource$ = UntagResource$;
962
2635
  exports.UntagResourceCommand = UntagResourceCommand;
2636
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2637
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2638
+ exports.UpdateActiveModelVersion$ = UpdateActiveModelVersion$;
963
2639
  exports.UpdateActiveModelVersionCommand = UpdateActiveModelVersionCommand;
2640
+ exports.UpdateActiveModelVersionRequest$ = UpdateActiveModelVersionRequest$;
2641
+ exports.UpdateActiveModelVersionResponse$ = UpdateActiveModelVersionResponse$;
2642
+ exports.UpdateInferenceScheduler$ = UpdateInferenceScheduler$;
964
2643
  exports.UpdateInferenceSchedulerCommand = UpdateInferenceSchedulerCommand;
2644
+ exports.UpdateInferenceSchedulerRequest$ = UpdateInferenceSchedulerRequest$;
2645
+ exports.UpdateLabelGroup$ = UpdateLabelGroup$;
965
2646
  exports.UpdateLabelGroupCommand = UpdateLabelGroupCommand;
2647
+ exports.UpdateLabelGroupRequest$ = UpdateLabelGroupRequest$;
2648
+ exports.UpdateModel$ = UpdateModel$;
966
2649
  exports.UpdateModelCommand = UpdateModelCommand;
2650
+ exports.UpdateModelRequest$ = UpdateModelRequest$;
2651
+ exports.UpdateRetrainingScheduler$ = UpdateRetrainingScheduler$;
967
2652
  exports.UpdateRetrainingSchedulerCommand = UpdateRetrainingSchedulerCommand;
2653
+ exports.UpdateRetrainingSchedulerRequest$ = UpdateRetrainingSchedulerRequest$;
2654
+ exports.ValidationException = ValidationException;
2655
+ exports.ValidationException$ = ValidationException$;
2656
+ exports.errorTypeRegistries = errorTypeRegistries;
968
2657
  exports.paginateListDataIngestionJobs = paginateListDataIngestionJobs;
969
2658
  exports.paginateListDatasets = paginateListDatasets;
970
2659
  exports.paginateListInferenceEvents = paginateListInferenceEvents;