@aws-sdk/client-lookoutequipment 3.721.0 → 3.723.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 +262 -192
- package/dist-es/LookoutEquipmentClient.js +1 -0
- package/dist-es/models/models_0.js +21 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -209,7 +209,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
209
209
|
}, "resolveRuntimeExtensions");
|
|
210
210
|
|
|
211
211
|
// src/LookoutEquipmentClient.ts
|
|
212
|
-
var
|
|
212
|
+
var LookoutEquipmentClient = class extends import_smithy_client.Client {
|
|
213
|
+
static {
|
|
214
|
+
__name(this, "LookoutEquipmentClient");
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* The resolved configuration of LookoutEquipmentClient class. This is resolved and normalized from the {@link LookoutEquipmentClientConfig | constructor configuration interface}.
|
|
218
|
+
*/
|
|
219
|
+
config;
|
|
213
220
|
constructor(...[configuration]) {
|
|
214
221
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
215
222
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -219,7 +226,7 @@ var _LookoutEquipmentClient = class _LookoutEquipmentClient extends import_smith
|
|
|
219
226
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
220
227
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
221
228
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
222
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
229
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
223
230
|
super(_config_8);
|
|
224
231
|
this.config = _config_8;
|
|
225
232
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -247,8 +254,6 @@ var _LookoutEquipmentClient = class _LookoutEquipmentClient extends import_smith
|
|
|
247
254
|
super.destroy();
|
|
248
255
|
}
|
|
249
256
|
};
|
|
250
|
-
__name(_LookoutEquipmentClient, "LookoutEquipmentClient");
|
|
251
|
-
var LookoutEquipmentClient = _LookoutEquipmentClient;
|
|
252
257
|
|
|
253
258
|
// src/LookoutEquipment.ts
|
|
254
259
|
|
|
@@ -266,7 +271,10 @@ var import_uuid = require("uuid");
|
|
|
266
271
|
|
|
267
272
|
// src/models/LookoutEquipmentServiceException.ts
|
|
268
273
|
|
|
269
|
-
var
|
|
274
|
+
var LookoutEquipmentServiceException = class _LookoutEquipmentServiceException extends import_smithy_client.ServiceException {
|
|
275
|
+
static {
|
|
276
|
+
__name(this, "LookoutEquipmentServiceException");
|
|
277
|
+
}
|
|
270
278
|
/**
|
|
271
279
|
* @internal
|
|
272
280
|
*/
|
|
@@ -275,11 +283,15 @@ var _LookoutEquipmentServiceException = class _LookoutEquipmentServiceException
|
|
|
275
283
|
Object.setPrototypeOf(this, _LookoutEquipmentServiceException.prototype);
|
|
276
284
|
}
|
|
277
285
|
};
|
|
278
|
-
__name(_LookoutEquipmentServiceException, "LookoutEquipmentServiceException");
|
|
279
|
-
var LookoutEquipmentServiceException = _LookoutEquipmentServiceException;
|
|
280
286
|
|
|
281
287
|
// src/models/models_0.ts
|
|
282
|
-
var
|
|
288
|
+
var AccessDeniedException = class _AccessDeniedException extends LookoutEquipmentServiceException {
|
|
289
|
+
static {
|
|
290
|
+
__name(this, "AccessDeniedException");
|
|
291
|
+
}
|
|
292
|
+
name = "AccessDeniedException";
|
|
293
|
+
$fault = "client";
|
|
294
|
+
Message;
|
|
283
295
|
/**
|
|
284
296
|
* @internal
|
|
285
297
|
*/
|
|
@@ -289,14 +301,10 @@ var _AccessDeniedException = class _AccessDeniedException extends LookoutEquipme
|
|
|
289
301
|
$fault: "client",
|
|
290
302
|
...opts
|
|
291
303
|
});
|
|
292
|
-
this.name = "AccessDeniedException";
|
|
293
|
-
this.$fault = "client";
|
|
294
304
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
295
305
|
this.Message = opts.Message;
|
|
296
306
|
}
|
|
297
307
|
};
|
|
298
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
299
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
300
308
|
var AutoPromotionResult = {
|
|
301
309
|
MODEL_NOT_PROMOTED: "MODEL_NOT_PROMOTED",
|
|
302
310
|
MODEL_PROMOTED: "MODEL_PROMOTED",
|
|
@@ -304,7 +312,13 @@ var AutoPromotionResult = {
|
|
|
304
312
|
RETRAINING_CUSTOMER_ERROR: "RETRAINING_CUSTOMER_ERROR",
|
|
305
313
|
RETRAINING_INTERNAL_ERROR: "RETRAINING_INTERNAL_ERROR"
|
|
306
314
|
};
|
|
307
|
-
var
|
|
315
|
+
var ConflictException = class _ConflictException extends LookoutEquipmentServiceException {
|
|
316
|
+
static {
|
|
317
|
+
__name(this, "ConflictException");
|
|
318
|
+
}
|
|
319
|
+
name = "ConflictException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
308
322
|
/**
|
|
309
323
|
* @internal
|
|
310
324
|
*/
|
|
@@ -314,21 +328,23 @@ var _ConflictException = class _ConflictException extends LookoutEquipmentServic
|
|
|
314
328
|
$fault: "client",
|
|
315
329
|
...opts
|
|
316
330
|
});
|
|
317
|
-
this.name = "ConflictException";
|
|
318
|
-
this.$fault = "client";
|
|
319
331
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
320
332
|
this.Message = opts.Message;
|
|
321
333
|
}
|
|
322
334
|
};
|
|
323
|
-
__name(_ConflictException, "ConflictException");
|
|
324
|
-
var ConflictException = _ConflictException;
|
|
325
335
|
var DatasetStatus = {
|
|
326
336
|
ACTIVE: "ACTIVE",
|
|
327
337
|
CREATED: "CREATED",
|
|
328
338
|
IMPORT_IN_PROGRESS: "IMPORT_IN_PROGRESS",
|
|
329
339
|
INGESTION_IN_PROGRESS: "INGESTION_IN_PROGRESS"
|
|
330
340
|
};
|
|
331
|
-
var
|
|
341
|
+
var InternalServerException = class _InternalServerException extends LookoutEquipmentServiceException {
|
|
342
|
+
static {
|
|
343
|
+
__name(this, "InternalServerException");
|
|
344
|
+
}
|
|
345
|
+
name = "InternalServerException";
|
|
346
|
+
$fault = "server";
|
|
347
|
+
Message;
|
|
332
348
|
/**
|
|
333
349
|
* @internal
|
|
334
350
|
*/
|
|
@@ -338,15 +354,17 @@ var _InternalServerException = class _InternalServerException extends LookoutEqu
|
|
|
338
354
|
$fault: "server",
|
|
339
355
|
...opts
|
|
340
356
|
});
|
|
341
|
-
this.name = "InternalServerException";
|
|
342
|
-
this.$fault = "server";
|
|
343
357
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
344
358
|
this.Message = opts.Message;
|
|
345
359
|
}
|
|
346
360
|
};
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
361
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends LookoutEquipmentServiceException {
|
|
362
|
+
static {
|
|
363
|
+
__name(this, "ServiceQuotaExceededException");
|
|
364
|
+
}
|
|
365
|
+
name = "ServiceQuotaExceededException";
|
|
366
|
+
$fault = "client";
|
|
367
|
+
Message;
|
|
350
368
|
/**
|
|
351
369
|
* @internal
|
|
352
370
|
*/
|
|
@@ -356,15 +374,17 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
356
374
|
$fault: "client",
|
|
357
375
|
...opts
|
|
358
376
|
});
|
|
359
|
-
this.name = "ServiceQuotaExceededException";
|
|
360
|
-
this.$fault = "client";
|
|
361
377
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
362
378
|
this.Message = opts.Message;
|
|
363
379
|
}
|
|
364
380
|
};
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
381
|
+
var ThrottlingException = class _ThrottlingException extends LookoutEquipmentServiceException {
|
|
382
|
+
static {
|
|
383
|
+
__name(this, "ThrottlingException");
|
|
384
|
+
}
|
|
385
|
+
name = "ThrottlingException";
|
|
386
|
+
$fault = "client";
|
|
387
|
+
Message;
|
|
368
388
|
/**
|
|
369
389
|
* @internal
|
|
370
390
|
*/
|
|
@@ -374,15 +394,17 @@ var _ThrottlingException = class _ThrottlingException extends LookoutEquipmentSe
|
|
|
374
394
|
$fault: "client",
|
|
375
395
|
...opts
|
|
376
396
|
});
|
|
377
|
-
this.name = "ThrottlingException";
|
|
378
|
-
this.$fault = "client";
|
|
379
397
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
380
398
|
this.Message = opts.Message;
|
|
381
399
|
}
|
|
382
400
|
};
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
401
|
+
var ValidationException = class _ValidationException extends LookoutEquipmentServiceException {
|
|
402
|
+
static {
|
|
403
|
+
__name(this, "ValidationException");
|
|
404
|
+
}
|
|
405
|
+
name = "ValidationException";
|
|
406
|
+
$fault = "client";
|
|
407
|
+
Message;
|
|
386
408
|
/**
|
|
387
409
|
* @internal
|
|
388
410
|
*/
|
|
@@ -392,14 +414,10 @@ var _ValidationException = class _ValidationException extends LookoutEquipmentSe
|
|
|
392
414
|
$fault: "client",
|
|
393
415
|
...opts
|
|
394
416
|
});
|
|
395
|
-
this.name = "ValidationException";
|
|
396
|
-
this.$fault = "client";
|
|
397
417
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
398
418
|
this.Message = opts.Message;
|
|
399
419
|
}
|
|
400
420
|
};
|
|
401
|
-
__name(_ValidationException, "ValidationException");
|
|
402
|
-
var ValidationException = _ValidationException;
|
|
403
421
|
var DataUploadFrequency = {
|
|
404
422
|
PT10M: "PT10M",
|
|
405
423
|
PT15M: "PT15M",
|
|
@@ -418,7 +436,13 @@ var InferenceSchedulerStatus = {
|
|
|
418
436
|
STOPPED: "STOPPED",
|
|
419
437
|
STOPPING: "STOPPING"
|
|
420
438
|
};
|
|
421
|
-
var
|
|
439
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends LookoutEquipmentServiceException {
|
|
440
|
+
static {
|
|
441
|
+
__name(this, "ResourceNotFoundException");
|
|
442
|
+
}
|
|
443
|
+
name = "ResourceNotFoundException";
|
|
444
|
+
$fault = "client";
|
|
445
|
+
Message;
|
|
422
446
|
/**
|
|
423
447
|
* @internal
|
|
424
448
|
*/
|
|
@@ -428,14 +452,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Lookou
|
|
|
428
452
|
$fault: "client",
|
|
429
453
|
...opts
|
|
430
454
|
});
|
|
431
|
-
this.name = "ResourceNotFoundException";
|
|
432
|
-
this.$fault = "client";
|
|
433
455
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
434
456
|
this.Message = opts.Message;
|
|
435
457
|
}
|
|
436
458
|
};
|
|
437
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
438
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
439
459
|
var LabelRating = {
|
|
440
460
|
ANOMALY: "ANOMALY",
|
|
441
461
|
NEUTRAL: "NEUTRAL",
|
|
@@ -2124,687 +2144,736 @@ function sharedHeaders(operation) {
|
|
|
2124
2144
|
__name(sharedHeaders, "sharedHeaders");
|
|
2125
2145
|
|
|
2126
2146
|
// src/commands/CreateDatasetCommand.ts
|
|
2127
|
-
var
|
|
2147
|
+
var CreateDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2128
2148
|
return [
|
|
2129
2149
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2130
2150
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2131
2151
|
];
|
|
2132
2152
|
}).s("AWSLookoutEquipmentFrontendService", "CreateDataset", {}).n("LookoutEquipmentClient", "CreateDatasetCommand").f(void 0, void 0).ser(se_CreateDatasetCommand).de(de_CreateDatasetCommand).build() {
|
|
2153
|
+
static {
|
|
2154
|
+
__name(this, "CreateDatasetCommand");
|
|
2155
|
+
}
|
|
2133
2156
|
};
|
|
2134
|
-
__name(_CreateDatasetCommand, "CreateDatasetCommand");
|
|
2135
|
-
var CreateDatasetCommand = _CreateDatasetCommand;
|
|
2136
2157
|
|
|
2137
2158
|
// src/commands/CreateInferenceSchedulerCommand.ts
|
|
2138
2159
|
|
|
2139
2160
|
|
|
2140
2161
|
|
|
2141
|
-
var
|
|
2162
|
+
var CreateInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2142
2163
|
return [
|
|
2143
2164
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2144
2165
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2145
2166
|
];
|
|
2146
2167
|
}).s("AWSLookoutEquipmentFrontendService", "CreateInferenceScheduler", {}).n("LookoutEquipmentClient", "CreateInferenceSchedulerCommand").f(void 0, void 0).ser(se_CreateInferenceSchedulerCommand).de(de_CreateInferenceSchedulerCommand).build() {
|
|
2168
|
+
static {
|
|
2169
|
+
__name(this, "CreateInferenceSchedulerCommand");
|
|
2170
|
+
}
|
|
2147
2171
|
};
|
|
2148
|
-
__name(_CreateInferenceSchedulerCommand, "CreateInferenceSchedulerCommand");
|
|
2149
|
-
var CreateInferenceSchedulerCommand = _CreateInferenceSchedulerCommand;
|
|
2150
2172
|
|
|
2151
2173
|
// src/commands/CreateLabelCommand.ts
|
|
2152
2174
|
|
|
2153
2175
|
|
|
2154
2176
|
|
|
2155
|
-
var
|
|
2177
|
+
var CreateLabelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2156
2178
|
return [
|
|
2157
2179
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2158
2180
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2159
2181
|
];
|
|
2160
2182
|
}).s("AWSLookoutEquipmentFrontendService", "CreateLabel", {}).n("LookoutEquipmentClient", "CreateLabelCommand").f(void 0, void 0).ser(se_CreateLabelCommand).de(de_CreateLabelCommand).build() {
|
|
2183
|
+
static {
|
|
2184
|
+
__name(this, "CreateLabelCommand");
|
|
2185
|
+
}
|
|
2161
2186
|
};
|
|
2162
|
-
__name(_CreateLabelCommand, "CreateLabelCommand");
|
|
2163
|
-
var CreateLabelCommand = _CreateLabelCommand;
|
|
2164
2187
|
|
|
2165
2188
|
// src/commands/CreateLabelGroupCommand.ts
|
|
2166
2189
|
|
|
2167
2190
|
|
|
2168
2191
|
|
|
2169
|
-
var
|
|
2192
|
+
var CreateLabelGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2170
2193
|
return [
|
|
2171
2194
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2172
2195
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2173
2196
|
];
|
|
2174
2197
|
}).s("AWSLookoutEquipmentFrontendService", "CreateLabelGroup", {}).n("LookoutEquipmentClient", "CreateLabelGroupCommand").f(void 0, void 0).ser(se_CreateLabelGroupCommand).de(de_CreateLabelGroupCommand).build() {
|
|
2198
|
+
static {
|
|
2199
|
+
__name(this, "CreateLabelGroupCommand");
|
|
2200
|
+
}
|
|
2175
2201
|
};
|
|
2176
|
-
__name(_CreateLabelGroupCommand, "CreateLabelGroupCommand");
|
|
2177
|
-
var CreateLabelGroupCommand = _CreateLabelGroupCommand;
|
|
2178
2202
|
|
|
2179
2203
|
// src/commands/CreateModelCommand.ts
|
|
2180
2204
|
|
|
2181
2205
|
|
|
2182
2206
|
|
|
2183
|
-
var
|
|
2207
|
+
var CreateModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2184
2208
|
return [
|
|
2185
2209
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2186
2210
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2187
2211
|
];
|
|
2188
2212
|
}).s("AWSLookoutEquipmentFrontendService", "CreateModel", {}).n("LookoutEquipmentClient", "CreateModelCommand").f(void 0, void 0).ser(se_CreateModelCommand).de(de_CreateModelCommand).build() {
|
|
2213
|
+
static {
|
|
2214
|
+
__name(this, "CreateModelCommand");
|
|
2215
|
+
}
|
|
2189
2216
|
};
|
|
2190
|
-
__name(_CreateModelCommand, "CreateModelCommand");
|
|
2191
|
-
var CreateModelCommand = _CreateModelCommand;
|
|
2192
2217
|
|
|
2193
2218
|
// src/commands/CreateRetrainingSchedulerCommand.ts
|
|
2194
2219
|
|
|
2195
2220
|
|
|
2196
2221
|
|
|
2197
|
-
var
|
|
2222
|
+
var CreateRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2198
2223
|
return [
|
|
2199
2224
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2200
2225
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2201
2226
|
];
|
|
2202
2227
|
}).s("AWSLookoutEquipmentFrontendService", "CreateRetrainingScheduler", {}).n("LookoutEquipmentClient", "CreateRetrainingSchedulerCommand").f(void 0, void 0).ser(se_CreateRetrainingSchedulerCommand).de(de_CreateRetrainingSchedulerCommand).build() {
|
|
2228
|
+
static {
|
|
2229
|
+
__name(this, "CreateRetrainingSchedulerCommand");
|
|
2230
|
+
}
|
|
2203
2231
|
};
|
|
2204
|
-
__name(_CreateRetrainingSchedulerCommand, "CreateRetrainingSchedulerCommand");
|
|
2205
|
-
var CreateRetrainingSchedulerCommand = _CreateRetrainingSchedulerCommand;
|
|
2206
2232
|
|
|
2207
2233
|
// src/commands/DeleteDatasetCommand.ts
|
|
2208
2234
|
|
|
2209
2235
|
|
|
2210
2236
|
|
|
2211
|
-
var
|
|
2237
|
+
var DeleteDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2212
2238
|
return [
|
|
2213
2239
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2214
2240
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2215
2241
|
];
|
|
2216
2242
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteDataset", {}).n("LookoutEquipmentClient", "DeleteDatasetCommand").f(void 0, void 0).ser(se_DeleteDatasetCommand).de(de_DeleteDatasetCommand).build() {
|
|
2243
|
+
static {
|
|
2244
|
+
__name(this, "DeleteDatasetCommand");
|
|
2245
|
+
}
|
|
2217
2246
|
};
|
|
2218
|
-
__name(_DeleteDatasetCommand, "DeleteDatasetCommand");
|
|
2219
|
-
var DeleteDatasetCommand = _DeleteDatasetCommand;
|
|
2220
2247
|
|
|
2221
2248
|
// src/commands/DeleteInferenceSchedulerCommand.ts
|
|
2222
2249
|
|
|
2223
2250
|
|
|
2224
2251
|
|
|
2225
|
-
var
|
|
2252
|
+
var DeleteInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2226
2253
|
return [
|
|
2227
2254
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2228
2255
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2229
2256
|
];
|
|
2230
2257
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteInferenceScheduler", {}).n("LookoutEquipmentClient", "DeleteInferenceSchedulerCommand").f(void 0, void 0).ser(se_DeleteInferenceSchedulerCommand).de(de_DeleteInferenceSchedulerCommand).build() {
|
|
2258
|
+
static {
|
|
2259
|
+
__name(this, "DeleteInferenceSchedulerCommand");
|
|
2260
|
+
}
|
|
2231
2261
|
};
|
|
2232
|
-
__name(_DeleteInferenceSchedulerCommand, "DeleteInferenceSchedulerCommand");
|
|
2233
|
-
var DeleteInferenceSchedulerCommand = _DeleteInferenceSchedulerCommand;
|
|
2234
2262
|
|
|
2235
2263
|
// src/commands/DeleteLabelCommand.ts
|
|
2236
2264
|
|
|
2237
2265
|
|
|
2238
2266
|
|
|
2239
|
-
var
|
|
2267
|
+
var DeleteLabelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2240
2268
|
return [
|
|
2241
2269
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2242
2270
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2243
2271
|
];
|
|
2244
2272
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteLabel", {}).n("LookoutEquipmentClient", "DeleteLabelCommand").f(void 0, void 0).ser(se_DeleteLabelCommand).de(de_DeleteLabelCommand).build() {
|
|
2273
|
+
static {
|
|
2274
|
+
__name(this, "DeleteLabelCommand");
|
|
2275
|
+
}
|
|
2245
2276
|
};
|
|
2246
|
-
__name(_DeleteLabelCommand, "DeleteLabelCommand");
|
|
2247
|
-
var DeleteLabelCommand = _DeleteLabelCommand;
|
|
2248
2277
|
|
|
2249
2278
|
// src/commands/DeleteLabelGroupCommand.ts
|
|
2250
2279
|
|
|
2251
2280
|
|
|
2252
2281
|
|
|
2253
|
-
var
|
|
2282
|
+
var DeleteLabelGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2254
2283
|
return [
|
|
2255
2284
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2256
2285
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2257
2286
|
];
|
|
2258
2287
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteLabelGroup", {}).n("LookoutEquipmentClient", "DeleteLabelGroupCommand").f(void 0, void 0).ser(se_DeleteLabelGroupCommand).de(de_DeleteLabelGroupCommand).build() {
|
|
2288
|
+
static {
|
|
2289
|
+
__name(this, "DeleteLabelGroupCommand");
|
|
2290
|
+
}
|
|
2259
2291
|
};
|
|
2260
|
-
__name(_DeleteLabelGroupCommand, "DeleteLabelGroupCommand");
|
|
2261
|
-
var DeleteLabelGroupCommand = _DeleteLabelGroupCommand;
|
|
2262
2292
|
|
|
2263
2293
|
// src/commands/DeleteModelCommand.ts
|
|
2264
2294
|
|
|
2265
2295
|
|
|
2266
2296
|
|
|
2267
|
-
var
|
|
2297
|
+
var DeleteModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2268
2298
|
return [
|
|
2269
2299
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2270
2300
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2271
2301
|
];
|
|
2272
2302
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteModel", {}).n("LookoutEquipmentClient", "DeleteModelCommand").f(void 0, void 0).ser(se_DeleteModelCommand).de(de_DeleteModelCommand).build() {
|
|
2303
|
+
static {
|
|
2304
|
+
__name(this, "DeleteModelCommand");
|
|
2305
|
+
}
|
|
2273
2306
|
};
|
|
2274
|
-
__name(_DeleteModelCommand, "DeleteModelCommand");
|
|
2275
|
-
var DeleteModelCommand = _DeleteModelCommand;
|
|
2276
2307
|
|
|
2277
2308
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
2278
2309
|
|
|
2279
2310
|
|
|
2280
2311
|
|
|
2281
|
-
var
|
|
2312
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2282
2313
|
return [
|
|
2283
2314
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2284
2315
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2285
2316
|
];
|
|
2286
2317
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteResourcePolicy", {}).n("LookoutEquipmentClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
2318
|
+
static {
|
|
2319
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
2320
|
+
}
|
|
2287
2321
|
};
|
|
2288
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
2289
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
2290
2322
|
|
|
2291
2323
|
// src/commands/DeleteRetrainingSchedulerCommand.ts
|
|
2292
2324
|
|
|
2293
2325
|
|
|
2294
2326
|
|
|
2295
|
-
var
|
|
2327
|
+
var DeleteRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2296
2328
|
return [
|
|
2297
2329
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2298
2330
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2299
2331
|
];
|
|
2300
2332
|
}).s("AWSLookoutEquipmentFrontendService", "DeleteRetrainingScheduler", {}).n("LookoutEquipmentClient", "DeleteRetrainingSchedulerCommand").f(void 0, void 0).ser(se_DeleteRetrainingSchedulerCommand).de(de_DeleteRetrainingSchedulerCommand).build() {
|
|
2333
|
+
static {
|
|
2334
|
+
__name(this, "DeleteRetrainingSchedulerCommand");
|
|
2335
|
+
}
|
|
2301
2336
|
};
|
|
2302
|
-
__name(_DeleteRetrainingSchedulerCommand, "DeleteRetrainingSchedulerCommand");
|
|
2303
|
-
var DeleteRetrainingSchedulerCommand = _DeleteRetrainingSchedulerCommand;
|
|
2304
2337
|
|
|
2305
2338
|
// src/commands/DescribeDataIngestionJobCommand.ts
|
|
2306
2339
|
|
|
2307
2340
|
|
|
2308
2341
|
|
|
2309
|
-
var
|
|
2342
|
+
var DescribeDataIngestionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2310
2343
|
return [
|
|
2311
2344
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2312
2345
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2313
2346
|
];
|
|
2314
2347
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeDataIngestionJob", {}).n("LookoutEquipmentClient", "DescribeDataIngestionJobCommand").f(void 0, void 0).ser(se_DescribeDataIngestionJobCommand).de(de_DescribeDataIngestionJobCommand).build() {
|
|
2348
|
+
static {
|
|
2349
|
+
__name(this, "DescribeDataIngestionJobCommand");
|
|
2350
|
+
}
|
|
2315
2351
|
};
|
|
2316
|
-
__name(_DescribeDataIngestionJobCommand, "DescribeDataIngestionJobCommand");
|
|
2317
|
-
var DescribeDataIngestionJobCommand = _DescribeDataIngestionJobCommand;
|
|
2318
2352
|
|
|
2319
2353
|
// src/commands/DescribeDatasetCommand.ts
|
|
2320
2354
|
|
|
2321
2355
|
|
|
2322
2356
|
|
|
2323
|
-
var
|
|
2357
|
+
var DescribeDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2324
2358
|
return [
|
|
2325
2359
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2326
2360
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2327
2361
|
];
|
|
2328
2362
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeDataset", {}).n("LookoutEquipmentClient", "DescribeDatasetCommand").f(void 0, void 0).ser(se_DescribeDatasetCommand).de(de_DescribeDatasetCommand).build() {
|
|
2363
|
+
static {
|
|
2364
|
+
__name(this, "DescribeDatasetCommand");
|
|
2365
|
+
}
|
|
2329
2366
|
};
|
|
2330
|
-
__name(_DescribeDatasetCommand, "DescribeDatasetCommand");
|
|
2331
|
-
var DescribeDatasetCommand = _DescribeDatasetCommand;
|
|
2332
2367
|
|
|
2333
2368
|
// src/commands/DescribeInferenceSchedulerCommand.ts
|
|
2334
2369
|
|
|
2335
2370
|
|
|
2336
2371
|
|
|
2337
|
-
var
|
|
2372
|
+
var DescribeInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2338
2373
|
return [
|
|
2339
2374
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2340
2375
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2341
2376
|
];
|
|
2342
2377
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeInferenceScheduler", {}).n("LookoutEquipmentClient", "DescribeInferenceSchedulerCommand").f(void 0, void 0).ser(se_DescribeInferenceSchedulerCommand).de(de_DescribeInferenceSchedulerCommand).build() {
|
|
2378
|
+
static {
|
|
2379
|
+
__name(this, "DescribeInferenceSchedulerCommand");
|
|
2380
|
+
}
|
|
2343
2381
|
};
|
|
2344
|
-
__name(_DescribeInferenceSchedulerCommand, "DescribeInferenceSchedulerCommand");
|
|
2345
|
-
var DescribeInferenceSchedulerCommand = _DescribeInferenceSchedulerCommand;
|
|
2346
2382
|
|
|
2347
2383
|
// src/commands/DescribeLabelCommand.ts
|
|
2348
2384
|
|
|
2349
2385
|
|
|
2350
2386
|
|
|
2351
|
-
var
|
|
2387
|
+
var DescribeLabelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2352
2388
|
return [
|
|
2353
2389
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2354
2390
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2355
2391
|
];
|
|
2356
2392
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeLabel", {}).n("LookoutEquipmentClient", "DescribeLabelCommand").f(void 0, void 0).ser(se_DescribeLabelCommand).de(de_DescribeLabelCommand).build() {
|
|
2393
|
+
static {
|
|
2394
|
+
__name(this, "DescribeLabelCommand");
|
|
2395
|
+
}
|
|
2357
2396
|
};
|
|
2358
|
-
__name(_DescribeLabelCommand, "DescribeLabelCommand");
|
|
2359
|
-
var DescribeLabelCommand = _DescribeLabelCommand;
|
|
2360
2397
|
|
|
2361
2398
|
// src/commands/DescribeLabelGroupCommand.ts
|
|
2362
2399
|
|
|
2363
2400
|
|
|
2364
2401
|
|
|
2365
|
-
var
|
|
2402
|
+
var DescribeLabelGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2366
2403
|
return [
|
|
2367
2404
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2368
2405
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2369
2406
|
];
|
|
2370
2407
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeLabelGroup", {}).n("LookoutEquipmentClient", "DescribeLabelGroupCommand").f(void 0, void 0).ser(se_DescribeLabelGroupCommand).de(de_DescribeLabelGroupCommand).build() {
|
|
2408
|
+
static {
|
|
2409
|
+
__name(this, "DescribeLabelGroupCommand");
|
|
2410
|
+
}
|
|
2371
2411
|
};
|
|
2372
|
-
__name(_DescribeLabelGroupCommand, "DescribeLabelGroupCommand");
|
|
2373
|
-
var DescribeLabelGroupCommand = _DescribeLabelGroupCommand;
|
|
2374
2412
|
|
|
2375
2413
|
// src/commands/DescribeModelCommand.ts
|
|
2376
2414
|
|
|
2377
2415
|
|
|
2378
2416
|
|
|
2379
|
-
var
|
|
2417
|
+
var DescribeModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2380
2418
|
return [
|
|
2381
2419
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2382
2420
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2383
2421
|
];
|
|
2384
2422
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeModel", {}).n("LookoutEquipmentClient", "DescribeModelCommand").f(void 0, void 0).ser(se_DescribeModelCommand).de(de_DescribeModelCommand).build() {
|
|
2423
|
+
static {
|
|
2424
|
+
__name(this, "DescribeModelCommand");
|
|
2425
|
+
}
|
|
2385
2426
|
};
|
|
2386
|
-
__name(_DescribeModelCommand, "DescribeModelCommand");
|
|
2387
|
-
var DescribeModelCommand = _DescribeModelCommand;
|
|
2388
2427
|
|
|
2389
2428
|
// src/commands/DescribeModelVersionCommand.ts
|
|
2390
2429
|
|
|
2391
2430
|
|
|
2392
2431
|
|
|
2393
|
-
var
|
|
2432
|
+
var DescribeModelVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2394
2433
|
return [
|
|
2395
2434
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2396
2435
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2397
2436
|
];
|
|
2398
2437
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeModelVersion", {}).n("LookoutEquipmentClient", "DescribeModelVersionCommand").f(void 0, void 0).ser(se_DescribeModelVersionCommand).de(de_DescribeModelVersionCommand).build() {
|
|
2438
|
+
static {
|
|
2439
|
+
__name(this, "DescribeModelVersionCommand");
|
|
2440
|
+
}
|
|
2399
2441
|
};
|
|
2400
|
-
__name(_DescribeModelVersionCommand, "DescribeModelVersionCommand");
|
|
2401
|
-
var DescribeModelVersionCommand = _DescribeModelVersionCommand;
|
|
2402
2442
|
|
|
2403
2443
|
// src/commands/DescribeResourcePolicyCommand.ts
|
|
2404
2444
|
|
|
2405
2445
|
|
|
2406
2446
|
|
|
2407
|
-
var
|
|
2447
|
+
var DescribeResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2408
2448
|
return [
|
|
2409
2449
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2410
2450
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2411
2451
|
];
|
|
2412
2452
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeResourcePolicy", {}).n("LookoutEquipmentClient", "DescribeResourcePolicyCommand").f(void 0, void 0).ser(se_DescribeResourcePolicyCommand).de(de_DescribeResourcePolicyCommand).build() {
|
|
2453
|
+
static {
|
|
2454
|
+
__name(this, "DescribeResourcePolicyCommand");
|
|
2455
|
+
}
|
|
2413
2456
|
};
|
|
2414
|
-
__name(_DescribeResourcePolicyCommand, "DescribeResourcePolicyCommand");
|
|
2415
|
-
var DescribeResourcePolicyCommand = _DescribeResourcePolicyCommand;
|
|
2416
2457
|
|
|
2417
2458
|
// src/commands/DescribeRetrainingSchedulerCommand.ts
|
|
2418
2459
|
|
|
2419
2460
|
|
|
2420
2461
|
|
|
2421
|
-
var
|
|
2462
|
+
var DescribeRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2422
2463
|
return [
|
|
2423
2464
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2424
2465
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2425
2466
|
];
|
|
2426
2467
|
}).s("AWSLookoutEquipmentFrontendService", "DescribeRetrainingScheduler", {}).n("LookoutEquipmentClient", "DescribeRetrainingSchedulerCommand").f(void 0, void 0).ser(se_DescribeRetrainingSchedulerCommand).de(de_DescribeRetrainingSchedulerCommand).build() {
|
|
2468
|
+
static {
|
|
2469
|
+
__name(this, "DescribeRetrainingSchedulerCommand");
|
|
2470
|
+
}
|
|
2427
2471
|
};
|
|
2428
|
-
__name(_DescribeRetrainingSchedulerCommand, "DescribeRetrainingSchedulerCommand");
|
|
2429
|
-
var DescribeRetrainingSchedulerCommand = _DescribeRetrainingSchedulerCommand;
|
|
2430
2472
|
|
|
2431
2473
|
// src/commands/ImportDatasetCommand.ts
|
|
2432
2474
|
|
|
2433
2475
|
|
|
2434
2476
|
|
|
2435
|
-
var
|
|
2477
|
+
var ImportDatasetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2436
2478
|
return [
|
|
2437
2479
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2438
2480
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2439
2481
|
];
|
|
2440
2482
|
}).s("AWSLookoutEquipmentFrontendService", "ImportDataset", {}).n("LookoutEquipmentClient", "ImportDatasetCommand").f(void 0, void 0).ser(se_ImportDatasetCommand).de(de_ImportDatasetCommand).build() {
|
|
2483
|
+
static {
|
|
2484
|
+
__name(this, "ImportDatasetCommand");
|
|
2485
|
+
}
|
|
2441
2486
|
};
|
|
2442
|
-
__name(_ImportDatasetCommand, "ImportDatasetCommand");
|
|
2443
|
-
var ImportDatasetCommand = _ImportDatasetCommand;
|
|
2444
2487
|
|
|
2445
2488
|
// src/commands/ImportModelVersionCommand.ts
|
|
2446
2489
|
|
|
2447
2490
|
|
|
2448
2491
|
|
|
2449
|
-
var
|
|
2492
|
+
var ImportModelVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2450
2493
|
return [
|
|
2451
2494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2452
2495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2453
2496
|
];
|
|
2454
2497
|
}).s("AWSLookoutEquipmentFrontendService", "ImportModelVersion", {}).n("LookoutEquipmentClient", "ImportModelVersionCommand").f(void 0, void 0).ser(se_ImportModelVersionCommand).de(de_ImportModelVersionCommand).build() {
|
|
2498
|
+
static {
|
|
2499
|
+
__name(this, "ImportModelVersionCommand");
|
|
2500
|
+
}
|
|
2455
2501
|
};
|
|
2456
|
-
__name(_ImportModelVersionCommand, "ImportModelVersionCommand");
|
|
2457
|
-
var ImportModelVersionCommand = _ImportModelVersionCommand;
|
|
2458
2502
|
|
|
2459
2503
|
// src/commands/ListDataIngestionJobsCommand.ts
|
|
2460
2504
|
|
|
2461
2505
|
|
|
2462
2506
|
|
|
2463
|
-
var
|
|
2507
|
+
var ListDataIngestionJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2464
2508
|
return [
|
|
2465
2509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2466
2510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2467
2511
|
];
|
|
2468
2512
|
}).s("AWSLookoutEquipmentFrontendService", "ListDataIngestionJobs", {}).n("LookoutEquipmentClient", "ListDataIngestionJobsCommand").f(void 0, void 0).ser(se_ListDataIngestionJobsCommand).de(de_ListDataIngestionJobsCommand).build() {
|
|
2513
|
+
static {
|
|
2514
|
+
__name(this, "ListDataIngestionJobsCommand");
|
|
2515
|
+
}
|
|
2469
2516
|
};
|
|
2470
|
-
__name(_ListDataIngestionJobsCommand, "ListDataIngestionJobsCommand");
|
|
2471
|
-
var ListDataIngestionJobsCommand = _ListDataIngestionJobsCommand;
|
|
2472
2517
|
|
|
2473
2518
|
// src/commands/ListDatasetsCommand.ts
|
|
2474
2519
|
|
|
2475
2520
|
|
|
2476
2521
|
|
|
2477
|
-
var
|
|
2522
|
+
var ListDatasetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2478
2523
|
return [
|
|
2479
2524
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2480
2525
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2481
2526
|
];
|
|
2482
2527
|
}).s("AWSLookoutEquipmentFrontendService", "ListDatasets", {}).n("LookoutEquipmentClient", "ListDatasetsCommand").f(void 0, void 0).ser(se_ListDatasetsCommand).de(de_ListDatasetsCommand).build() {
|
|
2528
|
+
static {
|
|
2529
|
+
__name(this, "ListDatasetsCommand");
|
|
2530
|
+
}
|
|
2483
2531
|
};
|
|
2484
|
-
__name(_ListDatasetsCommand, "ListDatasetsCommand");
|
|
2485
|
-
var ListDatasetsCommand = _ListDatasetsCommand;
|
|
2486
2532
|
|
|
2487
2533
|
// src/commands/ListInferenceEventsCommand.ts
|
|
2488
2534
|
|
|
2489
2535
|
|
|
2490
2536
|
|
|
2491
|
-
var
|
|
2537
|
+
var ListInferenceEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2492
2538
|
return [
|
|
2493
2539
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2494
2540
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2495
2541
|
];
|
|
2496
2542
|
}).s("AWSLookoutEquipmentFrontendService", "ListInferenceEvents", {}).n("LookoutEquipmentClient", "ListInferenceEventsCommand").f(void 0, void 0).ser(se_ListInferenceEventsCommand).de(de_ListInferenceEventsCommand).build() {
|
|
2543
|
+
static {
|
|
2544
|
+
__name(this, "ListInferenceEventsCommand");
|
|
2545
|
+
}
|
|
2497
2546
|
};
|
|
2498
|
-
__name(_ListInferenceEventsCommand, "ListInferenceEventsCommand");
|
|
2499
|
-
var ListInferenceEventsCommand = _ListInferenceEventsCommand;
|
|
2500
2547
|
|
|
2501
2548
|
// src/commands/ListInferenceExecutionsCommand.ts
|
|
2502
2549
|
|
|
2503
2550
|
|
|
2504
2551
|
|
|
2505
|
-
var
|
|
2552
|
+
var ListInferenceExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2506
2553
|
return [
|
|
2507
2554
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2508
2555
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2509
2556
|
];
|
|
2510
2557
|
}).s("AWSLookoutEquipmentFrontendService", "ListInferenceExecutions", {}).n("LookoutEquipmentClient", "ListInferenceExecutionsCommand").f(void 0, void 0).ser(se_ListInferenceExecutionsCommand).de(de_ListInferenceExecutionsCommand).build() {
|
|
2558
|
+
static {
|
|
2559
|
+
__name(this, "ListInferenceExecutionsCommand");
|
|
2560
|
+
}
|
|
2511
2561
|
};
|
|
2512
|
-
__name(_ListInferenceExecutionsCommand, "ListInferenceExecutionsCommand");
|
|
2513
|
-
var ListInferenceExecutionsCommand = _ListInferenceExecutionsCommand;
|
|
2514
2562
|
|
|
2515
2563
|
// src/commands/ListInferenceSchedulersCommand.ts
|
|
2516
2564
|
|
|
2517
2565
|
|
|
2518
2566
|
|
|
2519
|
-
var
|
|
2567
|
+
var ListInferenceSchedulersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2520
2568
|
return [
|
|
2521
2569
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2522
2570
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2523
2571
|
];
|
|
2524
2572
|
}).s("AWSLookoutEquipmentFrontendService", "ListInferenceSchedulers", {}).n("LookoutEquipmentClient", "ListInferenceSchedulersCommand").f(void 0, void 0).ser(se_ListInferenceSchedulersCommand).de(de_ListInferenceSchedulersCommand).build() {
|
|
2573
|
+
static {
|
|
2574
|
+
__name(this, "ListInferenceSchedulersCommand");
|
|
2575
|
+
}
|
|
2525
2576
|
};
|
|
2526
|
-
__name(_ListInferenceSchedulersCommand, "ListInferenceSchedulersCommand");
|
|
2527
|
-
var ListInferenceSchedulersCommand = _ListInferenceSchedulersCommand;
|
|
2528
2577
|
|
|
2529
2578
|
// src/commands/ListLabelGroupsCommand.ts
|
|
2530
2579
|
|
|
2531
2580
|
|
|
2532
2581
|
|
|
2533
|
-
var
|
|
2582
|
+
var ListLabelGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2534
2583
|
return [
|
|
2535
2584
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2536
2585
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2537
2586
|
];
|
|
2538
2587
|
}).s("AWSLookoutEquipmentFrontendService", "ListLabelGroups", {}).n("LookoutEquipmentClient", "ListLabelGroupsCommand").f(void 0, void 0).ser(se_ListLabelGroupsCommand).de(de_ListLabelGroupsCommand).build() {
|
|
2588
|
+
static {
|
|
2589
|
+
__name(this, "ListLabelGroupsCommand");
|
|
2590
|
+
}
|
|
2539
2591
|
};
|
|
2540
|
-
__name(_ListLabelGroupsCommand, "ListLabelGroupsCommand");
|
|
2541
|
-
var ListLabelGroupsCommand = _ListLabelGroupsCommand;
|
|
2542
2592
|
|
|
2543
2593
|
// src/commands/ListLabelsCommand.ts
|
|
2544
2594
|
|
|
2545
2595
|
|
|
2546
2596
|
|
|
2547
|
-
var
|
|
2597
|
+
var ListLabelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2548
2598
|
return [
|
|
2549
2599
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2550
2600
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2551
2601
|
];
|
|
2552
2602
|
}).s("AWSLookoutEquipmentFrontendService", "ListLabels", {}).n("LookoutEquipmentClient", "ListLabelsCommand").f(void 0, void 0).ser(se_ListLabelsCommand).de(de_ListLabelsCommand).build() {
|
|
2603
|
+
static {
|
|
2604
|
+
__name(this, "ListLabelsCommand");
|
|
2605
|
+
}
|
|
2553
2606
|
};
|
|
2554
|
-
__name(_ListLabelsCommand, "ListLabelsCommand");
|
|
2555
|
-
var ListLabelsCommand = _ListLabelsCommand;
|
|
2556
2607
|
|
|
2557
2608
|
// src/commands/ListModelsCommand.ts
|
|
2558
2609
|
|
|
2559
2610
|
|
|
2560
2611
|
|
|
2561
|
-
var
|
|
2612
|
+
var ListModelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2562
2613
|
return [
|
|
2563
2614
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2564
2615
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2565
2616
|
];
|
|
2566
2617
|
}).s("AWSLookoutEquipmentFrontendService", "ListModels", {}).n("LookoutEquipmentClient", "ListModelsCommand").f(void 0, void 0).ser(se_ListModelsCommand).de(de_ListModelsCommand).build() {
|
|
2618
|
+
static {
|
|
2619
|
+
__name(this, "ListModelsCommand");
|
|
2620
|
+
}
|
|
2567
2621
|
};
|
|
2568
|
-
__name(_ListModelsCommand, "ListModelsCommand");
|
|
2569
|
-
var ListModelsCommand = _ListModelsCommand;
|
|
2570
2622
|
|
|
2571
2623
|
// src/commands/ListModelVersionsCommand.ts
|
|
2572
2624
|
|
|
2573
2625
|
|
|
2574
2626
|
|
|
2575
|
-
var
|
|
2627
|
+
var ListModelVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2576
2628
|
return [
|
|
2577
2629
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2578
2630
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2579
2631
|
];
|
|
2580
2632
|
}).s("AWSLookoutEquipmentFrontendService", "ListModelVersions", {}).n("LookoutEquipmentClient", "ListModelVersionsCommand").f(void 0, void 0).ser(se_ListModelVersionsCommand).de(de_ListModelVersionsCommand).build() {
|
|
2633
|
+
static {
|
|
2634
|
+
__name(this, "ListModelVersionsCommand");
|
|
2635
|
+
}
|
|
2581
2636
|
};
|
|
2582
|
-
__name(_ListModelVersionsCommand, "ListModelVersionsCommand");
|
|
2583
|
-
var ListModelVersionsCommand = _ListModelVersionsCommand;
|
|
2584
2637
|
|
|
2585
2638
|
// src/commands/ListRetrainingSchedulersCommand.ts
|
|
2586
2639
|
|
|
2587
2640
|
|
|
2588
2641
|
|
|
2589
|
-
var
|
|
2642
|
+
var ListRetrainingSchedulersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2590
2643
|
return [
|
|
2591
2644
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2592
2645
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2593
2646
|
];
|
|
2594
2647
|
}).s("AWSLookoutEquipmentFrontendService", "ListRetrainingSchedulers", {}).n("LookoutEquipmentClient", "ListRetrainingSchedulersCommand").f(void 0, void 0).ser(se_ListRetrainingSchedulersCommand).de(de_ListRetrainingSchedulersCommand).build() {
|
|
2648
|
+
static {
|
|
2649
|
+
__name(this, "ListRetrainingSchedulersCommand");
|
|
2650
|
+
}
|
|
2595
2651
|
};
|
|
2596
|
-
__name(_ListRetrainingSchedulersCommand, "ListRetrainingSchedulersCommand");
|
|
2597
|
-
var ListRetrainingSchedulersCommand = _ListRetrainingSchedulersCommand;
|
|
2598
2652
|
|
|
2599
2653
|
// src/commands/ListSensorStatisticsCommand.ts
|
|
2600
2654
|
|
|
2601
2655
|
|
|
2602
2656
|
|
|
2603
|
-
var
|
|
2657
|
+
var ListSensorStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2604
2658
|
return [
|
|
2605
2659
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2606
2660
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2607
2661
|
];
|
|
2608
2662
|
}).s("AWSLookoutEquipmentFrontendService", "ListSensorStatistics", {}).n("LookoutEquipmentClient", "ListSensorStatisticsCommand").f(void 0, void 0).ser(se_ListSensorStatisticsCommand).de(de_ListSensorStatisticsCommand).build() {
|
|
2663
|
+
static {
|
|
2664
|
+
__name(this, "ListSensorStatisticsCommand");
|
|
2665
|
+
}
|
|
2609
2666
|
};
|
|
2610
|
-
__name(_ListSensorStatisticsCommand, "ListSensorStatisticsCommand");
|
|
2611
|
-
var ListSensorStatisticsCommand = _ListSensorStatisticsCommand;
|
|
2612
2667
|
|
|
2613
2668
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2614
2669
|
|
|
2615
2670
|
|
|
2616
2671
|
|
|
2617
|
-
var
|
|
2672
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2618
2673
|
return [
|
|
2619
2674
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2620
2675
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2621
2676
|
];
|
|
2622
2677
|
}).s("AWSLookoutEquipmentFrontendService", "ListTagsForResource", {}).n("LookoutEquipmentClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2678
|
+
static {
|
|
2679
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2680
|
+
}
|
|
2623
2681
|
};
|
|
2624
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2625
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2626
2682
|
|
|
2627
2683
|
// src/commands/PutResourcePolicyCommand.ts
|
|
2628
2684
|
|
|
2629
2685
|
|
|
2630
2686
|
|
|
2631
|
-
var
|
|
2687
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2632
2688
|
return [
|
|
2633
2689
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2634
2690
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2635
2691
|
];
|
|
2636
2692
|
}).s("AWSLookoutEquipmentFrontendService", "PutResourcePolicy", {}).n("LookoutEquipmentClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
2693
|
+
static {
|
|
2694
|
+
__name(this, "PutResourcePolicyCommand");
|
|
2695
|
+
}
|
|
2637
2696
|
};
|
|
2638
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
2639
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
2640
2697
|
|
|
2641
2698
|
// src/commands/StartDataIngestionJobCommand.ts
|
|
2642
2699
|
|
|
2643
2700
|
|
|
2644
2701
|
|
|
2645
|
-
var
|
|
2702
|
+
var StartDataIngestionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2646
2703
|
return [
|
|
2647
2704
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2648
2705
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2649
2706
|
];
|
|
2650
2707
|
}).s("AWSLookoutEquipmentFrontendService", "StartDataIngestionJob", {}).n("LookoutEquipmentClient", "StartDataIngestionJobCommand").f(void 0, void 0).ser(se_StartDataIngestionJobCommand).de(de_StartDataIngestionJobCommand).build() {
|
|
2708
|
+
static {
|
|
2709
|
+
__name(this, "StartDataIngestionJobCommand");
|
|
2710
|
+
}
|
|
2651
2711
|
};
|
|
2652
|
-
__name(_StartDataIngestionJobCommand, "StartDataIngestionJobCommand");
|
|
2653
|
-
var StartDataIngestionJobCommand = _StartDataIngestionJobCommand;
|
|
2654
2712
|
|
|
2655
2713
|
// src/commands/StartInferenceSchedulerCommand.ts
|
|
2656
2714
|
|
|
2657
2715
|
|
|
2658
2716
|
|
|
2659
|
-
var
|
|
2717
|
+
var StartInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2660
2718
|
return [
|
|
2661
2719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2662
2720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2663
2721
|
];
|
|
2664
2722
|
}).s("AWSLookoutEquipmentFrontendService", "StartInferenceScheduler", {}).n("LookoutEquipmentClient", "StartInferenceSchedulerCommand").f(void 0, void 0).ser(se_StartInferenceSchedulerCommand).de(de_StartInferenceSchedulerCommand).build() {
|
|
2723
|
+
static {
|
|
2724
|
+
__name(this, "StartInferenceSchedulerCommand");
|
|
2725
|
+
}
|
|
2665
2726
|
};
|
|
2666
|
-
__name(_StartInferenceSchedulerCommand, "StartInferenceSchedulerCommand");
|
|
2667
|
-
var StartInferenceSchedulerCommand = _StartInferenceSchedulerCommand;
|
|
2668
2727
|
|
|
2669
2728
|
// src/commands/StartRetrainingSchedulerCommand.ts
|
|
2670
2729
|
|
|
2671
2730
|
|
|
2672
2731
|
|
|
2673
|
-
var
|
|
2732
|
+
var StartRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2674
2733
|
return [
|
|
2675
2734
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2676
2735
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2677
2736
|
];
|
|
2678
2737
|
}).s("AWSLookoutEquipmentFrontendService", "StartRetrainingScheduler", {}).n("LookoutEquipmentClient", "StartRetrainingSchedulerCommand").f(void 0, void 0).ser(se_StartRetrainingSchedulerCommand).de(de_StartRetrainingSchedulerCommand).build() {
|
|
2738
|
+
static {
|
|
2739
|
+
__name(this, "StartRetrainingSchedulerCommand");
|
|
2740
|
+
}
|
|
2679
2741
|
};
|
|
2680
|
-
__name(_StartRetrainingSchedulerCommand, "StartRetrainingSchedulerCommand");
|
|
2681
|
-
var StartRetrainingSchedulerCommand = _StartRetrainingSchedulerCommand;
|
|
2682
2742
|
|
|
2683
2743
|
// src/commands/StopInferenceSchedulerCommand.ts
|
|
2684
2744
|
|
|
2685
2745
|
|
|
2686
2746
|
|
|
2687
|
-
var
|
|
2747
|
+
var StopInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2688
2748
|
return [
|
|
2689
2749
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2690
2750
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2691
2751
|
];
|
|
2692
2752
|
}).s("AWSLookoutEquipmentFrontendService", "StopInferenceScheduler", {}).n("LookoutEquipmentClient", "StopInferenceSchedulerCommand").f(void 0, void 0).ser(se_StopInferenceSchedulerCommand).de(de_StopInferenceSchedulerCommand).build() {
|
|
2753
|
+
static {
|
|
2754
|
+
__name(this, "StopInferenceSchedulerCommand");
|
|
2755
|
+
}
|
|
2693
2756
|
};
|
|
2694
|
-
__name(_StopInferenceSchedulerCommand, "StopInferenceSchedulerCommand");
|
|
2695
|
-
var StopInferenceSchedulerCommand = _StopInferenceSchedulerCommand;
|
|
2696
2757
|
|
|
2697
2758
|
// src/commands/StopRetrainingSchedulerCommand.ts
|
|
2698
2759
|
|
|
2699
2760
|
|
|
2700
2761
|
|
|
2701
|
-
var
|
|
2762
|
+
var StopRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2702
2763
|
return [
|
|
2703
2764
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2704
2765
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2705
2766
|
];
|
|
2706
2767
|
}).s("AWSLookoutEquipmentFrontendService", "StopRetrainingScheduler", {}).n("LookoutEquipmentClient", "StopRetrainingSchedulerCommand").f(void 0, void 0).ser(se_StopRetrainingSchedulerCommand).de(de_StopRetrainingSchedulerCommand).build() {
|
|
2768
|
+
static {
|
|
2769
|
+
__name(this, "StopRetrainingSchedulerCommand");
|
|
2770
|
+
}
|
|
2707
2771
|
};
|
|
2708
|
-
__name(_StopRetrainingSchedulerCommand, "StopRetrainingSchedulerCommand");
|
|
2709
|
-
var StopRetrainingSchedulerCommand = _StopRetrainingSchedulerCommand;
|
|
2710
2772
|
|
|
2711
2773
|
// src/commands/TagResourceCommand.ts
|
|
2712
2774
|
|
|
2713
2775
|
|
|
2714
2776
|
|
|
2715
|
-
var
|
|
2777
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2716
2778
|
return [
|
|
2717
2779
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2718
2780
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2719
2781
|
];
|
|
2720
2782
|
}).s("AWSLookoutEquipmentFrontendService", "TagResource", {}).n("LookoutEquipmentClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2783
|
+
static {
|
|
2784
|
+
__name(this, "TagResourceCommand");
|
|
2785
|
+
}
|
|
2721
2786
|
};
|
|
2722
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2723
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2724
2787
|
|
|
2725
2788
|
// src/commands/UntagResourceCommand.ts
|
|
2726
2789
|
|
|
2727
2790
|
|
|
2728
2791
|
|
|
2729
|
-
var
|
|
2792
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2730
2793
|
return [
|
|
2731
2794
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2732
2795
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2733
2796
|
];
|
|
2734
2797
|
}).s("AWSLookoutEquipmentFrontendService", "UntagResource", {}).n("LookoutEquipmentClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2798
|
+
static {
|
|
2799
|
+
__name(this, "UntagResourceCommand");
|
|
2800
|
+
}
|
|
2735
2801
|
};
|
|
2736
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2737
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2738
2802
|
|
|
2739
2803
|
// src/commands/UpdateActiveModelVersionCommand.ts
|
|
2740
2804
|
|
|
2741
2805
|
|
|
2742
2806
|
|
|
2743
|
-
var
|
|
2807
|
+
var UpdateActiveModelVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2744
2808
|
return [
|
|
2745
2809
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2746
2810
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2747
2811
|
];
|
|
2748
2812
|
}).s("AWSLookoutEquipmentFrontendService", "UpdateActiveModelVersion", {}).n("LookoutEquipmentClient", "UpdateActiveModelVersionCommand").f(void 0, void 0).ser(se_UpdateActiveModelVersionCommand).de(de_UpdateActiveModelVersionCommand).build() {
|
|
2813
|
+
static {
|
|
2814
|
+
__name(this, "UpdateActiveModelVersionCommand");
|
|
2815
|
+
}
|
|
2749
2816
|
};
|
|
2750
|
-
__name(_UpdateActiveModelVersionCommand, "UpdateActiveModelVersionCommand");
|
|
2751
|
-
var UpdateActiveModelVersionCommand = _UpdateActiveModelVersionCommand;
|
|
2752
2817
|
|
|
2753
2818
|
// src/commands/UpdateInferenceSchedulerCommand.ts
|
|
2754
2819
|
|
|
2755
2820
|
|
|
2756
2821
|
|
|
2757
|
-
var
|
|
2822
|
+
var UpdateInferenceSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2758
2823
|
return [
|
|
2759
2824
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2760
2825
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2761
2826
|
];
|
|
2762
2827
|
}).s("AWSLookoutEquipmentFrontendService", "UpdateInferenceScheduler", {}).n("LookoutEquipmentClient", "UpdateInferenceSchedulerCommand").f(void 0, void 0).ser(se_UpdateInferenceSchedulerCommand).de(de_UpdateInferenceSchedulerCommand).build() {
|
|
2828
|
+
static {
|
|
2829
|
+
__name(this, "UpdateInferenceSchedulerCommand");
|
|
2830
|
+
}
|
|
2763
2831
|
};
|
|
2764
|
-
__name(_UpdateInferenceSchedulerCommand, "UpdateInferenceSchedulerCommand");
|
|
2765
|
-
var UpdateInferenceSchedulerCommand = _UpdateInferenceSchedulerCommand;
|
|
2766
2832
|
|
|
2767
2833
|
// src/commands/UpdateLabelGroupCommand.ts
|
|
2768
2834
|
|
|
2769
2835
|
|
|
2770
2836
|
|
|
2771
|
-
var
|
|
2837
|
+
var UpdateLabelGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2772
2838
|
return [
|
|
2773
2839
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2774
2840
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2775
2841
|
];
|
|
2776
2842
|
}).s("AWSLookoutEquipmentFrontendService", "UpdateLabelGroup", {}).n("LookoutEquipmentClient", "UpdateLabelGroupCommand").f(void 0, void 0).ser(se_UpdateLabelGroupCommand).de(de_UpdateLabelGroupCommand).build() {
|
|
2843
|
+
static {
|
|
2844
|
+
__name(this, "UpdateLabelGroupCommand");
|
|
2845
|
+
}
|
|
2777
2846
|
};
|
|
2778
|
-
__name(_UpdateLabelGroupCommand, "UpdateLabelGroupCommand");
|
|
2779
|
-
var UpdateLabelGroupCommand = _UpdateLabelGroupCommand;
|
|
2780
2847
|
|
|
2781
2848
|
// src/commands/UpdateModelCommand.ts
|
|
2782
2849
|
|
|
2783
2850
|
|
|
2784
2851
|
|
|
2785
|
-
var
|
|
2852
|
+
var UpdateModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2786
2853
|
return [
|
|
2787
2854
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2788
2855
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2789
2856
|
];
|
|
2790
2857
|
}).s("AWSLookoutEquipmentFrontendService", "UpdateModel", {}).n("LookoutEquipmentClient", "UpdateModelCommand").f(void 0, void 0).ser(se_UpdateModelCommand).de(de_UpdateModelCommand).build() {
|
|
2858
|
+
static {
|
|
2859
|
+
__name(this, "UpdateModelCommand");
|
|
2860
|
+
}
|
|
2791
2861
|
};
|
|
2792
|
-
__name(_UpdateModelCommand, "UpdateModelCommand");
|
|
2793
|
-
var UpdateModelCommand = _UpdateModelCommand;
|
|
2794
2862
|
|
|
2795
2863
|
// src/commands/UpdateRetrainingSchedulerCommand.ts
|
|
2796
2864
|
|
|
2797
2865
|
|
|
2798
2866
|
|
|
2799
|
-
var
|
|
2867
|
+
var UpdateRetrainingSchedulerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2800
2868
|
return [
|
|
2801
2869
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2802
2870
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2803
2871
|
];
|
|
2804
2872
|
}).s("AWSLookoutEquipmentFrontendService", "UpdateRetrainingScheduler", {}).n("LookoutEquipmentClient", "UpdateRetrainingSchedulerCommand").f(void 0, void 0).ser(se_UpdateRetrainingSchedulerCommand).de(de_UpdateRetrainingSchedulerCommand).build() {
|
|
2873
|
+
static {
|
|
2874
|
+
__name(this, "UpdateRetrainingSchedulerCommand");
|
|
2875
|
+
}
|
|
2805
2876
|
};
|
|
2806
|
-
__name(_UpdateRetrainingSchedulerCommand, "UpdateRetrainingSchedulerCommand");
|
|
2807
|
-
var UpdateRetrainingSchedulerCommand = _UpdateRetrainingSchedulerCommand;
|
|
2808
2877
|
|
|
2809
2878
|
// src/LookoutEquipment.ts
|
|
2810
2879
|
var commands = {
|
|
@@ -2858,10 +2927,11 @@ var commands = {
|
|
|
2858
2927
|
UpdateModelCommand,
|
|
2859
2928
|
UpdateRetrainingSchedulerCommand
|
|
2860
2929
|
};
|
|
2861
|
-
var
|
|
2930
|
+
var LookoutEquipment = class extends LookoutEquipmentClient {
|
|
2931
|
+
static {
|
|
2932
|
+
__name(this, "LookoutEquipment");
|
|
2933
|
+
}
|
|
2862
2934
|
};
|
|
2863
|
-
__name(_LookoutEquipment, "LookoutEquipment");
|
|
2864
|
-
var LookoutEquipment = _LookoutEquipment;
|
|
2865
2935
|
(0, import_smithy_client.createAggregatedClient)(commands, LookoutEquipment);
|
|
2866
2936
|
|
|
2867
2937
|
// src/pagination/ListDataIngestionJobsPaginator.ts
|