@aws-sdk/client-lookoutequipment 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +49 -147
- package/dist-es/commands/CreateDatasetCommand.js +1 -3
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/CreateLabelCommand.js +1 -3
- package/dist-es/commands/CreateLabelGroupCommand.js +1 -3
- package/dist-es/commands/CreateModelCommand.js +1 -3
- package/dist-es/commands/CreateRetrainingSchedulerCommand.js +1 -3
- package/dist-es/commands/DeleteDatasetCommand.js +1 -3
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/DeleteLabelCommand.js +1 -3
- package/dist-es/commands/DeleteLabelGroupCommand.js +1 -3
- package/dist-es/commands/DeleteModelCommand.js +1 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +1 -3
- package/dist-es/commands/DeleteRetrainingSchedulerCommand.js +1 -3
- package/dist-es/commands/DescribeDataIngestionJobCommand.js +1 -3
- package/dist-es/commands/DescribeDatasetCommand.js +1 -3
- package/dist-es/commands/DescribeInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/DescribeLabelCommand.js +1 -3
- package/dist-es/commands/DescribeLabelGroupCommand.js +1 -3
- package/dist-es/commands/DescribeModelCommand.js +1 -3
- package/dist-es/commands/DescribeModelVersionCommand.js +1 -3
- package/dist-es/commands/DescribeResourcePolicyCommand.js +1 -3
- package/dist-es/commands/DescribeRetrainingSchedulerCommand.js +1 -3
- package/dist-es/commands/ImportDatasetCommand.js +1 -3
- package/dist-es/commands/ImportModelVersionCommand.js +1 -3
- package/dist-es/commands/ListDataIngestionJobsCommand.js +1 -3
- package/dist-es/commands/ListDatasetsCommand.js +1 -3
- package/dist-es/commands/ListInferenceEventsCommand.js +1 -3
- package/dist-es/commands/ListInferenceExecutionsCommand.js +1 -3
- package/dist-es/commands/ListInferenceSchedulersCommand.js +1 -3
- package/dist-es/commands/ListLabelGroupsCommand.js +1 -3
- package/dist-es/commands/ListLabelsCommand.js +1 -3
- package/dist-es/commands/ListModelVersionsCommand.js +1 -3
- package/dist-es/commands/ListModelsCommand.js +1 -3
- package/dist-es/commands/ListRetrainingSchedulersCommand.js +1 -3
- package/dist-es/commands/ListSensorStatisticsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +1 -3
- package/dist-es/commands/StartDataIngestionJobCommand.js +1 -3
- package/dist-es/commands/StartInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/StartRetrainingSchedulerCommand.js +1 -3
- package/dist-es/commands/StopInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/StopRetrainingSchedulerCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateActiveModelVersionCommand.js +1 -3
- package/dist-es/commands/UpdateInferenceSchedulerCommand.js +1 -3
- package/dist-es/commands/UpdateLabelGroupCommand.js +1 -3
- package/dist-es/commands/UpdateModelCommand.js +1 -3
- package/dist-es/commands/UpdateRetrainingSchedulerCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2124,9 +2124,7 @@ function sharedHeaders(operation) {
|
|
|
2124
2124
|
__name(sharedHeaders, "sharedHeaders");
|
|
2125
2125
|
|
|
2126
2126
|
// src/commands/CreateDatasetCommand.ts
|
|
2127
|
-
var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2128
|
-
...commonParams
|
|
2129
|
-
}).m(function(Command, cs, config, o) {
|
|
2127
|
+
var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2130
2128
|
return [
|
|
2131
2129
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2132
2130
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2140,9 +2138,7 @@ var CreateDatasetCommand = _CreateDatasetCommand;
|
|
|
2140
2138
|
|
|
2141
2139
|
|
|
2142
2140
|
|
|
2143
|
-
var _CreateInferenceSchedulerCommand = class _CreateInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2144
|
-
...commonParams
|
|
2145
|
-
}).m(function(Command, cs, config, o) {
|
|
2141
|
+
var _CreateInferenceSchedulerCommand = class _CreateInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2146
2142
|
return [
|
|
2147
2143
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2148
2144
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2156,9 +2152,7 @@ var CreateInferenceSchedulerCommand = _CreateInferenceSchedulerCommand;
|
|
|
2156
2152
|
|
|
2157
2153
|
|
|
2158
2154
|
|
|
2159
|
-
var _CreateLabelCommand = class _CreateLabelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2160
|
-
...commonParams
|
|
2161
|
-
}).m(function(Command, cs, config, o) {
|
|
2155
|
+
var _CreateLabelCommand = class _CreateLabelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2162
2156
|
return [
|
|
2163
2157
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2164
2158
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2172,9 +2166,7 @@ var CreateLabelCommand = _CreateLabelCommand;
|
|
|
2172
2166
|
|
|
2173
2167
|
|
|
2174
2168
|
|
|
2175
|
-
var _CreateLabelGroupCommand = class _CreateLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2176
|
-
...commonParams
|
|
2177
|
-
}).m(function(Command, cs, config, o) {
|
|
2169
|
+
var _CreateLabelGroupCommand = class _CreateLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2178
2170
|
return [
|
|
2179
2171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2180
2172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2188,9 +2180,7 @@ var CreateLabelGroupCommand = _CreateLabelGroupCommand;
|
|
|
2188
2180
|
|
|
2189
2181
|
|
|
2190
2182
|
|
|
2191
|
-
var _CreateModelCommand = class _CreateModelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2192
|
-
...commonParams
|
|
2193
|
-
}).m(function(Command, cs, config, o) {
|
|
2183
|
+
var _CreateModelCommand = class _CreateModelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2194
2184
|
return [
|
|
2195
2185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2196
2186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2204,9 +2194,7 @@ var CreateModelCommand = _CreateModelCommand;
|
|
|
2204
2194
|
|
|
2205
2195
|
|
|
2206
2196
|
|
|
2207
|
-
var _CreateRetrainingSchedulerCommand = class _CreateRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2208
|
-
...commonParams
|
|
2209
|
-
}).m(function(Command, cs, config, o) {
|
|
2197
|
+
var _CreateRetrainingSchedulerCommand = class _CreateRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2210
2198
|
return [
|
|
2211
2199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2212
2200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2220,9 +2208,7 @@ var CreateRetrainingSchedulerCommand = _CreateRetrainingSchedulerCommand;
|
|
|
2220
2208
|
|
|
2221
2209
|
|
|
2222
2210
|
|
|
2223
|
-
var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2224
|
-
...commonParams
|
|
2225
|
-
}).m(function(Command, cs, config, o) {
|
|
2211
|
+
var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2226
2212
|
return [
|
|
2227
2213
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2228
2214
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2236,9 +2222,7 @@ var DeleteDatasetCommand = _DeleteDatasetCommand;
|
|
|
2236
2222
|
|
|
2237
2223
|
|
|
2238
2224
|
|
|
2239
|
-
var _DeleteInferenceSchedulerCommand = class _DeleteInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2240
|
-
...commonParams
|
|
2241
|
-
}).m(function(Command, cs, config, o) {
|
|
2225
|
+
var _DeleteInferenceSchedulerCommand = class _DeleteInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2242
2226
|
return [
|
|
2243
2227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2244
2228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2252,9 +2236,7 @@ var DeleteInferenceSchedulerCommand = _DeleteInferenceSchedulerCommand;
|
|
|
2252
2236
|
|
|
2253
2237
|
|
|
2254
2238
|
|
|
2255
|
-
var _DeleteLabelCommand = class _DeleteLabelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2256
|
-
...commonParams
|
|
2257
|
-
}).m(function(Command, cs, config, o) {
|
|
2239
|
+
var _DeleteLabelCommand = class _DeleteLabelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2258
2240
|
return [
|
|
2259
2241
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2260
2242
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2268,9 +2250,7 @@ var DeleteLabelCommand = _DeleteLabelCommand;
|
|
|
2268
2250
|
|
|
2269
2251
|
|
|
2270
2252
|
|
|
2271
|
-
var _DeleteLabelGroupCommand = class _DeleteLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2272
|
-
...commonParams
|
|
2273
|
-
}).m(function(Command, cs, config, o) {
|
|
2253
|
+
var _DeleteLabelGroupCommand = class _DeleteLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2274
2254
|
return [
|
|
2275
2255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2276
2256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2284,9 +2264,7 @@ var DeleteLabelGroupCommand = _DeleteLabelGroupCommand;
|
|
|
2284
2264
|
|
|
2285
2265
|
|
|
2286
2266
|
|
|
2287
|
-
var _DeleteModelCommand = class _DeleteModelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2288
|
-
...commonParams
|
|
2289
|
-
}).m(function(Command, cs, config, o) {
|
|
2267
|
+
var _DeleteModelCommand = class _DeleteModelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2290
2268
|
return [
|
|
2291
2269
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2292
2270
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2300,9 +2278,7 @@ var DeleteModelCommand = _DeleteModelCommand;
|
|
|
2300
2278
|
|
|
2301
2279
|
|
|
2302
2280
|
|
|
2303
|
-
var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2304
|
-
...commonParams
|
|
2305
|
-
}).m(function(Command, cs, config, o) {
|
|
2281
|
+
var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2306
2282
|
return [
|
|
2307
2283
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2308
2284
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2316,9 +2292,7 @@ var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
|
2316
2292
|
|
|
2317
2293
|
|
|
2318
2294
|
|
|
2319
|
-
var _DeleteRetrainingSchedulerCommand = class _DeleteRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2320
|
-
...commonParams
|
|
2321
|
-
}).m(function(Command, cs, config, o) {
|
|
2295
|
+
var _DeleteRetrainingSchedulerCommand = class _DeleteRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2322
2296
|
return [
|
|
2323
2297
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2324
2298
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2332,9 +2306,7 @@ var DeleteRetrainingSchedulerCommand = _DeleteRetrainingSchedulerCommand;
|
|
|
2332
2306
|
|
|
2333
2307
|
|
|
2334
2308
|
|
|
2335
|
-
var _DescribeDataIngestionJobCommand = class _DescribeDataIngestionJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2336
|
-
...commonParams
|
|
2337
|
-
}).m(function(Command, cs, config, o) {
|
|
2309
|
+
var _DescribeDataIngestionJobCommand = class _DescribeDataIngestionJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2338
2310
|
return [
|
|
2339
2311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2340
2312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2348,9 +2320,7 @@ var DescribeDataIngestionJobCommand = _DescribeDataIngestionJobCommand;
|
|
|
2348
2320
|
|
|
2349
2321
|
|
|
2350
2322
|
|
|
2351
|
-
var _DescribeDatasetCommand = class _DescribeDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2352
|
-
...commonParams
|
|
2353
|
-
}).m(function(Command, cs, config, o) {
|
|
2323
|
+
var _DescribeDatasetCommand = class _DescribeDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2354
2324
|
return [
|
|
2355
2325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2356
2326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2364,9 +2334,7 @@ var DescribeDatasetCommand = _DescribeDatasetCommand;
|
|
|
2364
2334
|
|
|
2365
2335
|
|
|
2366
2336
|
|
|
2367
|
-
var _DescribeInferenceSchedulerCommand = class _DescribeInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2368
|
-
...commonParams
|
|
2369
|
-
}).m(function(Command, cs, config, o) {
|
|
2337
|
+
var _DescribeInferenceSchedulerCommand = class _DescribeInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2370
2338
|
return [
|
|
2371
2339
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2372
2340
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2380,9 +2348,7 @@ var DescribeInferenceSchedulerCommand = _DescribeInferenceSchedulerCommand;
|
|
|
2380
2348
|
|
|
2381
2349
|
|
|
2382
2350
|
|
|
2383
|
-
var _DescribeLabelCommand = class _DescribeLabelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2384
|
-
...commonParams
|
|
2385
|
-
}).m(function(Command, cs, config, o) {
|
|
2351
|
+
var _DescribeLabelCommand = class _DescribeLabelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2386
2352
|
return [
|
|
2387
2353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2388
2354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2396,9 +2362,7 @@ var DescribeLabelCommand = _DescribeLabelCommand;
|
|
|
2396
2362
|
|
|
2397
2363
|
|
|
2398
2364
|
|
|
2399
|
-
var _DescribeLabelGroupCommand = class _DescribeLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2400
|
-
...commonParams
|
|
2401
|
-
}).m(function(Command, cs, config, o) {
|
|
2365
|
+
var _DescribeLabelGroupCommand = class _DescribeLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2402
2366
|
return [
|
|
2403
2367
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2404
2368
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2412,9 +2376,7 @@ var DescribeLabelGroupCommand = _DescribeLabelGroupCommand;
|
|
|
2412
2376
|
|
|
2413
2377
|
|
|
2414
2378
|
|
|
2415
|
-
var _DescribeModelCommand = class _DescribeModelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2416
|
-
...commonParams
|
|
2417
|
-
}).m(function(Command, cs, config, o) {
|
|
2379
|
+
var _DescribeModelCommand = class _DescribeModelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2418
2380
|
return [
|
|
2419
2381
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2420
2382
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2428,9 +2390,7 @@ var DescribeModelCommand = _DescribeModelCommand;
|
|
|
2428
2390
|
|
|
2429
2391
|
|
|
2430
2392
|
|
|
2431
|
-
var _DescribeModelVersionCommand = class _DescribeModelVersionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2432
|
-
...commonParams
|
|
2433
|
-
}).m(function(Command, cs, config, o) {
|
|
2393
|
+
var _DescribeModelVersionCommand = class _DescribeModelVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2434
2394
|
return [
|
|
2435
2395
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2436
2396
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2444,9 +2404,7 @@ var DescribeModelVersionCommand = _DescribeModelVersionCommand;
|
|
|
2444
2404
|
|
|
2445
2405
|
|
|
2446
2406
|
|
|
2447
|
-
var _DescribeResourcePolicyCommand = class _DescribeResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2448
|
-
...commonParams
|
|
2449
|
-
}).m(function(Command, cs, config, o) {
|
|
2407
|
+
var _DescribeResourcePolicyCommand = class _DescribeResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2450
2408
|
return [
|
|
2451
2409
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2452
2410
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2460,9 +2418,7 @@ var DescribeResourcePolicyCommand = _DescribeResourcePolicyCommand;
|
|
|
2460
2418
|
|
|
2461
2419
|
|
|
2462
2420
|
|
|
2463
|
-
var _DescribeRetrainingSchedulerCommand = class _DescribeRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2464
|
-
...commonParams
|
|
2465
|
-
}).m(function(Command, cs, config, o) {
|
|
2421
|
+
var _DescribeRetrainingSchedulerCommand = class _DescribeRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2466
2422
|
return [
|
|
2467
2423
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2468
2424
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2476,9 +2432,7 @@ var DescribeRetrainingSchedulerCommand = _DescribeRetrainingSchedulerCommand;
|
|
|
2476
2432
|
|
|
2477
2433
|
|
|
2478
2434
|
|
|
2479
|
-
var _ImportDatasetCommand = class _ImportDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2480
|
-
...commonParams
|
|
2481
|
-
}).m(function(Command, cs, config, o) {
|
|
2435
|
+
var _ImportDatasetCommand = class _ImportDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2482
2436
|
return [
|
|
2483
2437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2484
2438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2492,9 +2446,7 @@ var ImportDatasetCommand = _ImportDatasetCommand;
|
|
|
2492
2446
|
|
|
2493
2447
|
|
|
2494
2448
|
|
|
2495
|
-
var _ImportModelVersionCommand = class _ImportModelVersionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2496
|
-
...commonParams
|
|
2497
|
-
}).m(function(Command, cs, config, o) {
|
|
2449
|
+
var _ImportModelVersionCommand = class _ImportModelVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2498
2450
|
return [
|
|
2499
2451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2500
2452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2508,9 +2460,7 @@ var ImportModelVersionCommand = _ImportModelVersionCommand;
|
|
|
2508
2460
|
|
|
2509
2461
|
|
|
2510
2462
|
|
|
2511
|
-
var _ListDataIngestionJobsCommand = class _ListDataIngestionJobsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2512
|
-
...commonParams
|
|
2513
|
-
}).m(function(Command, cs, config, o) {
|
|
2463
|
+
var _ListDataIngestionJobsCommand = class _ListDataIngestionJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2514
2464
|
return [
|
|
2515
2465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2516
2466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2524,9 +2474,7 @@ var ListDataIngestionJobsCommand = _ListDataIngestionJobsCommand;
|
|
|
2524
2474
|
|
|
2525
2475
|
|
|
2526
2476
|
|
|
2527
|
-
var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2528
|
-
...commonParams
|
|
2529
|
-
}).m(function(Command, cs, config, o) {
|
|
2477
|
+
var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2530
2478
|
return [
|
|
2531
2479
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2532
2480
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2540,9 +2488,7 @@ var ListDatasetsCommand = _ListDatasetsCommand;
|
|
|
2540
2488
|
|
|
2541
2489
|
|
|
2542
2490
|
|
|
2543
|
-
var _ListInferenceEventsCommand = class _ListInferenceEventsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2544
|
-
...commonParams
|
|
2545
|
-
}).m(function(Command, cs, config, o) {
|
|
2491
|
+
var _ListInferenceEventsCommand = class _ListInferenceEventsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2546
2492
|
return [
|
|
2547
2493
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2548
2494
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2556,9 +2502,7 @@ var ListInferenceEventsCommand = _ListInferenceEventsCommand;
|
|
|
2556
2502
|
|
|
2557
2503
|
|
|
2558
2504
|
|
|
2559
|
-
var _ListInferenceExecutionsCommand = class _ListInferenceExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2560
|
-
...commonParams
|
|
2561
|
-
}).m(function(Command, cs, config, o) {
|
|
2505
|
+
var _ListInferenceExecutionsCommand = class _ListInferenceExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2562
2506
|
return [
|
|
2563
2507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2564
2508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2572,9 +2516,7 @@ var ListInferenceExecutionsCommand = _ListInferenceExecutionsCommand;
|
|
|
2572
2516
|
|
|
2573
2517
|
|
|
2574
2518
|
|
|
2575
|
-
var _ListInferenceSchedulersCommand = class _ListInferenceSchedulersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2576
|
-
...commonParams
|
|
2577
|
-
}).m(function(Command, cs, config, o) {
|
|
2519
|
+
var _ListInferenceSchedulersCommand = class _ListInferenceSchedulersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2578
2520
|
return [
|
|
2579
2521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2580
2522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2588,9 +2530,7 @@ var ListInferenceSchedulersCommand = _ListInferenceSchedulersCommand;
|
|
|
2588
2530
|
|
|
2589
2531
|
|
|
2590
2532
|
|
|
2591
|
-
var _ListLabelGroupsCommand = class _ListLabelGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2592
|
-
...commonParams
|
|
2593
|
-
}).m(function(Command, cs, config, o) {
|
|
2533
|
+
var _ListLabelGroupsCommand = class _ListLabelGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2594
2534
|
return [
|
|
2595
2535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2596
2536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2604,9 +2544,7 @@ var ListLabelGroupsCommand = _ListLabelGroupsCommand;
|
|
|
2604
2544
|
|
|
2605
2545
|
|
|
2606
2546
|
|
|
2607
|
-
var _ListLabelsCommand = class _ListLabelsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2608
|
-
...commonParams
|
|
2609
|
-
}).m(function(Command, cs, config, o) {
|
|
2547
|
+
var _ListLabelsCommand = class _ListLabelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2610
2548
|
return [
|
|
2611
2549
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2612
2550
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2620,9 +2558,7 @@ var ListLabelsCommand = _ListLabelsCommand;
|
|
|
2620
2558
|
|
|
2621
2559
|
|
|
2622
2560
|
|
|
2623
|
-
var _ListModelsCommand = class _ListModelsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2624
|
-
...commonParams
|
|
2625
|
-
}).m(function(Command, cs, config, o) {
|
|
2561
|
+
var _ListModelsCommand = class _ListModelsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2626
2562
|
return [
|
|
2627
2563
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2628
2564
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2636,9 +2572,7 @@ var ListModelsCommand = _ListModelsCommand;
|
|
|
2636
2572
|
|
|
2637
2573
|
|
|
2638
2574
|
|
|
2639
|
-
var _ListModelVersionsCommand = class _ListModelVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2640
|
-
...commonParams
|
|
2641
|
-
}).m(function(Command, cs, config, o) {
|
|
2575
|
+
var _ListModelVersionsCommand = class _ListModelVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2642
2576
|
return [
|
|
2643
2577
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2644
2578
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2652,9 +2586,7 @@ var ListModelVersionsCommand = _ListModelVersionsCommand;
|
|
|
2652
2586
|
|
|
2653
2587
|
|
|
2654
2588
|
|
|
2655
|
-
var _ListRetrainingSchedulersCommand = class _ListRetrainingSchedulersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2656
|
-
...commonParams
|
|
2657
|
-
}).m(function(Command, cs, config, o) {
|
|
2589
|
+
var _ListRetrainingSchedulersCommand = class _ListRetrainingSchedulersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2658
2590
|
return [
|
|
2659
2591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2660
2592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2668,9 +2600,7 @@ var ListRetrainingSchedulersCommand = _ListRetrainingSchedulersCommand;
|
|
|
2668
2600
|
|
|
2669
2601
|
|
|
2670
2602
|
|
|
2671
|
-
var _ListSensorStatisticsCommand = class _ListSensorStatisticsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2672
|
-
...commonParams
|
|
2673
|
-
}).m(function(Command, cs, config, o) {
|
|
2603
|
+
var _ListSensorStatisticsCommand = class _ListSensorStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2674
2604
|
return [
|
|
2675
2605
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2676
2606
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2684,9 +2614,7 @@ var ListSensorStatisticsCommand = _ListSensorStatisticsCommand;
|
|
|
2684
2614
|
|
|
2685
2615
|
|
|
2686
2616
|
|
|
2687
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2688
|
-
...commonParams
|
|
2689
|
-
}).m(function(Command, cs, config, o) {
|
|
2617
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2690
2618
|
return [
|
|
2691
2619
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2692
2620
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2700,9 +2628,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
2700
2628
|
|
|
2701
2629
|
|
|
2702
2630
|
|
|
2703
|
-
var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2704
|
-
...commonParams
|
|
2705
|
-
}).m(function(Command, cs, config, o) {
|
|
2631
|
+
var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2706
2632
|
return [
|
|
2707
2633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2708
2634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2716,9 +2642,7 @@ var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
|
2716
2642
|
|
|
2717
2643
|
|
|
2718
2644
|
|
|
2719
|
-
var _StartDataIngestionJobCommand = class _StartDataIngestionJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2720
|
-
...commonParams
|
|
2721
|
-
}).m(function(Command, cs, config, o) {
|
|
2645
|
+
var _StartDataIngestionJobCommand = class _StartDataIngestionJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2722
2646
|
return [
|
|
2723
2647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2724
2648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2732,9 +2656,7 @@ var StartDataIngestionJobCommand = _StartDataIngestionJobCommand;
|
|
|
2732
2656
|
|
|
2733
2657
|
|
|
2734
2658
|
|
|
2735
|
-
var _StartInferenceSchedulerCommand = class _StartInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2736
|
-
...commonParams
|
|
2737
|
-
}).m(function(Command, cs, config, o) {
|
|
2659
|
+
var _StartInferenceSchedulerCommand = class _StartInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2738
2660
|
return [
|
|
2739
2661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2740
2662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2748,9 +2670,7 @@ var StartInferenceSchedulerCommand = _StartInferenceSchedulerCommand;
|
|
|
2748
2670
|
|
|
2749
2671
|
|
|
2750
2672
|
|
|
2751
|
-
var _StartRetrainingSchedulerCommand = class _StartRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2752
|
-
...commonParams
|
|
2753
|
-
}).m(function(Command, cs, config, o) {
|
|
2673
|
+
var _StartRetrainingSchedulerCommand = class _StartRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2754
2674
|
return [
|
|
2755
2675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2756
2676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2764,9 +2684,7 @@ var StartRetrainingSchedulerCommand = _StartRetrainingSchedulerCommand;
|
|
|
2764
2684
|
|
|
2765
2685
|
|
|
2766
2686
|
|
|
2767
|
-
var _StopInferenceSchedulerCommand = class _StopInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2768
|
-
...commonParams
|
|
2769
|
-
}).m(function(Command, cs, config, o) {
|
|
2687
|
+
var _StopInferenceSchedulerCommand = class _StopInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2770
2688
|
return [
|
|
2771
2689
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2772
2690
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2780,9 +2698,7 @@ var StopInferenceSchedulerCommand = _StopInferenceSchedulerCommand;
|
|
|
2780
2698
|
|
|
2781
2699
|
|
|
2782
2700
|
|
|
2783
|
-
var _StopRetrainingSchedulerCommand = class _StopRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2784
|
-
...commonParams
|
|
2785
|
-
}).m(function(Command, cs, config, o) {
|
|
2701
|
+
var _StopRetrainingSchedulerCommand = class _StopRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2786
2702
|
return [
|
|
2787
2703
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2788
2704
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2796,9 +2712,7 @@ var StopRetrainingSchedulerCommand = _StopRetrainingSchedulerCommand;
|
|
|
2796
2712
|
|
|
2797
2713
|
|
|
2798
2714
|
|
|
2799
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2800
|
-
...commonParams
|
|
2801
|
-
}).m(function(Command, cs, config, o) {
|
|
2715
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2802
2716
|
return [
|
|
2803
2717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2804
2718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2812,9 +2726,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
2812
2726
|
|
|
2813
2727
|
|
|
2814
2728
|
|
|
2815
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2816
|
-
...commonParams
|
|
2817
|
-
}).m(function(Command, cs, config, o) {
|
|
2729
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2818
2730
|
return [
|
|
2819
2731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2820
2732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2828,9 +2740,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
2828
2740
|
|
|
2829
2741
|
|
|
2830
2742
|
|
|
2831
|
-
var _UpdateActiveModelVersionCommand = class _UpdateActiveModelVersionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2832
|
-
...commonParams
|
|
2833
|
-
}).m(function(Command, cs, config, o) {
|
|
2743
|
+
var _UpdateActiveModelVersionCommand = class _UpdateActiveModelVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2834
2744
|
return [
|
|
2835
2745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2836
2746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2844,9 +2754,7 @@ var UpdateActiveModelVersionCommand = _UpdateActiveModelVersionCommand;
|
|
|
2844
2754
|
|
|
2845
2755
|
|
|
2846
2756
|
|
|
2847
|
-
var _UpdateInferenceSchedulerCommand = class _UpdateInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2848
|
-
...commonParams
|
|
2849
|
-
}).m(function(Command, cs, config, o) {
|
|
2757
|
+
var _UpdateInferenceSchedulerCommand = class _UpdateInferenceSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2850
2758
|
return [
|
|
2851
2759
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2852
2760
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2860,9 +2768,7 @@ var UpdateInferenceSchedulerCommand = _UpdateInferenceSchedulerCommand;
|
|
|
2860
2768
|
|
|
2861
2769
|
|
|
2862
2770
|
|
|
2863
|
-
var _UpdateLabelGroupCommand = class _UpdateLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2864
|
-
...commonParams
|
|
2865
|
-
}).m(function(Command, cs, config, o) {
|
|
2771
|
+
var _UpdateLabelGroupCommand = class _UpdateLabelGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2866
2772
|
return [
|
|
2867
2773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2868
2774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2876,9 +2782,7 @@ var UpdateLabelGroupCommand = _UpdateLabelGroupCommand;
|
|
|
2876
2782
|
|
|
2877
2783
|
|
|
2878
2784
|
|
|
2879
|
-
var _UpdateModelCommand = class _UpdateModelCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2880
|
-
...commonParams
|
|
2881
|
-
}).m(function(Command, cs, config, o) {
|
|
2785
|
+
var _UpdateModelCommand = class _UpdateModelCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2882
2786
|
return [
|
|
2883
2787
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2884
2788
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2892,9 +2796,7 @@ var UpdateModelCommand = _UpdateModelCommand;
|
|
|
2892
2796
|
|
|
2893
2797
|
|
|
2894
2798
|
|
|
2895
|
-
var _UpdateRetrainingSchedulerCommand = class _UpdateRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2896
|
-
...commonParams
|
|
2897
|
-
}).m(function(Command, cs, config, o) {
|
|
2799
|
+
var _UpdateRetrainingSchedulerCommand = class _UpdateRetrainingSchedulerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2898
2800
|
return [
|
|
2899
2801
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2900
2802
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_CreateDatasetCommand, se_CreateDatasetCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateDatasetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateInferenceSchedulerCommand, se_CreateInferenceSchedulerCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateInferenceSchedulerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateLabelCommand, se_CreateLabelCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateLabelCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateLabelGroupCommand, se_CreateLabelGroupCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateLabelGroupCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateModelCommand, se_CreateModelCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateModelCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateRetrainingSchedulerCommand, se_CreateRetrainingSchedulerComman
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRetrainingSchedulerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteDatasetCommand, se_DeleteDatasetCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteDatasetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteInferenceSchedulerCommand, se_DeleteInferenceSchedulerCommand
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteInferenceSchedulerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteLabelCommand, se_DeleteLabelCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteLabelCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|