@aws-sdk/client-machine-learning 3.306.0 → 3.309.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 (61) hide show
  1. package/dist-cjs/commands/AddTagsCommand.js +2 -2
  2. package/dist-cjs/commands/CreateBatchPredictionCommand.js +2 -2
  3. package/dist-cjs/commands/CreateDataSourceFromRDSCommand.js +2 -2
  4. package/dist-cjs/commands/CreateDataSourceFromRedshiftCommand.js +2 -2
  5. package/dist-cjs/commands/CreateDataSourceFromS3Command.js +2 -2
  6. package/dist-cjs/commands/CreateEvaluationCommand.js +2 -2
  7. package/dist-cjs/commands/CreateMLModelCommand.js +2 -2
  8. package/dist-cjs/commands/CreateRealtimeEndpointCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteBatchPredictionCommand.js +2 -2
  10. package/dist-cjs/commands/DeleteDataSourceCommand.js +2 -2
  11. package/dist-cjs/commands/DeleteEvaluationCommand.js +2 -2
  12. package/dist-cjs/commands/DeleteMLModelCommand.js +2 -2
  13. package/dist-cjs/commands/DeleteRealtimeEndpointCommand.js +2 -2
  14. package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
  15. package/dist-cjs/commands/DescribeBatchPredictionsCommand.js +2 -2
  16. package/dist-cjs/commands/DescribeDataSourcesCommand.js +2 -2
  17. package/dist-cjs/commands/DescribeEvaluationsCommand.js +2 -2
  18. package/dist-cjs/commands/DescribeMLModelsCommand.js +2 -2
  19. package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
  20. package/dist-cjs/commands/GetBatchPredictionCommand.js +2 -2
  21. package/dist-cjs/commands/GetDataSourceCommand.js +2 -2
  22. package/dist-cjs/commands/GetEvaluationCommand.js +2 -2
  23. package/dist-cjs/commands/GetMLModelCommand.js +2 -2
  24. package/dist-cjs/commands/PredictCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateBatchPredictionCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateDataSourceCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateEvaluationCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateMLModelCommand.js +2 -2
  29. package/dist-cjs/protocols/Aws_json1_1.js +466 -492
  30. package/dist-es/commands/AddTagsCommand.js +3 -3
  31. package/dist-es/commands/CreateBatchPredictionCommand.js +3 -3
  32. package/dist-es/commands/CreateDataSourceFromRDSCommand.js +3 -3
  33. package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +3 -3
  34. package/dist-es/commands/CreateDataSourceFromS3Command.js +3 -3
  35. package/dist-es/commands/CreateEvaluationCommand.js +3 -3
  36. package/dist-es/commands/CreateMLModelCommand.js +3 -3
  37. package/dist-es/commands/CreateRealtimeEndpointCommand.js +3 -3
  38. package/dist-es/commands/DeleteBatchPredictionCommand.js +3 -3
  39. package/dist-es/commands/DeleteDataSourceCommand.js +3 -3
  40. package/dist-es/commands/DeleteEvaluationCommand.js +3 -3
  41. package/dist-es/commands/DeleteMLModelCommand.js +3 -3
  42. package/dist-es/commands/DeleteRealtimeEndpointCommand.js +3 -3
  43. package/dist-es/commands/DeleteTagsCommand.js +3 -3
  44. package/dist-es/commands/DescribeBatchPredictionsCommand.js +3 -3
  45. package/dist-es/commands/DescribeDataSourcesCommand.js +3 -3
  46. package/dist-es/commands/DescribeEvaluationsCommand.js +3 -3
  47. package/dist-es/commands/DescribeMLModelsCommand.js +3 -3
  48. package/dist-es/commands/DescribeTagsCommand.js +3 -3
  49. package/dist-es/commands/GetBatchPredictionCommand.js +3 -3
  50. package/dist-es/commands/GetDataSourceCommand.js +3 -3
  51. package/dist-es/commands/GetEvaluationCommand.js +3 -3
  52. package/dist-es/commands/GetMLModelCommand.js +3 -3
  53. package/dist-es/commands/PredictCommand.js +3 -3
  54. package/dist-es/commands/UpdateBatchPredictionCommand.js +3 -3
  55. package/dist-es/commands/UpdateDataSourceCommand.js +3 -3
  56. package/dist-es/commands/UpdateEvaluationCommand.js +3 -3
  57. package/dist-es/commands/UpdateMLModelCommand.js +3 -3
  58. package/dist-es/protocols/Aws_json1_1.js +408 -434
  59. package/dist-types/protocols/Aws_json1_1.d.ts +224 -56
  60. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +56 -56
  61. package/package.json +6 -6
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1AddTagsCommand, serializeAws_json1_1AddTagsCommand } from "../protocols/Aws_json1_1";
4
+ import { de_AddTagsCommand, se_AddTagsCommand } from "../protocols/Aws_json1_1";
5
5
  export class AddTagsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class AddTagsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1AddTagsCommand(input, context);
36
+ return se_AddTagsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1AddTagsCommand(output, context);
39
+ return de_AddTagsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateBatchPredictionCommand, serializeAws_json1_1CreateBatchPredictionCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateBatchPredictionCommand, se_CreateBatchPredictionCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateBatchPredictionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateBatchPredictionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateBatchPredictionCommand(input, context);
36
+ return se_CreateBatchPredictionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateBatchPredictionCommand(output, context);
39
+ return de_CreateBatchPredictionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateDataSourceFromRDSCommand, serializeAws_json1_1CreateDataSourceFromRDSCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateDataSourceFromRDSCommand, se_CreateDataSourceFromRDSCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateDataSourceFromRDSCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDataSourceFromRDSCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateDataSourceFromRDSCommand(input, context);
36
+ return se_CreateDataSourceFromRDSCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateDataSourceFromRDSCommand(output, context);
39
+ return de_CreateDataSourceFromRDSCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateDataSourceFromRedshiftCommand, serializeAws_json1_1CreateDataSourceFromRedshiftCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateDataSourceFromRedshiftCommand, se_CreateDataSourceFromRedshiftCommand, } from "../protocols/Aws_json1_1";
5
5
  export class CreateDataSourceFromRedshiftCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDataSourceFromRedshiftCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateDataSourceFromRedshiftCommand(input, context);
36
+ return se_CreateDataSourceFromRedshiftCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateDataSourceFromRedshiftCommand(output, context);
39
+ return de_CreateDataSourceFromRedshiftCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateDataSourceFromS3Command, serializeAws_json1_1CreateDataSourceFromS3Command, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateDataSourceFromS3Command, se_CreateDataSourceFromS3Command } from "../protocols/Aws_json1_1";
5
5
  export class CreateDataSourceFromS3Command extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDataSourceFromS3Command extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateDataSourceFromS3Command(input, context);
36
+ return se_CreateDataSourceFromS3Command(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateDataSourceFromS3Command(output, context);
39
+ return de_CreateDataSourceFromS3Command(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateEvaluationCommand, serializeAws_json1_1CreateEvaluationCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateEvaluationCommand, se_CreateEvaluationCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateEvaluationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateEvaluationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateEvaluationCommand(input, context);
36
+ return se_CreateEvaluationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateEvaluationCommand(output, context);
39
+ return de_CreateEvaluationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateMLModelCommand, serializeAws_json1_1CreateMLModelCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateMLModelCommand, se_CreateMLModelCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateMLModelCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateMLModelCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateMLModelCommand(input, context);
36
+ return se_CreateMLModelCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateMLModelCommand(output, context);
39
+ return de_CreateMLModelCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1CreateRealtimeEndpointCommand, serializeAws_json1_1CreateRealtimeEndpointCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_CreateRealtimeEndpointCommand, se_CreateRealtimeEndpointCommand } from "../protocols/Aws_json1_1";
5
5
  export class CreateRealtimeEndpointCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateRealtimeEndpointCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1CreateRealtimeEndpointCommand(input, context);
36
+ return se_CreateRealtimeEndpointCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1CreateRealtimeEndpointCommand(output, context);
39
+ return de_CreateRealtimeEndpointCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteBatchPredictionCommand, serializeAws_json1_1DeleteBatchPredictionCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteBatchPredictionCommand, se_DeleteBatchPredictionCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteBatchPredictionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteBatchPredictionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteBatchPredictionCommand(input, context);
36
+ return se_DeleteBatchPredictionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteBatchPredictionCommand(output, context);
39
+ return de_DeleteBatchPredictionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteDataSourceCommand, serializeAws_json1_1DeleteDataSourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteDataSourceCommand, se_DeleteDataSourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteDataSourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteDataSourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteDataSourceCommand(input, context);
36
+ return se_DeleteDataSourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteDataSourceCommand(output, context);
39
+ return de_DeleteDataSourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteEvaluationCommand, serializeAws_json1_1DeleteEvaluationCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteEvaluationCommand, se_DeleteEvaluationCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteEvaluationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteEvaluationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteEvaluationCommand(input, context);
36
+ return se_DeleteEvaluationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteEvaluationCommand(output, context);
39
+ return de_DeleteEvaluationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteMLModelCommand, serializeAws_json1_1DeleteMLModelCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteMLModelCommand, se_DeleteMLModelCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteMLModelCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteMLModelCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteMLModelCommand(input, context);
36
+ return se_DeleteMLModelCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteMLModelCommand(output, context);
39
+ return de_DeleteMLModelCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteRealtimeEndpointCommand, serializeAws_json1_1DeleteRealtimeEndpointCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteRealtimeEndpointCommand, se_DeleteRealtimeEndpointCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteRealtimeEndpointCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteRealtimeEndpointCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteRealtimeEndpointCommand(input, context);
36
+ return se_DeleteRealtimeEndpointCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteRealtimeEndpointCommand(output, context);
39
+ return de_DeleteRealtimeEndpointCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DeleteTagsCommand, serializeAws_json1_1DeleteTagsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DeleteTagsCommand, se_DeleteTagsCommand } from "../protocols/Aws_json1_1";
5
5
  export class DeleteTagsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteTagsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DeleteTagsCommand(input, context);
36
+ return se_DeleteTagsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DeleteTagsCommand(output, context);
39
+ return de_DeleteTagsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeBatchPredictionsCommand, serializeAws_json1_1DescribeBatchPredictionsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeBatchPredictionsCommand, se_DescribeBatchPredictionsCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeBatchPredictionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeBatchPredictionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeBatchPredictionsCommand(input, context);
36
+ return se_DescribeBatchPredictionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeBatchPredictionsCommand(output, context);
39
+ return de_DescribeBatchPredictionsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeDataSourcesCommand, serializeAws_json1_1DescribeDataSourcesCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeDataSourcesCommand, se_DescribeDataSourcesCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeDataSourcesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeDataSourcesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeDataSourcesCommand(input, context);
36
+ return se_DescribeDataSourcesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeDataSourcesCommand(output, context);
39
+ return de_DescribeDataSourcesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeEvaluationsCommand, serializeAws_json1_1DescribeEvaluationsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeEvaluationsCommand, se_DescribeEvaluationsCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeEvaluationsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeEvaluationsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeEvaluationsCommand(input, context);
36
+ return se_DescribeEvaluationsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeEvaluationsCommand(output, context);
39
+ return de_DescribeEvaluationsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeMLModelsCommand, serializeAws_json1_1DescribeMLModelsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeMLModelsCommand, se_DescribeMLModelsCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeMLModelsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeMLModelsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeMLModelsCommand(input, context);
36
+ return se_DescribeMLModelsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeMLModelsCommand(output, context);
39
+ return de_DescribeMLModelsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1DescribeTagsCommand, serializeAws_json1_1DescribeTagsCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_DescribeTagsCommand, se_DescribeTagsCommand } from "../protocols/Aws_json1_1";
5
5
  export class DescribeTagsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DescribeTagsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1DescribeTagsCommand(input, context);
36
+ return se_DescribeTagsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1DescribeTagsCommand(output, context);
39
+ return de_DescribeTagsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1GetBatchPredictionCommand, serializeAws_json1_1GetBatchPredictionCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_GetBatchPredictionCommand, se_GetBatchPredictionCommand } from "../protocols/Aws_json1_1";
5
5
  export class GetBatchPredictionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetBatchPredictionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1GetBatchPredictionCommand(input, context);
36
+ return se_GetBatchPredictionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1GetBatchPredictionCommand(output, context);
39
+ return de_GetBatchPredictionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1GetDataSourceCommand, serializeAws_json1_1GetDataSourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_GetDataSourceCommand, se_GetDataSourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class GetDataSourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetDataSourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1GetDataSourceCommand(input, context);
36
+ return se_GetDataSourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1GetDataSourceCommand(output, context);
39
+ return de_GetDataSourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1GetEvaluationCommand, serializeAws_json1_1GetEvaluationCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_GetEvaluationCommand, se_GetEvaluationCommand } from "../protocols/Aws_json1_1";
5
5
  export class GetEvaluationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetEvaluationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1GetEvaluationCommand(input, context);
36
+ return se_GetEvaluationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1GetEvaluationCommand(output, context);
39
+ return de_GetEvaluationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1GetMLModelCommand, serializeAws_json1_1GetMLModelCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_GetMLModelCommand, se_GetMLModelCommand } from "../protocols/Aws_json1_1";
5
5
  export class GetMLModelCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetMLModelCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1GetMLModelCommand(input, context);
36
+ return se_GetMLModelCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1GetMLModelCommand(output, context);
39
+ return de_GetMLModelCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getPredictEndpointPlugin } from "@aws-sdk/middleware-sdk-machinelearning";
3
3
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4
4
  import { Command as $Command } from "@aws-sdk/smithy-client";
5
- import { deserializeAws_json1_1PredictCommand, serializeAws_json1_1PredictCommand } from "../protocols/Aws_json1_1";
5
+ import { de_PredictCommand, se_PredictCommand } from "../protocols/Aws_json1_1";
6
6
  export class PredictCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -35,9 +35,9 @@ export class PredictCommand extends $Command {
35
35
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
36
36
  }
37
37
  serialize(input, context) {
38
- return serializeAws_json1_1PredictCommand(input, context);
38
+ return se_PredictCommand(input, context);
39
39
  }
40
40
  deserialize(output, context) {
41
- return deserializeAws_json1_1PredictCommand(output, context);
41
+ return de_PredictCommand(output, context);
42
42
  }
43
43
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1UpdateBatchPredictionCommand, serializeAws_json1_1UpdateBatchPredictionCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_UpdateBatchPredictionCommand, se_UpdateBatchPredictionCommand } from "../protocols/Aws_json1_1";
5
5
  export class UpdateBatchPredictionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateBatchPredictionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1UpdateBatchPredictionCommand(input, context);
36
+ return se_UpdateBatchPredictionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1UpdateBatchPredictionCommand(output, context);
39
+ return de_UpdateBatchPredictionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1UpdateDataSourceCommand, serializeAws_json1_1UpdateDataSourceCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_UpdateDataSourceCommand, se_UpdateDataSourceCommand } from "../protocols/Aws_json1_1";
5
5
  export class UpdateDataSourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateDataSourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1UpdateDataSourceCommand(input, context);
36
+ return se_UpdateDataSourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1UpdateDataSourceCommand(output, context);
39
+ return de_UpdateDataSourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1UpdateEvaluationCommand, serializeAws_json1_1UpdateEvaluationCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_UpdateEvaluationCommand, se_UpdateEvaluationCommand } from "../protocols/Aws_json1_1";
5
5
  export class UpdateEvaluationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateEvaluationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1UpdateEvaluationCommand(input, context);
36
+ return se_UpdateEvaluationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1UpdateEvaluationCommand(output, context);
39
+ return de_UpdateEvaluationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_json1_1UpdateMLModelCommand, serializeAws_json1_1UpdateMLModelCommand, } from "../protocols/Aws_json1_1";
4
+ import { de_UpdateMLModelCommand, se_UpdateMLModelCommand } from "../protocols/Aws_json1_1";
5
5
  export class UpdateMLModelCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateMLModelCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_json1_1UpdateMLModelCommand(input, context);
36
+ return se_UpdateMLModelCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_1UpdateMLModelCommand(output, context);
39
+ return de_UpdateMLModelCommand(output, context);
40
40
  }
41
41
  }