@aws-sdk/client-backup-gateway 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 (55) hide show
  1. package/dist-cjs/commands/AssociateGatewayToServerCommand.js +2 -2
  2. package/dist-cjs/commands/CreateGatewayCommand.js +2 -2
  3. package/dist-cjs/commands/DeleteGatewayCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteHypervisorCommand.js +2 -2
  5. package/dist-cjs/commands/DisassociateGatewayFromServerCommand.js +2 -2
  6. package/dist-cjs/commands/GetBandwidthRateLimitScheduleCommand.js +2 -2
  7. package/dist-cjs/commands/GetGatewayCommand.js +2 -2
  8. package/dist-cjs/commands/GetHypervisorCommand.js +2 -2
  9. package/dist-cjs/commands/GetHypervisorPropertyMappingsCommand.js +2 -2
  10. package/dist-cjs/commands/GetVirtualMachineCommand.js +2 -2
  11. package/dist-cjs/commands/ImportHypervisorConfigurationCommand.js +2 -2
  12. package/dist-cjs/commands/ListGatewaysCommand.js +2 -2
  13. package/dist-cjs/commands/ListHypervisorsCommand.js +2 -2
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  15. package/dist-cjs/commands/ListVirtualMachinesCommand.js +2 -2
  16. package/dist-cjs/commands/PutBandwidthRateLimitScheduleCommand.js +2 -2
  17. package/dist-cjs/commands/PutHypervisorPropertyMappingsCommand.js +2 -2
  18. package/dist-cjs/commands/PutMaintenanceStartTimeCommand.js +2 -2
  19. package/dist-cjs/commands/StartVirtualMachinesMetadataSyncCommand.js +2 -2
  20. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  21. package/dist-cjs/commands/TestHypervisorConfigurationCommand.js +2 -2
  22. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UpdateGatewayInformationCommand.js +2 -2
  24. package/dist-cjs/commands/UpdateGatewaySoftwareNowCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateHypervisorCommand.js +2 -2
  26. package/dist-cjs/protocols/Aws_json1_0.js +433 -439
  27. package/dist-es/commands/AssociateGatewayToServerCommand.js +3 -3
  28. package/dist-es/commands/CreateGatewayCommand.js +3 -3
  29. package/dist-es/commands/DeleteGatewayCommand.js +3 -3
  30. package/dist-es/commands/DeleteHypervisorCommand.js +3 -3
  31. package/dist-es/commands/DisassociateGatewayFromServerCommand.js +3 -3
  32. package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +3 -3
  33. package/dist-es/commands/GetGatewayCommand.js +3 -3
  34. package/dist-es/commands/GetHypervisorCommand.js +3 -3
  35. package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +3 -3
  36. package/dist-es/commands/GetVirtualMachineCommand.js +3 -3
  37. package/dist-es/commands/ImportHypervisorConfigurationCommand.js +3 -3
  38. package/dist-es/commands/ListGatewaysCommand.js +3 -3
  39. package/dist-es/commands/ListHypervisorsCommand.js +3 -3
  40. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  41. package/dist-es/commands/ListVirtualMachinesCommand.js +3 -3
  42. package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +3 -3
  43. package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +3 -3
  44. package/dist-es/commands/PutMaintenanceStartTimeCommand.js +3 -3
  45. package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +3 -3
  46. package/dist-es/commands/TagResourceCommand.js +3 -3
  47. package/dist-es/commands/TestHypervisorConfigurationCommand.js +3 -3
  48. package/dist-es/commands/UntagResourceCommand.js +3 -3
  49. package/dist-es/commands/UpdateGatewayInformationCommand.js +3 -3
  50. package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +3 -3
  51. package/dist-es/commands/UpdateHypervisorCommand.js +3 -3
  52. package/dist-es/protocols/Aws_json1_0.js +382 -388
  53. package/dist-types/protocols/Aws_json1_0.d.ts +200 -50
  54. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +50 -50
  55. 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_json1_0AssociateGatewayToServerCommand, serializeAws_json1_0AssociateGatewayToServerCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_AssociateGatewayToServerCommand, se_AssociateGatewayToServerCommand } from "../protocols/Aws_json1_0";
5
5
  export class AssociateGatewayToServerCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class AssociateGatewayToServerCommand 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_0AssociateGatewayToServerCommand(input, context);
36
+ return se_AssociateGatewayToServerCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0AssociateGatewayToServerCommand(output, context);
39
+ return de_AssociateGatewayToServerCommand(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_0CreateGatewayCommand, serializeAws_json1_0CreateGatewayCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_CreateGatewayCommand, se_CreateGatewayCommand } from "../protocols/Aws_json1_0";
5
5
  export class CreateGatewayCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateGatewayCommand 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_0CreateGatewayCommand(input, context);
36
+ return se_CreateGatewayCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0CreateGatewayCommand(output, context);
39
+ return de_CreateGatewayCommand(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_0DeleteGatewayCommand, serializeAws_json1_0DeleteGatewayCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_DeleteGatewayCommand, se_DeleteGatewayCommand } from "../protocols/Aws_json1_0";
5
5
  export class DeleteGatewayCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteGatewayCommand 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_0DeleteGatewayCommand(input, context);
36
+ return se_DeleteGatewayCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0DeleteGatewayCommand(output, context);
39
+ return de_DeleteGatewayCommand(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_0DeleteHypervisorCommand, serializeAws_json1_0DeleteHypervisorCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_DeleteHypervisorCommand, se_DeleteHypervisorCommand } from "../protocols/Aws_json1_0";
5
5
  export class DeleteHypervisorCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteHypervisorCommand 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_0DeleteHypervisorCommand(input, context);
36
+ return se_DeleteHypervisorCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0DeleteHypervisorCommand(output, context);
39
+ return de_DeleteHypervisorCommand(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_0DisassociateGatewayFromServerCommand, serializeAws_json1_0DisassociateGatewayFromServerCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_DisassociateGatewayFromServerCommand, se_DisassociateGatewayFromServerCommand, } from "../protocols/Aws_json1_0";
5
5
  export class DisassociateGatewayFromServerCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DisassociateGatewayFromServerCommand 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_0DisassociateGatewayFromServerCommand(input, context);
36
+ return se_DisassociateGatewayFromServerCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0DisassociateGatewayFromServerCommand(output, context);
39
+ return de_DisassociateGatewayFromServerCommand(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_0GetBandwidthRateLimitScheduleCommand, serializeAws_json1_0GetBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_GetBandwidthRateLimitScheduleCommand, se_GetBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
5
5
  export class GetBandwidthRateLimitScheduleCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetBandwidthRateLimitScheduleCommand 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_0GetBandwidthRateLimitScheduleCommand(input, context);
36
+ return se_GetBandwidthRateLimitScheduleCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0GetBandwidthRateLimitScheduleCommand(output, context);
39
+ return de_GetBandwidthRateLimitScheduleCommand(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_0GetGatewayCommand, serializeAws_json1_0GetGatewayCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_GetGatewayCommand, se_GetGatewayCommand } from "../protocols/Aws_json1_0";
5
5
  export class GetGatewayCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetGatewayCommand 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_0GetGatewayCommand(input, context);
36
+ return se_GetGatewayCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0GetGatewayCommand(output, context);
39
+ return de_GetGatewayCommand(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_0GetHypervisorCommand, serializeAws_json1_0GetHypervisorCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_GetHypervisorCommand, se_GetHypervisorCommand } from "../protocols/Aws_json1_0";
5
5
  export class GetHypervisorCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetHypervisorCommand 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_0GetHypervisorCommand(input, context);
36
+ return se_GetHypervisorCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0GetHypervisorCommand(output, context);
39
+ return de_GetHypervisorCommand(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_0GetHypervisorPropertyMappingsCommand, serializeAws_json1_0GetHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_GetHypervisorPropertyMappingsCommand, se_GetHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
5
5
  export class GetHypervisorPropertyMappingsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetHypervisorPropertyMappingsCommand 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_0GetHypervisorPropertyMappingsCommand(input, context);
36
+ return se_GetHypervisorPropertyMappingsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0GetHypervisorPropertyMappingsCommand(output, context);
39
+ return de_GetHypervisorPropertyMappingsCommand(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_0GetVirtualMachineCommand, serializeAws_json1_0GetVirtualMachineCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_GetVirtualMachineCommand, se_GetVirtualMachineCommand } from "../protocols/Aws_json1_0";
5
5
  export class GetVirtualMachineCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetVirtualMachineCommand 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_0GetVirtualMachineCommand(input, context);
36
+ return se_GetVirtualMachineCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0GetVirtualMachineCommand(output, context);
39
+ return de_GetVirtualMachineCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ 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
4
  import { ImportHypervisorConfigurationInputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_json1_0ImportHypervisorConfigurationCommand, serializeAws_json1_0ImportHypervisorConfigurationCommand, } from "../protocols/Aws_json1_0";
5
+ import { de_ImportHypervisorConfigurationCommand, se_ImportHypervisorConfigurationCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ImportHypervisorConfigurationCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class ImportHypervisorConfigurationCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_json1_0ImportHypervisorConfigurationCommand(input, context);
37
+ return se_ImportHypervisorConfigurationCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_json1_0ImportHypervisorConfigurationCommand(output, context);
40
+ return de_ImportHypervisorConfigurationCommand(output, context);
41
41
  }
42
42
  }
@@ -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_0ListGatewaysCommand, serializeAws_json1_0ListGatewaysCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_ListGatewaysCommand, se_ListGatewaysCommand } from "../protocols/Aws_json1_0";
5
5
  export class ListGatewaysCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListGatewaysCommand 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_0ListGatewaysCommand(input, context);
36
+ return se_ListGatewaysCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0ListGatewaysCommand(output, context);
39
+ return de_ListGatewaysCommand(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_0ListHypervisorsCommand, serializeAws_json1_0ListHypervisorsCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_ListHypervisorsCommand, se_ListHypervisorsCommand } from "../protocols/Aws_json1_0";
5
5
  export class ListHypervisorsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListHypervisorsCommand 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_0ListHypervisorsCommand(input, context);
36
+ return se_ListHypervisorsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0ListHypervisorsCommand(output, context);
39
+ return de_ListHypervisorsCommand(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_0ListTagsForResourceCommand, serializeAws_json1_0ListTagsForResourceCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_0";
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_json1_0ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0ListTagsForResourceCommand(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_json1_0ListVirtualMachinesCommand, serializeAws_json1_0ListVirtualMachinesCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_ListVirtualMachinesCommand, se_ListVirtualMachinesCommand } from "../protocols/Aws_json1_0";
5
5
  export class ListVirtualMachinesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListVirtualMachinesCommand 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_0ListVirtualMachinesCommand(input, context);
36
+ return se_ListVirtualMachinesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0ListVirtualMachinesCommand(output, context);
39
+ return de_ListVirtualMachinesCommand(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_0PutBandwidthRateLimitScheduleCommand, serializeAws_json1_0PutBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_PutBandwidthRateLimitScheduleCommand, se_PutBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
5
5
  export class PutBandwidthRateLimitScheduleCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutBandwidthRateLimitScheduleCommand 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_0PutBandwidthRateLimitScheduleCommand(input, context);
36
+ return se_PutBandwidthRateLimitScheduleCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0PutBandwidthRateLimitScheduleCommand(output, context);
39
+ return de_PutBandwidthRateLimitScheduleCommand(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_0PutHypervisorPropertyMappingsCommand, serializeAws_json1_0PutHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_PutHypervisorPropertyMappingsCommand, se_PutHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
5
5
  export class PutHypervisorPropertyMappingsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutHypervisorPropertyMappingsCommand 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_0PutHypervisorPropertyMappingsCommand(input, context);
36
+ return se_PutHypervisorPropertyMappingsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0PutHypervisorPropertyMappingsCommand(output, context);
39
+ return de_PutHypervisorPropertyMappingsCommand(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_0PutMaintenanceStartTimeCommand, serializeAws_json1_0PutMaintenanceStartTimeCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_PutMaintenanceStartTimeCommand, se_PutMaintenanceStartTimeCommand } from "../protocols/Aws_json1_0";
5
5
  export class PutMaintenanceStartTimeCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class PutMaintenanceStartTimeCommand 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_0PutMaintenanceStartTimeCommand(input, context);
36
+ return se_PutMaintenanceStartTimeCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0PutMaintenanceStartTimeCommand(output, context);
39
+ return de_PutMaintenanceStartTimeCommand(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_0StartVirtualMachinesMetadataSyncCommand, serializeAws_json1_0StartVirtualMachinesMetadataSyncCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_StartVirtualMachinesMetadataSyncCommand, se_StartVirtualMachinesMetadataSyncCommand, } from "../protocols/Aws_json1_0";
5
5
  export class StartVirtualMachinesMetadataSyncCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartVirtualMachinesMetadataSyncCommand 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_0StartVirtualMachinesMetadataSyncCommand(input, context);
36
+ return se_StartVirtualMachinesMetadataSyncCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0StartVirtualMachinesMetadataSyncCommand(output, context);
39
+ return de_StartVirtualMachinesMetadataSyncCommand(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_0TagResourceCommand, serializeAws_json1_0TagResourceCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_0";
5
5
  export class TagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class TagResourceCommand 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_0TagResourceCommand(input, context);
36
+ return se_TagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0TagResourceCommand(output, context);
39
+ return de_TagResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ 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
4
  import { TestHypervisorConfigurationInputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_json1_0TestHypervisorConfigurationCommand, serializeAws_json1_0TestHypervisorConfigurationCommand, } from "../protocols/Aws_json1_0";
5
+ import { de_TestHypervisorConfigurationCommand, se_TestHypervisorConfigurationCommand } from "../protocols/Aws_json1_0";
6
6
  export class TestHypervisorConfigurationCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class TestHypervisorConfigurationCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_json1_0TestHypervisorConfigurationCommand(input, context);
37
+ return se_TestHypervisorConfigurationCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_json1_0TestHypervisorConfigurationCommand(output, context);
40
+ return de_TestHypervisorConfigurationCommand(output, context);
41
41
  }
42
42
  }
@@ -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_0UntagResourceCommand, serializeAws_json1_0UntagResourceCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_0";
5
5
  export class UntagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UntagResourceCommand 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_0UntagResourceCommand(input, context);
36
+ return se_UntagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0UntagResourceCommand(output, context);
39
+ return de_UntagResourceCommand(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_0UpdateGatewayInformationCommand, serializeAws_json1_0UpdateGatewayInformationCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_UpdateGatewayInformationCommand, se_UpdateGatewayInformationCommand } from "../protocols/Aws_json1_0";
5
5
  export class UpdateGatewayInformationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateGatewayInformationCommand 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_0UpdateGatewayInformationCommand(input, context);
36
+ return se_UpdateGatewayInformationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0UpdateGatewayInformationCommand(output, context);
39
+ return de_UpdateGatewayInformationCommand(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_0UpdateGatewaySoftwareNowCommand, serializeAws_json1_0UpdateGatewaySoftwareNowCommand, } from "../protocols/Aws_json1_0";
4
+ import { de_UpdateGatewaySoftwareNowCommand, se_UpdateGatewaySoftwareNowCommand } from "../protocols/Aws_json1_0";
5
5
  export class UpdateGatewaySoftwareNowCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateGatewaySoftwareNowCommand 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_0UpdateGatewaySoftwareNowCommand(input, context);
36
+ return se_UpdateGatewaySoftwareNowCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_json1_0UpdateGatewaySoftwareNowCommand(output, context);
39
+ return de_UpdateGatewaySoftwareNowCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ 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
4
  import { UpdateHypervisorInputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_json1_0UpdateHypervisorCommand, serializeAws_json1_0UpdateHypervisorCommand, } from "../protocols/Aws_json1_0";
5
+ import { de_UpdateHypervisorCommand, se_UpdateHypervisorCommand } from "../protocols/Aws_json1_0";
6
6
  export class UpdateHypervisorCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class UpdateHypervisorCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_json1_0UpdateHypervisorCommand(input, context);
37
+ return se_UpdateHypervisorCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_json1_0UpdateHypervisorCommand(output, context);
40
+ return de_UpdateHypervisorCommand(output, context);
41
41
  }
42
42
  }