@aws-sdk/client-databrew 3.927.0 → 3.929.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 (68) hide show
  1. package/dist-cjs/index.js +1886 -2016
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/DataBrewClient.js +2 -0
  4. package/dist-es/commands/BatchDeleteRecipeVersionCommand.js +3 -9
  5. package/dist-es/commands/CreateDatasetCommand.js +3 -9
  6. package/dist-es/commands/CreateProfileJobCommand.js +3 -9
  7. package/dist-es/commands/CreateProjectCommand.js +3 -9
  8. package/dist-es/commands/CreateRecipeCommand.js +3 -9
  9. package/dist-es/commands/CreateRecipeJobCommand.js +3 -9
  10. package/dist-es/commands/CreateRulesetCommand.js +3 -9
  11. package/dist-es/commands/CreateScheduleCommand.js +3 -9
  12. package/dist-es/commands/DeleteDatasetCommand.js +3 -9
  13. package/dist-es/commands/DeleteJobCommand.js +3 -9
  14. package/dist-es/commands/DeleteProjectCommand.js +3 -9
  15. package/dist-es/commands/DeleteRecipeVersionCommand.js +3 -9
  16. package/dist-es/commands/DeleteRulesetCommand.js +3 -9
  17. package/dist-es/commands/DeleteScheduleCommand.js +3 -9
  18. package/dist-es/commands/DescribeDatasetCommand.js +3 -9
  19. package/dist-es/commands/DescribeJobCommand.js +3 -9
  20. package/dist-es/commands/DescribeJobRunCommand.js +3 -9
  21. package/dist-es/commands/DescribeProjectCommand.js +3 -9
  22. package/dist-es/commands/DescribeRecipeCommand.js +3 -9
  23. package/dist-es/commands/DescribeRulesetCommand.js +3 -9
  24. package/dist-es/commands/DescribeScheduleCommand.js +3 -9
  25. package/dist-es/commands/ListDatasetsCommand.js +3 -9
  26. package/dist-es/commands/ListJobRunsCommand.js +3 -9
  27. package/dist-es/commands/ListJobsCommand.js +3 -9
  28. package/dist-es/commands/ListProjectsCommand.js +3 -9
  29. package/dist-es/commands/ListRecipeVersionsCommand.js +3 -9
  30. package/dist-es/commands/ListRecipesCommand.js +3 -9
  31. package/dist-es/commands/ListRulesetsCommand.js +3 -9
  32. package/dist-es/commands/ListSchedulesCommand.js +3 -9
  33. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  34. package/dist-es/commands/PublishRecipeCommand.js +3 -9
  35. package/dist-es/commands/SendProjectSessionActionCommand.js +3 -10
  36. package/dist-es/commands/StartJobRunCommand.js +3 -9
  37. package/dist-es/commands/StartProjectSessionCommand.js +3 -10
  38. package/dist-es/commands/StopJobRunCommand.js +3 -9
  39. package/dist-es/commands/TagResourceCommand.js +3 -9
  40. package/dist-es/commands/UntagResourceCommand.js +3 -9
  41. package/dist-es/commands/UpdateDatasetCommand.js +3 -9
  42. package/dist-es/commands/UpdateProfileJobCommand.js +3 -9
  43. package/dist-es/commands/UpdateProjectCommand.js +3 -9
  44. package/dist-es/commands/UpdateRecipeCommand.js +3 -9
  45. package/dist-es/commands/UpdateRecipeJobCommand.js +3 -9
  46. package/dist-es/commands/UpdateRulesetCommand.js +3 -9
  47. package/dist-es/commands/UpdateScheduleCommand.js +3 -9
  48. package/dist-es/models/models_0.js +0 -9
  49. package/dist-es/runtimeConfig.shared.js +2 -0
  50. package/dist-es/schemas/schemas_0.js +1806 -0
  51. package/dist-types/DataBrewClient.d.ts +10 -1
  52. package/dist-types/models/models_0.d.ts +0 -8
  53. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  54. package/dist-types/runtimeConfig.d.ts +1 -0
  55. package/dist-types/runtimeConfig.native.d.ts +1 -0
  56. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  57. package/dist-types/schemas/schemas_0.d.ts +220 -0
  58. package/dist-types/ts3.4/DataBrewClient.d.ts +4 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +0 -6
  60. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  61. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  62. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  63. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  64. package/dist-types/ts3.4/schemas/schemas_0.d.ts +227 -0
  65. package/package.json +5 -5
  66. package/dist-es/protocols/Aws_restJson1.js +0 -1696
  67. package/dist-types/protocols/Aws_restJson1.d.ts +0 -398
  68. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -533
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class DataBrewClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getOmitRetryHeadersPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
@@ -111,14 +111,14 @@ class DataBrewClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- class DataBrewServiceException extends smithyClient.ServiceException {
114
+ let DataBrewServiceException$1 = class DataBrewServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, DataBrewServiceException.prototype);
118
118
  }
119
- }
119
+ };
120
120
 
121
- class AccessDeniedException extends DataBrewServiceException {
121
+ let AccessDeniedException$1 = class AccessDeniedException extends DataBrewServiceException$1 {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  Message;
@@ -131,12 +131,12 @@ class AccessDeniedException extends DataBrewServiceException {
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  this.Message = opts.Message;
133
133
  }
134
- }
134
+ };
135
135
  const AnalyticsMode = {
136
136
  DISABLE: "DISABLE",
137
137
  ENABLE: "ENABLE",
138
138
  };
139
- class ConflictException extends DataBrewServiceException {
139
+ let ConflictException$1 = class ConflictException extends DataBrewServiceException$1 {
140
140
  name = "ConflictException";
141
141
  $fault = "client";
142
142
  Message;
@@ -149,8 +149,8 @@ class ConflictException extends DataBrewServiceException {
149
149
  Object.setPrototypeOf(this, ConflictException.prototype);
150
150
  this.Message = opts.Message;
151
151
  }
152
- }
153
- class ResourceNotFoundException extends DataBrewServiceException {
152
+ };
153
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends DataBrewServiceException$1 {
154
154
  name = "ResourceNotFoundException";
155
155
  $fault = "client";
156
156
  Message;
@@ -163,8 +163,8 @@ class ResourceNotFoundException extends DataBrewServiceException {
163
163
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
164
164
  this.Message = opts.Message;
165
165
  }
166
- }
167
- class ValidationException extends DataBrewServiceException {
166
+ };
167
+ let ValidationException$1 = class ValidationException extends DataBrewServiceException$1 {
168
168
  name = "ValidationException";
169
169
  $fault = "client";
170
170
  Message;
@@ -177,7 +177,7 @@ class ValidationException extends DataBrewServiceException {
177
177
  Object.setPrototypeOf(this, ValidationException.prototype);
178
178
  this.Message = opts.Message;
179
179
  }
180
- }
180
+ };
181
181
  const InputFormat = {
182
182
  CSV: "CSV",
183
183
  EXCEL: "EXCEL",
@@ -197,7 +197,7 @@ const ParameterType = {
197
197
  Number: "Number",
198
198
  String: "String",
199
199
  };
200
- class ServiceQuotaExceededException extends DataBrewServiceException {
200
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends DataBrewServiceException$1 {
201
201
  name = "ServiceQuotaExceededException";
202
202
  $fault = "client";
203
203
  Message;
@@ -210,7 +210,7 @@ class ServiceQuotaExceededException extends DataBrewServiceException {
210
210
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
211
211
  this.Message = opts.Message;
212
212
  }
213
- }
213
+ };
214
214
  const EncryptionMode = {
215
215
  SSEKMS: "SSE-KMS",
216
216
  SSES3: "SSE-S3",
@@ -231,7 +231,7 @@ const SampleType = {
231
231
  LAST_N: "LAST_N",
232
232
  RANDOM: "RANDOM",
233
233
  };
234
- class InternalServerException extends DataBrewServiceException {
234
+ let InternalServerException$1 = class InternalServerException extends DataBrewServiceException$1 {
235
235
  name = "InternalServerException";
236
236
  $fault = "server";
237
237
  Message;
@@ -244,7 +244,7 @@ class InternalServerException extends DataBrewServiceException {
244
244
  Object.setPrototypeOf(this, InternalServerException.prototype);
245
245
  this.Message = opts.Message;
246
246
  }
247
- }
247
+ };
248
248
  const DatabaseOutputMode = {
249
249
  NEW_TABLE: "NEW_TABLE",
250
250
  };
@@ -309,1720 +309,1807 @@ const SessionStatus = {
309
309
  TERMINATING: "TERMINATING",
310
310
  UPDATING: "UPDATING",
311
311
  };
312
- const SendProjectSessionActionRequestFilterSensitiveLog = (obj) => ({
313
- ...obj,
314
- ...(obj.ClientSessionId && { ClientSessionId: smithyClient.SENSITIVE_STRING }),
315
- });
316
- const StartProjectSessionResponseFilterSensitiveLog = (obj) => ({
317
- ...obj,
318
- ...(obj.ClientSessionId && { ClientSessionId: smithyClient.SENSITIVE_STRING }),
319
- });
320
312
 
321
- const se_BatchDeleteRecipeVersionCommand = async (input, context) => {
322
- const b = core.requestBuilder(input, context);
323
- const headers = {
324
- "content-type": "application/json",
325
- };
326
- b.bp("/recipes/{Name}/batchDeleteRecipeVersion");
327
- b.p("Name", () => input.Name, "{Name}", false);
328
- let body;
329
- body = JSON.stringify(smithyClient.take(input, {
330
- RecipeVersions: (_) => smithyClient._json(_),
331
- }));
332
- b.m("POST").h(headers).b(body);
333
- return b.build();
334
- };
335
- const se_CreateDatasetCommand = async (input, context) => {
336
- const b = core.requestBuilder(input, context);
337
- const headers = {
338
- "content-type": "application/json",
339
- };
340
- b.bp("/datasets");
341
- let body;
342
- body = JSON.stringify(smithyClient.take(input, {
343
- Format: [],
344
- FormatOptions: (_) => smithyClient._json(_),
345
- Input: (_) => smithyClient._json(_),
346
- Name: [],
347
- PathOptions: (_) => smithyClient._json(_),
348
- Tags: (_) => smithyClient._json(_),
349
- }));
350
- b.m("POST").h(headers).b(body);
351
- return b.build();
352
- };
353
- const se_CreateProfileJobCommand = async (input, context) => {
354
- const b = core.requestBuilder(input, context);
355
- const headers = {
356
- "content-type": "application/json",
357
- };
358
- b.bp("/profileJobs");
359
- let body;
360
- body = JSON.stringify(smithyClient.take(input, {
361
- Configuration: (_) => smithyClient._json(_),
362
- DatasetName: [],
363
- EncryptionKeyArn: [],
364
- EncryptionMode: [],
365
- JobSample: (_) => smithyClient._json(_),
366
- LogSubscription: [],
367
- MaxCapacity: [],
368
- MaxRetries: [],
369
- Name: [],
370
- OutputLocation: (_) => smithyClient._json(_),
371
- RoleArn: [],
372
- Tags: (_) => smithyClient._json(_),
373
- Timeout: [],
374
- ValidationConfigurations: (_) => smithyClient._json(_),
375
- }));
376
- b.m("POST").h(headers).b(body);
377
- return b.build();
378
- };
379
- const se_CreateProjectCommand = async (input, context) => {
380
- const b = core.requestBuilder(input, context);
381
- const headers = {
382
- "content-type": "application/json",
383
- };
384
- b.bp("/projects");
385
- let body;
386
- body = JSON.stringify(smithyClient.take(input, {
387
- DatasetName: [],
388
- Name: [],
389
- RecipeName: [],
390
- RoleArn: [],
391
- Sample: (_) => smithyClient._json(_),
392
- Tags: (_) => smithyClient._json(_),
393
- }));
394
- b.m("POST").h(headers).b(body);
395
- return b.build();
396
- };
397
- const se_CreateRecipeCommand = async (input, context) => {
398
- const b = core.requestBuilder(input, context);
399
- const headers = {
400
- "content-type": "application/json",
401
- };
402
- b.bp("/recipes");
403
- let body;
404
- body = JSON.stringify(smithyClient.take(input, {
405
- Description: [],
406
- Name: [],
407
- Steps: (_) => smithyClient._json(_),
408
- Tags: (_) => smithyClient._json(_),
409
- }));
410
- b.m("POST").h(headers).b(body);
411
- return b.build();
412
- };
413
- const se_CreateRecipeJobCommand = async (input, context) => {
414
- const b = core.requestBuilder(input, context);
415
- const headers = {
416
- "content-type": "application/json",
417
- };
418
- b.bp("/recipeJobs");
419
- let body;
420
- body = JSON.stringify(smithyClient.take(input, {
421
- DataCatalogOutputs: (_) => smithyClient._json(_),
422
- DatabaseOutputs: (_) => smithyClient._json(_),
423
- DatasetName: [],
424
- EncryptionKeyArn: [],
425
- EncryptionMode: [],
426
- LogSubscription: [],
427
- MaxCapacity: [],
428
- MaxRetries: [],
429
- Name: [],
430
- Outputs: (_) => smithyClient._json(_),
431
- ProjectName: [],
432
- RecipeReference: (_) => smithyClient._json(_),
433
- RoleArn: [],
434
- Tags: (_) => smithyClient._json(_),
435
- Timeout: [],
436
- }));
437
- b.m("POST").h(headers).b(body);
438
- return b.build();
439
- };
440
- const se_CreateRulesetCommand = async (input, context) => {
441
- const b = core.requestBuilder(input, context);
442
- const headers = {
443
- "content-type": "application/json",
444
- };
445
- b.bp("/rulesets");
446
- let body;
447
- body = JSON.stringify(smithyClient.take(input, {
448
- Description: [],
449
- Name: [],
450
- Rules: (_) => se_RuleList(_),
451
- Tags: (_) => smithyClient._json(_),
452
- TargetArn: [],
453
- }));
454
- b.m("POST").h(headers).b(body);
455
- return b.build();
456
- };
457
- const se_CreateScheduleCommand = async (input, context) => {
458
- const b = core.requestBuilder(input, context);
459
- const headers = {
460
- "content-type": "application/json",
461
- };
462
- b.bp("/schedules");
463
- let body;
464
- body = JSON.stringify(smithyClient.take(input, {
465
- CronExpression: [],
466
- JobNames: (_) => smithyClient._json(_),
467
- Name: [],
468
- Tags: (_) => smithyClient._json(_),
469
- }));
470
- b.m("POST").h(headers).b(body);
471
- return b.build();
472
- };
473
- const se_DeleteDatasetCommand = async (input, context) => {
474
- const b = core.requestBuilder(input, context);
475
- const headers = {};
476
- b.bp("/datasets/{Name}");
477
- b.p("Name", () => input.Name, "{Name}", false);
478
- let body;
479
- b.m("DELETE").h(headers).b(body);
480
- return b.build();
481
- };
482
- const se_DeleteJobCommand = async (input, context) => {
483
- const b = core.requestBuilder(input, context);
484
- const headers = {};
485
- b.bp("/jobs/{Name}");
486
- b.p("Name", () => input.Name, "{Name}", false);
487
- let body;
488
- b.m("DELETE").h(headers).b(body);
489
- return b.build();
490
- };
491
- const se_DeleteProjectCommand = async (input, context) => {
492
- const b = core.requestBuilder(input, context);
493
- const headers = {};
494
- b.bp("/projects/{Name}");
495
- b.p("Name", () => input.Name, "{Name}", false);
496
- let body;
497
- b.m("DELETE").h(headers).b(body);
498
- return b.build();
499
- };
500
- const se_DeleteRecipeVersionCommand = async (input, context) => {
501
- const b = core.requestBuilder(input, context);
502
- const headers = {};
503
- b.bp("/recipes/{Name}/recipeVersion/{RecipeVersion}");
504
- b.p("Name", () => input.Name, "{Name}", false);
505
- b.p("RecipeVersion", () => input.RecipeVersion, "{RecipeVersion}", false);
506
- let body;
507
- b.m("DELETE").h(headers).b(body);
508
- return b.build();
509
- };
510
- const se_DeleteRulesetCommand = async (input, context) => {
511
- const b = core.requestBuilder(input, context);
512
- const headers = {};
513
- b.bp("/rulesets/{Name}");
514
- b.p("Name", () => input.Name, "{Name}", false);
515
- let body;
516
- b.m("DELETE").h(headers).b(body);
517
- return b.build();
518
- };
519
- const se_DeleteScheduleCommand = async (input, context) => {
520
- const b = core.requestBuilder(input, context);
521
- const headers = {};
522
- b.bp("/schedules/{Name}");
523
- b.p("Name", () => input.Name, "{Name}", false);
524
- let body;
525
- b.m("DELETE").h(headers).b(body);
526
- return b.build();
527
- };
528
- const se_DescribeDatasetCommand = async (input, context) => {
529
- const b = core.requestBuilder(input, context);
530
- const headers = {};
531
- b.bp("/datasets/{Name}");
532
- b.p("Name", () => input.Name, "{Name}", false);
533
- let body;
534
- b.m("GET").h(headers).b(body);
535
- return b.build();
536
- };
537
- const se_DescribeJobCommand = async (input, context) => {
538
- const b = core.requestBuilder(input, context);
539
- const headers = {};
540
- b.bp("/jobs/{Name}");
541
- b.p("Name", () => input.Name, "{Name}", false);
542
- let body;
543
- b.m("GET").h(headers).b(body);
544
- return b.build();
545
- };
546
- const se_DescribeJobRunCommand = async (input, context) => {
547
- const b = core.requestBuilder(input, context);
548
- const headers = {};
549
- b.bp("/jobs/{Name}/jobRun/{RunId}");
550
- b.p("Name", () => input.Name, "{Name}", false);
551
- b.p("RunId", () => input.RunId, "{RunId}", false);
552
- let body;
553
- b.m("GET").h(headers).b(body);
554
- return b.build();
555
- };
556
- const se_DescribeProjectCommand = async (input, context) => {
557
- const b = core.requestBuilder(input, context);
558
- const headers = {};
559
- b.bp("/projects/{Name}");
560
- b.p("Name", () => input.Name, "{Name}", false);
561
- let body;
562
- b.m("GET").h(headers).b(body);
563
- return b.build();
564
- };
565
- const se_DescribeRecipeCommand = async (input, context) => {
566
- const b = core.requestBuilder(input, context);
567
- const headers = {};
568
- b.bp("/recipes/{Name}");
569
- b.p("Name", () => input.Name, "{Name}", false);
570
- const query = smithyClient.map({
571
- [_rV]: [, input[_RV]],
572
- });
573
- let body;
574
- b.m("GET").h(headers).q(query).b(body);
575
- return b.build();
576
- };
577
- const se_DescribeRulesetCommand = async (input, context) => {
578
- const b = core.requestBuilder(input, context);
579
- const headers = {};
580
- b.bp("/rulesets/{Name}");
581
- b.p("Name", () => input.Name, "{Name}", false);
582
- let body;
583
- b.m("GET").h(headers).b(body);
584
- return b.build();
585
- };
586
- const se_DescribeScheduleCommand = async (input, context) => {
587
- const b = core.requestBuilder(input, context);
588
- const headers = {};
589
- b.bp("/schedules/{Name}");
590
- b.p("Name", () => input.Name, "{Name}", false);
591
- let body;
592
- b.m("GET").h(headers).b(body);
593
- return b.build();
594
- };
595
- const se_ListDatasetsCommand = async (input, context) => {
596
- const b = core.requestBuilder(input, context);
597
- const headers = {};
598
- b.bp("/datasets");
599
- const query = smithyClient.map({
600
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
601
- [_nT]: [, input[_NT]],
602
- });
603
- let body;
604
- b.m("GET").h(headers).q(query).b(body);
605
- return b.build();
606
- };
607
- const se_ListJobRunsCommand = async (input, context) => {
608
- const b = core.requestBuilder(input, context);
609
- const headers = {};
610
- b.bp("/jobs/{Name}/jobRuns");
611
- b.p("Name", () => input.Name, "{Name}", false);
612
- const query = smithyClient.map({
613
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
614
- [_nT]: [, input[_NT]],
615
- });
616
- let body;
617
- b.m("GET").h(headers).q(query).b(body);
618
- return b.build();
619
- };
620
- const se_ListJobsCommand = async (input, context) => {
621
- const b = core.requestBuilder(input, context);
622
- const headers = {};
623
- b.bp("/jobs");
624
- const query = smithyClient.map({
625
- [_dN]: [, input[_DN]],
626
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
627
- [_nT]: [, input[_NT]],
628
- [_pN]: [, input[_PN]],
629
- });
630
- let body;
631
- b.m("GET").h(headers).q(query).b(body);
632
- return b.build();
633
- };
634
- const se_ListProjectsCommand = async (input, context) => {
635
- const b = core.requestBuilder(input, context);
636
- const headers = {};
637
- b.bp("/projects");
638
- const query = smithyClient.map({
639
- [_nT]: [, input[_NT]],
640
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
641
- });
642
- let body;
643
- b.m("GET").h(headers).q(query).b(body);
644
- return b.build();
645
- };
646
- const se_ListRecipesCommand = async (input, context) => {
647
- const b = core.requestBuilder(input, context);
648
- const headers = {};
649
- b.bp("/recipes");
650
- const query = smithyClient.map({
651
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
652
- [_nT]: [, input[_NT]],
653
- [_rV]: [, input[_RV]],
654
- });
655
- let body;
656
- b.m("GET").h(headers).q(query).b(body);
657
- return b.build();
658
- };
659
- const se_ListRecipeVersionsCommand = async (input, context) => {
660
- const b = core.requestBuilder(input, context);
661
- const headers = {};
662
- b.bp("/recipeVersions");
663
- const query = smithyClient.map({
664
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
665
- [_nT]: [, input[_NT]],
666
- [_n]: [, smithyClient.expectNonNull(input[_N], `Name`)],
667
- });
668
- let body;
669
- b.m("GET").h(headers).q(query).b(body);
670
- return b.build();
671
- };
672
- const se_ListRulesetsCommand = async (input, context) => {
673
- const b = core.requestBuilder(input, context);
674
- const headers = {};
675
- b.bp("/rulesets");
676
- const query = smithyClient.map({
677
- [_tA]: [, input[_TA]],
678
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
679
- [_nT]: [, input[_NT]],
680
- });
681
- let body;
682
- b.m("GET").h(headers).q(query).b(body);
683
- return b.build();
684
- };
685
- const se_ListSchedulesCommand = async (input, context) => {
686
- const b = core.requestBuilder(input, context);
687
- const headers = {};
688
- b.bp("/schedules");
689
- const query = smithyClient.map({
690
- [_jN]: [, input[_JN]],
691
- [_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
692
- [_nT]: [, input[_NT]],
693
- });
694
- let body;
695
- b.m("GET").h(headers).q(query).b(body);
696
- return b.build();
697
- };
698
- const se_ListTagsForResourceCommand = async (input, context) => {
699
- const b = core.requestBuilder(input, context);
700
- const headers = {};
701
- b.bp("/tags/{ResourceArn}");
702
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
703
- let body;
704
- b.m("GET").h(headers).b(body);
705
- return b.build();
706
- };
707
- const se_PublishRecipeCommand = async (input, context) => {
708
- const b = core.requestBuilder(input, context);
709
- const headers = {
710
- "content-type": "application/json",
711
- };
712
- b.bp("/recipes/{Name}/publishRecipe");
713
- b.p("Name", () => input.Name, "{Name}", false);
714
- let body;
715
- body = JSON.stringify(smithyClient.take(input, {
716
- Description: [],
717
- }));
718
- b.m("POST").h(headers).b(body);
719
- return b.build();
720
- };
721
- const se_SendProjectSessionActionCommand = async (input, context) => {
722
- const b = core.requestBuilder(input, context);
723
- const headers = {
724
- "content-type": "application/json",
725
- };
726
- b.bp("/projects/{Name}/sendProjectSessionAction");
727
- b.p("Name", () => input.Name, "{Name}", false);
728
- let body;
729
- body = JSON.stringify(smithyClient.take(input, {
730
- ClientSessionId: [],
731
- Preview: [],
732
- RecipeStep: (_) => smithyClient._json(_),
733
- StepIndex: [],
734
- ViewFrame: (_) => smithyClient._json(_),
735
- }));
736
- b.m("PUT").h(headers).b(body);
737
- return b.build();
738
- };
739
- const se_StartJobRunCommand = async (input, context) => {
740
- const b = core.requestBuilder(input, context);
741
- const headers = {};
742
- b.bp("/jobs/{Name}/startJobRun");
743
- b.p("Name", () => input.Name, "{Name}", false);
744
- let body;
745
- b.m("POST").h(headers).b(body);
746
- return b.build();
747
- };
748
- const se_StartProjectSessionCommand = async (input, context) => {
749
- const b = core.requestBuilder(input, context);
750
- const headers = {
751
- "content-type": "application/json",
752
- };
753
- b.bp("/projects/{Name}/startProjectSession");
754
- b.p("Name", () => input.Name, "{Name}", false);
755
- let body;
756
- body = JSON.stringify(smithyClient.take(input, {
757
- AssumeControl: [],
758
- }));
759
- b.m("PUT").h(headers).b(body);
760
- return b.build();
761
- };
762
- const se_StopJobRunCommand = async (input, context) => {
763
- const b = core.requestBuilder(input, context);
764
- const headers = {};
765
- b.bp("/jobs/{Name}/jobRun/{RunId}/stopJobRun");
766
- b.p("Name", () => input.Name, "{Name}", false);
767
- b.p("RunId", () => input.RunId, "{RunId}", false);
768
- let body;
769
- b.m("POST").h(headers).b(body);
770
- return b.build();
771
- };
772
- const se_TagResourceCommand = async (input, context) => {
773
- const b = core.requestBuilder(input, context);
774
- const headers = {
775
- "content-type": "application/json",
776
- };
777
- b.bp("/tags/{ResourceArn}");
778
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
779
- let body;
780
- body = JSON.stringify(smithyClient.take(input, {
781
- Tags: (_) => smithyClient._json(_),
782
- }));
783
- b.m("POST").h(headers).b(body);
784
- return b.build();
785
- };
786
- const se_UntagResourceCommand = async (input, context) => {
787
- const b = core.requestBuilder(input, context);
788
- const headers = {};
789
- b.bp("/tags/{ResourceArn}");
790
- b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
791
- const query = smithyClient.map({
792
- [_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
793
- });
794
- let body;
795
- b.m("DELETE").h(headers).q(query).b(body);
796
- return b.build();
797
- };
798
- const se_UpdateDatasetCommand = async (input, context) => {
799
- const b = core.requestBuilder(input, context);
800
- const headers = {
801
- "content-type": "application/json",
802
- };
803
- b.bp("/datasets/{Name}");
804
- b.p("Name", () => input.Name, "{Name}", false);
805
- let body;
806
- body = JSON.stringify(smithyClient.take(input, {
807
- Format: [],
808
- FormatOptions: (_) => smithyClient._json(_),
809
- Input: (_) => smithyClient._json(_),
810
- PathOptions: (_) => smithyClient._json(_),
811
- }));
812
- b.m("PUT").h(headers).b(body);
813
- return b.build();
814
- };
815
- const se_UpdateProfileJobCommand = async (input, context) => {
816
- const b = core.requestBuilder(input, context);
817
- const headers = {
818
- "content-type": "application/json",
819
- };
820
- b.bp("/profileJobs/{Name}");
821
- b.p("Name", () => input.Name, "{Name}", false);
822
- let body;
823
- body = JSON.stringify(smithyClient.take(input, {
824
- Configuration: (_) => smithyClient._json(_),
825
- EncryptionKeyArn: [],
826
- EncryptionMode: [],
827
- JobSample: (_) => smithyClient._json(_),
828
- LogSubscription: [],
829
- MaxCapacity: [],
830
- MaxRetries: [],
831
- OutputLocation: (_) => smithyClient._json(_),
832
- RoleArn: [],
833
- Timeout: [],
834
- ValidationConfigurations: (_) => smithyClient._json(_),
835
- }));
836
- b.m("PUT").h(headers).b(body);
837
- return b.build();
838
- };
839
- const se_UpdateProjectCommand = async (input, context) => {
840
- const b = core.requestBuilder(input, context);
841
- const headers = {
842
- "content-type": "application/json",
843
- };
844
- b.bp("/projects/{Name}");
845
- b.p("Name", () => input.Name, "{Name}", false);
846
- let body;
847
- body = JSON.stringify(smithyClient.take(input, {
848
- RoleArn: [],
849
- Sample: (_) => smithyClient._json(_),
850
- }));
851
- b.m("PUT").h(headers).b(body);
852
- return b.build();
853
- };
854
- const se_UpdateRecipeCommand = async (input, context) => {
855
- const b = core.requestBuilder(input, context);
856
- const headers = {
857
- "content-type": "application/json",
858
- };
859
- b.bp("/recipes/{Name}");
860
- b.p("Name", () => input.Name, "{Name}", false);
861
- let body;
862
- body = JSON.stringify(smithyClient.take(input, {
863
- Description: [],
864
- Steps: (_) => smithyClient._json(_),
865
- }));
866
- b.m("PUT").h(headers).b(body);
867
- return b.build();
868
- };
869
- const se_UpdateRecipeJobCommand = async (input, context) => {
870
- const b = core.requestBuilder(input, context);
871
- const headers = {
872
- "content-type": "application/json",
873
- };
874
- b.bp("/recipeJobs/{Name}");
875
- b.p("Name", () => input.Name, "{Name}", false);
876
- let body;
877
- body = JSON.stringify(smithyClient.take(input, {
878
- DataCatalogOutputs: (_) => smithyClient._json(_),
879
- DatabaseOutputs: (_) => smithyClient._json(_),
880
- EncryptionKeyArn: [],
881
- EncryptionMode: [],
882
- LogSubscription: [],
883
- MaxCapacity: [],
884
- MaxRetries: [],
885
- Outputs: (_) => smithyClient._json(_),
886
- RoleArn: [],
887
- Timeout: [],
888
- }));
889
- b.m("PUT").h(headers).b(body);
890
- return b.build();
891
- };
892
- const se_UpdateRulesetCommand = async (input, context) => {
893
- const b = core.requestBuilder(input, context);
894
- const headers = {
895
- "content-type": "application/json",
896
- };
897
- b.bp("/rulesets/{Name}");
898
- b.p("Name", () => input.Name, "{Name}", false);
899
- let body;
900
- body = JSON.stringify(smithyClient.take(input, {
901
- Description: [],
902
- Rules: (_) => se_RuleList(_),
903
- }));
904
- b.m("PUT").h(headers).b(body);
905
- return b.build();
906
- };
907
- const se_UpdateScheduleCommand = async (input, context) => {
908
- const b = core.requestBuilder(input, context);
909
- const headers = {
910
- "content-type": "application/json",
911
- };
912
- b.bp("/schedules/{Name}");
913
- b.p("Name", () => input.Name, "{Name}", false);
914
- let body;
915
- body = JSON.stringify(smithyClient.take(input, {
916
- CronExpression: [],
917
- JobNames: (_) => smithyClient._json(_),
918
- }));
919
- b.m("PUT").h(headers).b(body);
920
- return b.build();
921
- };
922
- const de_BatchDeleteRecipeVersionCommand = async (output, context) => {
923
- if (output.statusCode !== 200 && output.statusCode >= 300) {
924
- return de_CommandError(output, context);
925
- }
926
- const contents = smithyClient.map({
927
- $metadata: deserializeMetadata(output),
928
- });
929
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
930
- const doc = smithyClient.take(data, {
931
- Errors: smithyClient._json,
932
- Name: smithyClient.expectString,
933
- });
934
- Object.assign(contents, doc);
935
- return contents;
936
- };
937
- const de_CreateDatasetCommand = async (output, context) => {
938
- if (output.statusCode !== 200 && output.statusCode >= 300) {
939
- return de_CommandError(output, context);
940
- }
941
- const contents = smithyClient.map({
942
- $metadata: deserializeMetadata(output),
943
- });
944
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
945
- const doc = smithyClient.take(data, {
946
- Name: smithyClient.expectString,
947
- });
948
- Object.assign(contents, doc);
949
- return contents;
950
- };
951
- const de_CreateProfileJobCommand = async (output, context) => {
952
- if (output.statusCode !== 200 && output.statusCode >= 300) {
953
- return de_CommandError(output, context);
954
- }
955
- const contents = smithyClient.map({
956
- $metadata: deserializeMetadata(output),
957
- });
958
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
959
- const doc = smithyClient.take(data, {
960
- Name: smithyClient.expectString,
961
- });
962
- Object.assign(contents, doc);
963
- return contents;
964
- };
965
- const de_CreateProjectCommand = async (output, context) => {
966
- if (output.statusCode !== 200 && output.statusCode >= 300) {
967
- return de_CommandError(output, context);
968
- }
969
- const contents = smithyClient.map({
970
- $metadata: deserializeMetadata(output),
971
- });
972
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
973
- const doc = smithyClient.take(data, {
974
- Name: smithyClient.expectString,
975
- });
976
- Object.assign(contents, doc);
977
- return contents;
978
- };
979
- const de_CreateRecipeCommand = async (output, context) => {
980
- if (output.statusCode !== 200 && output.statusCode >= 300) {
981
- return de_CommandError(output, context);
982
- }
983
- const contents = smithyClient.map({
984
- $metadata: deserializeMetadata(output),
985
- });
986
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
987
- const doc = smithyClient.take(data, {
988
- Name: smithyClient.expectString,
989
- });
990
- Object.assign(contents, doc);
991
- return contents;
992
- };
993
- const de_CreateRecipeJobCommand = async (output, context) => {
994
- if (output.statusCode !== 200 && output.statusCode >= 300) {
995
- return de_CommandError(output, context);
996
- }
997
- const contents = smithyClient.map({
998
- $metadata: deserializeMetadata(output),
999
- });
1000
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1001
- const doc = smithyClient.take(data, {
1002
- Name: smithyClient.expectString,
1003
- });
1004
- Object.assign(contents, doc);
1005
- return contents;
1006
- };
1007
- const de_CreateRulesetCommand = async (output, context) => {
1008
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1009
- return de_CommandError(output, context);
1010
- }
1011
- const contents = smithyClient.map({
1012
- $metadata: deserializeMetadata(output),
1013
- });
1014
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1015
- const doc = smithyClient.take(data, {
1016
- Name: smithyClient.expectString,
1017
- });
1018
- Object.assign(contents, doc);
1019
- return contents;
1020
- };
1021
- const de_CreateScheduleCommand = async (output, context) => {
1022
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1023
- return de_CommandError(output, context);
1024
- }
1025
- const contents = smithyClient.map({
1026
- $metadata: deserializeMetadata(output),
1027
- });
1028
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1029
- const doc = smithyClient.take(data, {
1030
- Name: smithyClient.expectString,
1031
- });
1032
- Object.assign(contents, doc);
1033
- return contents;
1034
- };
1035
- const de_DeleteDatasetCommand = async (output, context) => {
1036
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1037
- return de_CommandError(output, context);
1038
- }
1039
- const contents = smithyClient.map({
1040
- $metadata: deserializeMetadata(output),
1041
- });
1042
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1043
- const doc = smithyClient.take(data, {
1044
- Name: smithyClient.expectString,
1045
- });
1046
- Object.assign(contents, doc);
1047
- return contents;
1048
- };
1049
- const de_DeleteJobCommand = async (output, context) => {
1050
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1051
- return de_CommandError(output, context);
1052
- }
1053
- const contents = smithyClient.map({
1054
- $metadata: deserializeMetadata(output),
1055
- });
1056
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1057
- const doc = smithyClient.take(data, {
1058
- Name: smithyClient.expectString,
1059
- });
1060
- Object.assign(contents, doc);
1061
- return contents;
1062
- };
1063
- const de_DeleteProjectCommand = async (output, context) => {
1064
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1065
- return de_CommandError(output, context);
1066
- }
1067
- const contents = smithyClient.map({
1068
- $metadata: deserializeMetadata(output),
1069
- });
1070
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1071
- const doc = smithyClient.take(data, {
1072
- Name: smithyClient.expectString,
1073
- });
1074
- Object.assign(contents, doc);
1075
- return contents;
1076
- };
1077
- const de_DeleteRecipeVersionCommand = async (output, context) => {
1078
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1079
- return de_CommandError(output, context);
1080
- }
1081
- const contents = smithyClient.map({
1082
- $metadata: deserializeMetadata(output),
1083
- });
1084
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1085
- const doc = smithyClient.take(data, {
1086
- Name: smithyClient.expectString,
1087
- RecipeVersion: smithyClient.expectString,
1088
- });
1089
- Object.assign(contents, doc);
1090
- return contents;
1091
- };
1092
- const de_DeleteRulesetCommand = async (output, context) => {
1093
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1094
- return de_CommandError(output, context);
1095
- }
1096
- const contents = smithyClient.map({
1097
- $metadata: deserializeMetadata(output),
1098
- });
1099
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1100
- const doc = smithyClient.take(data, {
1101
- Name: smithyClient.expectString,
1102
- });
1103
- Object.assign(contents, doc);
1104
- return contents;
1105
- };
1106
- const de_DeleteScheduleCommand = async (output, context) => {
1107
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1108
- return de_CommandError(output, context);
1109
- }
1110
- const contents = smithyClient.map({
1111
- $metadata: deserializeMetadata(output),
1112
- });
1113
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1114
- const doc = smithyClient.take(data, {
1115
- Name: smithyClient.expectString,
1116
- });
1117
- Object.assign(contents, doc);
1118
- return contents;
1119
- };
1120
- const de_DescribeDatasetCommand = async (output, context) => {
1121
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1122
- return de_CommandError(output, context);
1123
- }
1124
- const contents = smithyClient.map({
1125
- $metadata: deserializeMetadata(output),
1126
- });
1127
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1128
- const doc = smithyClient.take(data, {
1129
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1130
- CreatedBy: smithyClient.expectString,
1131
- Format: smithyClient.expectString,
1132
- FormatOptions: smithyClient._json,
1133
- Input: smithyClient._json,
1134
- LastModifiedBy: smithyClient.expectString,
1135
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1136
- Name: smithyClient.expectString,
1137
- PathOptions: smithyClient._json,
1138
- ResourceArn: smithyClient.expectString,
1139
- Source: smithyClient.expectString,
1140
- Tags: smithyClient._json,
1141
- });
1142
- Object.assign(contents, doc);
1143
- return contents;
1144
- };
1145
- const de_DescribeJobCommand = async (output, context) => {
1146
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1147
- return de_CommandError(output, context);
1148
- }
1149
- const contents = smithyClient.map({
1150
- $metadata: deserializeMetadata(output),
1151
- });
1152
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1153
- const doc = smithyClient.take(data, {
1154
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1155
- CreatedBy: smithyClient.expectString,
1156
- DataCatalogOutputs: smithyClient._json,
1157
- DatabaseOutputs: smithyClient._json,
1158
- DatasetName: smithyClient.expectString,
1159
- EncryptionKeyArn: smithyClient.expectString,
1160
- EncryptionMode: smithyClient.expectString,
1161
- JobSample: smithyClient._json,
1162
- LastModifiedBy: smithyClient.expectString,
1163
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1164
- LogSubscription: smithyClient.expectString,
1165
- MaxCapacity: smithyClient.expectInt32,
1166
- MaxRetries: smithyClient.expectInt32,
1167
- Name: smithyClient.expectString,
1168
- Outputs: smithyClient._json,
1169
- ProfileConfiguration: smithyClient._json,
1170
- ProjectName: smithyClient.expectString,
1171
- RecipeReference: smithyClient._json,
1172
- ResourceArn: smithyClient.expectString,
1173
- RoleArn: smithyClient.expectString,
1174
- Tags: smithyClient._json,
1175
- Timeout: smithyClient.expectInt32,
1176
- Type: smithyClient.expectString,
1177
- ValidationConfigurations: smithyClient._json,
1178
- });
1179
- Object.assign(contents, doc);
1180
- return contents;
1181
- };
1182
- const de_DescribeJobRunCommand = async (output, context) => {
1183
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1184
- return de_CommandError(output, context);
1185
- }
1186
- const contents = smithyClient.map({
1187
- $metadata: deserializeMetadata(output),
1188
- });
1189
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1190
- const doc = smithyClient.take(data, {
1191
- Attempt: smithyClient.expectInt32,
1192
- CompletedOn: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1193
- DataCatalogOutputs: smithyClient._json,
1194
- DatabaseOutputs: smithyClient._json,
1195
- DatasetName: smithyClient.expectString,
1196
- ErrorMessage: smithyClient.expectString,
1197
- ExecutionTime: smithyClient.expectInt32,
1198
- JobName: smithyClient.expectString,
1199
- JobSample: smithyClient._json,
1200
- LogGroupName: smithyClient.expectString,
1201
- LogSubscription: smithyClient.expectString,
1202
- Outputs: smithyClient._json,
1203
- ProfileConfiguration: smithyClient._json,
1204
- RecipeReference: smithyClient._json,
1205
- RunId: smithyClient.expectString,
1206
- StartedBy: smithyClient.expectString,
1207
- StartedOn: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1208
- State: smithyClient.expectString,
1209
- ValidationConfigurations: smithyClient._json,
1210
- });
1211
- Object.assign(contents, doc);
1212
- return contents;
1213
- };
1214
- const de_DescribeProjectCommand = async (output, context) => {
1215
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1216
- return de_CommandError(output, context);
1217
- }
1218
- const contents = smithyClient.map({
1219
- $metadata: deserializeMetadata(output),
1220
- });
1221
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1222
- const doc = smithyClient.take(data, {
1223
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1224
- CreatedBy: smithyClient.expectString,
1225
- DatasetName: smithyClient.expectString,
1226
- LastModifiedBy: smithyClient.expectString,
1227
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1228
- Name: smithyClient.expectString,
1229
- OpenDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1230
- OpenedBy: smithyClient.expectString,
1231
- RecipeName: smithyClient.expectString,
1232
- ResourceArn: smithyClient.expectString,
1233
- RoleArn: smithyClient.expectString,
1234
- Sample: smithyClient._json,
1235
- SessionStatus: smithyClient.expectString,
1236
- Tags: smithyClient._json,
1237
- });
1238
- Object.assign(contents, doc);
1239
- return contents;
1240
- };
1241
- const de_DescribeRecipeCommand = async (output, context) => {
1242
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1243
- return de_CommandError(output, context);
1244
- }
1245
- const contents = smithyClient.map({
1246
- $metadata: deserializeMetadata(output),
1247
- });
1248
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1249
- const doc = smithyClient.take(data, {
1250
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1251
- CreatedBy: smithyClient.expectString,
1252
- Description: smithyClient.expectString,
1253
- LastModifiedBy: smithyClient.expectString,
1254
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1255
- Name: smithyClient.expectString,
1256
- ProjectName: smithyClient.expectString,
1257
- PublishedBy: smithyClient.expectString,
1258
- PublishedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1259
- RecipeVersion: smithyClient.expectString,
1260
- ResourceArn: smithyClient.expectString,
1261
- Steps: smithyClient._json,
1262
- Tags: smithyClient._json,
1263
- });
1264
- Object.assign(contents, doc);
1265
- return contents;
1266
- };
1267
- const de_DescribeRulesetCommand = async (output, context) => {
1268
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1269
- return de_CommandError(output, context);
1270
- }
1271
- const contents = smithyClient.map({
1272
- $metadata: deserializeMetadata(output),
1273
- });
1274
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1275
- const doc = smithyClient.take(data, {
1276
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1277
- CreatedBy: smithyClient.expectString,
1278
- Description: smithyClient.expectString,
1279
- LastModifiedBy: smithyClient.expectString,
1280
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1281
- Name: smithyClient.expectString,
1282
- ResourceArn: smithyClient.expectString,
1283
- Rules: (_) => de_RuleList(_),
1284
- Tags: smithyClient._json,
1285
- TargetArn: smithyClient.expectString,
1286
- });
1287
- Object.assign(contents, doc);
1288
- return contents;
1289
- };
1290
- const de_DescribeScheduleCommand = async (output, context) => {
1291
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1292
- return de_CommandError(output, context);
1293
- }
1294
- const contents = smithyClient.map({
1295
- $metadata: deserializeMetadata(output),
1296
- });
1297
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1298
- const doc = smithyClient.take(data, {
1299
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1300
- CreatedBy: smithyClient.expectString,
1301
- CronExpression: smithyClient.expectString,
1302
- JobNames: smithyClient._json,
1303
- LastModifiedBy: smithyClient.expectString,
1304
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1305
- Name: smithyClient.expectString,
1306
- ResourceArn: smithyClient.expectString,
1307
- Tags: smithyClient._json,
1308
- });
1309
- Object.assign(contents, doc);
1310
- return contents;
1311
- };
1312
- const de_ListDatasetsCommand = async (output, context) => {
1313
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1314
- return de_CommandError(output, context);
1315
- }
1316
- const contents = smithyClient.map({
1317
- $metadata: deserializeMetadata(output),
1318
- });
1319
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1320
- const doc = smithyClient.take(data, {
1321
- Datasets: (_) => de_DatasetList(_),
1322
- NextToken: smithyClient.expectString,
1323
- });
1324
- Object.assign(contents, doc);
1325
- return contents;
1326
- };
1327
- const de_ListJobRunsCommand = async (output, context) => {
1328
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1329
- return de_CommandError(output, context);
1330
- }
1331
- const contents = smithyClient.map({
1332
- $metadata: deserializeMetadata(output),
1333
- });
1334
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1335
- const doc = smithyClient.take(data, {
1336
- JobRuns: (_) => de_JobRunList(_),
1337
- NextToken: smithyClient.expectString,
1338
- });
1339
- Object.assign(contents, doc);
1340
- return contents;
1341
- };
1342
- const de_ListJobsCommand = async (output, context) => {
1343
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1344
- return de_CommandError(output, context);
1345
- }
1346
- const contents = smithyClient.map({
1347
- $metadata: deserializeMetadata(output),
1348
- });
1349
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1350
- const doc = smithyClient.take(data, {
1351
- Jobs: (_) => de_JobList(_),
1352
- NextToken: smithyClient.expectString,
1353
- });
1354
- Object.assign(contents, doc);
1355
- return contents;
1356
- };
1357
- const de_ListProjectsCommand = async (output, context) => {
1358
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1359
- return de_CommandError(output, context);
1360
- }
1361
- const contents = smithyClient.map({
1362
- $metadata: deserializeMetadata(output),
1363
- });
1364
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1365
- const doc = smithyClient.take(data, {
1366
- NextToken: smithyClient.expectString,
1367
- Projects: (_) => de_ProjectList(_),
1368
- });
1369
- Object.assign(contents, doc);
1370
- return contents;
1371
- };
1372
- const de_ListRecipesCommand = async (output, context) => {
1373
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1374
- return de_CommandError(output, context);
1375
- }
1376
- const contents = smithyClient.map({
1377
- $metadata: deserializeMetadata(output),
1378
- });
1379
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1380
- const doc = smithyClient.take(data, {
1381
- NextToken: smithyClient.expectString,
1382
- Recipes: (_) => de_RecipeList(_),
1383
- });
1384
- Object.assign(contents, doc);
1385
- return contents;
1386
- };
1387
- const de_ListRecipeVersionsCommand = async (output, context) => {
1388
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1389
- return de_CommandError(output, context);
1390
- }
1391
- const contents = smithyClient.map({
1392
- $metadata: deserializeMetadata(output),
1393
- });
1394
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1395
- const doc = smithyClient.take(data, {
1396
- NextToken: smithyClient.expectString,
1397
- Recipes: (_) => de_RecipeList(_),
1398
- });
1399
- Object.assign(contents, doc);
1400
- return contents;
1401
- };
1402
- const de_ListRulesetsCommand = async (output, context) => {
1403
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1404
- return de_CommandError(output, context);
1405
- }
1406
- const contents = smithyClient.map({
1407
- $metadata: deserializeMetadata(output),
1408
- });
1409
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1410
- const doc = smithyClient.take(data, {
1411
- NextToken: smithyClient.expectString,
1412
- Rulesets: (_) => de_RulesetItemList(_),
1413
- });
1414
- Object.assign(contents, doc);
1415
- return contents;
1416
- };
1417
- const de_ListSchedulesCommand = async (output, context) => {
1418
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1419
- return de_CommandError(output, context);
1420
- }
1421
- const contents = smithyClient.map({
1422
- $metadata: deserializeMetadata(output),
1423
- });
1424
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1425
- const doc = smithyClient.take(data, {
1426
- NextToken: smithyClient.expectString,
1427
- Schedules: (_) => de_ScheduleList(_),
1428
- });
1429
- Object.assign(contents, doc);
1430
- return contents;
1431
- };
1432
- const de_ListTagsForResourceCommand = async (output, context) => {
1433
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1434
- return de_CommandError(output, context);
1435
- }
1436
- const contents = smithyClient.map({
1437
- $metadata: deserializeMetadata(output),
1438
- });
1439
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1440
- const doc = smithyClient.take(data, {
1441
- Tags: smithyClient._json,
1442
- });
1443
- Object.assign(contents, doc);
1444
- return contents;
1445
- };
1446
- const de_PublishRecipeCommand = async (output, context) => {
1447
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1448
- return de_CommandError(output, context);
1449
- }
1450
- const contents = smithyClient.map({
1451
- $metadata: deserializeMetadata(output),
1452
- });
1453
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1454
- const doc = smithyClient.take(data, {
1455
- Name: smithyClient.expectString,
1456
- });
1457
- Object.assign(contents, doc);
1458
- return contents;
1459
- };
1460
- const de_SendProjectSessionActionCommand = async (output, context) => {
1461
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1462
- return de_CommandError(output, context);
1463
- }
1464
- const contents = smithyClient.map({
1465
- $metadata: deserializeMetadata(output),
1466
- });
1467
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1468
- const doc = smithyClient.take(data, {
1469
- ActionId: smithyClient.expectInt32,
1470
- Name: smithyClient.expectString,
1471
- Result: smithyClient.expectString,
1472
- });
1473
- Object.assign(contents, doc);
1474
- return contents;
1475
- };
1476
- const de_StartJobRunCommand = async (output, context) => {
1477
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1478
- return de_CommandError(output, context);
1479
- }
1480
- const contents = smithyClient.map({
1481
- $metadata: deserializeMetadata(output),
1482
- });
1483
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1484
- const doc = smithyClient.take(data, {
1485
- RunId: smithyClient.expectString,
1486
- });
1487
- Object.assign(contents, doc);
1488
- return contents;
1489
- };
1490
- const de_StartProjectSessionCommand = async (output, context) => {
1491
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1492
- return de_CommandError(output, context);
1493
- }
1494
- const contents = smithyClient.map({
1495
- $metadata: deserializeMetadata(output),
1496
- });
1497
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1498
- const doc = smithyClient.take(data, {
1499
- ClientSessionId: smithyClient.expectString,
1500
- Name: smithyClient.expectString,
1501
- });
1502
- Object.assign(contents, doc);
1503
- return contents;
1504
- };
1505
- const de_StopJobRunCommand = async (output, context) => {
1506
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1507
- return de_CommandError(output, context);
1508
- }
1509
- const contents = smithyClient.map({
1510
- $metadata: deserializeMetadata(output),
1511
- });
1512
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1513
- const doc = smithyClient.take(data, {
1514
- RunId: smithyClient.expectString,
1515
- });
1516
- Object.assign(contents, doc);
1517
- return contents;
1518
- };
1519
- const de_TagResourceCommand = async (output, context) => {
1520
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1521
- return de_CommandError(output, context);
1522
- }
1523
- const contents = smithyClient.map({
1524
- $metadata: deserializeMetadata(output),
1525
- });
1526
- await smithyClient.collectBody(output.body, context);
1527
- return contents;
1528
- };
1529
- const de_UntagResourceCommand = async (output, context) => {
1530
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1531
- return de_CommandError(output, context);
1532
- }
1533
- const contents = smithyClient.map({
1534
- $metadata: deserializeMetadata(output),
1535
- });
1536
- await smithyClient.collectBody(output.body, context);
1537
- return contents;
1538
- };
1539
- const de_UpdateDatasetCommand = async (output, context) => {
1540
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1541
- return de_CommandError(output, context);
1542
- }
1543
- const contents = smithyClient.map({
1544
- $metadata: deserializeMetadata(output),
1545
- });
1546
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1547
- const doc = smithyClient.take(data, {
1548
- Name: smithyClient.expectString,
1549
- });
1550
- Object.assign(contents, doc);
1551
- return contents;
1552
- };
1553
- const de_UpdateProfileJobCommand = async (output, context) => {
1554
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1555
- return de_CommandError(output, context);
1556
- }
1557
- const contents = smithyClient.map({
1558
- $metadata: deserializeMetadata(output),
1559
- });
1560
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1561
- const doc = smithyClient.take(data, {
1562
- Name: smithyClient.expectString,
1563
- });
1564
- Object.assign(contents, doc);
1565
- return contents;
1566
- };
1567
- const de_UpdateProjectCommand = async (output, context) => {
1568
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1569
- return de_CommandError(output, context);
1570
- }
1571
- const contents = smithyClient.map({
1572
- $metadata: deserializeMetadata(output),
1573
- });
1574
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1575
- const doc = smithyClient.take(data, {
1576
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1577
- Name: smithyClient.expectString,
1578
- });
1579
- Object.assign(contents, doc);
1580
- return contents;
1581
- };
1582
- const de_UpdateRecipeCommand = async (output, context) => {
1583
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1584
- return de_CommandError(output, context);
1585
- }
1586
- const contents = smithyClient.map({
1587
- $metadata: deserializeMetadata(output),
1588
- });
1589
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1590
- const doc = smithyClient.take(data, {
1591
- Name: smithyClient.expectString,
1592
- });
1593
- Object.assign(contents, doc);
1594
- return contents;
1595
- };
1596
- const de_UpdateRecipeJobCommand = async (output, context) => {
1597
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1598
- return de_CommandError(output, context);
1599
- }
1600
- const contents = smithyClient.map({
1601
- $metadata: deserializeMetadata(output),
1602
- });
1603
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1604
- const doc = smithyClient.take(data, {
1605
- Name: smithyClient.expectString,
1606
- });
1607
- Object.assign(contents, doc);
1608
- return contents;
1609
- };
1610
- const de_UpdateRulesetCommand = async (output, context) => {
1611
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1612
- return de_CommandError(output, context);
1613
- }
1614
- const contents = smithyClient.map({
1615
- $metadata: deserializeMetadata(output),
1616
- });
1617
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1618
- const doc = smithyClient.take(data, {
1619
- Name: smithyClient.expectString,
1620
- });
1621
- Object.assign(contents, doc);
1622
- return contents;
1623
- };
1624
- const de_UpdateScheduleCommand = async (output, context) => {
1625
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1626
- return de_CommandError(output, context);
1627
- }
1628
- const contents = smithyClient.map({
1629
- $metadata: deserializeMetadata(output),
1630
- });
1631
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1632
- const doc = smithyClient.take(data, {
1633
- Name: smithyClient.expectString,
1634
- });
1635
- Object.assign(contents, doc);
1636
- return contents;
1637
- };
1638
- const de_CommandError = async (output, context) => {
1639
- const parsedOutput = {
1640
- ...output,
1641
- body: await core$1.parseJsonErrorBody(output.body, context),
1642
- };
1643
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1644
- switch (errorCode) {
1645
- case "ConflictException":
1646
- case "com.amazonaws.databrew#ConflictException":
1647
- throw await de_ConflictExceptionRes(parsedOutput);
1648
- case "ResourceNotFoundException":
1649
- case "com.amazonaws.databrew#ResourceNotFoundException":
1650
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1651
- case "ValidationException":
1652
- case "com.amazonaws.databrew#ValidationException":
1653
- throw await de_ValidationExceptionRes(parsedOutput);
1654
- case "AccessDeniedException":
1655
- case "com.amazonaws.databrew#AccessDeniedException":
1656
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1657
- case "ServiceQuotaExceededException":
1658
- case "com.amazonaws.databrew#ServiceQuotaExceededException":
1659
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
1660
- case "InternalServerException":
1661
- case "com.amazonaws.databrew#InternalServerException":
1662
- throw await de_InternalServerExceptionRes(parsedOutput);
1663
- default:
1664
- const parsedBody = parsedOutput.body;
1665
- return throwDefaultError({
1666
- output,
1667
- parsedBody,
1668
- errorCode,
1669
- });
1670
- }
1671
- };
1672
- const throwDefaultError = smithyClient.withBaseException(DataBrewServiceException);
1673
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1674
- const contents = smithyClient.map({});
1675
- const data = parsedOutput.body;
1676
- const doc = smithyClient.take(data, {
1677
- Message: smithyClient.expectString,
1678
- });
1679
- Object.assign(contents, doc);
1680
- const exception = new AccessDeniedException({
1681
- $metadata: deserializeMetadata(parsedOutput),
1682
- ...contents,
1683
- });
1684
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1685
- };
1686
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1687
- const contents = smithyClient.map({});
1688
- const data = parsedOutput.body;
1689
- const doc = smithyClient.take(data, {
1690
- Message: smithyClient.expectString,
1691
- });
1692
- Object.assign(contents, doc);
1693
- const exception = new ConflictException({
1694
- $metadata: deserializeMetadata(parsedOutput),
1695
- ...contents,
1696
- });
1697
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1698
- };
1699
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
1700
- const contents = smithyClient.map({});
1701
- const data = parsedOutput.body;
1702
- const doc = smithyClient.take(data, {
1703
- Message: smithyClient.expectString,
1704
- });
1705
- Object.assign(contents, doc);
1706
- const exception = new InternalServerException({
1707
- $metadata: deserializeMetadata(parsedOutput),
1708
- ...contents,
1709
- });
1710
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1711
- };
1712
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1713
- const contents = smithyClient.map({});
1714
- const data = parsedOutput.body;
1715
- const doc = smithyClient.take(data, {
1716
- Message: smithyClient.expectString,
1717
- });
1718
- Object.assign(contents, doc);
1719
- const exception = new ResourceNotFoundException({
1720
- $metadata: deserializeMetadata(parsedOutput),
1721
- ...contents,
1722
- });
1723
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1724
- };
1725
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1726
- const contents = smithyClient.map({});
1727
- const data = parsedOutput.body;
1728
- const doc = smithyClient.take(data, {
1729
- Message: smithyClient.expectString,
1730
- });
1731
- Object.assign(contents, doc);
1732
- const exception = new ServiceQuotaExceededException({
1733
- $metadata: deserializeMetadata(parsedOutput),
1734
- ...contents,
1735
- });
1736
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1737
- };
1738
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1739
- const contents = smithyClient.map({});
1740
- const data = parsedOutput.body;
1741
- const doc = smithyClient.take(data, {
1742
- Message: smithyClient.expectString,
1743
- });
1744
- Object.assign(contents, doc);
1745
- const exception = new ValidationException({
1746
- $metadata: deserializeMetadata(parsedOutput),
1747
- ...contents,
1748
- });
1749
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1750
- };
1751
- const se_Rule = (input, context) => {
1752
- return smithyClient.take(input, {
1753
- CheckExpression: [],
1754
- ColumnSelectors: smithyClient._json,
1755
- Disabled: [],
1756
- Name: [],
1757
- SubstitutionMap: smithyClient._json,
1758
- Threshold: (_) => se_Threshold(_),
1759
- });
1760
- };
1761
- const se_RuleList = (input, context) => {
1762
- return input
1763
- .filter((e) => e != null)
1764
- .map((entry) => {
1765
- return se_Rule(entry);
1766
- });
1767
- };
1768
- const se_Threshold = (input, context) => {
1769
- return smithyClient.take(input, {
1770
- Type: [],
1771
- Unit: [],
1772
- Value: smithyClient.serializeFloat,
1773
- });
1774
- };
1775
- const de_Dataset = (output, context) => {
1776
- return smithyClient.take(output, {
1777
- AccountId: smithyClient.expectString,
1778
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1779
- CreatedBy: smithyClient.expectString,
1780
- Format: smithyClient.expectString,
1781
- FormatOptions: smithyClient._json,
1782
- Input: smithyClient._json,
1783
- LastModifiedBy: smithyClient.expectString,
1784
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1785
- Name: smithyClient.expectString,
1786
- PathOptions: smithyClient._json,
1787
- ResourceArn: smithyClient.expectString,
1788
- Source: smithyClient.expectString,
1789
- Tags: smithyClient._json,
1790
- });
1791
- };
1792
- const de_DatasetList = (output, context) => {
1793
- const retVal = (output || [])
1794
- .filter((e) => e != null)
1795
- .map((entry) => {
1796
- return de_Dataset(entry);
1797
- });
1798
- return retVal;
1799
- };
1800
- const de_Job = (output, context) => {
1801
- return smithyClient.take(output, {
1802
- AccountId: smithyClient.expectString,
1803
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1804
- CreatedBy: smithyClient.expectString,
1805
- DataCatalogOutputs: smithyClient._json,
1806
- DatabaseOutputs: smithyClient._json,
1807
- DatasetName: smithyClient.expectString,
1808
- EncryptionKeyArn: smithyClient.expectString,
1809
- EncryptionMode: smithyClient.expectString,
1810
- JobSample: smithyClient._json,
1811
- LastModifiedBy: smithyClient.expectString,
1812
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1813
- LogSubscription: smithyClient.expectString,
1814
- MaxCapacity: smithyClient.expectInt32,
1815
- MaxRetries: smithyClient.expectInt32,
1816
- Name: smithyClient.expectString,
1817
- Outputs: smithyClient._json,
1818
- ProjectName: smithyClient.expectString,
1819
- RecipeReference: smithyClient._json,
1820
- ResourceArn: smithyClient.expectString,
1821
- RoleArn: smithyClient.expectString,
1822
- Tags: smithyClient._json,
1823
- Timeout: smithyClient.expectInt32,
1824
- Type: smithyClient.expectString,
1825
- ValidationConfigurations: smithyClient._json,
1826
- });
1827
- };
1828
- const de_JobList = (output, context) => {
1829
- const retVal = (output || [])
1830
- .filter((e) => e != null)
1831
- .map((entry) => {
1832
- return de_Job(entry);
1833
- });
1834
- return retVal;
1835
- };
1836
- const de_JobRun = (output, context) => {
1837
- return smithyClient.take(output, {
1838
- Attempt: smithyClient.expectInt32,
1839
- CompletedOn: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1840
- DataCatalogOutputs: smithyClient._json,
1841
- DatabaseOutputs: smithyClient._json,
1842
- DatasetName: smithyClient.expectString,
1843
- ErrorMessage: smithyClient.expectString,
1844
- ExecutionTime: smithyClient.expectInt32,
1845
- JobName: smithyClient.expectString,
1846
- JobSample: smithyClient._json,
1847
- LogGroupName: smithyClient.expectString,
1848
- LogSubscription: smithyClient.expectString,
1849
- Outputs: smithyClient._json,
1850
- RecipeReference: smithyClient._json,
1851
- RunId: smithyClient.expectString,
1852
- StartedBy: smithyClient.expectString,
1853
- StartedOn: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1854
- State: smithyClient.expectString,
1855
- ValidationConfigurations: smithyClient._json,
1856
- });
1857
- };
1858
- const de_JobRunList = (output, context) => {
1859
- const retVal = (output || [])
1860
- .filter((e) => e != null)
1861
- .map((entry) => {
1862
- return de_JobRun(entry);
1863
- });
1864
- return retVal;
1865
- };
1866
- const de_Project = (output, context) => {
1867
- return smithyClient.take(output, {
1868
- AccountId: smithyClient.expectString,
1869
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1870
- CreatedBy: smithyClient.expectString,
1871
- DatasetName: smithyClient.expectString,
1872
- LastModifiedBy: smithyClient.expectString,
1873
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1874
- Name: smithyClient.expectString,
1875
- OpenDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1876
- OpenedBy: smithyClient.expectString,
1877
- RecipeName: smithyClient.expectString,
1878
- ResourceArn: smithyClient.expectString,
1879
- RoleArn: smithyClient.expectString,
1880
- Sample: smithyClient._json,
1881
- Tags: smithyClient._json,
1882
- });
1883
- };
1884
- const de_ProjectList = (output, context) => {
1885
- const retVal = (output || [])
1886
- .filter((e) => e != null)
1887
- .map((entry) => {
1888
- return de_Project(entry);
1889
- });
1890
- return retVal;
1891
- };
1892
- const de_Recipe = (output, context) => {
1893
- return smithyClient.take(output, {
1894
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1895
- CreatedBy: smithyClient.expectString,
1896
- Description: smithyClient.expectString,
1897
- LastModifiedBy: smithyClient.expectString,
1898
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1899
- Name: smithyClient.expectString,
1900
- ProjectName: smithyClient.expectString,
1901
- PublishedBy: smithyClient.expectString,
1902
- PublishedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1903
- RecipeVersion: smithyClient.expectString,
1904
- ResourceArn: smithyClient.expectString,
1905
- Steps: smithyClient._json,
1906
- Tags: smithyClient._json,
1907
- });
1908
- };
1909
- const de_RecipeList = (output, context) => {
1910
- const retVal = (output || [])
1911
- .filter((e) => e != null)
1912
- .map((entry) => {
1913
- return de_Recipe(entry);
1914
- });
1915
- return retVal;
1916
- };
1917
- const de_Rule = (output, context) => {
1918
- return smithyClient.take(output, {
1919
- CheckExpression: smithyClient.expectString,
1920
- ColumnSelectors: smithyClient._json,
1921
- Disabled: smithyClient.expectBoolean,
1922
- Name: smithyClient.expectString,
1923
- SubstitutionMap: smithyClient._json,
1924
- Threshold: (_) => de_Threshold(_),
1925
- });
1926
- };
1927
- const de_RuleList = (output, context) => {
1928
- const retVal = (output || [])
1929
- .filter((e) => e != null)
1930
- .map((entry) => {
1931
- return de_Rule(entry);
1932
- });
1933
- return retVal;
1934
- };
1935
- const de_RulesetItem = (output, context) => {
1936
- return smithyClient.take(output, {
1937
- AccountId: smithyClient.expectString,
1938
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1939
- CreatedBy: smithyClient.expectString,
1940
- Description: smithyClient.expectString,
1941
- LastModifiedBy: smithyClient.expectString,
1942
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1943
- Name: smithyClient.expectString,
1944
- ResourceArn: smithyClient.expectString,
1945
- RuleCount: smithyClient.expectInt32,
1946
- Tags: smithyClient._json,
1947
- TargetArn: smithyClient.expectString,
1948
- });
1949
- };
1950
- const de_RulesetItemList = (output, context) => {
1951
- const retVal = (output || [])
1952
- .filter((e) => e != null)
1953
- .map((entry) => {
1954
- return de_RulesetItem(entry);
1955
- });
1956
- return retVal;
1957
- };
1958
- const de_Schedule = (output, context) => {
1959
- return smithyClient.take(output, {
1960
- AccountId: smithyClient.expectString,
1961
- CreateDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1962
- CreatedBy: smithyClient.expectString,
1963
- CronExpression: smithyClient.expectString,
1964
- JobNames: smithyClient._json,
1965
- LastModifiedBy: smithyClient.expectString,
1966
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1967
- Name: smithyClient.expectString,
1968
- ResourceArn: smithyClient.expectString,
1969
- Tags: smithyClient._json,
1970
- });
1971
- };
1972
- const de_ScheduleList = (output, context) => {
1973
- const retVal = (output || [])
1974
- .filter((e) => e != null)
1975
- .map((entry) => {
1976
- return de_Schedule(entry);
1977
- });
1978
- return retVal;
1979
- };
1980
- const de_Threshold = (output, context) => {
1981
- return smithyClient.take(output, {
1982
- Type: smithyClient.expectString,
1983
- Unit: smithyClient.expectString,
1984
- Value: smithyClient.limitedParseDouble,
1985
- });
1986
- };
1987
- const deserializeMetadata = (output) => ({
1988
- httpStatusCode: output.statusCode,
1989
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1990
- extendedRequestId: output.headers["x-amz-id-2"],
1991
- cfId: output.headers["x-amz-cf-id"],
1992
- });
313
+ const _A = "Attempt";
314
+ const _AC = "AssumeControl";
315
+ const _ADE = "AccessDeniedException";
316
+ const _AI = "AccountId";
317
+ const _AIc = "ActionId";
318
+ const _AS = "AllowedStatistics";
319
+ const _ASL = "AllowedStatisticList";
320
+ const _Ac = "Action";
321
+ const _An = "Analytics";
322
+ const _B = "Bucket";
323
+ const _BDRV = "BatchDeleteRecipeVersion";
324
+ const _BDRVR = "BatchDeleteRecipeVersionRequest";
325
+ const _BDRVRa = "BatchDeleteRecipeVersionResponse";
326
+ const _BO = "BucketOwner";
327
+ const _C = "Condition";
328
+ const _CB = "CreatedBy";
329
+ const _CC = "CreateColumn";
330
+ const _CD = "CreateDate";
331
+ const _CDR = "CreateDatasetRequest";
332
+ const _CDRr = "CreateDatasetResponse";
333
+ const _CDr = "CreateDataset";
334
+ const _CE = "ConditionExpression";
335
+ const _CEL = "ConditionExpressionList";
336
+ const _CEh = "CheckExpression";
337
+ const _CEo = "ConflictException";
338
+ const _CEon = "ConditionExpressions";
339
+ const _CEr = "CronExpression";
340
+ const _CF = "CompressionFormat";
341
+ const _CI = "CatalogId";
342
+ const _CO = "CsvOptions";
343
+ const _COO = "CsvOutputOptions";
344
+ const _COo = "CompletedOn";
345
+ const _CP = "CreateProject";
346
+ const _CPJ = "CreateProfileJob";
347
+ const _CPJR = "CreateProfileJobRequest";
348
+ const _CPJRr = "CreateProfileJobResponse";
349
+ const _CPR = "CreateProjectRequest";
350
+ const _CPRr = "CreateProjectResponse";
351
+ const _CR = "ColumnRange";
352
+ const _CRJ = "CreateRecipeJob";
353
+ const _CRJR = "CreateRecipeJobRequest";
354
+ const _CRJRr = "CreateRecipeJobResponse";
355
+ const _CRR = "CreateRecipeRequest";
356
+ const _CRRr = "CreateRecipeResponse";
357
+ const _CRRre = "CreateRulesetRequest";
358
+ const _CRRrea = "CreateRulesetResponse";
359
+ const _CRr = "CreateRecipe";
360
+ const _CRre = "CreateRuleset";
361
+ const _CS = "ColumnSelector";
362
+ const _CSC = "ColumnStatisticsConfiguration";
363
+ const _CSCL = "ColumnStatisticsConfigurationList";
364
+ const _CSCo = "ColumnStatisticsConfigurations";
365
+ const _CSI = "ClientSessionId";
366
+ const _CSL = "ColumnSelectorList";
367
+ const _CSR = "CreateScheduleRequest";
368
+ const _CSRr = "CreateScheduleResponse";
369
+ const _CSo = "ColumnSelectors";
370
+ const _CSr = "CreateSchedule";
371
+ const _Co = "Configuration";
372
+ const _Cs = "Csv";
373
+ const _D = "Description";
374
+ const _DCID = "DataCatalogInputDefinition";
375
+ const _DCO = "DataCatalogOutputs";
376
+ const _DCOL = "DataCatalogOutputList";
377
+ const _DCOa = "DataCatalogOutput";
378
+ const _DD = "DeleteDataset";
379
+ const _DDR = "DeleteDatasetRequest";
380
+ const _DDRe = "DeleteDatasetResponse";
381
+ const _DDRes = "DescribeDatasetRequest";
382
+ const _DDResc = "DescribeDatasetResponse";
383
+ const _DDe = "DescribeDataset";
384
+ const _DID = "DatabaseInputDefinition";
385
+ const _DJ = "DeleteJob";
386
+ const _DJR = "DeleteJobRequest";
387
+ const _DJRR = "DescribeJobRunRequest";
388
+ const _DJRRe = "DescribeJobRunResponse";
389
+ const _DJRe = "DeleteJobResponse";
390
+ const _DJRes = "DescribeJobRequest";
391
+ const _DJResc = "DescribeJobResponse";
392
+ const _DJRescr = "DescribeJobRun";
393
+ const _DJe = "DescribeJob";
394
+ const _DL = "DatasetList";
1993
395
  const _DN = "DatasetName";
1994
- const _JN = "JobName";
1995
- const _MR = "MaxResults";
396
+ const _DNa = "DatabaseName";
397
+ const _DO = "DatabaseOutputs";
398
+ const _DOL = "DatabaseOutputList";
399
+ const _DOM = "DatabaseOutputMode";
400
+ const _DOa = "DatabaseOutput";
401
+ const _DOat = "DatabaseOptions";
402
+ const _DOate = "DatetimeOptions";
403
+ const _DP = "DatasetParameter";
404
+ const _DPR = "DeleteProjectRequest";
405
+ const _DPRe = "DeleteProjectResponse";
406
+ const _DPRes = "DescribeProjectRequest";
407
+ const _DPResc = "DescribeProjectResponse";
408
+ const _DPe = "DeleteProject";
409
+ const _DPes = "DescribeProject";
410
+ const _DR = "DeleteRuleset";
411
+ const _DRR = "DeleteRulesetRequest";
412
+ const _DRRe = "DeleteRulesetResponse";
413
+ const _DRRes = "DescribeRecipeRequest";
414
+ const _DRResc = "DescribeRecipeResponse";
415
+ const _DRRescr = "DescribeRulesetRequest";
416
+ const _DRRescri = "DescribeRulesetResponse";
417
+ const _DRV = "DeleteRecipeVersion";
418
+ const _DRVR = "DeleteRecipeVersionRequest";
419
+ const _DRVRe = "DeleteRecipeVersionResponse";
420
+ const _DRe = "DescribeRecipe";
421
+ const _DRes = "DescribeRuleset";
422
+ const _DS = "DeleteSchedule";
423
+ const _DSC = "DatasetStatisticsConfiguration";
424
+ const _DSR = "DeleteScheduleRequest";
425
+ const _DSRe = "DeleteScheduleResponse";
426
+ const _DSRes = "DescribeScheduleRequest";
427
+ const _DSResc = "DescribeScheduleResponse";
428
+ const _DSe = "DescribeSchedule";
429
+ const _DTN = "DatabaseTableName";
430
+ const _DTOO = "DatabaseTableOutputOptions";
431
+ const _Da = "Dataset";
432
+ const _Dat = "Datasets";
433
+ const _De = "Delimiter";
434
+ const _Di = "Disabled";
435
+ const _E = "Errors";
436
+ const _EC = "ErrorCode";
437
+ const _EDC = "EntityDetectorConfiguration";
438
+ const _EKA = "EncryptionKeyArn";
439
+ const _EM = "EncryptionMode";
440
+ const _EMr = "ErrorMessage";
441
+ const _EO = "ExcelOptions";
442
+ const _ET = "ExecutionTime";
443
+ const _ETn = "EntityTypes";
444
+ const _Ex = "Expression";
445
+ const _Exc = "Excel";
446
+ const _F = "Format";
447
+ const _FE = "FilterExpression";
448
+ const _FL = "FilesLimit";
449
+ const _FO = "FormatOptions";
450
+ const _Fi = "Filter";
451
+ const _GCN = "GlueConnectionName";
452
+ const _HC = "HiddenColumns";
453
+ const _HR = "HeaderRow";
454
+ const _I = "Input";
455
+ const _IS = "IncludedStatistics";
456
+ const _ISE = "InternalServerException";
457
+ const _J = "Json";
458
+ const _JL = "JobList";
459
+ const _JN = "JobNames";
460
+ const _JNo = "JobName";
461
+ const _JO = "JsonOptions";
462
+ const _JR = "JobRun";
463
+ const _JRL = "JobRunList";
464
+ const _JRo = "JobRuns";
465
+ const _JS = "JobSample";
466
+ const _Jo = "Job";
467
+ const _Job = "Jobs";
468
+ const _K = "Key";
469
+ const _L = "Location";
470
+ const _LC = "LocaleCode";
471
+ const _LD = "ListDatasets";
472
+ const _LDR = "ListDatasetsRequest";
473
+ const _LDRi = "ListDatasetsResponse";
474
+ const _LGN = "LogGroupName";
475
+ const _LJ = "ListJobs";
476
+ const _LJR = "ListJobsRequest";
477
+ const _LJRR = "ListJobRunsRequest";
478
+ const _LJRRi = "ListJobRunsResponse";
479
+ const _LJRi = "ListJobsResponse";
480
+ const _LJRis = "ListJobRuns";
481
+ const _LMB = "LastModifiedBy";
482
+ const _LMD = "LastModifiedDate";
483
+ const _LMDC = "LastModifiedDateCondition";
484
+ const _LP = "ListProjects";
485
+ const _LPR = "ListProjectsRequest";
486
+ const _LPRi = "ListProjectsResponse";
487
+ const _LR = "ListRecipes";
488
+ const _LRR = "ListRecipesRequest";
489
+ const _LRRi = "ListRecipesResponse";
490
+ const _LRRis = "ListRulesetsRequest";
491
+ const _LRRist = "ListRulesetsResponse";
492
+ const _LRV = "ListRecipeVersions";
493
+ const _LRVR = "ListRecipeVersionsRequest";
494
+ const _LRVRi = "ListRecipeVersionsResponse";
495
+ const _LRi = "ListRulesets";
496
+ const _LS = "LogSubscription";
497
+ const _LSR = "ListSchedulesRequest";
498
+ const _LSRi = "ListSchedulesResponse";
499
+ const _LSi = "ListSchedules";
500
+ const _LTFR = "ListTagsForResource";
501
+ const _LTFRR = "ListTagsForResourceRequest";
502
+ const _LTFRRi = "ListTagsForResourceResponse";
503
+ const _M = "Message";
504
+ const _MC = "MaxCapacity";
505
+ const _MF = "MaxFiles";
506
+ const _ML = "MultiLine";
507
+ const _MOF = "MaxOutputFiles";
508
+ const _MR = "MaxRetries";
509
+ const _MRa = "MaxResults";
510
+ const _Me = "Metadata";
511
+ const _Mo = "Mode";
1996
512
  const _N = "Name";
1997
513
  const _NT = "NextToken";
514
+ const _O = "Outputs";
515
+ const _OB = "OpenedBy";
516
+ const _OBr = "OrderedBy";
517
+ const _OD = "OpenDate";
518
+ const _OFO = "OutputFormatOptions";
519
+ const _OL = "OutputLocation";
520
+ const _OLu = "OutputList";
521
+ const _Op = "Operation";
522
+ const _Or = "Order";
523
+ const _Ou = "Output";
524
+ const _Ov = "Overwrite";
525
+ const _Ove = "Overrides";
526
+ const _P = "Projects";
527
+ const _PB = "PublishedBy";
528
+ const _PC = "ProfileConfiguration";
529
+ const _PCa = "PartitionColumns";
530
+ const _PCr = "ProfileColumns";
531
+ const _PD = "PublishedDate";
532
+ const _PL = "ProjectList";
1998
533
  const _PN = "ProjectName";
1999
- const _RV = "RecipeVersion";
534
+ const _PO = "PathOptions";
535
+ const _PPM = "PathParametersMap";
536
+ const _PR = "PublishRecipe";
537
+ const _PRR = "PublishRecipeRequest";
538
+ const _PRRu = "PublishRecipeResponse";
539
+ const _Pa = "Parameters";
540
+ const _Pr = "Project";
541
+ const _Pre = "Preview";
542
+ const _QS = "QueryString";
543
+ const _R = "Regex";
544
+ const _RA = "RoleArn";
545
+ const _RAe = "ResourceArn";
546
+ const _RAec = "RecipeAction";
547
+ const _RAu = "RulesetArn";
548
+ const _RC = "RuleCount";
549
+ const _REL = "RecipeErrorList";
550
+ const _RI = "RunId";
551
+ const _RIL = "RulesetItemList";
552
+ const _RIu = "RulesetItem";
553
+ const _RL = "RecipeList";
554
+ const _RLu = "RuleList";
555
+ const _RN = "RecipeName";
556
+ const _RNFE = "ResourceNotFoundException";
557
+ const _RR = "RecipeReference";
558
+ const _RRo = "RowRange";
559
+ const _RS = "RecipeStep";
560
+ const _RSL = "RecipeStepList";
561
+ const _RV = "RecipeVersions";
562
+ const _RVED = "RecipeVersionErrorDetail";
563
+ const _RVe = "RecipeVersion";
564
+ const _Re = "Recipes";
565
+ const _Rec = "Recipe";
566
+ const _Res = "Result";
567
+ const _Ru = "Rules";
568
+ const _Rul = "Rulesets";
569
+ const _Rule = "Rule";
570
+ const _S = "Statistics";
571
+ const _SA = "SourceArn";
572
+ const _SB = "StartedBy";
573
+ const _SC = "StatisticsConfiguration";
574
+ const _SCI = "StartColumnIndex";
575
+ const _SI = "SheetIndexes";
576
+ const _SID = "S3InputDefinition";
577
+ const _SIt = "StepIndex";
578
+ const _SJR = "StartJobRun";
579
+ const _SJRR = "StartJobRunRequest";
580
+ const _SJRRt = "StartJobRunResponse";
581
+ const _SJRRto = "StopJobRunRequest";
582
+ const _SJRRtop = "StopJobRunResponse";
583
+ const _SJRt = "StopJobRun";
584
+ const _SL = "S3Location";
585
+ const _SLc = "ScheduleList";
586
+ const _SM = "SubstitutionMap";
587
+ const _SN = "SheetNames";
588
+ const _SO = "S3Options";
589
+ const _SOL = "StatisticOverrideList";
590
+ const _SOt = "StartedOn";
591
+ const _SOta = "StatisticOverride";
592
+ const _SPS = "StartProjectSession";
593
+ const _SPSA = "SendProjectSessionAction";
594
+ const _SPSAR = "SendProjectSessionActionRequest";
595
+ const _SPSARe = "SendProjectSessionActionResponse";
596
+ const _SPSR = "StartProjectSessionRequest";
597
+ const _SPSRt = "StartProjectSessionResponse";
598
+ const _SQEE = "ServiceQuotaExceededException";
599
+ const _SRI = "StartRowIndex";
600
+ const _SS = "SessionStatus";
601
+ const _STOO = "S3TableOutputOptions";
602
+ const _Sa = "Sample";
603
+ const _Sc = "Schedules";
604
+ const _Sch = "Schedule";
605
+ const _Se = "Selectors";
606
+ const _Si = "Size";
607
+ const _So = "Source";
608
+ const _St = "Steps";
609
+ const _Sta = "State";
610
+ const _Stat = "Statistic";
611
+ const _T = "Tags";
2000
612
  const _TA = "TargetArn";
613
+ const _TC = "TargetColumn";
614
+ const _TD = "TempDirectory";
2001
615
  const _TK = "TagKeys";
616
+ const _TN = "TableName";
617
+ const _TO = "TimezoneOffset";
618
+ const _TR = "TagResource";
619
+ const _TRR = "TagResourceRequest";
620
+ const _TRRa = "TagResourceResponse";
621
+ const _Th = "Threshold";
622
+ const _Ti = "Timeout";
623
+ const _Ty = "Type";
624
+ const _U = "Unit";
625
+ const _UD = "UpdateDataset";
626
+ const _UDR = "UpdateDatasetRequest";
627
+ const _UDRp = "UpdateDatasetResponse";
628
+ const _UP = "UpdateProject";
629
+ const _UPJ = "UpdateProfileJob";
630
+ const _UPJR = "UpdateProfileJobRequest";
631
+ const _UPJRp = "UpdateProfileJobResponse";
632
+ const _UPR = "UpdateProjectRequest";
633
+ const _UPRp = "UpdateProjectResponse";
634
+ const _UR = "UntagResource";
635
+ const _URJ = "UpdateRecipeJob";
636
+ const _URJR = "UpdateRecipeJobRequest";
637
+ const _URJRp = "UpdateRecipeJobResponse";
638
+ const _URR = "UntagResourceRequest";
639
+ const _URRn = "UntagResourceResponse";
640
+ const _URRp = "UpdateRecipeRequest";
641
+ const _URRpd = "UpdateRecipeResponse";
642
+ const _URRpda = "UpdateRulesetRequest";
643
+ const _URRpdat = "UpdateRulesetResponse";
644
+ const _URp = "UpdateRecipe";
645
+ const _URpd = "UpdateRuleset";
646
+ const _US = "UpdateSchedule";
647
+ const _USR = "UpdateScheduleRequest";
648
+ const _USRp = "UpdateScheduleResponse";
649
+ const _V = "Value";
650
+ const _VC = "ValidationConfigurations";
651
+ const _VCL = "ValidationConfigurationList";
652
+ const _VCa = "ValidationConfiguration";
653
+ const _VE = "ValidationException";
654
+ const _VF = "ViewFrame";
655
+ const _VM = "ValuesMap";
656
+ const _VMa = "ValidationMode";
657
+ const _c = "client";
2002
658
  const _dN = "datasetName";
659
+ const _e = "error";
660
+ const _h = "http";
661
+ const _hE = "httpError";
662
+ const _hQ = "httpQuery";
2003
663
  const _jN = "jobName";
2004
664
  const _mR = "maxResults";
2005
665
  const _n = "name";
2006
666
  const _nT = "nextToken";
2007
667
  const _pN = "projectName";
2008
668
  const _rV = "recipeVersion";
669
+ const _s = "server";
670
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.databrew";
2009
671
  const _tA = "targetArn";
2010
672
  const _tK = "tagKeys";
673
+ const n0 = "com.amazonaws.databrew";
674
+ var ClientSessionId = [0, n0, _CSI, 8, 0];
675
+ var AccessDeniedException = [
676
+ -3,
677
+ n0,
678
+ _ADE,
679
+ {
680
+ [_e]: _c,
681
+ [_hE]: 403,
682
+ },
683
+ [_M],
684
+ [0],
685
+ ];
686
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
687
+ var AllowedStatistics = [3, n0, _AS, 0, [_S], [64 | 0]];
688
+ var BatchDeleteRecipeVersionRequest = [3, n0, _BDRVR, 0, [_N, _RV], [[0, 1], 64 | 0]];
689
+ var BatchDeleteRecipeVersionResponse = [
690
+ 3,
691
+ n0,
692
+ _BDRVRa,
693
+ 0,
694
+ [_N, _E],
695
+ [0, () => RecipeErrorList],
696
+ ];
697
+ var ColumnSelector = [3, n0, _CS, 0, [_R, _N], [0, 0]];
698
+ var ColumnStatisticsConfiguration = [
699
+ 3,
700
+ n0,
701
+ _CSC,
702
+ 0,
703
+ [_Se, _S],
704
+ [() => ColumnSelectorList, () => StatisticsConfiguration],
705
+ ];
706
+ var ConditionExpression = [3, n0, _CE, 0, [_C, _V, _TC], [0, 0, 0]];
707
+ var ConflictException = [
708
+ -3,
709
+ n0,
710
+ _CEo,
711
+ {
712
+ [_e]: _c,
713
+ [_hE]: 409,
714
+ },
715
+ [_M],
716
+ [0],
717
+ ];
718
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
719
+ var CreateDatasetRequest = [
720
+ 3,
721
+ n0,
722
+ _CDR,
723
+ 0,
724
+ [_N, _F, _FO, _I, _PO, _T],
725
+ [0, 0, () => FormatOptions, () => Input, () => PathOptions, 128 | 0],
726
+ ];
727
+ var CreateDatasetResponse = [3, n0, _CDRr, 0, [_N], [0]];
728
+ var CreateProfileJobRequest = [
729
+ 3,
730
+ n0,
731
+ _CPJR,
732
+ 0,
733
+ [_DN, _EKA, _EM, _N, _LS, _MC, _MR, _OL, _Co, _VC, _RA, _T, _Ti, _JS],
734
+ [
735
+ 0,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 1,
741
+ 1,
742
+ () => S3Location,
743
+ () => ProfileConfiguration,
744
+ () => ValidationConfigurationList,
745
+ 0,
746
+ 128 | 0,
747
+ 1,
748
+ () => JobSample,
749
+ ],
750
+ ];
751
+ var CreateProfileJobResponse = [3, n0, _CPJRr, 0, [_N], [0]];
752
+ var CreateProjectRequest = [
753
+ 3,
754
+ n0,
755
+ _CPR,
756
+ 0,
757
+ [_DN, _N, _RN, _Sa, _RA, _T],
758
+ [0, 0, 0, () => Sample, 0, 128 | 0],
759
+ ];
760
+ var CreateProjectResponse = [3, n0, _CPRr, 0, [_N], [0]];
761
+ var CreateRecipeJobRequest = [
762
+ 3,
763
+ n0,
764
+ _CRJR,
765
+ 0,
766
+ [_DN, _EKA, _EM, _N, _LS, _MC, _MR, _O, _DCO, _DO, _PN, _RR, _RA, _T, _Ti],
767
+ [
768
+ 0,
769
+ 0,
770
+ 0,
771
+ 0,
772
+ 0,
773
+ 1,
774
+ 1,
775
+ () => OutputList,
776
+ () => DataCatalogOutputList,
777
+ () => DatabaseOutputList,
778
+ 0,
779
+ () => RecipeReference,
780
+ 0,
781
+ 128 | 0,
782
+ 1,
783
+ ],
784
+ ];
785
+ var CreateRecipeJobResponse = [3, n0, _CRJRr, 0, [_N], [0]];
786
+ var CreateRecipeRequest = [
787
+ 3,
788
+ n0,
789
+ _CRR,
790
+ 0,
791
+ [_D, _N, _St, _T],
792
+ [0, 0, () => RecipeStepList, 128 | 0],
793
+ ];
794
+ var CreateRecipeResponse = [3, n0, _CRRr, 0, [_N], [0]];
795
+ var CreateRulesetRequest = [
796
+ 3,
797
+ n0,
798
+ _CRRre,
799
+ 0,
800
+ [_N, _D, _TA, _Ru, _T],
801
+ [0, 0, 0, () => RuleList, 128 | 0],
802
+ ];
803
+ var CreateRulesetResponse = [3, n0, _CRRrea, 0, [_N], [0]];
804
+ var CreateScheduleRequest = [
805
+ 3,
806
+ n0,
807
+ _CSR,
808
+ 0,
809
+ [_JN, _CEr, _T, _N],
810
+ [64 | 0, 0, 128 | 0, 0],
811
+ ];
812
+ var CreateScheduleResponse = [3, n0, _CSRr, 0, [_N], [0]];
813
+ var CsvOptions = [3, n0, _CO, 0, [_De, _HR], [0, 2]];
814
+ var CsvOutputOptions = [3, n0, _COO, 0, [_De], [0]];
815
+ var DatabaseInputDefinition = [
816
+ 3,
817
+ n0,
818
+ _DID,
819
+ 0,
820
+ [_GCN, _DTN, _TD, _QS],
821
+ [0, 0, () => S3Location, 0],
822
+ ];
823
+ var DatabaseOutput = [
824
+ 3,
825
+ n0,
826
+ _DOa,
827
+ 0,
828
+ [_GCN, _DOat, _DOM],
829
+ [0, () => DatabaseTableOutputOptions, 0],
830
+ ];
831
+ var DatabaseTableOutputOptions = [3, n0, _DTOO, 0, [_TD, _TN], [() => S3Location, 0]];
832
+ var DataCatalogInputDefinition = [
833
+ 3,
834
+ n0,
835
+ _DCID,
836
+ 0,
837
+ [_CI, _DNa, _TN, _TD],
838
+ [0, 0, 0, () => S3Location],
839
+ ];
840
+ var DataCatalogOutput = [
841
+ 3,
842
+ n0,
843
+ _DCOa,
844
+ 0,
845
+ [_CI, _DNa, _TN, _SO, _DOat, _Ov],
846
+ [0, 0, 0, () => S3TableOutputOptions, () => DatabaseTableOutputOptions, 2],
847
+ ];
848
+ var Dataset = [
849
+ 3,
850
+ n0,
851
+ _Da,
852
+ 0,
853
+ [_AI, _CB, _CD, _N, _F, _FO, _I, _LMD, _LMB, _So, _PO, _T, _RAe],
854
+ [0, 0, 4, 0, 0, () => FormatOptions, () => Input, 4, 0, 0, () => PathOptions, 128 | 0, 0],
855
+ ];
856
+ var DatasetParameter = [
857
+ 3,
858
+ n0,
859
+ _DP,
860
+ 0,
861
+ [_N, _Ty, _DOate, _CC, _Fi],
862
+ [0, 0, () => DatetimeOptions, 2, () => FilterExpression],
863
+ ];
864
+ var DatetimeOptions = [3, n0, _DOate, 0, [_F, _TO, _LC], [0, 0, 0]];
865
+ var DeleteDatasetRequest = [3, n0, _DDR, 0, [_N], [[0, 1]]];
866
+ var DeleteDatasetResponse = [3, n0, _DDRe, 0, [_N], [0]];
867
+ var DeleteJobRequest = [3, n0, _DJR, 0, [_N], [[0, 1]]];
868
+ var DeleteJobResponse = [3, n0, _DJRe, 0, [_N], [0]];
869
+ var DeleteProjectRequest = [3, n0, _DPR, 0, [_N], [[0, 1]]];
870
+ var DeleteProjectResponse = [3, n0, _DPRe, 0, [_N], [0]];
871
+ var DeleteRecipeVersionRequest = [
872
+ 3,
873
+ n0,
874
+ _DRVR,
875
+ 0,
876
+ [_N, _RVe],
877
+ [
878
+ [0, 1],
879
+ [0, 1],
880
+ ],
881
+ ];
882
+ var DeleteRecipeVersionResponse = [3, n0, _DRVRe, 0, [_N, _RVe], [0, 0]];
883
+ var DeleteRulesetRequest = [3, n0, _DRR, 0, [_N], [[0, 1]]];
884
+ var DeleteRulesetResponse = [3, n0, _DRRe, 0, [_N], [0]];
885
+ var DeleteScheduleRequest = [3, n0, _DSR, 0, [_N], [[0, 1]]];
886
+ var DeleteScheduleResponse = [3, n0, _DSRe, 0, [_N], [0]];
887
+ var DescribeDatasetRequest = [3, n0, _DDRes, 0, [_N], [[0, 1]]];
888
+ var DescribeDatasetResponse = [
889
+ 3,
890
+ n0,
891
+ _DDResc,
892
+ 0,
893
+ [_CB, _CD, _N, _F, _FO, _I, _LMD, _LMB, _So, _PO, _T, _RAe],
894
+ [0, 4, 0, 0, () => FormatOptions, () => Input, 4, 0, 0, () => PathOptions, 128 | 0, 0],
895
+ ];
896
+ var DescribeJobRequest = [3, n0, _DJRes, 0, [_N], [[0, 1]]];
897
+ var DescribeJobResponse = [
898
+ 3,
899
+ n0,
900
+ _DJResc,
901
+ 0,
902
+ [
903
+ _CD,
904
+ _CB,
905
+ _DN,
906
+ _EKA,
907
+ _EM,
908
+ _N,
909
+ _Ty,
910
+ _LMB,
911
+ _LMD,
912
+ _LS,
913
+ _MC,
914
+ _MR,
915
+ _O,
916
+ _DCO,
917
+ _DO,
918
+ _PN,
919
+ _PC,
920
+ _VC,
921
+ _RR,
922
+ _RAe,
923
+ _RA,
924
+ _T,
925
+ _Ti,
926
+ _JS,
927
+ ],
928
+ [
929
+ 4,
930
+ 0,
931
+ 0,
932
+ 0,
933
+ 0,
934
+ 0,
935
+ 0,
936
+ 0,
937
+ 4,
938
+ 0,
939
+ 1,
940
+ 1,
941
+ () => OutputList,
942
+ () => DataCatalogOutputList,
943
+ () => DatabaseOutputList,
944
+ 0,
945
+ () => ProfileConfiguration,
946
+ () => ValidationConfigurationList,
947
+ () => RecipeReference,
948
+ 0,
949
+ 0,
950
+ 128 | 0,
951
+ 1,
952
+ () => JobSample,
953
+ ],
954
+ ];
955
+ var DescribeJobRunRequest = [
956
+ 3,
957
+ n0,
958
+ _DJRR,
959
+ 0,
960
+ [_N, _RI],
961
+ [
962
+ [0, 1],
963
+ [0, 1],
964
+ ],
965
+ ];
966
+ var DescribeJobRunResponse = [
967
+ 3,
968
+ n0,
969
+ _DJRRe,
970
+ 0,
971
+ [_A, _COo, _DN, _EMr, _ET, _JNo, _PC, _VC, _RI, _Sta, _LS, _LGN, _O, _DCO, _DO, _RR, _SB, _SOt, _JS],
972
+ [
973
+ 1,
974
+ 4,
975
+ 0,
976
+ 0,
977
+ 1,
978
+ 0,
979
+ () => ProfileConfiguration,
980
+ () => ValidationConfigurationList,
981
+ 0,
982
+ 0,
983
+ 0,
984
+ 0,
985
+ () => OutputList,
986
+ () => DataCatalogOutputList,
987
+ () => DatabaseOutputList,
988
+ () => RecipeReference,
989
+ 0,
990
+ 4,
991
+ () => JobSample,
992
+ ],
993
+ ];
994
+ var DescribeProjectRequest = [3, n0, _DPRes, 0, [_N], [[0, 1]]];
995
+ var DescribeProjectResponse = [
996
+ 3,
997
+ n0,
998
+ _DPResc,
999
+ 0,
1000
+ [_CD, _CB, _DN, _LMD, _LMB, _N, _RN, _RAe, _Sa, _RA, _T, _SS, _OB, _OD],
1001
+ [4, 0, 0, 4, 0, 0, 0, 0, () => Sample, 0, 128 | 0, 0, 0, 4],
1002
+ ];
1003
+ var DescribeRecipeRequest = [
1004
+ 3,
1005
+ n0,
1006
+ _DRRes,
1007
+ 0,
1008
+ [_N, _RVe],
1009
+ [
1010
+ [0, 1],
1011
+ [
1012
+ 0,
1013
+ {
1014
+ [_hQ]: _rV,
1015
+ },
1016
+ ],
1017
+ ],
1018
+ ];
1019
+ var DescribeRecipeResponse = [
1020
+ 3,
1021
+ n0,
1022
+ _DRResc,
1023
+ 0,
1024
+ [_CB, _CD, _LMB, _LMD, _PN, _PB, _PD, _D, _N, _St, _T, _RAe, _RVe],
1025
+ [0, 4, 0, 4, 0, 0, 4, 0, 0, () => RecipeStepList, 128 | 0, 0, 0],
1026
+ ];
1027
+ var DescribeRulesetRequest = [3, n0, _DRRescr, 0, [_N], [[0, 1]]];
1028
+ var DescribeRulesetResponse = [
1029
+ 3,
1030
+ n0,
1031
+ _DRRescri,
1032
+ 0,
1033
+ [_N, _D, _TA, _Ru, _CD, _CB, _LMB, _LMD, _RAe, _T],
1034
+ [0, 0, 0, () => RuleList, 4, 0, 0, 4, 0, 128 | 0],
1035
+ ];
1036
+ var DescribeScheduleRequest = [3, n0, _DSRes, 0, [_N], [[0, 1]]];
1037
+ var DescribeScheduleResponse = [
1038
+ 3,
1039
+ n0,
1040
+ _DSResc,
1041
+ 0,
1042
+ [_CD, _CB, _JN, _LMB, _LMD, _RAe, _CEr, _T, _N],
1043
+ [4, 0, 64 | 0, 0, 4, 0, 0, 128 | 0, 0],
1044
+ ];
1045
+ var EntityDetectorConfiguration = [
1046
+ 3,
1047
+ n0,
1048
+ _EDC,
1049
+ 0,
1050
+ [_ETn, _AS],
1051
+ [64 | 0, () => AllowedStatisticList],
1052
+ ];
1053
+ var ExcelOptions = [3, n0, _EO, 0, [_SN, _SI, _HR], [64 | 0, 64 | 1, 2]];
1054
+ var FilesLimit = [3, n0, _FL, 0, [_MF, _OBr, _Or], [1, 0, 0]];
1055
+ var FilterExpression = [3, n0, _FE, 0, [_Ex, _VM], [0, 128 | 0]];
1056
+ var FormatOptions = [
1057
+ 3,
1058
+ n0,
1059
+ _FO,
1060
+ 0,
1061
+ [_J, _Exc, _Cs],
1062
+ [() => JsonOptions, () => ExcelOptions, () => CsvOptions],
1063
+ ];
1064
+ var Input = [
1065
+ 3,
1066
+ n0,
1067
+ _I,
1068
+ 0,
1069
+ [_SID, _DCID, _DID, _Me],
1070
+ [() => S3Location, () => DataCatalogInputDefinition, () => DatabaseInputDefinition, () => Metadata],
1071
+ ];
1072
+ var InternalServerException = [
1073
+ -3,
1074
+ n0,
1075
+ _ISE,
1076
+ {
1077
+ [_e]: _s,
1078
+ [_hE]: 500,
1079
+ },
1080
+ [_M],
1081
+ [0],
1082
+ ];
1083
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1084
+ var Job = [
1085
+ 3,
1086
+ n0,
1087
+ _Jo,
1088
+ 0,
1089
+ [
1090
+ _AI,
1091
+ _CB,
1092
+ _CD,
1093
+ _DN,
1094
+ _EKA,
1095
+ _EM,
1096
+ _N,
1097
+ _Ty,
1098
+ _LMB,
1099
+ _LMD,
1100
+ _LS,
1101
+ _MC,
1102
+ _MR,
1103
+ _O,
1104
+ _DCO,
1105
+ _DO,
1106
+ _PN,
1107
+ _RR,
1108
+ _RAe,
1109
+ _RA,
1110
+ _Ti,
1111
+ _T,
1112
+ _JS,
1113
+ _VC,
1114
+ ],
1115
+ [
1116
+ 0,
1117
+ 0,
1118
+ 4,
1119
+ 0,
1120
+ 0,
1121
+ 0,
1122
+ 0,
1123
+ 0,
1124
+ 0,
1125
+ 4,
1126
+ 0,
1127
+ 1,
1128
+ 1,
1129
+ () => OutputList,
1130
+ () => DataCatalogOutputList,
1131
+ () => DatabaseOutputList,
1132
+ 0,
1133
+ () => RecipeReference,
1134
+ 0,
1135
+ 0,
1136
+ 1,
1137
+ 128 | 0,
1138
+ () => JobSample,
1139
+ () => ValidationConfigurationList,
1140
+ ],
1141
+ ];
1142
+ var JobRun = [
1143
+ 3,
1144
+ n0,
1145
+ _JR,
1146
+ 0,
1147
+ [_A, _COo, _DN, _EMr, _ET, _JNo, _RI, _Sta, _LS, _LGN, _O, _DCO, _DO, _RR, _SB, _SOt, _JS, _VC],
1148
+ [
1149
+ 1,
1150
+ 4,
1151
+ 0,
1152
+ 0,
1153
+ 1,
1154
+ 0,
1155
+ 0,
1156
+ 0,
1157
+ 0,
1158
+ 0,
1159
+ () => OutputList,
1160
+ () => DataCatalogOutputList,
1161
+ () => DatabaseOutputList,
1162
+ () => RecipeReference,
1163
+ 0,
1164
+ 4,
1165
+ () => JobSample,
1166
+ () => ValidationConfigurationList,
1167
+ ],
1168
+ ];
1169
+ var JobSample = [3, n0, _JS, 0, [_Mo, _Si], [0, 1]];
1170
+ var JsonOptions = [3, n0, _JO, 0, [_ML], [2]];
1171
+ var ListDatasetsRequest = [
1172
+ 3,
1173
+ n0,
1174
+ _LDR,
1175
+ 0,
1176
+ [_MRa, _NT],
1177
+ [
1178
+ [
1179
+ 1,
1180
+ {
1181
+ [_hQ]: _mR,
1182
+ },
1183
+ ],
1184
+ [
1185
+ 0,
1186
+ {
1187
+ [_hQ]: _nT,
1188
+ },
1189
+ ],
1190
+ ],
1191
+ ];
1192
+ var ListDatasetsResponse = [3, n0, _LDRi, 0, [_Dat, _NT], [() => DatasetList, 0]];
1193
+ var ListJobRunsRequest = [
1194
+ 3,
1195
+ n0,
1196
+ _LJRR,
1197
+ 0,
1198
+ [_N, _MRa, _NT],
1199
+ [
1200
+ [0, 1],
1201
+ [
1202
+ 1,
1203
+ {
1204
+ [_hQ]: _mR,
1205
+ },
1206
+ ],
1207
+ [
1208
+ 0,
1209
+ {
1210
+ [_hQ]: _nT,
1211
+ },
1212
+ ],
1213
+ ],
1214
+ ];
1215
+ var ListJobRunsResponse = [3, n0, _LJRRi, 0, [_JRo, _NT], [() => JobRunList, 0]];
1216
+ var ListJobsRequest = [
1217
+ 3,
1218
+ n0,
1219
+ _LJR,
1220
+ 0,
1221
+ [_DN, _MRa, _NT, _PN],
1222
+ [
1223
+ [
1224
+ 0,
1225
+ {
1226
+ [_hQ]: _dN,
1227
+ },
1228
+ ],
1229
+ [
1230
+ 1,
1231
+ {
1232
+ [_hQ]: _mR,
1233
+ },
1234
+ ],
1235
+ [
1236
+ 0,
1237
+ {
1238
+ [_hQ]: _nT,
1239
+ },
1240
+ ],
1241
+ [
1242
+ 0,
1243
+ {
1244
+ [_hQ]: _pN,
1245
+ },
1246
+ ],
1247
+ ],
1248
+ ];
1249
+ var ListJobsResponse = [3, n0, _LJRi, 0, [_Job, _NT], [() => JobList, 0]];
1250
+ var ListProjectsRequest = [
1251
+ 3,
1252
+ n0,
1253
+ _LPR,
1254
+ 0,
1255
+ [_NT, _MRa],
1256
+ [
1257
+ [
1258
+ 0,
1259
+ {
1260
+ [_hQ]: _nT,
1261
+ },
1262
+ ],
1263
+ [
1264
+ 1,
1265
+ {
1266
+ [_hQ]: _mR,
1267
+ },
1268
+ ],
1269
+ ],
1270
+ ];
1271
+ var ListProjectsResponse = [3, n0, _LPRi, 0, [_P, _NT], [() => ProjectList, 0]];
1272
+ var ListRecipesRequest = [
1273
+ 3,
1274
+ n0,
1275
+ _LRR,
1276
+ 0,
1277
+ [_MRa, _NT, _RVe],
1278
+ [
1279
+ [
1280
+ 1,
1281
+ {
1282
+ [_hQ]: _mR,
1283
+ },
1284
+ ],
1285
+ [
1286
+ 0,
1287
+ {
1288
+ [_hQ]: _nT,
1289
+ },
1290
+ ],
1291
+ [
1292
+ 0,
1293
+ {
1294
+ [_hQ]: _rV,
1295
+ },
1296
+ ],
1297
+ ],
1298
+ ];
1299
+ var ListRecipesResponse = [3, n0, _LRRi, 0, [_Re, _NT], [() => RecipeList, 0]];
1300
+ var ListRecipeVersionsRequest = [
1301
+ 3,
1302
+ n0,
1303
+ _LRVR,
1304
+ 0,
1305
+ [_MRa, _NT, _N],
1306
+ [
1307
+ [
1308
+ 1,
1309
+ {
1310
+ [_hQ]: _mR,
1311
+ },
1312
+ ],
1313
+ [
1314
+ 0,
1315
+ {
1316
+ [_hQ]: _nT,
1317
+ },
1318
+ ],
1319
+ [
1320
+ 0,
1321
+ {
1322
+ [_hQ]: _n,
1323
+ },
1324
+ ],
1325
+ ],
1326
+ ];
1327
+ var ListRecipeVersionsResponse = [3, n0, _LRVRi, 0, [_NT, _Re], [0, () => RecipeList]];
1328
+ var ListRulesetsRequest = [
1329
+ 3,
1330
+ n0,
1331
+ _LRRis,
1332
+ 0,
1333
+ [_TA, _MRa, _NT],
1334
+ [
1335
+ [
1336
+ 0,
1337
+ {
1338
+ [_hQ]: _tA,
1339
+ },
1340
+ ],
1341
+ [
1342
+ 1,
1343
+ {
1344
+ [_hQ]: _mR,
1345
+ },
1346
+ ],
1347
+ [
1348
+ 0,
1349
+ {
1350
+ [_hQ]: _nT,
1351
+ },
1352
+ ],
1353
+ ],
1354
+ ];
1355
+ var ListRulesetsResponse = [3, n0, _LRRist, 0, [_Rul, _NT], [() => RulesetItemList, 0]];
1356
+ var ListSchedulesRequest = [
1357
+ 3,
1358
+ n0,
1359
+ _LSR,
1360
+ 0,
1361
+ [_JNo, _MRa, _NT],
1362
+ [
1363
+ [
1364
+ 0,
1365
+ {
1366
+ [_hQ]: _jN,
1367
+ },
1368
+ ],
1369
+ [
1370
+ 1,
1371
+ {
1372
+ [_hQ]: _mR,
1373
+ },
1374
+ ],
1375
+ [
1376
+ 0,
1377
+ {
1378
+ [_hQ]: _nT,
1379
+ },
1380
+ ],
1381
+ ],
1382
+ ];
1383
+ var ListSchedulesResponse = [3, n0, _LSRi, 0, [_Sc, _NT], [() => ScheduleList, 0]];
1384
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
1385
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
1386
+ var Metadata = [3, n0, _Me, 0, [_SA], [0]];
1387
+ var Output = [
1388
+ 3,
1389
+ n0,
1390
+ _Ou,
1391
+ 0,
1392
+ [_CF, _F, _PCa, _L, _Ov, _FO, _MOF],
1393
+ [0, 0, 64 | 0, () => S3Location, 2, () => OutputFormatOptions, 1],
1394
+ ];
1395
+ var OutputFormatOptions = [3, n0, _OFO, 0, [_Cs], [() => CsvOutputOptions]];
1396
+ var PathOptions = [
1397
+ 3,
1398
+ n0,
1399
+ _PO,
1400
+ 0,
1401
+ [_LMDC, _FL, _Pa],
1402
+ [() => FilterExpression, () => FilesLimit, () => PathParametersMap],
1403
+ ];
1404
+ var ProfileConfiguration = [
1405
+ 3,
1406
+ n0,
1407
+ _PC,
1408
+ 0,
1409
+ [_DSC, _PCr, _CSCo, _EDC],
1410
+ [
1411
+ () => StatisticsConfiguration,
1412
+ () => ColumnSelectorList,
1413
+ () => ColumnStatisticsConfigurationList,
1414
+ () => EntityDetectorConfiguration,
1415
+ ],
1416
+ ];
1417
+ var Project = [
1418
+ 3,
1419
+ n0,
1420
+ _Pr,
1421
+ 0,
1422
+ [_AI, _CD, _CB, _DN, _LMD, _LMB, _N, _RN, _RAe, _Sa, _T, _RA, _OB, _OD],
1423
+ [0, 4, 0, 0, 4, 0, 0, 0, 0, () => Sample, 128 | 0, 0, 0, 4],
1424
+ ];
1425
+ var PublishRecipeRequest = [3, n0, _PRR, 0, [_D, _N], [0, [0, 1]]];
1426
+ var PublishRecipeResponse = [3, n0, _PRRu, 0, [_N], [0]];
1427
+ var Recipe = [
1428
+ 3,
1429
+ n0,
1430
+ _Rec,
1431
+ 0,
1432
+ [_CB, _CD, _LMB, _LMD, _PN, _PB, _PD, _D, _N, _RAe, _St, _T, _RVe],
1433
+ [0, 4, 0, 4, 0, 0, 4, 0, 0, 0, () => RecipeStepList, 128 | 0, 0],
1434
+ ];
1435
+ var RecipeAction = [3, n0, _RAec, 0, [_Op, _Pa], [0, 128 | 0]];
1436
+ var RecipeReference = [3, n0, _RR, 0, [_N, _RVe], [0, 0]];
1437
+ var RecipeStep = [
1438
+ 3,
1439
+ n0,
1440
+ _RS,
1441
+ 0,
1442
+ [_Ac, _CEon],
1443
+ [() => RecipeAction, () => ConditionExpressionList],
1444
+ ];
1445
+ var RecipeVersionErrorDetail = [3, n0, _RVED, 0, [_EC, _EMr, _RVe], [0, 0, 0]];
1446
+ var ResourceNotFoundException = [
1447
+ -3,
1448
+ n0,
1449
+ _RNFE,
1450
+ {
1451
+ [_e]: _c,
1452
+ [_hE]: 404,
1453
+ },
1454
+ [_M],
1455
+ [0],
1456
+ ];
1457
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1458
+ var Rule = [
1459
+ 3,
1460
+ n0,
1461
+ _Rule,
1462
+ 0,
1463
+ [_N, _Di, _CEh, _SM, _Th, _CSo],
1464
+ [0, 2, 0, 128 | 0, () => Threshold, () => ColumnSelectorList],
1465
+ ];
1466
+ var RulesetItem = [
1467
+ 3,
1468
+ n0,
1469
+ _RIu,
1470
+ 0,
1471
+ [_AI, _CB, _CD, _D, _LMB, _LMD, _N, _RAe, _RC, _T, _TA],
1472
+ [0, 0, 4, 0, 0, 4, 0, 0, 1, 128 | 0, 0],
1473
+ ];
1474
+ var S3Location = [3, n0, _SL, 0, [_B, _K, _BO], [0, 0, 0]];
1475
+ var S3TableOutputOptions = [3, n0, _STOO, 0, [_L], [() => S3Location]];
1476
+ var Sample = [3, n0, _Sa, 0, [_Si, _Ty], [1, 0]];
1477
+ var Schedule = [
1478
+ 3,
1479
+ n0,
1480
+ _Sch,
1481
+ 0,
1482
+ [_AI, _CB, _CD, _JN, _LMB, _LMD, _RAe, _CEr, _T, _N],
1483
+ [0, 0, 4, 64 | 0, 0, 4, 0, 0, 128 | 0, 0],
1484
+ ];
1485
+ var SendProjectSessionActionRequest = [
1486
+ 3,
1487
+ n0,
1488
+ _SPSAR,
1489
+ 0,
1490
+ [_Pre, _N, _RS, _SIt, _CSI, _VF],
1491
+ [2, [0, 1], () => RecipeStep, 1, [() => ClientSessionId, 0], () => ViewFrame],
1492
+ ];
1493
+ var SendProjectSessionActionResponse = [3, n0, _SPSARe, 0, [_Res, _N, _AIc], [0, 0, 1]];
1494
+ var ServiceQuotaExceededException = [
1495
+ -3,
1496
+ n0,
1497
+ _SQEE,
1498
+ {
1499
+ [_e]: _c,
1500
+ [_hE]: 402,
1501
+ },
1502
+ [_M],
1503
+ [0],
1504
+ ];
1505
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1506
+ var StartJobRunRequest = [3, n0, _SJRR, 0, [_N], [[0, 1]]];
1507
+ var StartJobRunResponse = [3, n0, _SJRRt, 0, [_RI], [0]];
1508
+ var StartProjectSessionRequest = [3, n0, _SPSR, 0, [_N, _AC], [[0, 1], 2]];
1509
+ var StartProjectSessionResponse = [
1510
+ 3,
1511
+ n0,
1512
+ _SPSRt,
1513
+ 0,
1514
+ [_N, _CSI],
1515
+ [0, [() => ClientSessionId, 0]],
1516
+ ];
1517
+ var StatisticOverride = [3, n0, _SOta, 0, [_Stat, _Pa], [0, 128 | 0]];
1518
+ var StatisticsConfiguration = [
1519
+ 3,
1520
+ n0,
1521
+ _SC,
1522
+ 0,
1523
+ [_IS, _Ove],
1524
+ [64 | 0, () => StatisticOverrideList],
1525
+ ];
1526
+ var StopJobRunRequest = [
1527
+ 3,
1528
+ n0,
1529
+ _SJRRto,
1530
+ 0,
1531
+ [_N, _RI],
1532
+ [
1533
+ [0, 1],
1534
+ [0, 1],
1535
+ ],
1536
+ ];
1537
+ var StopJobRunResponse = [3, n0, _SJRRtop, 0, [_RI], [0]];
1538
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _T], [[0, 1], 128 | 0]];
1539
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1540
+ var Threshold = [3, n0, _Th, 0, [_V, _Ty, _U], [1, 0, 0]];
1541
+ var UntagResourceRequest = [
1542
+ 3,
1543
+ n0,
1544
+ _URR,
1545
+ 0,
1546
+ [_RAe, _TK],
1547
+ [
1548
+ [0, 1],
1549
+ [
1550
+ 64 | 0,
1551
+ {
1552
+ [_hQ]: _tK,
1553
+ },
1554
+ ],
1555
+ ],
1556
+ ];
1557
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1558
+ var UpdateDatasetRequest = [
1559
+ 3,
1560
+ n0,
1561
+ _UDR,
1562
+ 0,
1563
+ [_N, _F, _FO, _I, _PO],
1564
+ [[0, 1], 0, () => FormatOptions, () => Input, () => PathOptions],
1565
+ ];
1566
+ var UpdateDatasetResponse = [3, n0, _UDRp, 0, [_N], [0]];
1567
+ var UpdateProfileJobRequest = [
1568
+ 3,
1569
+ n0,
1570
+ _UPJR,
1571
+ 0,
1572
+ [_Co, _EKA, _EM, _N, _LS, _MC, _MR, _OL, _VC, _RA, _Ti, _JS],
1573
+ [
1574
+ () => ProfileConfiguration,
1575
+ 0,
1576
+ 0,
1577
+ [0, 1],
1578
+ 0,
1579
+ 1,
1580
+ 1,
1581
+ () => S3Location,
1582
+ () => ValidationConfigurationList,
1583
+ 0,
1584
+ 1,
1585
+ () => JobSample,
1586
+ ],
1587
+ ];
1588
+ var UpdateProfileJobResponse = [3, n0, _UPJRp, 0, [_N], [0]];
1589
+ var UpdateProjectRequest = [3, n0, _UPR, 0, [_Sa, _RA, _N], [() => Sample, 0, [0, 1]]];
1590
+ var UpdateProjectResponse = [3, n0, _UPRp, 0, [_LMD, _N], [4, 0]];
1591
+ var UpdateRecipeJobRequest = [
1592
+ 3,
1593
+ n0,
1594
+ _URJR,
1595
+ 0,
1596
+ [_EKA, _EM, _N, _LS, _MC, _MR, _O, _DCO, _DO, _RA, _Ti],
1597
+ [0, 0, [0, 1], 0, 1, 1, () => OutputList, () => DataCatalogOutputList, () => DatabaseOutputList, 0, 1],
1598
+ ];
1599
+ var UpdateRecipeJobResponse = [3, n0, _URJRp, 0, [_N], [0]];
1600
+ var UpdateRecipeRequest = [
1601
+ 3,
1602
+ n0,
1603
+ _URRp,
1604
+ 0,
1605
+ [_D, _N, _St],
1606
+ [0, [0, 1], () => RecipeStepList],
1607
+ ];
1608
+ var UpdateRecipeResponse = [3, n0, _URRpd, 0, [_N], [0]];
1609
+ var UpdateRulesetRequest = [
1610
+ 3,
1611
+ n0,
1612
+ _URRpda,
1613
+ 0,
1614
+ [_N, _D, _Ru],
1615
+ [[0, 1], 0, () => RuleList],
1616
+ ];
1617
+ var UpdateRulesetResponse = [3, n0, _URRpdat, 0, [_N], [0]];
1618
+ var UpdateScheduleRequest = [3, n0, _USR, 0, [_JN, _CEr, _N], [64 | 0, 0, [0, 1]]];
1619
+ var UpdateScheduleResponse = [3, n0, _USRp, 0, [_N], [0]];
1620
+ var ValidationConfiguration = [3, n0, _VCa, 0, [_RAu, _VMa], [0, 0]];
1621
+ var ValidationException = [
1622
+ -3,
1623
+ n0,
1624
+ _VE,
1625
+ {
1626
+ [_e]: _c,
1627
+ [_hE]: 400,
1628
+ },
1629
+ [_M],
1630
+ [0],
1631
+ ];
1632
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1633
+ var ViewFrame = [
1634
+ 3,
1635
+ n0,
1636
+ _VF,
1637
+ 0,
1638
+ [_SCI, _CR, _HC, _SRI, _RRo, _An],
1639
+ [1, 1, 64 | 0, 1, 1, 0],
1640
+ ];
1641
+ var DataBrewServiceException = [-3, _sm, "DataBrewServiceException", 0, [], []];
1642
+ schema.TypeRegistry.for(_sm).registerError(DataBrewServiceException, DataBrewServiceException$1);
1643
+ var AllowedStatisticList = [1, n0, _ASL, 0, () => AllowedStatistics];
1644
+ var ColumnSelectorList = [1, n0, _CSL, 0, () => ColumnSelector];
1645
+ var ColumnStatisticsConfigurationList = [1, n0, _CSCL, 0, () => ColumnStatisticsConfiguration];
1646
+ var ConditionExpressionList = [1, n0, _CEL, 0, () => ConditionExpression];
1647
+ var DatabaseOutputList = [1, n0, _DOL, 0, () => DatabaseOutput];
1648
+ var DataCatalogOutputList = [1, n0, _DCOL, 0, () => DataCatalogOutput];
1649
+ var DatasetList = [1, n0, _DL, 0, () => Dataset];
1650
+ var JobList = [1, n0, _JL, 0, () => Job];
1651
+ var JobRunList = [1, n0, _JRL, 0, () => JobRun];
1652
+ var OutputList = [1, n0, _OLu, 0, () => Output];
1653
+ var ProjectList = [1, n0, _PL, 0, () => Project];
1654
+ var RecipeErrorList = [1, n0, _REL, 0, () => RecipeVersionErrorDetail];
1655
+ var RecipeList = [1, n0, _RL, 0, () => Recipe];
1656
+ var RecipeStepList = [1, n0, _RSL, 0, () => RecipeStep];
1657
+ var RuleList = [1, n0, _RLu, 0, () => Rule];
1658
+ var RulesetItemList = [1, n0, _RIL, 0, () => RulesetItem];
1659
+ var ScheduleList = [1, n0, _SLc, 0, () => Schedule];
1660
+ var StatisticOverrideList = [1, n0, _SOL, 0, () => StatisticOverride];
1661
+ var ValidationConfigurationList = [1, n0, _VCL, 0, () => ValidationConfiguration];
1662
+ var PathParametersMap = [2, n0, _PPM, 0, 0, () => DatasetParameter];
1663
+ var BatchDeleteRecipeVersion = [
1664
+ 9,
1665
+ n0,
1666
+ _BDRV,
1667
+ {
1668
+ [_h]: ["POST", "/recipes/{Name}/batchDeleteRecipeVersion", 200],
1669
+ },
1670
+ () => BatchDeleteRecipeVersionRequest,
1671
+ () => BatchDeleteRecipeVersionResponse,
1672
+ ];
1673
+ var CreateDataset = [
1674
+ 9,
1675
+ n0,
1676
+ _CDr,
1677
+ {
1678
+ [_h]: ["POST", "/datasets", 200],
1679
+ },
1680
+ () => CreateDatasetRequest,
1681
+ () => CreateDatasetResponse,
1682
+ ];
1683
+ var CreateProfileJob = [
1684
+ 9,
1685
+ n0,
1686
+ _CPJ,
1687
+ {
1688
+ [_h]: ["POST", "/profileJobs", 200],
1689
+ },
1690
+ () => CreateProfileJobRequest,
1691
+ () => CreateProfileJobResponse,
1692
+ ];
1693
+ var CreateProject = [
1694
+ 9,
1695
+ n0,
1696
+ _CP,
1697
+ {
1698
+ [_h]: ["POST", "/projects", 200],
1699
+ },
1700
+ () => CreateProjectRequest,
1701
+ () => CreateProjectResponse,
1702
+ ];
1703
+ var CreateRecipe = [
1704
+ 9,
1705
+ n0,
1706
+ _CRr,
1707
+ {
1708
+ [_h]: ["POST", "/recipes", 200],
1709
+ },
1710
+ () => CreateRecipeRequest,
1711
+ () => CreateRecipeResponse,
1712
+ ];
1713
+ var CreateRecipeJob = [
1714
+ 9,
1715
+ n0,
1716
+ _CRJ,
1717
+ {
1718
+ [_h]: ["POST", "/recipeJobs", 200],
1719
+ },
1720
+ () => CreateRecipeJobRequest,
1721
+ () => CreateRecipeJobResponse,
1722
+ ];
1723
+ var CreateRuleset = [
1724
+ 9,
1725
+ n0,
1726
+ _CRre,
1727
+ {
1728
+ [_h]: ["POST", "/rulesets", 200],
1729
+ },
1730
+ () => CreateRulesetRequest,
1731
+ () => CreateRulesetResponse,
1732
+ ];
1733
+ var CreateSchedule = [
1734
+ 9,
1735
+ n0,
1736
+ _CSr,
1737
+ {
1738
+ [_h]: ["POST", "/schedules", 200],
1739
+ },
1740
+ () => CreateScheduleRequest,
1741
+ () => CreateScheduleResponse,
1742
+ ];
1743
+ var DeleteDataset = [
1744
+ 9,
1745
+ n0,
1746
+ _DD,
1747
+ {
1748
+ [_h]: ["DELETE", "/datasets/{Name}", 200],
1749
+ },
1750
+ () => DeleteDatasetRequest,
1751
+ () => DeleteDatasetResponse,
1752
+ ];
1753
+ var DeleteJob = [
1754
+ 9,
1755
+ n0,
1756
+ _DJ,
1757
+ {
1758
+ [_h]: ["DELETE", "/jobs/{Name}", 200],
1759
+ },
1760
+ () => DeleteJobRequest,
1761
+ () => DeleteJobResponse,
1762
+ ];
1763
+ var DeleteProject = [
1764
+ 9,
1765
+ n0,
1766
+ _DPe,
1767
+ {
1768
+ [_h]: ["DELETE", "/projects/{Name}", 200],
1769
+ },
1770
+ () => DeleteProjectRequest,
1771
+ () => DeleteProjectResponse,
1772
+ ];
1773
+ var DeleteRecipeVersion = [
1774
+ 9,
1775
+ n0,
1776
+ _DRV,
1777
+ {
1778
+ [_h]: ["DELETE", "/recipes/{Name}/recipeVersion/{RecipeVersion}", 200],
1779
+ },
1780
+ () => DeleteRecipeVersionRequest,
1781
+ () => DeleteRecipeVersionResponse,
1782
+ ];
1783
+ var DeleteRuleset = [
1784
+ 9,
1785
+ n0,
1786
+ _DR,
1787
+ {
1788
+ [_h]: ["DELETE", "/rulesets/{Name}", 200],
1789
+ },
1790
+ () => DeleteRulesetRequest,
1791
+ () => DeleteRulesetResponse,
1792
+ ];
1793
+ var DeleteSchedule = [
1794
+ 9,
1795
+ n0,
1796
+ _DS,
1797
+ {
1798
+ [_h]: ["DELETE", "/schedules/{Name}", 200],
1799
+ },
1800
+ () => DeleteScheduleRequest,
1801
+ () => DeleteScheduleResponse,
1802
+ ];
1803
+ var DescribeDataset = [
1804
+ 9,
1805
+ n0,
1806
+ _DDe,
1807
+ {
1808
+ [_h]: ["GET", "/datasets/{Name}", 200],
1809
+ },
1810
+ () => DescribeDatasetRequest,
1811
+ () => DescribeDatasetResponse,
1812
+ ];
1813
+ var DescribeJob = [
1814
+ 9,
1815
+ n0,
1816
+ _DJe,
1817
+ {
1818
+ [_h]: ["GET", "/jobs/{Name}", 200],
1819
+ },
1820
+ () => DescribeJobRequest,
1821
+ () => DescribeJobResponse,
1822
+ ];
1823
+ var DescribeJobRun = [
1824
+ 9,
1825
+ n0,
1826
+ _DJRescr,
1827
+ {
1828
+ [_h]: ["GET", "/jobs/{Name}/jobRun/{RunId}", 200],
1829
+ },
1830
+ () => DescribeJobRunRequest,
1831
+ () => DescribeJobRunResponse,
1832
+ ];
1833
+ var DescribeProject = [
1834
+ 9,
1835
+ n0,
1836
+ _DPes,
1837
+ {
1838
+ [_h]: ["GET", "/projects/{Name}", 200],
1839
+ },
1840
+ () => DescribeProjectRequest,
1841
+ () => DescribeProjectResponse,
1842
+ ];
1843
+ var DescribeRecipe = [
1844
+ 9,
1845
+ n0,
1846
+ _DRe,
1847
+ {
1848
+ [_h]: ["GET", "/recipes/{Name}", 200],
1849
+ },
1850
+ () => DescribeRecipeRequest,
1851
+ () => DescribeRecipeResponse,
1852
+ ];
1853
+ var DescribeRuleset = [
1854
+ 9,
1855
+ n0,
1856
+ _DRes,
1857
+ {
1858
+ [_h]: ["GET", "/rulesets/{Name}", 200],
1859
+ },
1860
+ () => DescribeRulesetRequest,
1861
+ () => DescribeRulesetResponse,
1862
+ ];
1863
+ var DescribeSchedule = [
1864
+ 9,
1865
+ n0,
1866
+ _DSe,
1867
+ {
1868
+ [_h]: ["GET", "/schedules/{Name}", 200],
1869
+ },
1870
+ () => DescribeScheduleRequest,
1871
+ () => DescribeScheduleResponse,
1872
+ ];
1873
+ var ListDatasets = [
1874
+ 9,
1875
+ n0,
1876
+ _LD,
1877
+ {
1878
+ [_h]: ["GET", "/datasets", 200],
1879
+ },
1880
+ () => ListDatasetsRequest,
1881
+ () => ListDatasetsResponse,
1882
+ ];
1883
+ var ListJobRuns = [
1884
+ 9,
1885
+ n0,
1886
+ _LJRis,
1887
+ {
1888
+ [_h]: ["GET", "/jobs/{Name}/jobRuns", 200],
1889
+ },
1890
+ () => ListJobRunsRequest,
1891
+ () => ListJobRunsResponse,
1892
+ ];
1893
+ var ListJobs = [
1894
+ 9,
1895
+ n0,
1896
+ _LJ,
1897
+ {
1898
+ [_h]: ["GET", "/jobs", 200],
1899
+ },
1900
+ () => ListJobsRequest,
1901
+ () => ListJobsResponse,
1902
+ ];
1903
+ var ListProjects = [
1904
+ 9,
1905
+ n0,
1906
+ _LP,
1907
+ {
1908
+ [_h]: ["GET", "/projects", 200],
1909
+ },
1910
+ () => ListProjectsRequest,
1911
+ () => ListProjectsResponse,
1912
+ ];
1913
+ var ListRecipes = [
1914
+ 9,
1915
+ n0,
1916
+ _LR,
1917
+ {
1918
+ [_h]: ["GET", "/recipes", 200],
1919
+ },
1920
+ () => ListRecipesRequest,
1921
+ () => ListRecipesResponse,
1922
+ ];
1923
+ var ListRecipeVersions = [
1924
+ 9,
1925
+ n0,
1926
+ _LRV,
1927
+ {
1928
+ [_h]: ["GET", "/recipeVersions", 200],
1929
+ },
1930
+ () => ListRecipeVersionsRequest,
1931
+ () => ListRecipeVersionsResponse,
1932
+ ];
1933
+ var ListRulesets = [
1934
+ 9,
1935
+ n0,
1936
+ _LRi,
1937
+ {
1938
+ [_h]: ["GET", "/rulesets", 200],
1939
+ },
1940
+ () => ListRulesetsRequest,
1941
+ () => ListRulesetsResponse,
1942
+ ];
1943
+ var ListSchedules = [
1944
+ 9,
1945
+ n0,
1946
+ _LSi,
1947
+ {
1948
+ [_h]: ["GET", "/schedules", 200],
1949
+ },
1950
+ () => ListSchedulesRequest,
1951
+ () => ListSchedulesResponse,
1952
+ ];
1953
+ var ListTagsForResource = [
1954
+ 9,
1955
+ n0,
1956
+ _LTFR,
1957
+ {
1958
+ [_h]: ["GET", "/tags/{ResourceArn}", 200],
1959
+ },
1960
+ () => ListTagsForResourceRequest,
1961
+ () => ListTagsForResourceResponse,
1962
+ ];
1963
+ var PublishRecipe = [
1964
+ 9,
1965
+ n0,
1966
+ _PR,
1967
+ {
1968
+ [_h]: ["POST", "/recipes/{Name}/publishRecipe", 200],
1969
+ },
1970
+ () => PublishRecipeRequest,
1971
+ () => PublishRecipeResponse,
1972
+ ];
1973
+ var SendProjectSessionAction = [
1974
+ 9,
1975
+ n0,
1976
+ _SPSA,
1977
+ {
1978
+ [_h]: ["PUT", "/projects/{Name}/sendProjectSessionAction", 200],
1979
+ },
1980
+ () => SendProjectSessionActionRequest,
1981
+ () => SendProjectSessionActionResponse,
1982
+ ];
1983
+ var StartJobRun = [
1984
+ 9,
1985
+ n0,
1986
+ _SJR,
1987
+ {
1988
+ [_h]: ["POST", "/jobs/{Name}/startJobRun", 200],
1989
+ },
1990
+ () => StartJobRunRequest,
1991
+ () => StartJobRunResponse,
1992
+ ];
1993
+ var StartProjectSession = [
1994
+ 9,
1995
+ n0,
1996
+ _SPS,
1997
+ {
1998
+ [_h]: ["PUT", "/projects/{Name}/startProjectSession", 200],
1999
+ },
2000
+ () => StartProjectSessionRequest,
2001
+ () => StartProjectSessionResponse,
2002
+ ];
2003
+ var StopJobRun = [
2004
+ 9,
2005
+ n0,
2006
+ _SJRt,
2007
+ {
2008
+ [_h]: ["POST", "/jobs/{Name}/jobRun/{RunId}/stopJobRun", 200],
2009
+ },
2010
+ () => StopJobRunRequest,
2011
+ () => StopJobRunResponse,
2012
+ ];
2013
+ var TagResource = [
2014
+ 9,
2015
+ n0,
2016
+ _TR,
2017
+ {
2018
+ [_h]: ["POST", "/tags/{ResourceArn}", 200],
2019
+ },
2020
+ () => TagResourceRequest,
2021
+ () => TagResourceResponse,
2022
+ ];
2023
+ var UntagResource = [
2024
+ 9,
2025
+ n0,
2026
+ _UR,
2027
+ {
2028
+ [_h]: ["DELETE", "/tags/{ResourceArn}", 200],
2029
+ },
2030
+ () => UntagResourceRequest,
2031
+ () => UntagResourceResponse,
2032
+ ];
2033
+ var UpdateDataset = [
2034
+ 9,
2035
+ n0,
2036
+ _UD,
2037
+ {
2038
+ [_h]: ["PUT", "/datasets/{Name}", 200],
2039
+ },
2040
+ () => UpdateDatasetRequest,
2041
+ () => UpdateDatasetResponse,
2042
+ ];
2043
+ var UpdateProfileJob = [
2044
+ 9,
2045
+ n0,
2046
+ _UPJ,
2047
+ {
2048
+ [_h]: ["PUT", "/profileJobs/{Name}", 200],
2049
+ },
2050
+ () => UpdateProfileJobRequest,
2051
+ () => UpdateProfileJobResponse,
2052
+ ];
2053
+ var UpdateProject = [
2054
+ 9,
2055
+ n0,
2056
+ _UP,
2057
+ {
2058
+ [_h]: ["PUT", "/projects/{Name}", 200],
2059
+ },
2060
+ () => UpdateProjectRequest,
2061
+ () => UpdateProjectResponse,
2062
+ ];
2063
+ var UpdateRecipe = [
2064
+ 9,
2065
+ n0,
2066
+ _URp,
2067
+ {
2068
+ [_h]: ["PUT", "/recipes/{Name}", 200],
2069
+ },
2070
+ () => UpdateRecipeRequest,
2071
+ () => UpdateRecipeResponse,
2072
+ ];
2073
+ var UpdateRecipeJob = [
2074
+ 9,
2075
+ n0,
2076
+ _URJ,
2077
+ {
2078
+ [_h]: ["PUT", "/recipeJobs/{Name}", 200],
2079
+ },
2080
+ () => UpdateRecipeJobRequest,
2081
+ () => UpdateRecipeJobResponse,
2082
+ ];
2083
+ var UpdateRuleset = [
2084
+ 9,
2085
+ n0,
2086
+ _URpd,
2087
+ {
2088
+ [_h]: ["PUT", "/rulesets/{Name}", 200],
2089
+ },
2090
+ () => UpdateRulesetRequest,
2091
+ () => UpdateRulesetResponse,
2092
+ ];
2093
+ var UpdateSchedule = [
2094
+ 9,
2095
+ n0,
2096
+ _US,
2097
+ {
2098
+ [_h]: ["PUT", "/schedules/{Name}", 200],
2099
+ },
2100
+ () => UpdateScheduleRequest,
2101
+ () => UpdateScheduleResponse,
2102
+ ];
2011
2103
 
2012
2104
  class BatchDeleteRecipeVersionCommand extends smithyClient.Command
2013
2105
  .classBuilder()
2014
2106
  .ep(commonParams)
2015
2107
  .m(function (Command, cs, config, o) {
2016
- return [
2017
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2018
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2019
- ];
2108
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2020
2109
  })
2021
2110
  .s("AWSGlueDataBrew", "BatchDeleteRecipeVersion", {})
2022
2111
  .n("DataBrewClient", "BatchDeleteRecipeVersionCommand")
2023
- .f(void 0, void 0)
2024
- .ser(se_BatchDeleteRecipeVersionCommand)
2025
- .de(de_BatchDeleteRecipeVersionCommand)
2112
+ .sc(BatchDeleteRecipeVersion)
2026
2113
  .build() {
2027
2114
  }
2028
2115
 
@@ -2030,16 +2117,11 @@ class CreateDatasetCommand extends smithyClient.Command
2030
2117
  .classBuilder()
2031
2118
  .ep(commonParams)
2032
2119
  .m(function (Command, cs, config, o) {
2033
- return [
2034
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2035
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2036
- ];
2120
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2037
2121
  })
2038
2122
  .s("AWSGlueDataBrew", "CreateDataset", {})
2039
2123
  .n("DataBrewClient", "CreateDatasetCommand")
2040
- .f(void 0, void 0)
2041
- .ser(se_CreateDatasetCommand)
2042
- .de(de_CreateDatasetCommand)
2124
+ .sc(CreateDataset)
2043
2125
  .build() {
2044
2126
  }
2045
2127
 
@@ -2047,16 +2129,11 @@ class CreateProfileJobCommand extends smithyClient.Command
2047
2129
  .classBuilder()
2048
2130
  .ep(commonParams)
2049
2131
  .m(function (Command, cs, config, o) {
2050
- return [
2051
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2052
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2053
- ];
2132
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2054
2133
  })
2055
2134
  .s("AWSGlueDataBrew", "CreateProfileJob", {})
2056
2135
  .n("DataBrewClient", "CreateProfileJobCommand")
2057
- .f(void 0, void 0)
2058
- .ser(se_CreateProfileJobCommand)
2059
- .de(de_CreateProfileJobCommand)
2136
+ .sc(CreateProfileJob)
2060
2137
  .build() {
2061
2138
  }
2062
2139
 
@@ -2064,16 +2141,11 @@ class CreateProjectCommand extends smithyClient.Command
2064
2141
  .classBuilder()
2065
2142
  .ep(commonParams)
2066
2143
  .m(function (Command, cs, config, o) {
2067
- return [
2068
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2069
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2070
- ];
2144
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2071
2145
  })
2072
2146
  .s("AWSGlueDataBrew", "CreateProject", {})
2073
2147
  .n("DataBrewClient", "CreateProjectCommand")
2074
- .f(void 0, void 0)
2075
- .ser(se_CreateProjectCommand)
2076
- .de(de_CreateProjectCommand)
2148
+ .sc(CreateProject)
2077
2149
  .build() {
2078
2150
  }
2079
2151
 
@@ -2081,16 +2153,11 @@ class CreateRecipeCommand extends smithyClient.Command
2081
2153
  .classBuilder()
2082
2154
  .ep(commonParams)
2083
2155
  .m(function (Command, cs, config, o) {
2084
- return [
2085
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2086
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2087
- ];
2156
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2088
2157
  })
2089
2158
  .s("AWSGlueDataBrew", "CreateRecipe", {})
2090
2159
  .n("DataBrewClient", "CreateRecipeCommand")
2091
- .f(void 0, void 0)
2092
- .ser(se_CreateRecipeCommand)
2093
- .de(de_CreateRecipeCommand)
2160
+ .sc(CreateRecipe)
2094
2161
  .build() {
2095
2162
  }
2096
2163
 
@@ -2098,16 +2165,11 @@ class CreateRecipeJobCommand extends smithyClient.Command
2098
2165
  .classBuilder()
2099
2166
  .ep(commonParams)
2100
2167
  .m(function (Command, cs, config, o) {
2101
- return [
2102
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2103
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2104
- ];
2168
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2105
2169
  })
2106
2170
  .s("AWSGlueDataBrew", "CreateRecipeJob", {})
2107
2171
  .n("DataBrewClient", "CreateRecipeJobCommand")
2108
- .f(void 0, void 0)
2109
- .ser(se_CreateRecipeJobCommand)
2110
- .de(de_CreateRecipeJobCommand)
2172
+ .sc(CreateRecipeJob)
2111
2173
  .build() {
2112
2174
  }
2113
2175
 
@@ -2115,16 +2177,11 @@ class CreateRulesetCommand extends smithyClient.Command
2115
2177
  .classBuilder()
2116
2178
  .ep(commonParams)
2117
2179
  .m(function (Command, cs, config, o) {
2118
- return [
2119
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2120
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2121
- ];
2180
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2122
2181
  })
2123
2182
  .s("AWSGlueDataBrew", "CreateRuleset", {})
2124
2183
  .n("DataBrewClient", "CreateRulesetCommand")
2125
- .f(void 0, void 0)
2126
- .ser(se_CreateRulesetCommand)
2127
- .de(de_CreateRulesetCommand)
2184
+ .sc(CreateRuleset)
2128
2185
  .build() {
2129
2186
  }
2130
2187
 
@@ -2132,16 +2189,11 @@ class CreateScheduleCommand extends smithyClient.Command
2132
2189
  .classBuilder()
2133
2190
  .ep(commonParams)
2134
2191
  .m(function (Command, cs, config, o) {
2135
- return [
2136
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2137
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2138
- ];
2192
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2139
2193
  })
2140
2194
  .s("AWSGlueDataBrew", "CreateSchedule", {})
2141
2195
  .n("DataBrewClient", "CreateScheduleCommand")
2142
- .f(void 0, void 0)
2143
- .ser(se_CreateScheduleCommand)
2144
- .de(de_CreateScheduleCommand)
2196
+ .sc(CreateSchedule)
2145
2197
  .build() {
2146
2198
  }
2147
2199
 
@@ -2149,16 +2201,11 @@ class DeleteDatasetCommand extends smithyClient.Command
2149
2201
  .classBuilder()
2150
2202
  .ep(commonParams)
2151
2203
  .m(function (Command, cs, config, o) {
2152
- return [
2153
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2154
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2155
- ];
2204
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2156
2205
  })
2157
2206
  .s("AWSGlueDataBrew", "DeleteDataset", {})
2158
2207
  .n("DataBrewClient", "DeleteDatasetCommand")
2159
- .f(void 0, void 0)
2160
- .ser(se_DeleteDatasetCommand)
2161
- .de(de_DeleteDatasetCommand)
2208
+ .sc(DeleteDataset)
2162
2209
  .build() {
2163
2210
  }
2164
2211
 
@@ -2166,16 +2213,11 @@ class DeleteJobCommand extends smithyClient.Command
2166
2213
  .classBuilder()
2167
2214
  .ep(commonParams)
2168
2215
  .m(function (Command, cs, config, o) {
2169
- return [
2170
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2171
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2172
- ];
2216
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2173
2217
  })
2174
2218
  .s("AWSGlueDataBrew", "DeleteJob", {})
2175
2219
  .n("DataBrewClient", "DeleteJobCommand")
2176
- .f(void 0, void 0)
2177
- .ser(se_DeleteJobCommand)
2178
- .de(de_DeleteJobCommand)
2220
+ .sc(DeleteJob)
2179
2221
  .build() {
2180
2222
  }
2181
2223
 
@@ -2183,16 +2225,11 @@ class DeleteProjectCommand extends smithyClient.Command
2183
2225
  .classBuilder()
2184
2226
  .ep(commonParams)
2185
2227
  .m(function (Command, cs, config, o) {
2186
- return [
2187
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2188
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2189
- ];
2228
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2190
2229
  })
2191
2230
  .s("AWSGlueDataBrew", "DeleteProject", {})
2192
2231
  .n("DataBrewClient", "DeleteProjectCommand")
2193
- .f(void 0, void 0)
2194
- .ser(se_DeleteProjectCommand)
2195
- .de(de_DeleteProjectCommand)
2232
+ .sc(DeleteProject)
2196
2233
  .build() {
2197
2234
  }
2198
2235
 
@@ -2200,16 +2237,11 @@ class DeleteRecipeVersionCommand extends smithyClient.Command
2200
2237
  .classBuilder()
2201
2238
  .ep(commonParams)
2202
2239
  .m(function (Command, cs, config, o) {
2203
- return [
2204
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2205
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2206
- ];
2240
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2207
2241
  })
2208
2242
  .s("AWSGlueDataBrew", "DeleteRecipeVersion", {})
2209
2243
  .n("DataBrewClient", "DeleteRecipeVersionCommand")
2210
- .f(void 0, void 0)
2211
- .ser(se_DeleteRecipeVersionCommand)
2212
- .de(de_DeleteRecipeVersionCommand)
2244
+ .sc(DeleteRecipeVersion)
2213
2245
  .build() {
2214
2246
  }
2215
2247
 
@@ -2217,16 +2249,11 @@ class DeleteRulesetCommand extends smithyClient.Command
2217
2249
  .classBuilder()
2218
2250
  .ep(commonParams)
2219
2251
  .m(function (Command, cs, config, o) {
2220
- return [
2221
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2222
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2223
- ];
2252
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2224
2253
  })
2225
2254
  .s("AWSGlueDataBrew", "DeleteRuleset", {})
2226
2255
  .n("DataBrewClient", "DeleteRulesetCommand")
2227
- .f(void 0, void 0)
2228
- .ser(se_DeleteRulesetCommand)
2229
- .de(de_DeleteRulesetCommand)
2256
+ .sc(DeleteRuleset)
2230
2257
  .build() {
2231
2258
  }
2232
2259
 
@@ -2234,16 +2261,11 @@ class DeleteScheduleCommand extends smithyClient.Command
2234
2261
  .classBuilder()
2235
2262
  .ep(commonParams)
2236
2263
  .m(function (Command, cs, config, o) {
2237
- return [
2238
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2239
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2240
- ];
2264
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2241
2265
  })
2242
2266
  .s("AWSGlueDataBrew", "DeleteSchedule", {})
2243
2267
  .n("DataBrewClient", "DeleteScheduleCommand")
2244
- .f(void 0, void 0)
2245
- .ser(se_DeleteScheduleCommand)
2246
- .de(de_DeleteScheduleCommand)
2268
+ .sc(DeleteSchedule)
2247
2269
  .build() {
2248
2270
  }
2249
2271
 
@@ -2251,16 +2273,11 @@ class DescribeDatasetCommand extends smithyClient.Command
2251
2273
  .classBuilder()
2252
2274
  .ep(commonParams)
2253
2275
  .m(function (Command, cs, config, o) {
2254
- return [
2255
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2256
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2257
- ];
2276
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2258
2277
  })
2259
2278
  .s("AWSGlueDataBrew", "DescribeDataset", {})
2260
2279
  .n("DataBrewClient", "DescribeDatasetCommand")
2261
- .f(void 0, void 0)
2262
- .ser(se_DescribeDatasetCommand)
2263
- .de(de_DescribeDatasetCommand)
2280
+ .sc(DescribeDataset)
2264
2281
  .build() {
2265
2282
  }
2266
2283
 
@@ -2268,16 +2285,11 @@ class DescribeJobCommand extends smithyClient.Command
2268
2285
  .classBuilder()
2269
2286
  .ep(commonParams)
2270
2287
  .m(function (Command, cs, config, o) {
2271
- return [
2272
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2273
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2274
- ];
2288
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2275
2289
  })
2276
2290
  .s("AWSGlueDataBrew", "DescribeJob", {})
2277
2291
  .n("DataBrewClient", "DescribeJobCommand")
2278
- .f(void 0, void 0)
2279
- .ser(se_DescribeJobCommand)
2280
- .de(de_DescribeJobCommand)
2292
+ .sc(DescribeJob)
2281
2293
  .build() {
2282
2294
  }
2283
2295
 
@@ -2285,16 +2297,11 @@ class DescribeJobRunCommand extends smithyClient.Command
2285
2297
  .classBuilder()
2286
2298
  .ep(commonParams)
2287
2299
  .m(function (Command, cs, config, o) {
2288
- return [
2289
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2290
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2291
- ];
2300
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2292
2301
  })
2293
2302
  .s("AWSGlueDataBrew", "DescribeJobRun", {})
2294
2303
  .n("DataBrewClient", "DescribeJobRunCommand")
2295
- .f(void 0, void 0)
2296
- .ser(se_DescribeJobRunCommand)
2297
- .de(de_DescribeJobRunCommand)
2304
+ .sc(DescribeJobRun)
2298
2305
  .build() {
2299
2306
  }
2300
2307
 
@@ -2302,16 +2309,11 @@ class DescribeProjectCommand extends smithyClient.Command
2302
2309
  .classBuilder()
2303
2310
  .ep(commonParams)
2304
2311
  .m(function (Command, cs, config, o) {
2305
- return [
2306
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2307
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2308
- ];
2312
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2309
2313
  })
2310
2314
  .s("AWSGlueDataBrew", "DescribeProject", {})
2311
2315
  .n("DataBrewClient", "DescribeProjectCommand")
2312
- .f(void 0, void 0)
2313
- .ser(se_DescribeProjectCommand)
2314
- .de(de_DescribeProjectCommand)
2316
+ .sc(DescribeProject)
2315
2317
  .build() {
2316
2318
  }
2317
2319
 
@@ -2319,16 +2321,11 @@ class DescribeRecipeCommand extends smithyClient.Command
2319
2321
  .classBuilder()
2320
2322
  .ep(commonParams)
2321
2323
  .m(function (Command, cs, config, o) {
2322
- return [
2323
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2324
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2325
- ];
2324
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2326
2325
  })
2327
2326
  .s("AWSGlueDataBrew", "DescribeRecipe", {})
2328
2327
  .n("DataBrewClient", "DescribeRecipeCommand")
2329
- .f(void 0, void 0)
2330
- .ser(se_DescribeRecipeCommand)
2331
- .de(de_DescribeRecipeCommand)
2328
+ .sc(DescribeRecipe)
2332
2329
  .build() {
2333
2330
  }
2334
2331
 
@@ -2336,16 +2333,11 @@ class DescribeRulesetCommand extends smithyClient.Command
2336
2333
  .classBuilder()
2337
2334
  .ep(commonParams)
2338
2335
  .m(function (Command, cs, config, o) {
2339
- return [
2340
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2341
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2342
- ];
2336
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2343
2337
  })
2344
2338
  .s("AWSGlueDataBrew", "DescribeRuleset", {})
2345
2339
  .n("DataBrewClient", "DescribeRulesetCommand")
2346
- .f(void 0, void 0)
2347
- .ser(se_DescribeRulesetCommand)
2348
- .de(de_DescribeRulesetCommand)
2340
+ .sc(DescribeRuleset)
2349
2341
  .build() {
2350
2342
  }
2351
2343
 
@@ -2353,16 +2345,11 @@ class DescribeScheduleCommand extends smithyClient.Command
2353
2345
  .classBuilder()
2354
2346
  .ep(commonParams)
2355
2347
  .m(function (Command, cs, config, o) {
2356
- return [
2357
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2358
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2359
- ];
2348
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2360
2349
  })
2361
2350
  .s("AWSGlueDataBrew", "DescribeSchedule", {})
2362
2351
  .n("DataBrewClient", "DescribeScheduleCommand")
2363
- .f(void 0, void 0)
2364
- .ser(se_DescribeScheduleCommand)
2365
- .de(de_DescribeScheduleCommand)
2352
+ .sc(DescribeSchedule)
2366
2353
  .build() {
2367
2354
  }
2368
2355
 
@@ -2370,16 +2357,11 @@ class ListDatasetsCommand extends smithyClient.Command
2370
2357
  .classBuilder()
2371
2358
  .ep(commonParams)
2372
2359
  .m(function (Command, cs, config, o) {
2373
- return [
2374
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2375
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2376
- ];
2360
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2377
2361
  })
2378
2362
  .s("AWSGlueDataBrew", "ListDatasets", {})
2379
2363
  .n("DataBrewClient", "ListDatasetsCommand")
2380
- .f(void 0, void 0)
2381
- .ser(se_ListDatasetsCommand)
2382
- .de(de_ListDatasetsCommand)
2364
+ .sc(ListDatasets)
2383
2365
  .build() {
2384
2366
  }
2385
2367
 
@@ -2387,16 +2369,11 @@ class ListJobRunsCommand extends smithyClient.Command
2387
2369
  .classBuilder()
2388
2370
  .ep(commonParams)
2389
2371
  .m(function (Command, cs, config, o) {
2390
- return [
2391
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2392
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2393
- ];
2372
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2394
2373
  })
2395
2374
  .s("AWSGlueDataBrew", "ListJobRuns", {})
2396
2375
  .n("DataBrewClient", "ListJobRunsCommand")
2397
- .f(void 0, void 0)
2398
- .ser(se_ListJobRunsCommand)
2399
- .de(de_ListJobRunsCommand)
2376
+ .sc(ListJobRuns)
2400
2377
  .build() {
2401
2378
  }
2402
2379
 
@@ -2404,16 +2381,11 @@ class ListJobsCommand extends smithyClient.Command
2404
2381
  .classBuilder()
2405
2382
  .ep(commonParams)
2406
2383
  .m(function (Command, cs, config, o) {
2407
- return [
2408
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2409
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2410
- ];
2384
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2411
2385
  })
2412
2386
  .s("AWSGlueDataBrew", "ListJobs", {})
2413
2387
  .n("DataBrewClient", "ListJobsCommand")
2414
- .f(void 0, void 0)
2415
- .ser(se_ListJobsCommand)
2416
- .de(de_ListJobsCommand)
2388
+ .sc(ListJobs)
2417
2389
  .build() {
2418
2390
  }
2419
2391
 
@@ -2421,16 +2393,11 @@ class ListProjectsCommand extends smithyClient.Command
2421
2393
  .classBuilder()
2422
2394
  .ep(commonParams)
2423
2395
  .m(function (Command, cs, config, o) {
2424
- return [
2425
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2426
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2427
- ];
2396
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2428
2397
  })
2429
2398
  .s("AWSGlueDataBrew", "ListProjects", {})
2430
2399
  .n("DataBrewClient", "ListProjectsCommand")
2431
- .f(void 0, void 0)
2432
- .ser(se_ListProjectsCommand)
2433
- .de(de_ListProjectsCommand)
2400
+ .sc(ListProjects)
2434
2401
  .build() {
2435
2402
  }
2436
2403
 
@@ -2438,16 +2405,11 @@ class ListRecipesCommand extends smithyClient.Command
2438
2405
  .classBuilder()
2439
2406
  .ep(commonParams)
2440
2407
  .m(function (Command, cs, config, o) {
2441
- return [
2442
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2443
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2444
- ];
2408
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2445
2409
  })
2446
2410
  .s("AWSGlueDataBrew", "ListRecipes", {})
2447
2411
  .n("DataBrewClient", "ListRecipesCommand")
2448
- .f(void 0, void 0)
2449
- .ser(se_ListRecipesCommand)
2450
- .de(de_ListRecipesCommand)
2412
+ .sc(ListRecipes)
2451
2413
  .build() {
2452
2414
  }
2453
2415
 
@@ -2455,16 +2417,11 @@ class ListRecipeVersionsCommand extends smithyClient.Command
2455
2417
  .classBuilder()
2456
2418
  .ep(commonParams)
2457
2419
  .m(function (Command, cs, config, o) {
2458
- return [
2459
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2460
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2461
- ];
2420
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2462
2421
  })
2463
2422
  .s("AWSGlueDataBrew", "ListRecipeVersions", {})
2464
2423
  .n("DataBrewClient", "ListRecipeVersionsCommand")
2465
- .f(void 0, void 0)
2466
- .ser(se_ListRecipeVersionsCommand)
2467
- .de(de_ListRecipeVersionsCommand)
2424
+ .sc(ListRecipeVersions)
2468
2425
  .build() {
2469
2426
  }
2470
2427
 
@@ -2472,16 +2429,11 @@ class ListRulesetsCommand extends smithyClient.Command
2472
2429
  .classBuilder()
2473
2430
  .ep(commonParams)
2474
2431
  .m(function (Command, cs, config, o) {
2475
- return [
2476
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2477
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2478
- ];
2432
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2479
2433
  })
2480
2434
  .s("AWSGlueDataBrew", "ListRulesets", {})
2481
2435
  .n("DataBrewClient", "ListRulesetsCommand")
2482
- .f(void 0, void 0)
2483
- .ser(se_ListRulesetsCommand)
2484
- .de(de_ListRulesetsCommand)
2436
+ .sc(ListRulesets)
2485
2437
  .build() {
2486
2438
  }
2487
2439
 
@@ -2489,16 +2441,11 @@ class ListSchedulesCommand extends smithyClient.Command
2489
2441
  .classBuilder()
2490
2442
  .ep(commonParams)
2491
2443
  .m(function (Command, cs, config, o) {
2492
- return [
2493
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2494
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2495
- ];
2444
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2496
2445
  })
2497
2446
  .s("AWSGlueDataBrew", "ListSchedules", {})
2498
2447
  .n("DataBrewClient", "ListSchedulesCommand")
2499
- .f(void 0, void 0)
2500
- .ser(se_ListSchedulesCommand)
2501
- .de(de_ListSchedulesCommand)
2448
+ .sc(ListSchedules)
2502
2449
  .build() {
2503
2450
  }
2504
2451
 
@@ -2506,16 +2453,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
2506
2453
  .classBuilder()
2507
2454
  .ep(commonParams)
2508
2455
  .m(function (Command, cs, config, o) {
2509
- return [
2510
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2511
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2512
- ];
2456
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2513
2457
  })
2514
2458
  .s("AWSGlueDataBrew", "ListTagsForResource", {})
2515
2459
  .n("DataBrewClient", "ListTagsForResourceCommand")
2516
- .f(void 0, void 0)
2517
- .ser(se_ListTagsForResourceCommand)
2518
- .de(de_ListTagsForResourceCommand)
2460
+ .sc(ListTagsForResource)
2519
2461
  .build() {
2520
2462
  }
2521
2463
 
@@ -2523,16 +2465,11 @@ class PublishRecipeCommand extends smithyClient.Command
2523
2465
  .classBuilder()
2524
2466
  .ep(commonParams)
2525
2467
  .m(function (Command, cs, config, o) {
2526
- return [
2527
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2528
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2529
- ];
2468
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2530
2469
  })
2531
2470
  .s("AWSGlueDataBrew", "PublishRecipe", {})
2532
2471
  .n("DataBrewClient", "PublishRecipeCommand")
2533
- .f(void 0, void 0)
2534
- .ser(se_PublishRecipeCommand)
2535
- .de(de_PublishRecipeCommand)
2472
+ .sc(PublishRecipe)
2536
2473
  .build() {
2537
2474
  }
2538
2475
 
@@ -2540,16 +2477,11 @@ class SendProjectSessionActionCommand extends smithyClient.Command
2540
2477
  .classBuilder()
2541
2478
  .ep(commonParams)
2542
2479
  .m(function (Command, cs, config, o) {
2543
- return [
2544
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2545
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2546
- ];
2480
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2547
2481
  })
2548
2482
  .s("AWSGlueDataBrew", "SendProjectSessionAction", {})
2549
2483
  .n("DataBrewClient", "SendProjectSessionActionCommand")
2550
- .f(SendProjectSessionActionRequestFilterSensitiveLog, void 0)
2551
- .ser(se_SendProjectSessionActionCommand)
2552
- .de(de_SendProjectSessionActionCommand)
2484
+ .sc(SendProjectSessionAction)
2553
2485
  .build() {
2554
2486
  }
2555
2487
 
@@ -2557,16 +2489,11 @@ class StartJobRunCommand extends smithyClient.Command
2557
2489
  .classBuilder()
2558
2490
  .ep(commonParams)
2559
2491
  .m(function (Command, cs, config, o) {
2560
- return [
2561
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2562
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2563
- ];
2492
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2564
2493
  })
2565
2494
  .s("AWSGlueDataBrew", "StartJobRun", {})
2566
2495
  .n("DataBrewClient", "StartJobRunCommand")
2567
- .f(void 0, void 0)
2568
- .ser(se_StartJobRunCommand)
2569
- .de(de_StartJobRunCommand)
2496
+ .sc(StartJobRun)
2570
2497
  .build() {
2571
2498
  }
2572
2499
 
@@ -2574,16 +2501,11 @@ class StartProjectSessionCommand extends smithyClient.Command
2574
2501
  .classBuilder()
2575
2502
  .ep(commonParams)
2576
2503
  .m(function (Command, cs, config, o) {
2577
- return [
2578
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2579
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2580
- ];
2504
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2581
2505
  })
2582
2506
  .s("AWSGlueDataBrew", "StartProjectSession", {})
2583
2507
  .n("DataBrewClient", "StartProjectSessionCommand")
2584
- .f(void 0, StartProjectSessionResponseFilterSensitiveLog)
2585
- .ser(se_StartProjectSessionCommand)
2586
- .de(de_StartProjectSessionCommand)
2508
+ .sc(StartProjectSession)
2587
2509
  .build() {
2588
2510
  }
2589
2511
 
@@ -2591,16 +2513,11 @@ class StopJobRunCommand extends smithyClient.Command
2591
2513
  .classBuilder()
2592
2514
  .ep(commonParams)
2593
2515
  .m(function (Command, cs, config, o) {
2594
- return [
2595
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2596
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2597
- ];
2516
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2598
2517
  })
2599
2518
  .s("AWSGlueDataBrew", "StopJobRun", {})
2600
2519
  .n("DataBrewClient", "StopJobRunCommand")
2601
- .f(void 0, void 0)
2602
- .ser(se_StopJobRunCommand)
2603
- .de(de_StopJobRunCommand)
2520
+ .sc(StopJobRun)
2604
2521
  .build() {
2605
2522
  }
2606
2523
 
@@ -2608,16 +2525,11 @@ class TagResourceCommand extends smithyClient.Command
2608
2525
  .classBuilder()
2609
2526
  .ep(commonParams)
2610
2527
  .m(function (Command, cs, config, o) {
2611
- return [
2612
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2613
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2614
- ];
2528
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2615
2529
  })
2616
2530
  .s("AWSGlueDataBrew", "TagResource", {})
2617
2531
  .n("DataBrewClient", "TagResourceCommand")
2618
- .f(void 0, void 0)
2619
- .ser(se_TagResourceCommand)
2620
- .de(de_TagResourceCommand)
2532
+ .sc(TagResource)
2621
2533
  .build() {
2622
2534
  }
2623
2535
 
@@ -2625,16 +2537,11 @@ class UntagResourceCommand extends smithyClient.Command
2625
2537
  .classBuilder()
2626
2538
  .ep(commonParams)
2627
2539
  .m(function (Command, cs, config, o) {
2628
- return [
2629
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2630
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2631
- ];
2540
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2632
2541
  })
2633
2542
  .s("AWSGlueDataBrew", "UntagResource", {})
2634
2543
  .n("DataBrewClient", "UntagResourceCommand")
2635
- .f(void 0, void 0)
2636
- .ser(se_UntagResourceCommand)
2637
- .de(de_UntagResourceCommand)
2544
+ .sc(UntagResource)
2638
2545
  .build() {
2639
2546
  }
2640
2547
 
@@ -2642,16 +2549,11 @@ class UpdateDatasetCommand extends smithyClient.Command
2642
2549
  .classBuilder()
2643
2550
  .ep(commonParams)
2644
2551
  .m(function (Command, cs, config, o) {
2645
- return [
2646
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2647
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2648
- ];
2552
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2649
2553
  })
2650
2554
  .s("AWSGlueDataBrew", "UpdateDataset", {})
2651
2555
  .n("DataBrewClient", "UpdateDatasetCommand")
2652
- .f(void 0, void 0)
2653
- .ser(se_UpdateDatasetCommand)
2654
- .de(de_UpdateDatasetCommand)
2556
+ .sc(UpdateDataset)
2655
2557
  .build() {
2656
2558
  }
2657
2559
 
@@ -2659,16 +2561,11 @@ class UpdateProfileJobCommand extends smithyClient.Command
2659
2561
  .classBuilder()
2660
2562
  .ep(commonParams)
2661
2563
  .m(function (Command, cs, config, o) {
2662
- return [
2663
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2664
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2665
- ];
2564
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2666
2565
  })
2667
2566
  .s("AWSGlueDataBrew", "UpdateProfileJob", {})
2668
2567
  .n("DataBrewClient", "UpdateProfileJobCommand")
2669
- .f(void 0, void 0)
2670
- .ser(se_UpdateProfileJobCommand)
2671
- .de(de_UpdateProfileJobCommand)
2568
+ .sc(UpdateProfileJob)
2672
2569
  .build() {
2673
2570
  }
2674
2571
 
@@ -2676,16 +2573,11 @@ class UpdateProjectCommand extends smithyClient.Command
2676
2573
  .classBuilder()
2677
2574
  .ep(commonParams)
2678
2575
  .m(function (Command, cs, config, o) {
2679
- return [
2680
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2681
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2682
- ];
2576
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2683
2577
  })
2684
2578
  .s("AWSGlueDataBrew", "UpdateProject", {})
2685
2579
  .n("DataBrewClient", "UpdateProjectCommand")
2686
- .f(void 0, void 0)
2687
- .ser(se_UpdateProjectCommand)
2688
- .de(de_UpdateProjectCommand)
2580
+ .sc(UpdateProject)
2689
2581
  .build() {
2690
2582
  }
2691
2583
 
@@ -2693,16 +2585,11 @@ class UpdateRecipeCommand extends smithyClient.Command
2693
2585
  .classBuilder()
2694
2586
  .ep(commonParams)
2695
2587
  .m(function (Command, cs, config, o) {
2696
- return [
2697
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2698
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2699
- ];
2588
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2700
2589
  })
2701
2590
  .s("AWSGlueDataBrew", "UpdateRecipe", {})
2702
2591
  .n("DataBrewClient", "UpdateRecipeCommand")
2703
- .f(void 0, void 0)
2704
- .ser(se_UpdateRecipeCommand)
2705
- .de(de_UpdateRecipeCommand)
2592
+ .sc(UpdateRecipe)
2706
2593
  .build() {
2707
2594
  }
2708
2595
 
@@ -2710,16 +2597,11 @@ class UpdateRecipeJobCommand extends smithyClient.Command
2710
2597
  .classBuilder()
2711
2598
  .ep(commonParams)
2712
2599
  .m(function (Command, cs, config, o) {
2713
- return [
2714
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2715
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2716
- ];
2600
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2717
2601
  })
2718
2602
  .s("AWSGlueDataBrew", "UpdateRecipeJob", {})
2719
2603
  .n("DataBrewClient", "UpdateRecipeJobCommand")
2720
- .f(void 0, void 0)
2721
- .ser(se_UpdateRecipeJobCommand)
2722
- .de(de_UpdateRecipeJobCommand)
2604
+ .sc(UpdateRecipeJob)
2723
2605
  .build() {
2724
2606
  }
2725
2607
 
@@ -2727,16 +2609,11 @@ class UpdateRulesetCommand extends smithyClient.Command
2727
2609
  .classBuilder()
2728
2610
  .ep(commonParams)
2729
2611
  .m(function (Command, cs, config, o) {
2730
- return [
2731
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2732
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2733
- ];
2612
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2734
2613
  })
2735
2614
  .s("AWSGlueDataBrew", "UpdateRuleset", {})
2736
2615
  .n("DataBrewClient", "UpdateRulesetCommand")
2737
- .f(void 0, void 0)
2738
- .ser(se_UpdateRulesetCommand)
2739
- .de(de_UpdateRulesetCommand)
2616
+ .sc(UpdateRuleset)
2740
2617
  .build() {
2741
2618
  }
2742
2619
 
@@ -2744,16 +2621,11 @@ class UpdateScheduleCommand extends smithyClient.Command
2744
2621
  .classBuilder()
2745
2622
  .ep(commonParams)
2746
2623
  .m(function (Command, cs, config, o) {
2747
- return [
2748
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2749
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2750
- ];
2624
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2751
2625
  })
2752
2626
  .s("AWSGlueDataBrew", "UpdateSchedule", {})
2753
2627
  .n("DataBrewClient", "UpdateScheduleCommand")
2754
- .f(void 0, void 0)
2755
- .ser(se_UpdateScheduleCommand)
2756
- .de(de_UpdateScheduleCommand)
2628
+ .sc(UpdateSchedule)
2757
2629
  .build() {
2758
2630
  }
2759
2631
 
@@ -2831,11 +2703,11 @@ Object.defineProperty(exports, "__Client", {
2831
2703
  enumerable: true,
2832
2704
  get: function () { return smithyClient.Client; }
2833
2705
  });
2834
- exports.AccessDeniedException = AccessDeniedException;
2706
+ exports.AccessDeniedException = AccessDeniedException$1;
2835
2707
  exports.AnalyticsMode = AnalyticsMode;
2836
2708
  exports.BatchDeleteRecipeVersionCommand = BatchDeleteRecipeVersionCommand;
2837
2709
  exports.CompressionFormat = CompressionFormat;
2838
- exports.ConflictException = ConflictException;
2710
+ exports.ConflictException = ConflictException$1;
2839
2711
  exports.CreateDatasetCommand = CreateDatasetCommand;
2840
2712
  exports.CreateProfileJobCommand = CreateProfileJobCommand;
2841
2713
  exports.CreateProjectCommand = CreateProjectCommand;
@@ -2845,7 +2717,7 @@ exports.CreateRulesetCommand = CreateRulesetCommand;
2845
2717
  exports.CreateScheduleCommand = CreateScheduleCommand;
2846
2718
  exports.DataBrew = DataBrew;
2847
2719
  exports.DataBrewClient = DataBrewClient;
2848
- exports.DataBrewServiceException = DataBrewServiceException;
2720
+ exports.DataBrewServiceException = DataBrewServiceException$1;
2849
2721
  exports.DatabaseOutputMode = DatabaseOutputMode;
2850
2722
  exports.DeleteDatasetCommand = DeleteDatasetCommand;
2851
2723
  exports.DeleteJobCommand = DeleteJobCommand;
@@ -2862,7 +2734,7 @@ exports.DescribeRulesetCommand = DescribeRulesetCommand;
2862
2734
  exports.DescribeScheduleCommand = DescribeScheduleCommand;
2863
2735
  exports.EncryptionMode = EncryptionMode;
2864
2736
  exports.InputFormat = InputFormat;
2865
- exports.InternalServerException = InternalServerException;
2737
+ exports.InternalServerException = InternalServerException$1;
2866
2738
  exports.JobRunState = JobRunState;
2867
2739
  exports.JobType = JobType;
2868
2740
  exports.ListDatasetsCommand = ListDatasetsCommand;
@@ -2880,17 +2752,15 @@ exports.OrderedBy = OrderedBy;
2880
2752
  exports.OutputFormat = OutputFormat;
2881
2753
  exports.ParameterType = ParameterType;
2882
2754
  exports.PublishRecipeCommand = PublishRecipeCommand;
2883
- exports.ResourceNotFoundException = ResourceNotFoundException;
2755
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2884
2756
  exports.SampleMode = SampleMode;
2885
2757
  exports.SampleType = SampleType;
2886
2758
  exports.SendProjectSessionActionCommand = SendProjectSessionActionCommand;
2887
- exports.SendProjectSessionActionRequestFilterSensitiveLog = SendProjectSessionActionRequestFilterSensitiveLog;
2888
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2759
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2889
2760
  exports.SessionStatus = SessionStatus;
2890
2761
  exports.Source = Source;
2891
2762
  exports.StartJobRunCommand = StartJobRunCommand;
2892
2763
  exports.StartProjectSessionCommand = StartProjectSessionCommand;
2893
- exports.StartProjectSessionResponseFilterSensitiveLog = StartProjectSessionResponseFilterSensitiveLog;
2894
2764
  exports.StopJobRunCommand = StopJobRunCommand;
2895
2765
  exports.TagResourceCommand = TagResourceCommand;
2896
2766
  exports.ThresholdType = ThresholdType;
@@ -2903,7 +2773,7 @@ exports.UpdateRecipeCommand = UpdateRecipeCommand;
2903
2773
  exports.UpdateRecipeJobCommand = UpdateRecipeJobCommand;
2904
2774
  exports.UpdateRulesetCommand = UpdateRulesetCommand;
2905
2775
  exports.UpdateScheduleCommand = UpdateScheduleCommand;
2906
- exports.ValidationException = ValidationException;
2776
+ exports.ValidationException = ValidationException$1;
2907
2777
  exports.ValidationMode = ValidationMode;
2908
2778
  exports.paginateListDatasets = paginateListDatasets;
2909
2779
  exports.paginateListJobRuns = paginateListJobRuns;