@aws-sdk/client-machine-learning 3.952.0 → 3.953.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 (48) hide show
  1. package/dist-cjs/index.js +373 -235
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddTagsCommand.js +2 -2
  4. package/dist-es/commands/CreateBatchPredictionCommand.js +2 -2
  5. package/dist-es/commands/CreateDataSourceFromRDSCommand.js +2 -2
  6. package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +2 -2
  7. package/dist-es/commands/CreateDataSourceFromS3Command.js +2 -2
  8. package/dist-es/commands/CreateEvaluationCommand.js +2 -2
  9. package/dist-es/commands/CreateMLModelCommand.js +2 -2
  10. package/dist-es/commands/CreateRealtimeEndpointCommand.js +2 -2
  11. package/dist-es/commands/DeleteBatchPredictionCommand.js +2 -2
  12. package/dist-es/commands/DeleteDataSourceCommand.js +2 -2
  13. package/dist-es/commands/DeleteEvaluationCommand.js +2 -2
  14. package/dist-es/commands/DeleteMLModelCommand.js +2 -2
  15. package/dist-es/commands/DeleteRealtimeEndpointCommand.js +2 -2
  16. package/dist-es/commands/DeleteTagsCommand.js +2 -2
  17. package/dist-es/commands/DescribeBatchPredictionsCommand.js +2 -2
  18. package/dist-es/commands/DescribeDataSourcesCommand.js +2 -2
  19. package/dist-es/commands/DescribeEvaluationsCommand.js +2 -2
  20. package/dist-es/commands/DescribeMLModelsCommand.js +2 -2
  21. package/dist-es/commands/DescribeTagsCommand.js +2 -2
  22. package/dist-es/commands/GetBatchPredictionCommand.js +2 -2
  23. package/dist-es/commands/GetDataSourceCommand.js +2 -2
  24. package/dist-es/commands/GetEvaluationCommand.js +2 -2
  25. package/dist-es/commands/GetMLModelCommand.js +2 -2
  26. package/dist-es/commands/PredictCommand.js +2 -2
  27. package/dist-es/commands/UpdateBatchPredictionCommand.js +2 -2
  28. package/dist-es/commands/UpdateDataSourceCommand.js +2 -2
  29. package/dist-es/commands/UpdateEvaluationCommand.js +2 -2
  30. package/dist-es/commands/UpdateMLModelCommand.js +2 -2
  31. package/dist-es/index.js +1 -0
  32. package/dist-es/runtimeConfig.shared.js +7 -6
  33. package/dist-es/schemas/schemas_0.js +222 -194
  34. package/dist-types/MachineLearningClient.d.ts +1 -10
  35. package/dist-types/index.d.ts +1 -0
  36. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  37. package/dist-types/runtimeConfig.d.ts +6 -2
  38. package/dist-types/runtimeConfig.native.d.ts +6 -2
  39. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  40. package/dist-types/schemas/schemas_0.d.ts +111 -125
  41. package/dist-types/ts3.4/MachineLearningClient.d.ts +0 -4
  42. package/dist-types/ts3.4/index.d.ts +1 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -126
  48. package/package.json +36 -36
package/dist-cjs/index.js CHANGED
@@ -112,14 +112,14 @@ class MachineLearningClient extends smithyClient.Client {
112
112
  }
113
113
  }
114
114
 
115
- let MachineLearningServiceException$1 = class MachineLearningServiceException extends smithyClient.ServiceException {
115
+ class MachineLearningServiceException extends smithyClient.ServiceException {
116
116
  constructor(options) {
117
117
  super(options);
118
118
  Object.setPrototypeOf(this, MachineLearningServiceException.prototype);
119
119
  }
120
- };
120
+ }
121
121
 
122
- let InternalServerException$1 = class InternalServerException extends MachineLearningServiceException$1 {
122
+ class InternalServerException extends MachineLearningServiceException {
123
123
  name = "InternalServerException";
124
124
  $fault = "server";
125
125
  code;
@@ -132,8 +132,8 @@ let InternalServerException$1 = class InternalServerException extends MachineLea
132
132
  Object.setPrototypeOf(this, InternalServerException.prototype);
133
133
  this.code = opts.code;
134
134
  }
135
- };
136
- let InvalidInputException$1 = class InvalidInputException extends MachineLearningServiceException$1 {
135
+ }
136
+ class InvalidInputException extends MachineLearningServiceException {
137
137
  name = "InvalidInputException";
138
138
  $fault = "client";
139
139
  code;
@@ -146,8 +146,8 @@ let InvalidInputException$1 = class InvalidInputException extends MachineLearnin
146
146
  Object.setPrototypeOf(this, InvalidInputException.prototype);
147
147
  this.code = opts.code;
148
148
  }
149
- };
150
- let InvalidTagException$1 = class InvalidTagException extends MachineLearningServiceException$1 {
149
+ }
150
+ class InvalidTagException extends MachineLearningServiceException {
151
151
  name = "InvalidTagException";
152
152
  $fault = "client";
153
153
  constructor(opts) {
@@ -158,8 +158,8 @@ let InvalidTagException$1 = class InvalidTagException extends MachineLearningSer
158
158
  });
159
159
  Object.setPrototypeOf(this, InvalidTagException.prototype);
160
160
  }
161
- };
162
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends MachineLearningServiceException$1 {
161
+ }
162
+ class ResourceNotFoundException extends MachineLearningServiceException {
163
163
  name = "ResourceNotFoundException";
164
164
  $fault = "client";
165
165
  code;
@@ -172,8 +172,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Machin
172
172
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
173
173
  this.code = opts.code;
174
174
  }
175
- };
176
- let TagLimitExceededException$1 = class TagLimitExceededException extends MachineLearningServiceException$1 {
175
+ }
176
+ class TagLimitExceededException extends MachineLearningServiceException {
177
177
  name = "TagLimitExceededException";
178
178
  $fault = "client";
179
179
  constructor(opts) {
@@ -184,8 +184,8 @@ let TagLimitExceededException$1 = class TagLimitExceededException extends Machin
184
184
  });
185
185
  Object.setPrototypeOf(this, TagLimitExceededException.prototype);
186
186
  }
187
- };
188
- let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchException extends MachineLearningServiceException$1 {
187
+ }
188
+ class IdempotentParameterMismatchException extends MachineLearningServiceException {
189
189
  name = "IdempotentParameterMismatchException";
190
190
  $fault = "client";
191
191
  code;
@@ -198,8 +198,8 @@ let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchEx
198
198
  Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
199
199
  this.code = opts.code;
200
200
  }
201
- };
202
- let LimitExceededException$1 = class LimitExceededException extends MachineLearningServiceException$1 {
201
+ }
202
+ class LimitExceededException extends MachineLearningServiceException {
203
203
  name = "LimitExceededException";
204
204
  $fault = "client";
205
205
  code;
@@ -212,8 +212,8 @@ let LimitExceededException$1 = class LimitExceededException extends MachineLearn
212
212
  Object.setPrototypeOf(this, LimitExceededException.prototype);
213
213
  this.code = opts.code;
214
214
  }
215
- };
216
- let PredictorNotMountedException$1 = class PredictorNotMountedException extends MachineLearningServiceException$1 {
215
+ }
216
+ class PredictorNotMountedException extends MachineLearningServiceException {
217
217
  name = "PredictorNotMountedException";
218
218
  $fault = "client";
219
219
  constructor(opts) {
@@ -224,7 +224,7 @@ let PredictorNotMountedException$1 = class PredictorNotMountedException extends
224
224
  });
225
225
  Object.setPrototypeOf(this, PredictorNotMountedException.prototype);
226
226
  }
227
- };
227
+ }
228
228
 
229
229
  const _A = "Algorithm";
230
230
  const _AT = "AddTags";
@@ -445,9 +445,9 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.machinelearning";
445
445
  const n0 = "com.amazonaws.machinelearning";
446
446
  var RDSDatabasePassword = [0, n0, _RDSDP, 8, 0];
447
447
  var RedshiftDatabasePassword = [0, n0, _RDP, 8, 0];
448
- var AddTagsInput = [3, n0, _ATI, 0, [_T, _RI, _RT], [() => TagList, 0, 0]];
449
- var AddTagsOutput = [3, n0, _ATO, 0, [_RI, _RT], [0, 0]];
450
- var BatchPrediction = [
448
+ var AddTagsInput$ = [3, n0, _ATI, 0, [_T, _RI, _RT], [() => TagList, 0, 0]];
449
+ var AddTagsOutput$ = [3, n0, _ATO, 0, [_RI, _RT], [0, 0]];
450
+ var BatchPrediction$ = [
451
451
  3,
452
452
  n0,
453
453
  _BP,
@@ -455,7 +455,7 @@ var BatchPrediction = [
455
455
  [_BPI, _MLMI, _BPDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _OU, _M, _CT, _FA, _SA, _TRC, _IRC],
456
456
  [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 1, 4, 4, 1, 1],
457
457
  ];
458
- var CreateBatchPredictionInput = [
458
+ var CreateBatchPredictionInput$ = [
459
459
  3,
460
460
  n0,
461
461
  _CBPI,
@@ -463,37 +463,37 @@ var CreateBatchPredictionInput = [
463
463
  [_BPI, _BPN, _MLMI, _BPDSI, _OU],
464
464
  [0, 0, 0, 0, 0],
465
465
  ];
466
- var CreateBatchPredictionOutput = [3, n0, _CBPO, 0, [_BPI], [0]];
467
- var CreateDataSourceFromRDSInput = [
466
+ var CreateBatchPredictionOutput$ = [3, n0, _CBPO, 0, [_BPI], [0]];
467
+ var CreateDataSourceFromRDSInput$ = [
468
468
  3,
469
469
  n0,
470
470
  _CDSFRDSI,
471
471
  0,
472
472
  [_DSI, _DSN, _RDSD, _RARN, _CS],
473
- [0, 0, [() => RDSDataSpec, 0], 0, 2],
473
+ [0, 0, [() => RDSDataSpec$, 0], 0, 2],
474
474
  ];
475
- var CreateDataSourceFromRDSOutput = [3, n0, _CDSFRDSO, 0, [_DSI], [0]];
476
- var CreateDataSourceFromRedshiftInput = [
475
+ var CreateDataSourceFromRDSOutput$ = [3, n0, _CDSFRDSO, 0, [_DSI], [0]];
476
+ var CreateDataSourceFromRedshiftInput$ = [
477
477
  3,
478
478
  n0,
479
479
  _CDSFRI,
480
480
  0,
481
481
  [_DSI, _DSN, _DS, _RARN, _CS],
482
- [0, 0, [() => RedshiftDataSpec, 0], 0, 2],
482
+ [0, 0, [() => RedshiftDataSpec$, 0], 0, 2],
483
483
  ];
484
- var CreateDataSourceFromRedshiftOutput = [3, n0, _CDSFRO, 0, [_DSI], [0]];
485
- var CreateDataSourceFromS3Input = [
484
+ var CreateDataSourceFromRedshiftOutput$ = [3, n0, _CDSFRO, 0, [_DSI], [0]];
485
+ var CreateDataSourceFromS3Input$ = [
486
486
  3,
487
487
  n0,
488
488
  _CDSFSI,
489
489
  0,
490
490
  [_DSI, _DSN, _DS, _CS],
491
- [0, 0, () => S3DataSpec, 2],
491
+ [0, 0, () => S3DataSpec$, 2],
492
492
  ];
493
- var CreateDataSourceFromS3Output = [3, n0, _CDSFSO, 0, [_DSI], [0]];
494
- var CreateEvaluationInput = [3, n0, _CEI, 0, [_EI, _EN, _MLMI, _EDSI], [0, 0, 0, 0]];
495
- var CreateEvaluationOutput = [3, n0, _CEO, 0, [_EI], [0]];
496
- var CreateMLModelInput = [
493
+ var CreateDataSourceFromS3Output$ = [3, n0, _CDSFSO, 0, [_DSI], [0]];
494
+ var CreateEvaluationInput$ = [3, n0, _CEI, 0, [_EI, _EN, _MLMI, _EDSI], [0, 0, 0, 0]];
495
+ var CreateEvaluationOutput$ = [3, n0, _CEO, 0, [_EI], [0]];
496
+ var CreateMLModelInput$ = [
497
497
  3,
498
498
  n0,
499
499
  _CMLMI,
@@ -501,44 +501,44 @@ var CreateMLModelInput = [
501
501
  [_MLMI, _MLMN, _MLMT, _P, _TDSI, _R, _RU],
502
502
  [0, 0, 0, 128 | 0, 0, 0, 0],
503
503
  ];
504
- var CreateMLModelOutput = [3, n0, _CMLMO, 0, [_MLMI], [0]];
505
- var CreateRealtimeEndpointInput = [3, n0, _CREI, 0, [_MLMI], [0]];
506
- var CreateRealtimeEndpointOutput = [
504
+ var CreateMLModelOutput$ = [3, n0, _CMLMO, 0, [_MLMI], [0]];
505
+ var CreateRealtimeEndpointInput$ = [3, n0, _CREI, 0, [_MLMI], [0]];
506
+ var CreateRealtimeEndpointOutput$ = [
507
507
  3,
508
508
  n0,
509
509
  _CREO,
510
510
  0,
511
511
  [_MLMI, _REI],
512
- [0, () => RealtimeEndpointInfo],
512
+ [0, () => RealtimeEndpointInfo$],
513
513
  ];
514
- var DataSource = [
514
+ var DataSource$ = [
515
515
  3,
516
516
  n0,
517
517
  _DSa,
518
518
  0,
519
519
  [_DSI, _DLS, _DR, _CBIU, _CA, _LUA, _DSIB, _NOF, _N, _S, _M, _RM, _RDSM, _RARN, _CS, _CT, _FA, _SA],
520
- [0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, () => RedshiftMetadata, () => RDSMetadata, 0, 2, 1, 4, 4],
520
+ [0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, () => RedshiftMetadata$, () => RDSMetadata$, 0, 2, 1, 4, 4],
521
521
  ];
522
- var DeleteBatchPredictionInput = [3, n0, _DBPI, 0, [_BPI], [0]];
523
- var DeleteBatchPredictionOutput = [3, n0, _DBPO, 0, [_BPI], [0]];
524
- var DeleteDataSourceInput = [3, n0, _DDSI, 0, [_DSI], [0]];
525
- var DeleteDataSourceOutput = [3, n0, _DDSO, 0, [_DSI], [0]];
526
- var DeleteEvaluationInput = [3, n0, _DEI, 0, [_EI], [0]];
527
- var DeleteEvaluationOutput = [3, n0, _DEO, 0, [_EI], [0]];
528
- var DeleteMLModelInput = [3, n0, _DMLMI, 0, [_MLMI], [0]];
529
- var DeleteMLModelOutput = [3, n0, _DMLMO, 0, [_MLMI], [0]];
530
- var DeleteRealtimeEndpointInput = [3, n0, _DREI, 0, [_MLMI], [0]];
531
- var DeleteRealtimeEndpointOutput = [
522
+ var DeleteBatchPredictionInput$ = [3, n0, _DBPI, 0, [_BPI], [0]];
523
+ var DeleteBatchPredictionOutput$ = [3, n0, _DBPO, 0, [_BPI], [0]];
524
+ var DeleteDataSourceInput$ = [3, n0, _DDSI, 0, [_DSI], [0]];
525
+ var DeleteDataSourceOutput$ = [3, n0, _DDSO, 0, [_DSI], [0]];
526
+ var DeleteEvaluationInput$ = [3, n0, _DEI, 0, [_EI], [0]];
527
+ var DeleteEvaluationOutput$ = [3, n0, _DEO, 0, [_EI], [0]];
528
+ var DeleteMLModelInput$ = [3, n0, _DMLMI, 0, [_MLMI], [0]];
529
+ var DeleteMLModelOutput$ = [3, n0, _DMLMO, 0, [_MLMI], [0]];
530
+ var DeleteRealtimeEndpointInput$ = [3, n0, _DREI, 0, [_MLMI], [0]];
531
+ var DeleteRealtimeEndpointOutput$ = [
532
532
  3,
533
533
  n0,
534
534
  _DREO,
535
535
  0,
536
536
  [_MLMI, _REI],
537
- [0, () => RealtimeEndpointInfo],
537
+ [0, () => RealtimeEndpointInfo$],
538
538
  ];
539
- var DeleteTagsInput = [3, n0, _DTI, 0, [_TK, _RI, _RT], [64 | 0, 0, 0]];
540
- var DeleteTagsOutput = [3, n0, _DTO, 0, [_RI, _RT], [0, 0]];
541
- var DescribeBatchPredictionsInput = [
539
+ var DeleteTagsInput$ = [3, n0, _DTI, 0, [_TK, _RI, _RT], [64 | 0, 0, 0]];
540
+ var DeleteTagsOutput$ = [3, n0, _DTO, 0, [_RI, _RT], [0, 0]];
541
+ var DescribeBatchPredictionsInput$ = [
542
542
  3,
543
543
  n0,
544
544
  _DBPIe,
@@ -546,7 +546,7 @@ var DescribeBatchPredictionsInput = [
546
546
  [_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
547
547
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
548
548
  ];
549
- var DescribeBatchPredictionsOutput = [
549
+ var DescribeBatchPredictionsOutput$ = [
550
550
  3,
551
551
  n0,
552
552
  _DBPOe,
@@ -554,7 +554,7 @@ var DescribeBatchPredictionsOutput = [
554
554
  [_Re, _NT],
555
555
  [() => BatchPredictions, 0],
556
556
  ];
557
- var DescribeDataSourcesInput = [
557
+ var DescribeDataSourcesInput$ = [
558
558
  3,
559
559
  n0,
560
560
  _DDSIe,
@@ -562,8 +562,8 @@ var DescribeDataSourcesInput = [
562
562
  [_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
563
563
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
564
564
  ];
565
- var DescribeDataSourcesOutput = [3, n0, _DDSOe, 0, [_Re, _NT], [() => DataSources, 0]];
566
- var DescribeEvaluationsInput = [
565
+ var DescribeDataSourcesOutput$ = [3, n0, _DDSOe, 0, [_Re, _NT], [() => DataSources, 0]];
566
+ var DescribeEvaluationsInput$ = [
567
567
  3,
568
568
  n0,
569
569
  _DEIe,
@@ -571,8 +571,8 @@ var DescribeEvaluationsInput = [
571
571
  [_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
572
572
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
573
573
  ];
574
- var DescribeEvaluationsOutput = [3, n0, _DEOe, 0, [_Re, _NT], [() => Evaluations, 0]];
575
- var DescribeMLModelsInput = [
574
+ var DescribeEvaluationsOutput$ = [3, n0, _DEOe, 0, [_Re, _NT], [() => Evaluations, 0]];
575
+ var DescribeMLModelsInput$ = [
576
576
  3,
577
577
  n0,
578
578
  _DMLMIe,
@@ -580,19 +580,19 @@ var DescribeMLModelsInput = [
580
580
  [_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
581
581
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
582
582
  ];
583
- var DescribeMLModelsOutput = [3, n0, _DMLMOe, 0, [_Re, _NT], [() => MLModels, 0]];
584
- var DescribeTagsInput = [3, n0, _DTIe, 0, [_RI, _RT], [0, 0]];
585
- var DescribeTagsOutput = [3, n0, _DTOe, 0, [_RI, _RT, _T], [0, 0, () => TagList]];
586
- var Evaluation = [
583
+ var DescribeMLModelsOutput$ = [3, n0, _DMLMOe, 0, [_Re, _NT], [() => MLModels, 0]];
584
+ var DescribeTagsInput$ = [3, n0, _DTIe, 0, [_RI, _RT], [0, 0]];
585
+ var DescribeTagsOutput$ = [3, n0, _DTOe, 0, [_RI, _RT, _T], [0, 0, () => TagList]];
586
+ var Evaluation$ = [
587
587
  3,
588
588
  n0,
589
589
  _E,
590
590
  0,
591
591
  [_EI, _MLMI, _EDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _PM, _M, _CT, _FA, _SA],
592
- [0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics, 0, 1, 4, 4],
592
+ [0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics$, 0, 1, 4, 4],
593
593
  ];
594
- var GetBatchPredictionInput = [3, n0, _GBPI, 0, [_BPI], [0]];
595
- var GetBatchPredictionOutput = [
594
+ var GetBatchPredictionInput$ = [3, n0, _GBPI, 0, [_BPI], [0]];
595
+ var GetBatchPredictionOutput$ = [
596
596
  3,
597
597
  n0,
598
598
  _GBPO,
@@ -600,34 +600,34 @@ var GetBatchPredictionOutput = [
600
600
  [_BPI, _MLMI, _BPDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _OU, _LU, _M, _CT, _FA, _SA, _TRC, _IRC],
601
601
  [0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 1, 4, 4, 1, 1],
602
602
  ];
603
- var GetDataSourceInput = [3, n0, _GDSI, 0, [_DSI, _V], [0, 2]];
604
- var GetDataSourceOutput = [
603
+ var GetDataSourceInput$ = [3, n0, _GDSI, 0, [_DSI, _V], [0, 2]];
604
+ var GetDataSourceOutput$ = [
605
605
  3,
606
606
  n0,
607
607
  _GDSO,
608
608
  0,
609
609
  [_DSI, _DLS, _DR, _CBIU, _CA, _LUA, _DSIB, _NOF, _N, _S, _LU, _M, _RM, _RDSM, _RARN, _CS, _CT, _FA, _SA, _DSS],
610
- [0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, 0, () => RedshiftMetadata, () => RDSMetadata, 0, 2, 1, 4, 4, 0],
610
+ [0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, 0, () => RedshiftMetadata$, () => RDSMetadata$, 0, 2, 1, 4, 4, 0],
611
611
  ];
612
- var GetEvaluationInput = [3, n0, _GEI, 0, [_EI], [0]];
613
- var GetEvaluationOutput = [
612
+ var GetEvaluationInput$ = [3, n0, _GEI, 0, [_EI], [0]];
613
+ var GetEvaluationOutput$ = [
614
614
  3,
615
615
  n0,
616
616
  _GEO,
617
617
  0,
618
618
  [_EI, _MLMI, _EDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _PM, _LU, _M, _CT, _FA, _SA],
619
- [0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics, 0, 0, 1, 4, 4],
619
+ [0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics$, 0, 0, 1, 4, 4],
620
620
  ];
621
- var GetMLModelInput = [3, n0, _GMLMI, 0, [_MLMI, _V], [0, 2]];
622
- var GetMLModelOutput = [
621
+ var GetMLModelInput$ = [3, n0, _GMLMI, 0, [_MLMI, _V], [0, 2]];
622
+ var GetMLModelOutput$ = [
623
623
  3,
624
624
  n0,
625
625
  _GMLMO,
626
626
  0,
627
627
  [_MLMI, _TDSI, _CBIU, _CA, _LUA, _N, _S, _SIB, _EIn, _TP, _IDLS, _MLMT, _ST, _STLUA, _LU, _M, _CT, _FA, _SA, _R, _Sc],
628
- [0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo, 128 | 0, 0, 0, 1, 4, 0, 0, 1, 4, 4, 0, 0],
628
+ [0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo$, 128 | 0, 0, 0, 1, 4, 0, 0, 1, 4, 4, 0, 0],
629
629
  ];
630
- var IdempotentParameterMismatchException = [
630
+ var IdempotentParameterMismatchException$ = [
631
631
  -3,
632
632
  n0,
633
633
  _IPME,
@@ -635,31 +635,31 @@ var IdempotentParameterMismatchException = [
635
635
  [_m, _co],
636
636
  [0, 1],
637
637
  ];
638
- schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException, IdempotentParameterMismatchException$1);
639
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m, _co], [0, 1]];
640
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
641
- var InvalidInputException = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 1]];
642
- schema.TypeRegistry.for(n0).registerError(InvalidInputException, InvalidInputException$1);
643
- var InvalidTagException = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
644
- schema.TypeRegistry.for(n0).registerError(InvalidTagException, InvalidTagException$1);
645
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c, [_hE]: 417 }, [_m, _co], [0, 1]];
646
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
647
- var MLModel = [
638
+ schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
639
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m, _co], [0, 1]];
640
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
641
+ var InvalidInputException$ = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m, _co], [0, 1]];
642
+ schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
643
+ var InvalidTagException$ = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
644
+ schema.TypeRegistry.for(n0).registerError(InvalidTagException$, InvalidTagException);
645
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c, [_hE]: 417 }, [_m, _co], [0, 1]];
646
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
647
+ var MLModel$ = [
648
648
  3,
649
649
  n0,
650
650
  _MLM,
651
651
  0,
652
652
  [_MLMI, _TDSI, _CBIU, _CA, _LUA, _N, _S, _SIB, _EIn, _TP, _IDLS, _A, _MLMT, _ST, _STLUA, _M, _CT, _FA, _SA],
653
- [0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo, 128 | 0, 0, 0, 0, 1, 4, 0, 1, 4, 4],
653
+ [0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo$, 128 | 0, 0, 0, 0, 1, 4, 0, 1, 4, 4],
654
654
  ];
655
- var PerformanceMetrics = [3, n0, _PM, 0, [_Pro], [128 | 0]];
656
- var PredictInput = [3, n0, _PI, 0, [_MLMI, _Rec, _PE], [0, 128 | 0, 0]];
657
- var Prediction = [3, n0, _Pre, 0, [_pL, _pV, _pS, _d], [0, 1, 128 | 1, 128 | 0]];
658
- var PredictorNotMountedException = [-3, n0, _PNME, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
659
- schema.TypeRegistry.for(n0).registerError(PredictorNotMountedException, PredictorNotMountedException$1);
660
- var PredictOutput = [3, n0, _PO, 0, [_Pre], [() => Prediction]];
661
- var RDSDatabase = [3, n0, _RDSDa, 0, [_II, _DN], [0, 0]];
662
- var RDSDatabaseCredentials = [
655
+ var PerformanceMetrics$ = [3, n0, _PM, 0, [_Pro], [128 | 0]];
656
+ var PredictInput$ = [3, n0, _PI, 0, [_MLMI, _Rec, _PE], [0, 128 | 0, 0]];
657
+ var Prediction$ = [3, n0, _Pre, 0, [_pL, _pV, _pS, _d], [0, 1, 128 | 1, 128 | 0]];
658
+ var PredictorNotMountedException$ = [-3, n0, _PNME, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
659
+ schema.TypeRegistry.for(n0).registerError(PredictorNotMountedException$, PredictorNotMountedException);
660
+ var PredictOutput$ = [3, n0, _PO, 0, [_Pre], [() => Prediction$]];
661
+ var RDSDatabase$ = [3, n0, _RDSDa, 0, [_II, _DN], [0, 0]];
662
+ var RDSDatabaseCredentials$ = [
663
663
  3,
664
664
  n0,
665
665
  _RDSDC,
@@ -667,25 +667,25 @@ var RDSDatabaseCredentials = [
667
667
  [_U, _Pa],
668
668
  [0, [() => RDSDatabasePassword, 0]],
669
669
  ];
670
- var RDSDataSpec = [
670
+ var RDSDataSpec$ = [
671
671
  3,
672
672
  n0,
673
673
  _RDSDS,
674
674
  0,
675
675
  [_DI, _SSQ, _DC, _SSL, _DR, _DSat, _DSU, _RR, _SR, _SI, _SGI],
676
- [() => RDSDatabase, 0, [() => RDSDatabaseCredentials, 0], 0, 0, 0, 0, 0, 0, 0, 64 | 0],
676
+ [() => RDSDatabase$, 0, [() => RDSDatabaseCredentials$, 0], 0, 0, 0, 0, 0, 0, 0, 64 | 0],
677
677
  ];
678
- var RDSMetadata = [
678
+ var RDSMetadata$ = [
679
679
  3,
680
680
  n0,
681
681
  _RDSM,
682
682
  0,
683
683
  [_D, _DUN, _SSQ, _RR, _SR, _DPI],
684
- [() => RDSDatabase, 0, 0, 0, 0, 0],
684
+ [() => RDSDatabase$, 0, 0, 0, 0, 0],
685
685
  ];
686
- var RealtimeEndpointInfo = [3, n0, _REI, 0, [_PRPS, _CA, _EU, _ES], [1, 4, 0, 0]];
687
- var RedshiftDatabase = [3, n0, _RD, 0, [_DN, _CI], [0, 0]];
688
- var RedshiftDatabaseCredentials = [
686
+ var RealtimeEndpointInfo$ = [3, n0, _REI, 0, [_PRPS, _CA, _EU, _ES], [1, 4, 0, 0]];
687
+ var RedshiftDatabase$ = [3, n0, _RD, 0, [_DN, _CI], [0, 0]];
688
+ var RedshiftDatabaseCredentials$ = [
689
689
  3,
690
690
  n0,
691
691
  _RDC,
@@ -693,210 +693,238 @@ var RedshiftDatabaseCredentials = [
693
693
  [_U, _Pa],
694
694
  [0, [() => RedshiftDatabasePassword, 0]],
695
695
  ];
696
- var RedshiftDataSpec = [
696
+ var RedshiftDataSpec$ = [
697
697
  3,
698
698
  n0,
699
699
  _RDS,
700
700
  0,
701
701
  [_DI, _SSQ, _DC, _SSL, _DR, _DSat, _DSU],
702
- [() => RedshiftDatabase, 0, [() => RedshiftDatabaseCredentials, 0], 0, 0, 0, 0],
702
+ [() => RedshiftDatabase$, 0, [() => RedshiftDatabaseCredentials$, 0], 0, 0, 0, 0],
703
+ ];
704
+ var RedshiftMetadata$ = [
705
+ 3,
706
+ n0,
707
+ _RM,
708
+ 0,
709
+ [_RD, _DUN, _SSQ],
710
+ [() => RedshiftDatabase$, 0, 0],
711
+ ];
712
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 1]];
713
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
714
+ var S3DataSpec$ = [3, n0, _SDS, 0, [_DLS, _DR, _DSat, _DSLS], [0, 0, 0, 0]];
715
+ var Tag$ = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
716
+ var TagLimitExceededException$ = [-3, n0, _TLEE, { [_e]: _c }, [_m], [0]];
717
+ schema.TypeRegistry.for(n0).registerError(TagLimitExceededException$, TagLimitExceededException);
718
+ var UpdateBatchPredictionInput$ = [3, n0, _UBPI, 0, [_BPI, _BPN], [0, 0]];
719
+ var UpdateBatchPredictionOutput$ = [3, n0, _UBPO, 0, [_BPI], [0]];
720
+ var UpdateDataSourceInput$ = [3, n0, _UDSI, 0, [_DSI, _DSN], [0, 0]];
721
+ var UpdateDataSourceOutput$ = [3, n0, _UDSO, 0, [_DSI], [0]];
722
+ var UpdateEvaluationInput$ = [3, n0, _UEI, 0, [_EI, _EN], [0, 0]];
723
+ var UpdateEvaluationOutput$ = [3, n0, _UEO, 0, [_EI], [0]];
724
+ var UpdateMLModelInput$ = [3, n0, _UMLMI, 0, [_MLMI, _MLMN, _ST], [0, 0, 1]];
725
+ var UpdateMLModelOutput$ = [3, n0, _UMLMO, 0, [_MLMI], [0]];
726
+ var MachineLearningServiceException$ = [
727
+ -3,
728
+ _sm,
729
+ "MachineLearningServiceException",
730
+ 0,
731
+ [],
732
+ [],
703
733
  ];
704
- var RedshiftMetadata = [3, n0, _RM, 0, [_RD, _DUN, _SSQ], [() => RedshiftDatabase, 0, 0]];
705
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _co], [0, 1]];
706
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
707
- var S3DataSpec = [3, n0, _SDS, 0, [_DLS, _DR, _DSat, _DSLS], [0, 0, 0, 0]];
708
- var Tag = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
709
- var TagLimitExceededException = [-3, n0, _TLEE, { [_e]: _c }, [_m], [0]];
710
- schema.TypeRegistry.for(n0).registerError(TagLimitExceededException, TagLimitExceededException$1);
711
- var UpdateBatchPredictionInput = [3, n0, _UBPI, 0, [_BPI, _BPN], [0, 0]];
712
- var UpdateBatchPredictionOutput = [3, n0, _UBPO, 0, [_BPI], [0]];
713
- var UpdateDataSourceInput = [3, n0, _UDSI, 0, [_DSI, _DSN], [0, 0]];
714
- var UpdateDataSourceOutput = [3, n0, _UDSO, 0, [_DSI], [0]];
715
- var UpdateEvaluationInput = [3, n0, _UEI, 0, [_EI, _EN], [0, 0]];
716
- var UpdateEvaluationOutput = [3, n0, _UEO, 0, [_EI], [0]];
717
- var UpdateMLModelInput = [3, n0, _UMLMI, 0, [_MLMI, _MLMN, _ST], [0, 0, 1]];
718
- var UpdateMLModelOutput = [3, n0, _UMLMO, 0, [_MLMI], [0]];
719
- var MachineLearningServiceException = [-3, _sm, "MachineLearningServiceException", 0, [], []];
720
- schema.TypeRegistry.for(_sm).registerError(MachineLearningServiceException, MachineLearningServiceException$1);
721
- var BatchPredictions = [1, n0, _BPa, 0, () => BatchPrediction];
722
- var DataSources = [1, n0, _DSata, 0, () => DataSource];
723
- var Evaluations = [1, n0, _Ev, 0, () => Evaluation];
724
- var MLModels = [1, n0, _MLMo, 0, () => MLModel];
725
- var TagList = [1, n0, _TL, 0, () => Tag];
726
- var AddTags = [9, n0, _AT, 0, () => AddTagsInput, () => AddTagsOutput];
727
- var CreateBatchPrediction = [
734
+ schema.TypeRegistry.for(_sm).registerError(MachineLearningServiceException$, MachineLearningServiceException);
735
+ var BatchPredictions = [1, n0, _BPa, 0, () => BatchPrediction$];
736
+ var DataSources = [1, n0, _DSata, 0, () => DataSource$];
737
+ var Evaluations = [1, n0, _Ev, 0, () => Evaluation$];
738
+ var MLModels = [1, n0, _MLMo, 0, () => MLModel$];
739
+ var TagList = [1, n0, _TL, 0, () => Tag$];
740
+ var AddTags$ = [9, n0, _AT, 0, () => AddTagsInput$, () => AddTagsOutput$];
741
+ var CreateBatchPrediction$ = [
728
742
  9,
729
743
  n0,
730
744
  _CBP,
731
745
  0,
732
- () => CreateBatchPredictionInput,
733
- () => CreateBatchPredictionOutput,
746
+ () => CreateBatchPredictionInput$,
747
+ () => CreateBatchPredictionOutput$,
734
748
  ];
735
- var CreateDataSourceFromRDS = [
749
+ var CreateDataSourceFromRDS$ = [
736
750
  9,
737
751
  n0,
738
752
  _CDSFRDS,
739
753
  0,
740
- () => CreateDataSourceFromRDSInput,
741
- () => CreateDataSourceFromRDSOutput,
754
+ () => CreateDataSourceFromRDSInput$,
755
+ () => CreateDataSourceFromRDSOutput$,
742
756
  ];
743
- var CreateDataSourceFromRedshift = [
757
+ var CreateDataSourceFromRedshift$ = [
744
758
  9,
745
759
  n0,
746
760
  _CDSFR,
747
761
  0,
748
- () => CreateDataSourceFromRedshiftInput,
749
- () => CreateDataSourceFromRedshiftOutput,
762
+ () => CreateDataSourceFromRedshiftInput$,
763
+ () => CreateDataSourceFromRedshiftOutput$,
750
764
  ];
751
- var CreateDataSourceFromS3 = [
765
+ var CreateDataSourceFromS3$ = [
752
766
  9,
753
767
  n0,
754
768
  _CDSFS,
755
769
  0,
756
- () => CreateDataSourceFromS3Input,
757
- () => CreateDataSourceFromS3Output,
770
+ () => CreateDataSourceFromS3Input$,
771
+ () => CreateDataSourceFromS3Output$,
758
772
  ];
759
- var CreateEvaluation = [
773
+ var CreateEvaluation$ = [
760
774
  9,
761
775
  n0,
762
776
  _CE,
763
777
  0,
764
- () => CreateEvaluationInput,
765
- () => CreateEvaluationOutput,
778
+ () => CreateEvaluationInput$,
779
+ () => CreateEvaluationOutput$,
766
780
  ];
767
- var CreateMLModel = [
781
+ var CreateMLModel$ = [
768
782
  9,
769
783
  n0,
770
784
  _CMLM,
771
785
  0,
772
- () => CreateMLModelInput,
773
- () => CreateMLModelOutput,
786
+ () => CreateMLModelInput$,
787
+ () => CreateMLModelOutput$,
774
788
  ];
775
- var CreateRealtimeEndpoint = [
789
+ var CreateRealtimeEndpoint$ = [
776
790
  9,
777
791
  n0,
778
792
  _CRE,
779
793
  0,
780
- () => CreateRealtimeEndpointInput,
781
- () => CreateRealtimeEndpointOutput,
794
+ () => CreateRealtimeEndpointInput$,
795
+ () => CreateRealtimeEndpointOutput$,
782
796
  ];
783
- var DeleteBatchPrediction = [
797
+ var DeleteBatchPrediction$ = [
784
798
  9,
785
799
  n0,
786
800
  _DBP,
787
801
  0,
788
- () => DeleteBatchPredictionInput,
789
- () => DeleteBatchPredictionOutput,
802
+ () => DeleteBatchPredictionInput$,
803
+ () => DeleteBatchPredictionOutput$,
790
804
  ];
791
- var DeleteDataSource = [
805
+ var DeleteDataSource$ = [
792
806
  9,
793
807
  n0,
794
808
  _DDS,
795
809
  0,
796
- () => DeleteDataSourceInput,
797
- () => DeleteDataSourceOutput,
810
+ () => DeleteDataSourceInput$,
811
+ () => DeleteDataSourceOutput$,
798
812
  ];
799
- var DeleteEvaluation = [
813
+ var DeleteEvaluation$ = [
800
814
  9,
801
815
  n0,
802
816
  _DE,
803
817
  0,
804
- () => DeleteEvaluationInput,
805
- () => DeleteEvaluationOutput,
818
+ () => DeleteEvaluationInput$,
819
+ () => DeleteEvaluationOutput$,
806
820
  ];
807
- var DeleteMLModel = [
821
+ var DeleteMLModel$ = [
808
822
  9,
809
823
  n0,
810
824
  _DMLM,
811
825
  0,
812
- () => DeleteMLModelInput,
813
- () => DeleteMLModelOutput,
826
+ () => DeleteMLModelInput$,
827
+ () => DeleteMLModelOutput$,
814
828
  ];
815
- var DeleteRealtimeEndpoint = [
829
+ var DeleteRealtimeEndpoint$ = [
816
830
  9,
817
831
  n0,
818
832
  _DRE,
819
833
  0,
820
- () => DeleteRealtimeEndpointInput,
821
- () => DeleteRealtimeEndpointOutput,
834
+ () => DeleteRealtimeEndpointInput$,
835
+ () => DeleteRealtimeEndpointOutput$,
822
836
  ];
823
- var DeleteTags = [9, n0, _DT, 0, () => DeleteTagsInput, () => DeleteTagsOutput];
824
- var DescribeBatchPredictions = [
837
+ var DeleteTags$ = [9, n0, _DT, 0, () => DeleteTagsInput$, () => DeleteTagsOutput$];
838
+ var DescribeBatchPredictions$ = [
825
839
  9,
826
840
  n0,
827
841
  _DBPe,
828
842
  0,
829
- () => DescribeBatchPredictionsInput,
830
- () => DescribeBatchPredictionsOutput,
843
+ () => DescribeBatchPredictionsInput$,
844
+ () => DescribeBatchPredictionsOutput$,
831
845
  ];
832
- var DescribeDataSources = [
846
+ var DescribeDataSources$ = [
833
847
  9,
834
848
  n0,
835
849
  _DDSe,
836
850
  0,
837
- () => DescribeDataSourcesInput,
838
- () => DescribeDataSourcesOutput,
851
+ () => DescribeDataSourcesInput$,
852
+ () => DescribeDataSourcesOutput$,
839
853
  ];
840
- var DescribeEvaluations = [
854
+ var DescribeEvaluations$ = [
841
855
  9,
842
856
  n0,
843
857
  _DEe,
844
858
  0,
845
- () => DescribeEvaluationsInput,
846
- () => DescribeEvaluationsOutput,
859
+ () => DescribeEvaluationsInput$,
860
+ () => DescribeEvaluationsOutput$,
847
861
  ];
848
- var DescribeMLModels = [
862
+ var DescribeMLModels$ = [
849
863
  9,
850
864
  n0,
851
865
  _DMLMe,
852
866
  0,
853
- () => DescribeMLModelsInput,
854
- () => DescribeMLModelsOutput,
867
+ () => DescribeMLModelsInput$,
868
+ () => DescribeMLModelsOutput$,
855
869
  ];
856
- var DescribeTags = [9, n0, _DTe, 0, () => DescribeTagsInput, () => DescribeTagsOutput];
857
- var GetBatchPrediction = [
870
+ var DescribeTags$ = [9, n0, _DTe, 0, () => DescribeTagsInput$, () => DescribeTagsOutput$];
871
+ var GetBatchPrediction$ = [
858
872
  9,
859
873
  n0,
860
874
  _GBP,
861
875
  0,
862
- () => GetBatchPredictionInput,
863
- () => GetBatchPredictionOutput,
876
+ () => GetBatchPredictionInput$,
877
+ () => GetBatchPredictionOutput$,
878
+ ];
879
+ var GetDataSource$ = [
880
+ 9,
881
+ n0,
882
+ _GDS,
883
+ 0,
884
+ () => GetDataSourceInput$,
885
+ () => GetDataSourceOutput$,
886
+ ];
887
+ var GetEvaluation$ = [
888
+ 9,
889
+ n0,
890
+ _GEe,
891
+ 0,
892
+ () => GetEvaluationInput$,
893
+ () => GetEvaluationOutput$,
864
894
  ];
865
- var GetDataSource = [9, n0, _GDS, 0, () => GetDataSourceInput, () => GetDataSourceOutput];
866
- var GetEvaluation = [9, n0, _GEe, 0, () => GetEvaluationInput, () => GetEvaluationOutput];
867
- var GetMLModel = [9, n0, _GMLM, 0, () => GetMLModelInput, () => GetMLModelOutput];
868
- var Predict = [9, n0, _Pred, 0, () => PredictInput, () => PredictOutput];
869
- var UpdateBatchPrediction = [
895
+ var GetMLModel$ = [9, n0, _GMLM, 0, () => GetMLModelInput$, () => GetMLModelOutput$];
896
+ var Predict$ = [9, n0, _Pred, 0, () => PredictInput$, () => PredictOutput$];
897
+ var UpdateBatchPrediction$ = [
870
898
  9,
871
899
  n0,
872
900
  _UBP,
873
901
  0,
874
- () => UpdateBatchPredictionInput,
875
- () => UpdateBatchPredictionOutput,
902
+ () => UpdateBatchPredictionInput$,
903
+ () => UpdateBatchPredictionOutput$,
876
904
  ];
877
- var UpdateDataSource = [
905
+ var UpdateDataSource$ = [
878
906
  9,
879
907
  n0,
880
908
  _UDS,
881
909
  0,
882
- () => UpdateDataSourceInput,
883
- () => UpdateDataSourceOutput,
910
+ () => UpdateDataSourceInput$,
911
+ () => UpdateDataSourceOutput$,
884
912
  ];
885
- var UpdateEvaluation = [
913
+ var UpdateEvaluation$ = [
886
914
  9,
887
915
  n0,
888
916
  _UE,
889
917
  0,
890
- () => UpdateEvaluationInput,
891
- () => UpdateEvaluationOutput,
918
+ () => UpdateEvaluationInput$,
919
+ () => UpdateEvaluationOutput$,
892
920
  ];
893
- var UpdateMLModel = [
921
+ var UpdateMLModel$ = [
894
922
  9,
895
923
  n0,
896
924
  _UMLM,
897
925
  0,
898
- () => UpdateMLModelInput,
899
- () => UpdateMLModelOutput,
926
+ () => UpdateMLModelInput$,
927
+ () => UpdateMLModelOutput$,
900
928
  ];
901
929
 
902
930
  class AddTagsCommand extends smithyClient.Command
@@ -907,7 +935,7 @@ class AddTagsCommand extends smithyClient.Command
907
935
  })
908
936
  .s("AmazonML_20141212", "AddTags", {})
909
937
  .n("MachineLearningClient", "AddTagsCommand")
910
- .sc(AddTags)
938
+ .sc(AddTags$)
911
939
  .build() {
912
940
  }
913
941
 
@@ -919,7 +947,7 @@ class CreateBatchPredictionCommand extends smithyClient.Command
919
947
  })
920
948
  .s("AmazonML_20141212", "CreateBatchPrediction", {})
921
949
  .n("MachineLearningClient", "CreateBatchPredictionCommand")
922
- .sc(CreateBatchPrediction)
950
+ .sc(CreateBatchPrediction$)
923
951
  .build() {
924
952
  }
925
953
 
@@ -931,7 +959,7 @@ class CreateDataSourceFromRDSCommand extends smithyClient.Command
931
959
  })
932
960
  .s("AmazonML_20141212", "CreateDataSourceFromRDS", {})
933
961
  .n("MachineLearningClient", "CreateDataSourceFromRDSCommand")
934
- .sc(CreateDataSourceFromRDS)
962
+ .sc(CreateDataSourceFromRDS$)
935
963
  .build() {
936
964
  }
937
965
 
@@ -943,7 +971,7 @@ class CreateDataSourceFromRedshiftCommand extends smithyClient.Command
943
971
  })
944
972
  .s("AmazonML_20141212", "CreateDataSourceFromRedshift", {})
945
973
  .n("MachineLearningClient", "CreateDataSourceFromRedshiftCommand")
946
- .sc(CreateDataSourceFromRedshift)
974
+ .sc(CreateDataSourceFromRedshift$)
947
975
  .build() {
948
976
  }
949
977
 
@@ -955,7 +983,7 @@ class CreateDataSourceFromS3Command extends smithyClient.Command
955
983
  })
956
984
  .s("AmazonML_20141212", "CreateDataSourceFromS3", {})
957
985
  .n("MachineLearningClient", "CreateDataSourceFromS3Command")
958
- .sc(CreateDataSourceFromS3)
986
+ .sc(CreateDataSourceFromS3$)
959
987
  .build() {
960
988
  }
961
989
 
@@ -967,7 +995,7 @@ class CreateEvaluationCommand extends smithyClient.Command
967
995
  })
968
996
  .s("AmazonML_20141212", "CreateEvaluation", {})
969
997
  .n("MachineLearningClient", "CreateEvaluationCommand")
970
- .sc(CreateEvaluation)
998
+ .sc(CreateEvaluation$)
971
999
  .build() {
972
1000
  }
973
1001
 
@@ -979,7 +1007,7 @@ class CreateMLModelCommand extends smithyClient.Command
979
1007
  })
980
1008
  .s("AmazonML_20141212", "CreateMLModel", {})
981
1009
  .n("MachineLearningClient", "CreateMLModelCommand")
982
- .sc(CreateMLModel)
1010
+ .sc(CreateMLModel$)
983
1011
  .build() {
984
1012
  }
985
1013
 
@@ -991,7 +1019,7 @@ class CreateRealtimeEndpointCommand extends smithyClient.Command
991
1019
  })
992
1020
  .s("AmazonML_20141212", "CreateRealtimeEndpoint", {})
993
1021
  .n("MachineLearningClient", "CreateRealtimeEndpointCommand")
994
- .sc(CreateRealtimeEndpoint)
1022
+ .sc(CreateRealtimeEndpoint$)
995
1023
  .build() {
996
1024
  }
997
1025
 
@@ -1003,7 +1031,7 @@ class DeleteBatchPredictionCommand extends smithyClient.Command
1003
1031
  })
1004
1032
  .s("AmazonML_20141212", "DeleteBatchPrediction", {})
1005
1033
  .n("MachineLearningClient", "DeleteBatchPredictionCommand")
1006
- .sc(DeleteBatchPrediction)
1034
+ .sc(DeleteBatchPrediction$)
1007
1035
  .build() {
1008
1036
  }
1009
1037
 
@@ -1015,7 +1043,7 @@ class DeleteDataSourceCommand extends smithyClient.Command
1015
1043
  })
1016
1044
  .s("AmazonML_20141212", "DeleteDataSource", {})
1017
1045
  .n("MachineLearningClient", "DeleteDataSourceCommand")
1018
- .sc(DeleteDataSource)
1046
+ .sc(DeleteDataSource$)
1019
1047
  .build() {
1020
1048
  }
1021
1049
 
@@ -1027,7 +1055,7 @@ class DeleteEvaluationCommand extends smithyClient.Command
1027
1055
  })
1028
1056
  .s("AmazonML_20141212", "DeleteEvaluation", {})
1029
1057
  .n("MachineLearningClient", "DeleteEvaluationCommand")
1030
- .sc(DeleteEvaluation)
1058
+ .sc(DeleteEvaluation$)
1031
1059
  .build() {
1032
1060
  }
1033
1061
 
@@ -1039,7 +1067,7 @@ class DeleteMLModelCommand extends smithyClient.Command
1039
1067
  })
1040
1068
  .s("AmazonML_20141212", "DeleteMLModel", {})
1041
1069
  .n("MachineLearningClient", "DeleteMLModelCommand")
1042
- .sc(DeleteMLModel)
1070
+ .sc(DeleteMLModel$)
1043
1071
  .build() {
1044
1072
  }
1045
1073
 
@@ -1051,7 +1079,7 @@ class DeleteRealtimeEndpointCommand extends smithyClient.Command
1051
1079
  })
1052
1080
  .s("AmazonML_20141212", "DeleteRealtimeEndpoint", {})
1053
1081
  .n("MachineLearningClient", "DeleteRealtimeEndpointCommand")
1054
- .sc(DeleteRealtimeEndpoint)
1082
+ .sc(DeleteRealtimeEndpoint$)
1055
1083
  .build() {
1056
1084
  }
1057
1085
 
@@ -1063,7 +1091,7 @@ class DeleteTagsCommand extends smithyClient.Command
1063
1091
  })
1064
1092
  .s("AmazonML_20141212", "DeleteTags", {})
1065
1093
  .n("MachineLearningClient", "DeleteTagsCommand")
1066
- .sc(DeleteTags)
1094
+ .sc(DeleteTags$)
1067
1095
  .build() {
1068
1096
  }
1069
1097
 
@@ -1075,7 +1103,7 @@ class DescribeBatchPredictionsCommand extends smithyClient.Command
1075
1103
  })
1076
1104
  .s("AmazonML_20141212", "DescribeBatchPredictions", {})
1077
1105
  .n("MachineLearningClient", "DescribeBatchPredictionsCommand")
1078
- .sc(DescribeBatchPredictions)
1106
+ .sc(DescribeBatchPredictions$)
1079
1107
  .build() {
1080
1108
  }
1081
1109
 
@@ -1087,7 +1115,7 @@ class DescribeDataSourcesCommand extends smithyClient.Command
1087
1115
  })
1088
1116
  .s("AmazonML_20141212", "DescribeDataSources", {})
1089
1117
  .n("MachineLearningClient", "DescribeDataSourcesCommand")
1090
- .sc(DescribeDataSources)
1118
+ .sc(DescribeDataSources$)
1091
1119
  .build() {
1092
1120
  }
1093
1121
 
@@ -1099,7 +1127,7 @@ class DescribeEvaluationsCommand extends smithyClient.Command
1099
1127
  })
1100
1128
  .s("AmazonML_20141212", "DescribeEvaluations", {})
1101
1129
  .n("MachineLearningClient", "DescribeEvaluationsCommand")
1102
- .sc(DescribeEvaluations)
1130
+ .sc(DescribeEvaluations$)
1103
1131
  .build() {
1104
1132
  }
1105
1133
 
@@ -1111,7 +1139,7 @@ class DescribeMLModelsCommand extends smithyClient.Command
1111
1139
  })
1112
1140
  .s("AmazonML_20141212", "DescribeMLModels", {})
1113
1141
  .n("MachineLearningClient", "DescribeMLModelsCommand")
1114
- .sc(DescribeMLModels)
1142
+ .sc(DescribeMLModels$)
1115
1143
  .build() {
1116
1144
  }
1117
1145
 
@@ -1123,7 +1151,7 @@ class DescribeTagsCommand extends smithyClient.Command
1123
1151
  })
1124
1152
  .s("AmazonML_20141212", "DescribeTags", {})
1125
1153
  .n("MachineLearningClient", "DescribeTagsCommand")
1126
- .sc(DescribeTags)
1154
+ .sc(DescribeTags$)
1127
1155
  .build() {
1128
1156
  }
1129
1157
 
@@ -1135,7 +1163,7 @@ class GetBatchPredictionCommand extends smithyClient.Command
1135
1163
  })
1136
1164
  .s("AmazonML_20141212", "GetBatchPrediction", {})
1137
1165
  .n("MachineLearningClient", "GetBatchPredictionCommand")
1138
- .sc(GetBatchPrediction)
1166
+ .sc(GetBatchPrediction$)
1139
1167
  .build() {
1140
1168
  }
1141
1169
 
@@ -1147,7 +1175,7 @@ class GetDataSourceCommand extends smithyClient.Command
1147
1175
  })
1148
1176
  .s("AmazonML_20141212", "GetDataSource", {})
1149
1177
  .n("MachineLearningClient", "GetDataSourceCommand")
1150
- .sc(GetDataSource)
1178
+ .sc(GetDataSource$)
1151
1179
  .build() {
1152
1180
  }
1153
1181
 
@@ -1159,7 +1187,7 @@ class GetEvaluationCommand extends smithyClient.Command
1159
1187
  })
1160
1188
  .s("AmazonML_20141212", "GetEvaluation", {})
1161
1189
  .n("MachineLearningClient", "GetEvaluationCommand")
1162
- .sc(GetEvaluation)
1190
+ .sc(GetEvaluation$)
1163
1191
  .build() {
1164
1192
  }
1165
1193
 
@@ -1171,7 +1199,7 @@ class GetMLModelCommand extends smithyClient.Command
1171
1199
  })
1172
1200
  .s("AmazonML_20141212", "GetMLModel", {})
1173
1201
  .n("MachineLearningClient", "GetMLModelCommand")
1174
- .sc(GetMLModel)
1202
+ .sc(GetMLModel$)
1175
1203
  .build() {
1176
1204
  }
1177
1205
 
@@ -1183,7 +1211,7 @@ class PredictCommand extends smithyClient.Command
1183
1211
  })
1184
1212
  .s("AmazonML_20141212", "Predict", {})
1185
1213
  .n("MachineLearningClient", "PredictCommand")
1186
- .sc(Predict)
1214
+ .sc(Predict$)
1187
1215
  .build() {
1188
1216
  }
1189
1217
 
@@ -1195,7 +1223,7 @@ class UpdateBatchPredictionCommand extends smithyClient.Command
1195
1223
  })
1196
1224
  .s("AmazonML_20141212", "UpdateBatchPrediction", {})
1197
1225
  .n("MachineLearningClient", "UpdateBatchPredictionCommand")
1198
- .sc(UpdateBatchPrediction)
1226
+ .sc(UpdateBatchPrediction$)
1199
1227
  .build() {
1200
1228
  }
1201
1229
 
@@ -1207,7 +1235,7 @@ class UpdateDataSourceCommand extends smithyClient.Command
1207
1235
  })
1208
1236
  .s("AmazonML_20141212", "UpdateDataSource", {})
1209
1237
  .n("MachineLearningClient", "UpdateDataSourceCommand")
1210
- .sc(UpdateDataSource)
1238
+ .sc(UpdateDataSource$)
1211
1239
  .build() {
1212
1240
  }
1213
1241
 
@@ -1219,7 +1247,7 @@ class UpdateEvaluationCommand extends smithyClient.Command
1219
1247
  })
1220
1248
  .s("AmazonML_20141212", "UpdateEvaluation", {})
1221
1249
  .n("MachineLearningClient", "UpdateEvaluationCommand")
1222
- .sc(UpdateEvaluation)
1250
+ .sc(UpdateEvaluation$)
1223
1251
  .build() {
1224
1252
  }
1225
1253
 
@@ -1231,7 +1259,7 @@ class UpdateMLModelCommand extends smithyClient.Command
1231
1259
  })
1232
1260
  .s("AmazonML_20141212", "UpdateMLModel", {})
1233
1261
  .n("MachineLearningClient", "UpdateMLModelCommand")
1234
- .sc(UpdateMLModel)
1262
+ .sc(UpdateMLModel$)
1235
1263
  .build() {
1236
1264
  }
1237
1265
 
@@ -1573,56 +1601,166 @@ Object.defineProperty(exports, "__Client", {
1573
1601
  enumerable: true,
1574
1602
  get: function () { return smithyClient.Client; }
1575
1603
  });
1604
+ exports.AddTags$ = AddTags$;
1576
1605
  exports.AddTagsCommand = AddTagsCommand;
1606
+ exports.AddTagsInput$ = AddTagsInput$;
1607
+ exports.AddTagsOutput$ = AddTagsOutput$;
1577
1608
  exports.Algorithm = Algorithm;
1609
+ exports.BatchPrediction$ = BatchPrediction$;
1578
1610
  exports.BatchPredictionFilterVariable = BatchPredictionFilterVariable;
1611
+ exports.CreateBatchPrediction$ = CreateBatchPrediction$;
1579
1612
  exports.CreateBatchPredictionCommand = CreateBatchPredictionCommand;
1613
+ exports.CreateBatchPredictionInput$ = CreateBatchPredictionInput$;
1614
+ exports.CreateBatchPredictionOutput$ = CreateBatchPredictionOutput$;
1615
+ exports.CreateDataSourceFromRDS$ = CreateDataSourceFromRDS$;
1580
1616
  exports.CreateDataSourceFromRDSCommand = CreateDataSourceFromRDSCommand;
1617
+ exports.CreateDataSourceFromRDSInput$ = CreateDataSourceFromRDSInput$;
1618
+ exports.CreateDataSourceFromRDSOutput$ = CreateDataSourceFromRDSOutput$;
1619
+ exports.CreateDataSourceFromRedshift$ = CreateDataSourceFromRedshift$;
1581
1620
  exports.CreateDataSourceFromRedshiftCommand = CreateDataSourceFromRedshiftCommand;
1621
+ exports.CreateDataSourceFromRedshiftInput$ = CreateDataSourceFromRedshiftInput$;
1622
+ exports.CreateDataSourceFromRedshiftOutput$ = CreateDataSourceFromRedshiftOutput$;
1623
+ exports.CreateDataSourceFromS3$ = CreateDataSourceFromS3$;
1582
1624
  exports.CreateDataSourceFromS3Command = CreateDataSourceFromS3Command;
1625
+ exports.CreateDataSourceFromS3Input$ = CreateDataSourceFromS3Input$;
1626
+ exports.CreateDataSourceFromS3Output$ = CreateDataSourceFromS3Output$;
1627
+ exports.CreateEvaluation$ = CreateEvaluation$;
1583
1628
  exports.CreateEvaluationCommand = CreateEvaluationCommand;
1629
+ exports.CreateEvaluationInput$ = CreateEvaluationInput$;
1630
+ exports.CreateEvaluationOutput$ = CreateEvaluationOutput$;
1631
+ exports.CreateMLModel$ = CreateMLModel$;
1584
1632
  exports.CreateMLModelCommand = CreateMLModelCommand;
1633
+ exports.CreateMLModelInput$ = CreateMLModelInput$;
1634
+ exports.CreateMLModelOutput$ = CreateMLModelOutput$;
1635
+ exports.CreateRealtimeEndpoint$ = CreateRealtimeEndpoint$;
1585
1636
  exports.CreateRealtimeEndpointCommand = CreateRealtimeEndpointCommand;
1637
+ exports.CreateRealtimeEndpointInput$ = CreateRealtimeEndpointInput$;
1638
+ exports.CreateRealtimeEndpointOutput$ = CreateRealtimeEndpointOutput$;
1639
+ exports.DataSource$ = DataSource$;
1586
1640
  exports.DataSourceFilterVariable = DataSourceFilterVariable;
1641
+ exports.DeleteBatchPrediction$ = DeleteBatchPrediction$;
1587
1642
  exports.DeleteBatchPredictionCommand = DeleteBatchPredictionCommand;
1643
+ exports.DeleteBatchPredictionInput$ = DeleteBatchPredictionInput$;
1644
+ exports.DeleteBatchPredictionOutput$ = DeleteBatchPredictionOutput$;
1645
+ exports.DeleteDataSource$ = DeleteDataSource$;
1588
1646
  exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
1647
+ exports.DeleteDataSourceInput$ = DeleteDataSourceInput$;
1648
+ exports.DeleteDataSourceOutput$ = DeleteDataSourceOutput$;
1649
+ exports.DeleteEvaluation$ = DeleteEvaluation$;
1589
1650
  exports.DeleteEvaluationCommand = DeleteEvaluationCommand;
1651
+ exports.DeleteEvaluationInput$ = DeleteEvaluationInput$;
1652
+ exports.DeleteEvaluationOutput$ = DeleteEvaluationOutput$;
1653
+ exports.DeleteMLModel$ = DeleteMLModel$;
1590
1654
  exports.DeleteMLModelCommand = DeleteMLModelCommand;
1655
+ exports.DeleteMLModelInput$ = DeleteMLModelInput$;
1656
+ exports.DeleteMLModelOutput$ = DeleteMLModelOutput$;
1657
+ exports.DeleteRealtimeEndpoint$ = DeleteRealtimeEndpoint$;
1591
1658
  exports.DeleteRealtimeEndpointCommand = DeleteRealtimeEndpointCommand;
1659
+ exports.DeleteRealtimeEndpointInput$ = DeleteRealtimeEndpointInput$;
1660
+ exports.DeleteRealtimeEndpointOutput$ = DeleteRealtimeEndpointOutput$;
1661
+ exports.DeleteTags$ = DeleteTags$;
1592
1662
  exports.DeleteTagsCommand = DeleteTagsCommand;
1663
+ exports.DeleteTagsInput$ = DeleteTagsInput$;
1664
+ exports.DeleteTagsOutput$ = DeleteTagsOutput$;
1665
+ exports.DescribeBatchPredictions$ = DescribeBatchPredictions$;
1593
1666
  exports.DescribeBatchPredictionsCommand = DescribeBatchPredictionsCommand;
1667
+ exports.DescribeBatchPredictionsInput$ = DescribeBatchPredictionsInput$;
1668
+ exports.DescribeBatchPredictionsOutput$ = DescribeBatchPredictionsOutput$;
1669
+ exports.DescribeDataSources$ = DescribeDataSources$;
1594
1670
  exports.DescribeDataSourcesCommand = DescribeDataSourcesCommand;
1671
+ exports.DescribeDataSourcesInput$ = DescribeDataSourcesInput$;
1672
+ exports.DescribeDataSourcesOutput$ = DescribeDataSourcesOutput$;
1673
+ exports.DescribeEvaluations$ = DescribeEvaluations$;
1595
1674
  exports.DescribeEvaluationsCommand = DescribeEvaluationsCommand;
1675
+ exports.DescribeEvaluationsInput$ = DescribeEvaluationsInput$;
1676
+ exports.DescribeEvaluationsOutput$ = DescribeEvaluationsOutput$;
1677
+ exports.DescribeMLModels$ = DescribeMLModels$;
1596
1678
  exports.DescribeMLModelsCommand = DescribeMLModelsCommand;
1679
+ exports.DescribeMLModelsInput$ = DescribeMLModelsInput$;
1680
+ exports.DescribeMLModelsOutput$ = DescribeMLModelsOutput$;
1681
+ exports.DescribeTags$ = DescribeTags$;
1597
1682
  exports.DescribeTagsCommand = DescribeTagsCommand;
1683
+ exports.DescribeTagsInput$ = DescribeTagsInput$;
1684
+ exports.DescribeTagsOutput$ = DescribeTagsOutput$;
1598
1685
  exports.DetailsAttributes = DetailsAttributes;
1599
1686
  exports.EntityStatus = EntityStatus;
1687
+ exports.Evaluation$ = Evaluation$;
1600
1688
  exports.EvaluationFilterVariable = EvaluationFilterVariable;
1689
+ exports.GetBatchPrediction$ = GetBatchPrediction$;
1601
1690
  exports.GetBatchPredictionCommand = GetBatchPredictionCommand;
1691
+ exports.GetBatchPredictionInput$ = GetBatchPredictionInput$;
1692
+ exports.GetBatchPredictionOutput$ = GetBatchPredictionOutput$;
1693
+ exports.GetDataSource$ = GetDataSource$;
1602
1694
  exports.GetDataSourceCommand = GetDataSourceCommand;
1695
+ exports.GetDataSourceInput$ = GetDataSourceInput$;
1696
+ exports.GetDataSourceOutput$ = GetDataSourceOutput$;
1697
+ exports.GetEvaluation$ = GetEvaluation$;
1603
1698
  exports.GetEvaluationCommand = GetEvaluationCommand;
1699
+ exports.GetEvaluationInput$ = GetEvaluationInput$;
1700
+ exports.GetEvaluationOutput$ = GetEvaluationOutput$;
1701
+ exports.GetMLModel$ = GetMLModel$;
1604
1702
  exports.GetMLModelCommand = GetMLModelCommand;
1605
- exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException$1;
1606
- exports.InternalServerException = InternalServerException$1;
1607
- exports.InvalidInputException = InvalidInputException$1;
1608
- exports.InvalidTagException = InvalidTagException$1;
1609
- exports.LimitExceededException = LimitExceededException$1;
1703
+ exports.GetMLModelInput$ = GetMLModelInput$;
1704
+ exports.GetMLModelOutput$ = GetMLModelOutput$;
1705
+ exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
1706
+ exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
1707
+ exports.InternalServerException = InternalServerException;
1708
+ exports.InternalServerException$ = InternalServerException$;
1709
+ exports.InvalidInputException = InvalidInputException;
1710
+ exports.InvalidInputException$ = InvalidInputException$;
1711
+ exports.InvalidTagException = InvalidTagException;
1712
+ exports.InvalidTagException$ = InvalidTagException$;
1713
+ exports.LimitExceededException = LimitExceededException;
1714
+ exports.LimitExceededException$ = LimitExceededException$;
1715
+ exports.MLModel$ = MLModel$;
1610
1716
  exports.MLModelFilterVariable = MLModelFilterVariable;
1611
1717
  exports.MLModelType = MLModelType;
1612
1718
  exports.MachineLearning = MachineLearning;
1613
1719
  exports.MachineLearningClient = MachineLearningClient;
1614
- exports.MachineLearningServiceException = MachineLearningServiceException$1;
1720
+ exports.MachineLearningServiceException = MachineLearningServiceException;
1721
+ exports.MachineLearningServiceException$ = MachineLearningServiceException$;
1722
+ exports.PerformanceMetrics$ = PerformanceMetrics$;
1723
+ exports.Predict$ = Predict$;
1615
1724
  exports.PredictCommand = PredictCommand;
1616
- exports.PredictorNotMountedException = PredictorNotMountedException$1;
1725
+ exports.PredictInput$ = PredictInput$;
1726
+ exports.PredictOutput$ = PredictOutput$;
1727
+ exports.Prediction$ = Prediction$;
1728
+ exports.PredictorNotMountedException = PredictorNotMountedException;
1729
+ exports.PredictorNotMountedException$ = PredictorNotMountedException$;
1730
+ exports.RDSDataSpec$ = RDSDataSpec$;
1731
+ exports.RDSDatabase$ = RDSDatabase$;
1732
+ exports.RDSDatabaseCredentials$ = RDSDatabaseCredentials$;
1733
+ exports.RDSMetadata$ = RDSMetadata$;
1734
+ exports.RealtimeEndpointInfo$ = RealtimeEndpointInfo$;
1617
1735
  exports.RealtimeEndpointStatus = RealtimeEndpointStatus;
1618
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1736
+ exports.RedshiftDataSpec$ = RedshiftDataSpec$;
1737
+ exports.RedshiftDatabase$ = RedshiftDatabase$;
1738
+ exports.RedshiftDatabaseCredentials$ = RedshiftDatabaseCredentials$;
1739
+ exports.RedshiftMetadata$ = RedshiftMetadata$;
1740
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1741
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1742
+ exports.S3DataSpec$ = S3DataSpec$;
1619
1743
  exports.SortOrder = SortOrder;
1620
- exports.TagLimitExceededException = TagLimitExceededException$1;
1744
+ exports.Tag$ = Tag$;
1745
+ exports.TagLimitExceededException = TagLimitExceededException;
1746
+ exports.TagLimitExceededException$ = TagLimitExceededException$;
1621
1747
  exports.TaggableResourceType = TaggableResourceType;
1748
+ exports.UpdateBatchPrediction$ = UpdateBatchPrediction$;
1622
1749
  exports.UpdateBatchPredictionCommand = UpdateBatchPredictionCommand;
1750
+ exports.UpdateBatchPredictionInput$ = UpdateBatchPredictionInput$;
1751
+ exports.UpdateBatchPredictionOutput$ = UpdateBatchPredictionOutput$;
1752
+ exports.UpdateDataSource$ = UpdateDataSource$;
1623
1753
  exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
1754
+ exports.UpdateDataSourceInput$ = UpdateDataSourceInput$;
1755
+ exports.UpdateDataSourceOutput$ = UpdateDataSourceOutput$;
1756
+ exports.UpdateEvaluation$ = UpdateEvaluation$;
1624
1757
  exports.UpdateEvaluationCommand = UpdateEvaluationCommand;
1758
+ exports.UpdateEvaluationInput$ = UpdateEvaluationInput$;
1759
+ exports.UpdateEvaluationOutput$ = UpdateEvaluationOutput$;
1760
+ exports.UpdateMLModel$ = UpdateMLModel$;
1625
1761
  exports.UpdateMLModelCommand = UpdateMLModelCommand;
1762
+ exports.UpdateMLModelInput$ = UpdateMLModelInput$;
1763
+ exports.UpdateMLModelOutput$ = UpdateMLModelOutput$;
1626
1764
  exports.paginateDescribeBatchPredictions = paginateDescribeBatchPredictions;
1627
1765
  exports.paginateDescribeDataSources = paginateDescribeDataSources;
1628
1766
  exports.paginateDescribeEvaluations = paginateDescribeEvaluations;