@aws-sdk/client-databrew 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.
Files changed (54) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +44 -132
  3. package/dist-es/commands/BatchDeleteRecipeVersionCommand.js +1 -3
  4. package/dist-es/commands/CreateDatasetCommand.js +1 -3
  5. package/dist-es/commands/CreateProfileJobCommand.js +1 -3
  6. package/dist-es/commands/CreateProjectCommand.js +1 -3
  7. package/dist-es/commands/CreateRecipeCommand.js +1 -3
  8. package/dist-es/commands/CreateRecipeJobCommand.js +1 -3
  9. package/dist-es/commands/CreateRulesetCommand.js +1 -3
  10. package/dist-es/commands/CreateScheduleCommand.js +1 -3
  11. package/dist-es/commands/DeleteDatasetCommand.js +1 -3
  12. package/dist-es/commands/DeleteJobCommand.js +1 -3
  13. package/dist-es/commands/DeleteProjectCommand.js +1 -3
  14. package/dist-es/commands/DeleteRecipeVersionCommand.js +1 -3
  15. package/dist-es/commands/DeleteRulesetCommand.js +1 -3
  16. package/dist-es/commands/DeleteScheduleCommand.js +1 -3
  17. package/dist-es/commands/DescribeDatasetCommand.js +1 -3
  18. package/dist-es/commands/DescribeJobCommand.js +1 -3
  19. package/dist-es/commands/DescribeJobRunCommand.js +1 -3
  20. package/dist-es/commands/DescribeProjectCommand.js +1 -3
  21. package/dist-es/commands/DescribeRecipeCommand.js +1 -3
  22. package/dist-es/commands/DescribeRulesetCommand.js +1 -3
  23. package/dist-es/commands/DescribeScheduleCommand.js +1 -3
  24. package/dist-es/commands/ListDatasetsCommand.js +1 -3
  25. package/dist-es/commands/ListJobRunsCommand.js +1 -3
  26. package/dist-es/commands/ListJobsCommand.js +1 -3
  27. package/dist-es/commands/ListProjectsCommand.js +1 -3
  28. package/dist-es/commands/ListRecipeVersionsCommand.js +1 -3
  29. package/dist-es/commands/ListRecipesCommand.js +1 -3
  30. package/dist-es/commands/ListRulesetsCommand.js +1 -3
  31. package/dist-es/commands/ListSchedulesCommand.js +1 -3
  32. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  33. package/dist-es/commands/PublishRecipeCommand.js +1 -3
  34. package/dist-es/commands/SendProjectSessionActionCommand.js +1 -3
  35. package/dist-es/commands/StartJobRunCommand.js +1 -3
  36. package/dist-es/commands/StartProjectSessionCommand.js +1 -3
  37. package/dist-es/commands/StopJobRunCommand.js +1 -3
  38. package/dist-es/commands/TagResourceCommand.js +1 -3
  39. package/dist-es/commands/UntagResourceCommand.js +1 -3
  40. package/dist-es/commands/UpdateDatasetCommand.js +1 -3
  41. package/dist-es/commands/UpdateProfileJobCommand.js +1 -3
  42. package/dist-es/commands/UpdateProjectCommand.js +1 -3
  43. package/dist-es/commands/UpdateRecipeCommand.js +1 -3
  44. package/dist-es/commands/UpdateRecipeJobCommand.js +1 -3
  45. package/dist-es/commands/UpdateRulesetCommand.js +1 -3
  46. package/dist-es/commands/UpdateScheduleCommand.js +1 -3
  47. package/dist-es/endpoint/endpointResolver.js +7 -3
  48. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  49. package/dist-types/runtimeConfig.d.ts +2 -0
  50. package/dist-types/runtimeConfig.native.d.ts +2 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  54. 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
@@ -2214,9 +2214,7 @@ var _tA = "targetArn";
2214
2214
  var _tK = "tagKeys";
2215
2215
 
2216
2216
  // src/commands/BatchDeleteRecipeVersionCommand.ts
2217
- var _BatchDeleteRecipeVersionCommand = class _BatchDeleteRecipeVersionCommand extends import_smithy_client.Command.classBuilder().ep({
2218
- ...commonParams
2219
- }).m(function(Command, cs, config, o) {
2217
+ var _BatchDeleteRecipeVersionCommand = class _BatchDeleteRecipeVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2220
2218
  return [
2221
2219
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2222
2220
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2230,9 +2228,7 @@ var BatchDeleteRecipeVersionCommand = _BatchDeleteRecipeVersionCommand;
2230
2228
 
2231
2229
 
2232
2230
 
2233
- var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
2234
- ...commonParams
2235
- }).m(function(Command, cs, config, o) {
2231
+ var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2236
2232
  return [
2237
2233
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2238
2234
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2246,9 +2242,7 @@ var CreateDatasetCommand = _CreateDatasetCommand;
2246
2242
 
2247
2243
 
2248
2244
 
2249
- var _CreateProfileJobCommand = class _CreateProfileJobCommand extends import_smithy_client.Command.classBuilder().ep({
2250
- ...commonParams
2251
- }).m(function(Command, cs, config, o) {
2245
+ var _CreateProfileJobCommand = class _CreateProfileJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2252
2246
  return [
2253
2247
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2254
2248
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2262,9 +2256,7 @@ var CreateProfileJobCommand = _CreateProfileJobCommand;
2262
2256
 
2263
2257
 
2264
2258
 
2265
- var _CreateProjectCommand = class _CreateProjectCommand extends import_smithy_client.Command.classBuilder().ep({
2266
- ...commonParams
2267
- }).m(function(Command, cs, config, o) {
2259
+ var _CreateProjectCommand = class _CreateProjectCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2268
2260
  return [
2269
2261
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2270
2262
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2278,9 +2270,7 @@ var CreateProjectCommand = _CreateProjectCommand;
2278
2270
 
2279
2271
 
2280
2272
 
2281
- var _CreateRecipeCommand = class _CreateRecipeCommand extends import_smithy_client.Command.classBuilder().ep({
2282
- ...commonParams
2283
- }).m(function(Command, cs, config, o) {
2273
+ var _CreateRecipeCommand = class _CreateRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2284
2274
  return [
2285
2275
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2286
2276
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2294,9 +2284,7 @@ var CreateRecipeCommand = _CreateRecipeCommand;
2294
2284
 
2295
2285
 
2296
2286
 
2297
- var _CreateRecipeJobCommand = class _CreateRecipeJobCommand extends import_smithy_client.Command.classBuilder().ep({
2298
- ...commonParams
2299
- }).m(function(Command, cs, config, o) {
2287
+ var _CreateRecipeJobCommand = class _CreateRecipeJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2300
2288
  return [
2301
2289
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2302
2290
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2310,9 +2298,7 @@ var CreateRecipeJobCommand = _CreateRecipeJobCommand;
2310
2298
 
2311
2299
 
2312
2300
 
2313
- var _CreateRulesetCommand = class _CreateRulesetCommand extends import_smithy_client.Command.classBuilder().ep({
2314
- ...commonParams
2315
- }).m(function(Command, cs, config, o) {
2301
+ var _CreateRulesetCommand = class _CreateRulesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2316
2302
  return [
2317
2303
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2318
2304
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2326,9 +2312,7 @@ var CreateRulesetCommand = _CreateRulesetCommand;
2326
2312
 
2327
2313
 
2328
2314
 
2329
- var _CreateScheduleCommand = class _CreateScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
2330
- ...commonParams
2331
- }).m(function(Command, cs, config, o) {
2315
+ var _CreateScheduleCommand = class _CreateScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2332
2316
  return [
2333
2317
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2334
2318
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2342,9 +2326,7 @@ var CreateScheduleCommand = _CreateScheduleCommand;
2342
2326
 
2343
2327
 
2344
2328
 
2345
- var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
2346
- ...commonParams
2347
- }).m(function(Command, cs, config, o) {
2329
+ var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2348
2330
  return [
2349
2331
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2350
2332
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2358,9 +2340,7 @@ var DeleteDatasetCommand = _DeleteDatasetCommand;
2358
2340
 
2359
2341
 
2360
2342
 
2361
- var _DeleteJobCommand = class _DeleteJobCommand extends import_smithy_client.Command.classBuilder().ep({
2362
- ...commonParams
2363
- }).m(function(Command, cs, config, o) {
2343
+ var _DeleteJobCommand = class _DeleteJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2364
2344
  return [
2365
2345
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2366
2346
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2374,9 +2354,7 @@ var DeleteJobCommand = _DeleteJobCommand;
2374
2354
 
2375
2355
 
2376
2356
 
2377
- var _DeleteProjectCommand = class _DeleteProjectCommand extends import_smithy_client.Command.classBuilder().ep({
2378
- ...commonParams
2379
- }).m(function(Command, cs, config, o) {
2357
+ var _DeleteProjectCommand = class _DeleteProjectCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2380
2358
  return [
2381
2359
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2382
2360
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2390,9 +2368,7 @@ var DeleteProjectCommand = _DeleteProjectCommand;
2390
2368
 
2391
2369
 
2392
2370
 
2393
- var _DeleteRecipeVersionCommand = class _DeleteRecipeVersionCommand extends import_smithy_client.Command.classBuilder().ep({
2394
- ...commonParams
2395
- }).m(function(Command, cs, config, o) {
2371
+ var _DeleteRecipeVersionCommand = class _DeleteRecipeVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2396
2372
  return [
2397
2373
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2398
2374
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2406,9 +2382,7 @@ var DeleteRecipeVersionCommand = _DeleteRecipeVersionCommand;
2406
2382
 
2407
2383
 
2408
2384
 
2409
- var _DeleteRulesetCommand = class _DeleteRulesetCommand extends import_smithy_client.Command.classBuilder().ep({
2410
- ...commonParams
2411
- }).m(function(Command, cs, config, o) {
2385
+ var _DeleteRulesetCommand = class _DeleteRulesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2412
2386
  return [
2413
2387
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2414
2388
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2422,9 +2396,7 @@ var DeleteRulesetCommand = _DeleteRulesetCommand;
2422
2396
 
2423
2397
 
2424
2398
 
2425
- var _DeleteScheduleCommand = class _DeleteScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
2426
- ...commonParams
2427
- }).m(function(Command, cs, config, o) {
2399
+ var _DeleteScheduleCommand = class _DeleteScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2428
2400
  return [
2429
2401
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2430
2402
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2438,9 +2410,7 @@ var DeleteScheduleCommand = _DeleteScheduleCommand;
2438
2410
 
2439
2411
 
2440
2412
 
2441
- var _DescribeDatasetCommand = class _DescribeDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
2442
- ...commonParams
2443
- }).m(function(Command, cs, config, o) {
2413
+ var _DescribeDatasetCommand = class _DescribeDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2444
2414
  return [
2445
2415
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2446
2416
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2454,9 +2424,7 @@ var DescribeDatasetCommand = _DescribeDatasetCommand;
2454
2424
 
2455
2425
 
2456
2426
 
2457
- var _DescribeJobCommand = class _DescribeJobCommand extends import_smithy_client.Command.classBuilder().ep({
2458
- ...commonParams
2459
- }).m(function(Command, cs, config, o) {
2427
+ var _DescribeJobCommand = class _DescribeJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2460
2428
  return [
2461
2429
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2462
2430
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2470,9 +2438,7 @@ var DescribeJobCommand = _DescribeJobCommand;
2470
2438
 
2471
2439
 
2472
2440
 
2473
- var _DescribeJobRunCommand = class _DescribeJobRunCommand extends import_smithy_client.Command.classBuilder().ep({
2474
- ...commonParams
2475
- }).m(function(Command, cs, config, o) {
2441
+ var _DescribeJobRunCommand = class _DescribeJobRunCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2476
2442
  return [
2477
2443
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2478
2444
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2486,9 +2452,7 @@ var DescribeJobRunCommand = _DescribeJobRunCommand;
2486
2452
 
2487
2453
 
2488
2454
 
2489
- var _DescribeProjectCommand = class _DescribeProjectCommand extends import_smithy_client.Command.classBuilder().ep({
2490
- ...commonParams
2491
- }).m(function(Command, cs, config, o) {
2455
+ var _DescribeProjectCommand = class _DescribeProjectCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2492
2456
  return [
2493
2457
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2494
2458
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2502,9 +2466,7 @@ var DescribeProjectCommand = _DescribeProjectCommand;
2502
2466
 
2503
2467
 
2504
2468
 
2505
- var _DescribeRecipeCommand = class _DescribeRecipeCommand extends import_smithy_client.Command.classBuilder().ep({
2506
- ...commonParams
2507
- }).m(function(Command, cs, config, o) {
2469
+ var _DescribeRecipeCommand = class _DescribeRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2508
2470
  return [
2509
2471
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2510
2472
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2518,9 +2480,7 @@ var DescribeRecipeCommand = _DescribeRecipeCommand;
2518
2480
 
2519
2481
 
2520
2482
 
2521
- var _DescribeRulesetCommand = class _DescribeRulesetCommand extends import_smithy_client.Command.classBuilder().ep({
2522
- ...commonParams
2523
- }).m(function(Command, cs, config, o) {
2483
+ var _DescribeRulesetCommand = class _DescribeRulesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2524
2484
  return [
2525
2485
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2526
2486
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2534,9 +2494,7 @@ var DescribeRulesetCommand = _DescribeRulesetCommand;
2534
2494
 
2535
2495
 
2536
2496
 
2537
- var _DescribeScheduleCommand = class _DescribeScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
2538
- ...commonParams
2539
- }).m(function(Command, cs, config, o) {
2497
+ var _DescribeScheduleCommand = class _DescribeScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2540
2498
  return [
2541
2499
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2542
2500
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2550,9 +2508,7 @@ var DescribeScheduleCommand = _DescribeScheduleCommand;
2550
2508
 
2551
2509
 
2552
2510
 
2553
- var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep({
2554
- ...commonParams
2555
- }).m(function(Command, cs, config, o) {
2511
+ var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2556
2512
  return [
2557
2513
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2558
2514
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2566,9 +2522,7 @@ var ListDatasetsCommand = _ListDatasetsCommand;
2566
2522
 
2567
2523
 
2568
2524
 
2569
- var _ListJobRunsCommand = class _ListJobRunsCommand extends import_smithy_client.Command.classBuilder().ep({
2570
- ...commonParams
2571
- }).m(function(Command, cs, config, o) {
2525
+ var _ListJobRunsCommand = class _ListJobRunsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2572
2526
  return [
2573
2527
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2574
2528
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2582,9 +2536,7 @@ var ListJobRunsCommand = _ListJobRunsCommand;
2582
2536
 
2583
2537
 
2584
2538
 
2585
- var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Command.classBuilder().ep({
2586
- ...commonParams
2587
- }).m(function(Command, cs, config, o) {
2539
+ var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2588
2540
  return [
2589
2541
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2590
2542
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2598,9 +2550,7 @@ var ListJobsCommand = _ListJobsCommand;
2598
2550
 
2599
2551
 
2600
2552
 
2601
- var _ListProjectsCommand = class _ListProjectsCommand extends import_smithy_client.Command.classBuilder().ep({
2602
- ...commonParams
2603
- }).m(function(Command, cs, config, o) {
2553
+ var _ListProjectsCommand = class _ListProjectsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2604
2554
  return [
2605
2555
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2606
2556
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2614,9 +2564,7 @@ var ListProjectsCommand = _ListProjectsCommand;
2614
2564
 
2615
2565
 
2616
2566
 
2617
- var _ListRecipesCommand = class _ListRecipesCommand extends import_smithy_client.Command.classBuilder().ep({
2618
- ...commonParams
2619
- }).m(function(Command, cs, config, o) {
2567
+ var _ListRecipesCommand = class _ListRecipesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2620
2568
  return [
2621
2569
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2622
2570
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2630,9 +2578,7 @@ var ListRecipesCommand = _ListRecipesCommand;
2630
2578
 
2631
2579
 
2632
2580
 
2633
- var _ListRecipeVersionsCommand = class _ListRecipeVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
2634
- ...commonParams
2635
- }).m(function(Command, cs, config, o) {
2581
+ var _ListRecipeVersionsCommand = class _ListRecipeVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2636
2582
  return [
2637
2583
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2638
2584
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2646,9 +2592,7 @@ var ListRecipeVersionsCommand = _ListRecipeVersionsCommand;
2646
2592
 
2647
2593
 
2648
2594
 
2649
- var _ListRulesetsCommand = class _ListRulesetsCommand extends import_smithy_client.Command.classBuilder().ep({
2650
- ...commonParams
2651
- }).m(function(Command, cs, config, o) {
2595
+ var _ListRulesetsCommand = class _ListRulesetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2652
2596
  return [
2653
2597
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2654
2598
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2662,9 +2606,7 @@ var ListRulesetsCommand = _ListRulesetsCommand;
2662
2606
 
2663
2607
 
2664
2608
 
2665
- var _ListSchedulesCommand = class _ListSchedulesCommand extends import_smithy_client.Command.classBuilder().ep({
2666
- ...commonParams
2667
- }).m(function(Command, cs, config, o) {
2609
+ var _ListSchedulesCommand = class _ListSchedulesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2668
2610
  return [
2669
2611
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2670
2612
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2678,9 +2620,7 @@ var ListSchedulesCommand = _ListSchedulesCommand;
2678
2620
 
2679
2621
 
2680
2622
 
2681
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2682
- ...commonParams
2683
- }).m(function(Command, cs, config, o) {
2623
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2684
2624
  return [
2685
2625
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2686
2626
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2694,9 +2634,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2694
2634
 
2695
2635
 
2696
2636
 
2697
- var _PublishRecipeCommand = class _PublishRecipeCommand extends import_smithy_client.Command.classBuilder().ep({
2698
- ...commonParams
2699
- }).m(function(Command, cs, config, o) {
2637
+ var _PublishRecipeCommand = class _PublishRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2700
2638
  return [
2701
2639
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2702
2640
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2710,9 +2648,7 @@ var PublishRecipeCommand = _PublishRecipeCommand;
2710
2648
 
2711
2649
 
2712
2650
 
2713
- var _SendProjectSessionActionCommand = class _SendProjectSessionActionCommand extends import_smithy_client.Command.classBuilder().ep({
2714
- ...commonParams
2715
- }).m(function(Command, cs, config, o) {
2651
+ var _SendProjectSessionActionCommand = class _SendProjectSessionActionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2716
2652
  return [
2717
2653
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2718
2654
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2726,9 +2662,7 @@ var SendProjectSessionActionCommand = _SendProjectSessionActionCommand;
2726
2662
 
2727
2663
 
2728
2664
 
2729
- var _StartJobRunCommand = class _StartJobRunCommand extends import_smithy_client.Command.classBuilder().ep({
2730
- ...commonParams
2731
- }).m(function(Command, cs, config, o) {
2665
+ var _StartJobRunCommand = class _StartJobRunCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2732
2666
  return [
2733
2667
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2734
2668
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2742,9 +2676,7 @@ var StartJobRunCommand = _StartJobRunCommand;
2742
2676
 
2743
2677
 
2744
2678
 
2745
- var _StartProjectSessionCommand = class _StartProjectSessionCommand extends import_smithy_client.Command.classBuilder().ep({
2746
- ...commonParams
2747
- }).m(function(Command, cs, config, o) {
2679
+ var _StartProjectSessionCommand = class _StartProjectSessionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2748
2680
  return [
2749
2681
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2750
2682
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2758,9 +2690,7 @@ var StartProjectSessionCommand = _StartProjectSessionCommand;
2758
2690
 
2759
2691
 
2760
2692
 
2761
- var _StopJobRunCommand = class _StopJobRunCommand extends import_smithy_client.Command.classBuilder().ep({
2762
- ...commonParams
2763
- }).m(function(Command, cs, config, o) {
2693
+ var _StopJobRunCommand = class _StopJobRunCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2764
2694
  return [
2765
2695
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2766
2696
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2774,9 +2704,7 @@ var StopJobRunCommand = _StopJobRunCommand;
2774
2704
 
2775
2705
 
2776
2706
 
2777
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2778
- ...commonParams
2779
- }).m(function(Command, cs, config, o) {
2707
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2780
2708
  return [
2781
2709
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2782
2710
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2790,9 +2718,7 @@ var TagResourceCommand = _TagResourceCommand;
2790
2718
 
2791
2719
 
2792
2720
 
2793
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2794
- ...commonParams
2795
- }).m(function(Command, cs, config, o) {
2721
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2796
2722
  return [
2797
2723
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2798
2724
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2806,9 +2732,7 @@ var UntagResourceCommand = _UntagResourceCommand;
2806
2732
 
2807
2733
 
2808
2734
 
2809
- var _UpdateDatasetCommand = class _UpdateDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
2810
- ...commonParams
2811
- }).m(function(Command, cs, config, o) {
2735
+ var _UpdateDatasetCommand = class _UpdateDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2812
2736
  return [
2813
2737
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2814
2738
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2822,9 +2746,7 @@ var UpdateDatasetCommand = _UpdateDatasetCommand;
2822
2746
 
2823
2747
 
2824
2748
 
2825
- var _UpdateProfileJobCommand = class _UpdateProfileJobCommand extends import_smithy_client.Command.classBuilder().ep({
2826
- ...commonParams
2827
- }).m(function(Command, cs, config, o) {
2749
+ var _UpdateProfileJobCommand = class _UpdateProfileJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2828
2750
  return [
2829
2751
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2830
2752
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2838,9 +2760,7 @@ var UpdateProfileJobCommand = _UpdateProfileJobCommand;
2838
2760
 
2839
2761
 
2840
2762
 
2841
- var _UpdateProjectCommand = class _UpdateProjectCommand extends import_smithy_client.Command.classBuilder().ep({
2842
- ...commonParams
2843
- }).m(function(Command, cs, config, o) {
2763
+ var _UpdateProjectCommand = class _UpdateProjectCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2844
2764
  return [
2845
2765
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2846
2766
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2854,9 +2774,7 @@ var UpdateProjectCommand = _UpdateProjectCommand;
2854
2774
 
2855
2775
 
2856
2776
 
2857
- var _UpdateRecipeCommand = class _UpdateRecipeCommand extends import_smithy_client.Command.classBuilder().ep({
2858
- ...commonParams
2859
- }).m(function(Command, cs, config, o) {
2777
+ var _UpdateRecipeCommand = class _UpdateRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2860
2778
  return [
2861
2779
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2862
2780
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2870,9 +2788,7 @@ var UpdateRecipeCommand = _UpdateRecipeCommand;
2870
2788
 
2871
2789
 
2872
2790
 
2873
- var _UpdateRecipeJobCommand = class _UpdateRecipeJobCommand extends import_smithy_client.Command.classBuilder().ep({
2874
- ...commonParams
2875
- }).m(function(Command, cs, config, o) {
2791
+ var _UpdateRecipeJobCommand = class _UpdateRecipeJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2876
2792
  return [
2877
2793
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2878
2794
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2886,9 +2802,7 @@ var UpdateRecipeJobCommand = _UpdateRecipeJobCommand;
2886
2802
 
2887
2803
 
2888
2804
 
2889
- var _UpdateRulesetCommand = class _UpdateRulesetCommand extends import_smithy_client.Command.classBuilder().ep({
2890
- ...commonParams
2891
- }).m(function(Command, cs, config, o) {
2805
+ var _UpdateRulesetCommand = class _UpdateRulesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2892
2806
  return [
2893
2807
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2894
2808
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2902,9 +2816,7 @@ var UpdateRulesetCommand = _UpdateRulesetCommand;
2902
2816
 
2903
2817
 
2904
2818
 
2905
- var _UpdateScheduleCommand = class _UpdateScheduleCommand extends import_smithy_client.Command.classBuilder().ep({
2906
- ...commonParams
2907
- }).m(function(Command, cs, config, o) {
2819
+ var _UpdateScheduleCommand = class _UpdateScheduleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2908
2820
  return [
2909
2821
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2910
2822
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_BatchDeleteRecipeVersionCommand, se_BatchDeleteRecipeVersionCommand
6
6
  export { $Command };
7
7
  export class BatchDeleteRecipeVersionCommand 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_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_CreateProfileJobCommand, se_CreateProfileJobCommand } from "../proto
6
6
  export { $Command };
7
7
  export class CreateProfileJobCommand 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_CreateProjectCommand, se_CreateProjectCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateProjectCommand 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_CreateRecipeCommand, se_CreateRecipeCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class CreateRecipeCommand 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_CreateRecipeJobCommand, se_CreateRecipeJobCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class CreateRecipeJobCommand 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_CreateRulesetCommand, se_CreateRulesetCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateRulesetCommand 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_CreateScheduleCommand, se_CreateScheduleCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class CreateScheduleCommand 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_DeleteJobCommand, se_DeleteJobCommand } from "../protocols/Aws_restJ
6
6
  export { $Command };
7
7
  export class DeleteJobCommand 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_DeleteProjectCommand, se_DeleteProjectCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class DeleteProjectCommand 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_DeleteRecipeVersionCommand, se_DeleteRecipeVersionCommand } from "..
6
6
  export { $Command };
7
7
  export class DeleteRecipeVersionCommand 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_DeleteRulesetCommand, se_DeleteRulesetCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class DeleteRulesetCommand 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_DeleteScheduleCommand, se_DeleteScheduleCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DeleteScheduleCommand 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),