@aws-sdk/client-m2 3.306.0 → 3.310.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 (69) hide show
  1. package/dist-cjs/commands/CancelBatchJobExecutionCommand.js +2 -2
  2. package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
  3. package/dist-cjs/commands/CreateDataSetImportTaskCommand.js +2 -2
  4. package/dist-cjs/commands/CreateDeploymentCommand.js +2 -2
  5. package/dist-cjs/commands/CreateEnvironmentCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteApplicationFromEnvironmentCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -2
  9. package/dist-cjs/commands/GetApplicationCommand.js +2 -2
  10. package/dist-cjs/commands/GetApplicationVersionCommand.js +2 -2
  11. package/dist-cjs/commands/GetBatchJobExecutionCommand.js +2 -2
  12. package/dist-cjs/commands/GetDataSetDetailsCommand.js +2 -2
  13. package/dist-cjs/commands/GetDataSetImportTaskCommand.js +2 -2
  14. package/dist-cjs/commands/GetDeploymentCommand.js +2 -2
  15. package/dist-cjs/commands/GetEnvironmentCommand.js +2 -2
  16. package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -2
  17. package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
  18. package/dist-cjs/commands/ListBatchJobDefinitionsCommand.js +2 -2
  19. package/dist-cjs/commands/ListBatchJobExecutionsCommand.js +2 -2
  20. package/dist-cjs/commands/ListDataSetImportHistoryCommand.js +2 -2
  21. package/dist-cjs/commands/ListDataSetsCommand.js +2 -2
  22. package/dist-cjs/commands/ListDeploymentsCommand.js +2 -2
  23. package/dist-cjs/commands/ListEngineVersionsCommand.js +2 -2
  24. package/dist-cjs/commands/ListEnvironmentsCommand.js +2 -2
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  26. package/dist-cjs/commands/StartApplicationCommand.js +2 -2
  27. package/dist-cjs/commands/StartBatchJobCommand.js +2 -2
  28. package/dist-cjs/commands/StopApplicationCommand.js +2 -2
  29. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  30. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  31. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -2
  32. package/dist-cjs/commands/UpdateEnvironmentCommand.js +2 -2
  33. package/dist-cjs/protocols/Aws_restJson1.js +524 -544
  34. package/dist-es/commands/CancelBatchJobExecutionCommand.js +3 -3
  35. package/dist-es/commands/CreateApplicationCommand.js +3 -3
  36. package/dist-es/commands/CreateDataSetImportTaskCommand.js +3 -3
  37. package/dist-es/commands/CreateDeploymentCommand.js +3 -3
  38. package/dist-es/commands/CreateEnvironmentCommand.js +3 -3
  39. package/dist-es/commands/DeleteApplicationCommand.js +3 -3
  40. package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +3 -3
  41. package/dist-es/commands/DeleteEnvironmentCommand.js +3 -3
  42. package/dist-es/commands/GetApplicationCommand.js +3 -3
  43. package/dist-es/commands/GetApplicationVersionCommand.js +3 -3
  44. package/dist-es/commands/GetBatchJobExecutionCommand.js +3 -3
  45. package/dist-es/commands/GetDataSetDetailsCommand.js +3 -3
  46. package/dist-es/commands/GetDataSetImportTaskCommand.js +3 -3
  47. package/dist-es/commands/GetDeploymentCommand.js +3 -3
  48. package/dist-es/commands/GetEnvironmentCommand.js +3 -3
  49. package/dist-es/commands/ListApplicationVersionsCommand.js +3 -3
  50. package/dist-es/commands/ListApplicationsCommand.js +3 -3
  51. package/dist-es/commands/ListBatchJobDefinitionsCommand.js +3 -3
  52. package/dist-es/commands/ListBatchJobExecutionsCommand.js +3 -3
  53. package/dist-es/commands/ListDataSetImportHistoryCommand.js +3 -3
  54. package/dist-es/commands/ListDataSetsCommand.js +3 -3
  55. package/dist-es/commands/ListDeploymentsCommand.js +3 -3
  56. package/dist-es/commands/ListEngineVersionsCommand.js +3 -3
  57. package/dist-es/commands/ListEnvironmentsCommand.js +3 -3
  58. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  59. package/dist-es/commands/StartApplicationCommand.js +3 -3
  60. package/dist-es/commands/StartBatchJobCommand.js +3 -3
  61. package/dist-es/commands/StopApplicationCommand.js +3 -3
  62. package/dist-es/commands/TagResourceCommand.js +3 -3
  63. package/dist-es/commands/UntagResourceCommand.js +3 -3
  64. package/dist-es/commands/UpdateApplicationCommand.js +3 -3
  65. package/dist-es/commands/UpdateEnvironmentCommand.js +3 -3
  66. package/dist-es/protocols/Aws_restJson1.js +458 -478
  67. package/dist-types/protocols/Aws_restJson1.d.ts +256 -64
  68. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +64 -64
  69. package/package.json +35 -35
@@ -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_restJson1CancelBatchJobExecutionCommand, serializeAws_restJson1CancelBatchJobExecutionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CancelBatchJobExecutionCommand, se_CancelBatchJobExecutionCommand } from "../protocols/Aws_restJson1";
5
5
  export class CancelBatchJobExecutionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CancelBatchJobExecutionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CancelBatchJobExecutionCommand(input, context);
36
+ return se_CancelBatchJobExecutionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CancelBatchJobExecutionCommand(output, context);
39
+ return de_CancelBatchJobExecutionCommand(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_restJson1CreateApplicationCommand, serializeAws_restJson1CreateApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateApplicationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateApplicationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateApplicationCommand(input, context);
36
+ return se_CreateApplicationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateApplicationCommand(output, context);
39
+ return de_CreateApplicationCommand(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_restJson1CreateDataSetImportTaskCommand, serializeAws_restJson1CreateDataSetImportTaskCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateDataSetImportTaskCommand, se_CreateDataSetImportTaskCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateDataSetImportTaskCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDataSetImportTaskCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateDataSetImportTaskCommand(input, context);
36
+ return se_CreateDataSetImportTaskCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateDataSetImportTaskCommand(output, context);
39
+ return de_CreateDataSetImportTaskCommand(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_restJson1CreateDeploymentCommand, serializeAws_restJson1CreateDeploymentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateDeploymentCommand, se_CreateDeploymentCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateDeploymentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateDeploymentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateDeploymentCommand(input, context);
36
+ return se_CreateDeploymentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateDeploymentCommand(output, context);
39
+ return de_CreateDeploymentCommand(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_restJson1CreateEnvironmentCommand, serializeAws_restJson1CreateEnvironmentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateEnvironmentCommand, se_CreateEnvironmentCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateEnvironmentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateEnvironmentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateEnvironmentCommand(input, context);
36
+ return se_CreateEnvironmentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateEnvironmentCommand(output, context);
39
+ return de_CreateEnvironmentCommand(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_restJson1DeleteApplicationCommand, serializeAws_restJson1DeleteApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteApplicationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteApplicationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteApplicationCommand(input, context);
36
+ return se_DeleteApplicationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteApplicationCommand(output, context);
39
+ return de_DeleteApplicationCommand(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_restJson1DeleteApplicationFromEnvironmentCommand, serializeAws_restJson1DeleteApplicationFromEnvironmentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteApplicationFromEnvironmentCommand, se_DeleteApplicationFromEnvironmentCommand, } from "../protocols/Aws_restJson1";
5
5
  export class DeleteApplicationFromEnvironmentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteApplicationFromEnvironmentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteApplicationFromEnvironmentCommand(input, context);
36
+ return se_DeleteApplicationFromEnvironmentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteApplicationFromEnvironmentCommand(output, context);
39
+ return de_DeleteApplicationFromEnvironmentCommand(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_restJson1DeleteEnvironmentCommand, serializeAws_restJson1DeleteEnvironmentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteEnvironmentCommand, se_DeleteEnvironmentCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteEnvironmentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteEnvironmentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteEnvironmentCommand(input, context);
36
+ return se_DeleteEnvironmentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteEnvironmentCommand(output, context);
39
+ return de_DeleteEnvironmentCommand(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_restJson1GetApplicationCommand, serializeAws_restJson1GetApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetApplicationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetApplicationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetApplicationCommand(input, context);
36
+ return se_GetApplicationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetApplicationCommand(output, context);
39
+ return de_GetApplicationCommand(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_restJson1GetApplicationVersionCommand, serializeAws_restJson1GetApplicationVersionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetApplicationVersionCommand, se_GetApplicationVersionCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetApplicationVersionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetApplicationVersionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetApplicationVersionCommand(input, context);
36
+ return se_GetApplicationVersionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetApplicationVersionCommand(output, context);
39
+ return de_GetApplicationVersionCommand(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_restJson1GetBatchJobExecutionCommand, serializeAws_restJson1GetBatchJobExecutionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetBatchJobExecutionCommand, se_GetBatchJobExecutionCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetBatchJobExecutionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetBatchJobExecutionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetBatchJobExecutionCommand(input, context);
36
+ return se_GetBatchJobExecutionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetBatchJobExecutionCommand(output, context);
39
+ return de_GetBatchJobExecutionCommand(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_restJson1GetDataSetDetailsCommand, serializeAws_restJson1GetDataSetDetailsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetDataSetDetailsCommand, se_GetDataSetDetailsCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetDataSetDetailsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetDataSetDetailsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetDataSetDetailsCommand(input, context);
36
+ return se_GetDataSetDetailsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetDataSetDetailsCommand(output, context);
39
+ return de_GetDataSetDetailsCommand(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_restJson1GetDataSetImportTaskCommand, serializeAws_restJson1GetDataSetImportTaskCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetDataSetImportTaskCommand, se_GetDataSetImportTaskCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetDataSetImportTaskCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetDataSetImportTaskCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetDataSetImportTaskCommand(input, context);
36
+ return se_GetDataSetImportTaskCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetDataSetImportTaskCommand(output, context);
39
+ return de_GetDataSetImportTaskCommand(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_restJson1GetDeploymentCommand, serializeAws_restJson1GetDeploymentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetDeploymentCommand, se_GetDeploymentCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetDeploymentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetDeploymentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetDeploymentCommand(input, context);
36
+ return se_GetDeploymentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetDeploymentCommand(output, context);
39
+ return de_GetDeploymentCommand(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_restJson1GetEnvironmentCommand, serializeAws_restJson1GetEnvironmentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetEnvironmentCommand, se_GetEnvironmentCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetEnvironmentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetEnvironmentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetEnvironmentCommand(input, context);
36
+ return se_GetEnvironmentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetEnvironmentCommand(output, context);
39
+ return de_GetEnvironmentCommand(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_restJson1ListApplicationVersionsCommand, serializeAws_restJson1ListApplicationVersionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListApplicationVersionsCommand, se_ListApplicationVersionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListApplicationVersionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListApplicationVersionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListApplicationVersionsCommand(input, context);
36
+ return se_ListApplicationVersionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListApplicationVersionsCommand(output, context);
39
+ return de_ListApplicationVersionsCommand(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_restJson1ListApplicationsCommand, serializeAws_restJson1ListApplicationsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListApplicationsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListApplicationsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListApplicationsCommand(input, context);
36
+ return se_ListApplicationsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListApplicationsCommand(output, context);
39
+ return de_ListApplicationsCommand(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_restJson1ListBatchJobDefinitionsCommand, serializeAws_restJson1ListBatchJobDefinitionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListBatchJobDefinitionsCommand, se_ListBatchJobDefinitionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListBatchJobDefinitionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListBatchJobDefinitionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListBatchJobDefinitionsCommand(input, context);
36
+ return se_ListBatchJobDefinitionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListBatchJobDefinitionsCommand(output, context);
39
+ return de_ListBatchJobDefinitionsCommand(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_restJson1ListBatchJobExecutionsCommand, serializeAws_restJson1ListBatchJobExecutionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListBatchJobExecutionsCommand, se_ListBatchJobExecutionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListBatchJobExecutionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListBatchJobExecutionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListBatchJobExecutionsCommand(input, context);
36
+ return se_ListBatchJobExecutionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListBatchJobExecutionsCommand(output, context);
39
+ return de_ListBatchJobExecutionsCommand(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_restJson1ListDataSetImportHistoryCommand, serializeAws_restJson1ListDataSetImportHistoryCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListDataSetImportHistoryCommand, se_ListDataSetImportHistoryCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListDataSetImportHistoryCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListDataSetImportHistoryCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListDataSetImportHistoryCommand(input, context);
36
+ return se_ListDataSetImportHistoryCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListDataSetImportHistoryCommand(output, context);
39
+ return de_ListDataSetImportHistoryCommand(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_restJson1ListDataSetsCommand, serializeAws_restJson1ListDataSetsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListDataSetsCommand, se_ListDataSetsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListDataSetsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListDataSetsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListDataSetsCommand(input, context);
36
+ return se_ListDataSetsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListDataSetsCommand(output, context);
39
+ return de_ListDataSetsCommand(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_restJson1ListDeploymentsCommand, serializeAws_restJson1ListDeploymentsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListDeploymentsCommand, se_ListDeploymentsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListDeploymentsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListDeploymentsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListDeploymentsCommand(input, context);
36
+ return se_ListDeploymentsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListDeploymentsCommand(output, context);
39
+ return de_ListDeploymentsCommand(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_restJson1ListEngineVersionsCommand, serializeAws_restJson1ListEngineVersionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListEngineVersionsCommand, se_ListEngineVersionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListEngineVersionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListEngineVersionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListEngineVersionsCommand(input, context);
36
+ return se_ListEngineVersionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListEngineVersionsCommand(output, context);
39
+ return de_ListEngineVersionsCommand(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_restJson1ListEnvironmentsCommand, serializeAws_restJson1ListEnvironmentsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListEnvironmentsCommand, se_ListEnvironmentsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListEnvironmentsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListEnvironmentsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListEnvironmentsCommand(input, context);
36
+ return se_ListEnvironmentsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListEnvironmentsCommand(output, context);
39
+ return de_ListEnvironmentsCommand(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_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTagsForResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTagsForResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
39
+ return de_ListTagsForResourceCommand(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_restJson1StartApplicationCommand, serializeAws_restJson1StartApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StartApplicationCommand, se_StartApplicationCommand } from "../protocols/Aws_restJson1";
5
5
  export class StartApplicationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartApplicationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StartApplicationCommand(input, context);
36
+ return se_StartApplicationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StartApplicationCommand(output, context);
39
+ return de_StartApplicationCommand(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_restJson1StartBatchJobCommand, serializeAws_restJson1StartBatchJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StartBatchJobCommand, se_StartBatchJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class StartBatchJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartBatchJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StartBatchJobCommand(input, context);
36
+ return se_StartBatchJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StartBatchJobCommand(output, context);
39
+ return de_StartBatchJobCommand(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_restJson1StopApplicationCommand, serializeAws_restJson1StopApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StopApplicationCommand, se_StopApplicationCommand } from "../protocols/Aws_restJson1";
5
5
  export class StopApplicationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StopApplicationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StopApplicationCommand(input, context);
36
+ return se_StopApplicationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StopApplicationCommand(output, context);
39
+ return de_StopApplicationCommand(output, context);
40
40
  }
41
41
  }