@aws-sdk/client-backup-gateway 3.294.0 → 3.296.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 +4 -4
  2. package/dist-cjs/commands/CreateGatewayCommand.js +4 -4
  3. package/dist-cjs/commands/DeleteGatewayCommand.js +4 -4
  4. package/dist-cjs/commands/DeleteHypervisorCommand.js +4 -4
  5. package/dist-cjs/commands/DisassociateGatewayFromServerCommand.js +4 -4
  6. package/dist-cjs/commands/GetBandwidthRateLimitScheduleCommand.js +4 -4
  7. package/dist-cjs/commands/GetGatewayCommand.js +4 -4
  8. package/dist-cjs/commands/GetHypervisorCommand.js +4 -4
  9. package/dist-cjs/commands/GetHypervisorPropertyMappingsCommand.js +4 -4
  10. package/dist-cjs/commands/GetVirtualMachineCommand.js +4 -4
  11. package/dist-cjs/commands/ImportHypervisorConfigurationCommand.js +4 -4
  12. package/dist-cjs/commands/ListGatewaysCommand.js +4 -4
  13. package/dist-cjs/commands/ListHypervisorsCommand.js +4 -4
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +4 -4
  15. package/dist-cjs/commands/ListVirtualMachinesCommand.js +4 -4
  16. package/dist-cjs/commands/PutBandwidthRateLimitScheduleCommand.js +4 -4
  17. package/dist-cjs/commands/PutHypervisorPropertyMappingsCommand.js +4 -4
  18. package/dist-cjs/commands/PutMaintenanceStartTimeCommand.js +4 -4
  19. package/dist-cjs/commands/StartVirtualMachinesMetadataSyncCommand.js +4 -4
  20. package/dist-cjs/commands/TagResourceCommand.js +4 -4
  21. package/dist-cjs/commands/TestHypervisorConfigurationCommand.js +4 -4
  22. package/dist-cjs/commands/UntagResourceCommand.js +4 -4
  23. package/dist-cjs/commands/UpdateGatewayInformationCommand.js +4 -4
  24. package/dist-cjs/commands/UpdateGatewaySoftwareNowCommand.js +4 -4
  25. package/dist-cjs/commands/UpdateHypervisorCommand.js +4 -4
  26. package/dist-es/commands/AssociateGatewayToServerCommand.js +4 -4
  27. package/dist-es/commands/CreateGatewayCommand.js +4 -4
  28. package/dist-es/commands/DeleteGatewayCommand.js +4 -4
  29. package/dist-es/commands/DeleteHypervisorCommand.js +4 -4
  30. package/dist-es/commands/DisassociateGatewayFromServerCommand.js +4 -4
  31. package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +4 -4
  32. package/dist-es/commands/GetGatewayCommand.js +4 -4
  33. package/dist-es/commands/GetHypervisorCommand.js +4 -4
  34. package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +4 -4
  35. package/dist-es/commands/GetVirtualMachineCommand.js +4 -4
  36. package/dist-es/commands/ImportHypervisorConfigurationCommand.js +4 -4
  37. package/dist-es/commands/ListGatewaysCommand.js +4 -4
  38. package/dist-es/commands/ListHypervisorsCommand.js +4 -4
  39. package/dist-es/commands/ListTagsForResourceCommand.js +4 -4
  40. package/dist-es/commands/ListVirtualMachinesCommand.js +4 -4
  41. package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +4 -4
  42. package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +4 -4
  43. package/dist-es/commands/PutMaintenanceStartTimeCommand.js +4 -4
  44. package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +4 -4
  45. package/dist-es/commands/TagResourceCommand.js +4 -4
  46. package/dist-es/commands/TestHypervisorConfigurationCommand.js +4 -4
  47. package/dist-es/commands/UntagResourceCommand.js +4 -4
  48. package/dist-es/commands/UpdateGatewayInformationCommand.js +4 -4
  49. package/dist-es/commands/UpdateGatewaySoftwareNowCommand.js +4 -4
  50. package/dist-es/commands/UpdateHypervisorCommand.js +4 -4
  51. package/dist-types/BackupGatewayClient.d.ts +4 -4
  52. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  53. package/dist-types/ts3.4/BackupGatewayClient.d.ts +4 -4
  54. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +3 -4
  55. package/package.json +36 -36
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { DeleteHypervisorInputFilterSensitiveLog, DeleteHypervisorOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0DeleteHypervisorCommand, serializeAws_json1_0DeleteHypervisorCommand, } from "../protocols/Aws_json1_0";
6
6
  export class DeleteHypervisorCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class DeleteHypervisorCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, DeleteHypervisorCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { DisassociateGatewayFromServerInputFilterSensitiveLog, DisassociateGatewayFromServerOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0DisassociateGatewayFromServerCommand, serializeAws_json1_0DisassociateGatewayFromServerCommand, } from "../protocols/Aws_json1_0";
6
6
  export class DisassociateGatewayFromServerCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class DisassociateGatewayFromServerCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, DisassociateGatewayFromServerCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetBandwidthRateLimitScheduleInputFilterSensitiveLog, GetBandwidthRateLimitScheduleOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0GetBandwidthRateLimitScheduleCommand, serializeAws_json1_0GetBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
6
6
  export class GetBandwidthRateLimitScheduleCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class GetBandwidthRateLimitScheduleCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, GetBandwidthRateLimitScheduleCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetGatewayInputFilterSensitiveLog, GetGatewayOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0GetGatewayCommand, serializeAws_json1_0GetGatewayCommand, } from "../protocols/Aws_json1_0";
6
6
  export class GetGatewayCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class GetGatewayCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, GetGatewayCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetHypervisorInputFilterSensitiveLog, GetHypervisorOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0GetHypervisorCommand, serializeAws_json1_0GetHypervisorCommand, } from "../protocols/Aws_json1_0";
6
6
  export class GetHypervisorCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class GetHypervisorCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, GetHypervisorCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetHypervisorPropertyMappingsInputFilterSensitiveLog, GetHypervisorPropertyMappingsOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0GetHypervisorPropertyMappingsCommand, serializeAws_json1_0GetHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
6
6
  export class GetHypervisorPropertyMappingsCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class GetHypervisorPropertyMappingsCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, GetHypervisorPropertyMappingsCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetVirtualMachineInputFilterSensitiveLog, GetVirtualMachineOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0GetVirtualMachineCommand, serializeAws_json1_0GetVirtualMachineCommand, } from "../protocols/Aws_json1_0";
6
6
  export class GetVirtualMachineCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class GetVirtualMachineCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, GetVirtualMachineCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ImportHypervisorConfigurationInputFilterSensitiveLog, ImportHypervisorConfigurationOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0ImportHypervisorConfigurationCommand, serializeAws_json1_0ImportHypervisorConfigurationCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ImportHypervisorConfigurationCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class ImportHypervisorConfigurationCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, ImportHypervisorConfigurationCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListGatewaysInputFilterSensitiveLog, ListGatewaysOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0ListGatewaysCommand, serializeAws_json1_0ListGatewaysCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ListGatewaysCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class ListGatewaysCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, ListGatewaysCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListHypervisorsInputFilterSensitiveLog, ListHypervisorsOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0ListHypervisorsCommand, serializeAws_json1_0ListHypervisorsCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ListHypervisorsCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class ListHypervisorsCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, ListHypervisorsCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListTagsForResourceInputFilterSensitiveLog, ListTagsForResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0ListTagsForResourceCommand, serializeAws_json1_0ListTagsForResourceCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ListTagsForResourceCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class ListTagsForResourceCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, ListTagsForResourceCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListVirtualMachinesInputFilterSensitiveLog, ListVirtualMachinesOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0ListVirtualMachinesCommand, serializeAws_json1_0ListVirtualMachinesCommand, } from "../protocols/Aws_json1_0";
6
6
  export class ListVirtualMachinesCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class ListVirtualMachinesCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, ListVirtualMachinesCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { PutBandwidthRateLimitScheduleInputFilterSensitiveLog, PutBandwidthRateLimitScheduleOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0PutBandwidthRateLimitScheduleCommand, serializeAws_json1_0PutBandwidthRateLimitScheduleCommand, } from "../protocols/Aws_json1_0";
6
6
  export class PutBandwidthRateLimitScheduleCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class PutBandwidthRateLimitScheduleCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, PutBandwidthRateLimitScheduleCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { PutHypervisorPropertyMappingsInputFilterSensitiveLog, PutHypervisorPropertyMappingsOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0PutHypervisorPropertyMappingsCommand, serializeAws_json1_0PutHypervisorPropertyMappingsCommand, } from "../protocols/Aws_json1_0";
6
6
  export class PutHypervisorPropertyMappingsCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class PutHypervisorPropertyMappingsCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, PutHypervisorPropertyMappingsCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { PutMaintenanceStartTimeInputFilterSensitiveLog, PutMaintenanceStartTimeOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0PutMaintenanceStartTimeCommand, serializeAws_json1_0PutMaintenanceStartTimeCommand, } from "../protocols/Aws_json1_0";
6
6
  export class PutMaintenanceStartTimeCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class PutMaintenanceStartTimeCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, PutMaintenanceStartTimeCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { StartVirtualMachinesMetadataSyncInputFilterSensitiveLog, StartVirtualMachinesMetadataSyncOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0StartVirtualMachinesMetadataSyncCommand, serializeAws_json1_0StartVirtualMachinesMetadataSyncCommand, } from "../protocols/Aws_json1_0";
6
6
  export class StartVirtualMachinesMetadataSyncCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class StartVirtualMachinesMetadataSyncCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, StartVirtualMachinesMetadataSyncCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { TagResourceInputFilterSensitiveLog, TagResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0TagResourceCommand, serializeAws_json1_0TagResourceCommand, } from "../protocols/Aws_json1_0";
6
6
  export class TagResourceCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class TagResourceCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, TagResourceCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { TestHypervisorConfigurationInputFilterSensitiveLog, TestHypervisorConfigurationOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0TestHypervisorConfigurationCommand, serializeAws_json1_0TestHypervisorConfigurationCommand, } from "../protocols/Aws_json1_0";
6
6
  export class TestHypervisorConfigurationCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class TestHypervisorConfigurationCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, TestHypervisorConfigurationCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { UntagResourceInputFilterSensitiveLog, UntagResourceOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0UntagResourceCommand, serializeAws_json1_0UntagResourceCommand, } from "../protocols/Aws_json1_0";
6
6
  export class UntagResourceCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class UntagResourceCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourceCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { UpdateGatewayInformationInputFilterSensitiveLog, UpdateGatewayInformationOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0UpdateGatewayInformationCommand, serializeAws_json1_0UpdateGatewayInformationCommand, } from "../protocols/Aws_json1_0";
6
6
  export class UpdateGatewayInformationCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class UpdateGatewayInformationCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, UpdateGatewayInformationCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { UpdateGatewaySoftwareNowInputFilterSensitiveLog, UpdateGatewaySoftwareNowOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0UpdateGatewaySoftwareNowCommand, serializeAws_json1_0UpdateGatewaySoftwareNowCommand, } from "../protocols/Aws_json1_0";
6
6
  export class UpdateGatewaySoftwareNowCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class UpdateGatewaySoftwareNowCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, UpdateGatewaySoftwareNowCommand.getEndpointParameterInstructions()));
@@ -4,10 +4,6 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { UpdateHypervisorInputFilterSensitiveLog, UpdateHypervisorOutputFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_json1_0UpdateHypervisorCommand, serializeAws_json1_0UpdateHypervisorCommand, } from "../protocols/Aws_json1_0";
6
6
  export class UpdateHypervisorCommand extends $Command {
7
- constructor(input) {
8
- super();
9
- this.input = input;
10
- }
11
7
  static getEndpointParameterInstructions() {
12
8
  return {
13
9
  UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
@@ -16,6 +12,10 @@ export class UpdateHypervisorCommand extends $Command {
16
12
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
13
  };
18
14
  }
15
+ constructor(input) {
16
+ super();
17
+ this.input = input;
18
+ }
19
19
  resolveMiddleware(clientStack, configuration, options) {
20
20
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
21
  this.middlewareStack.use(getEndpointPlugin(configuration, UpdateHypervisorCommand.getEndpointParameterInstructions()));
@@ -33,8 +33,8 @@ import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOu
33
33
  import { UpdateGatewaySoftwareNowCommandInput, UpdateGatewaySoftwareNowCommandOutput } from "./commands/UpdateGatewaySoftwareNowCommand";
34
34
  import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "./commands/UpdateHypervisorCommand";
35
35
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
36
- export declare type ServiceInputTypes = AssociateGatewayToServerCommandInput | CreateGatewayCommandInput | DeleteGatewayCommandInput | DeleteHypervisorCommandInput | DisassociateGatewayFromServerCommandInput | GetBandwidthRateLimitScheduleCommandInput | GetGatewayCommandInput | GetHypervisorCommandInput | GetHypervisorPropertyMappingsCommandInput | GetVirtualMachineCommandInput | ImportHypervisorConfigurationCommandInput | ListGatewaysCommandInput | ListHypervisorsCommandInput | ListTagsForResourceCommandInput | ListVirtualMachinesCommandInput | PutBandwidthRateLimitScheduleCommandInput | PutHypervisorPropertyMappingsCommandInput | PutMaintenanceStartTimeCommandInput | StartVirtualMachinesMetadataSyncCommandInput | TagResourceCommandInput | TestHypervisorConfigurationCommandInput | UntagResourceCommandInput | UpdateGatewayInformationCommandInput | UpdateGatewaySoftwareNowCommandInput | UpdateHypervisorCommandInput;
37
- export declare type ServiceOutputTypes = AssociateGatewayToServerCommandOutput | CreateGatewayCommandOutput | DeleteGatewayCommandOutput | DeleteHypervisorCommandOutput | DisassociateGatewayFromServerCommandOutput | GetBandwidthRateLimitScheduleCommandOutput | GetGatewayCommandOutput | GetHypervisorCommandOutput | GetHypervisorPropertyMappingsCommandOutput | GetVirtualMachineCommandOutput | ImportHypervisorConfigurationCommandOutput | ListGatewaysCommandOutput | ListHypervisorsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualMachinesCommandOutput | PutBandwidthRateLimitScheduleCommandOutput | PutHypervisorPropertyMappingsCommandOutput | PutMaintenanceStartTimeCommandOutput | StartVirtualMachinesMetadataSyncCommandOutput | TagResourceCommandOutput | TestHypervisorConfigurationCommandOutput | UntagResourceCommandOutput | UpdateGatewayInformationCommandOutput | UpdateGatewaySoftwareNowCommandOutput | UpdateHypervisorCommandOutput;
36
+ export type ServiceInputTypes = AssociateGatewayToServerCommandInput | CreateGatewayCommandInput | DeleteGatewayCommandInput | DeleteHypervisorCommandInput | DisassociateGatewayFromServerCommandInput | GetBandwidthRateLimitScheduleCommandInput | GetGatewayCommandInput | GetHypervisorCommandInput | GetHypervisorPropertyMappingsCommandInput | GetVirtualMachineCommandInput | ImportHypervisorConfigurationCommandInput | ListGatewaysCommandInput | ListHypervisorsCommandInput | ListTagsForResourceCommandInput | ListVirtualMachinesCommandInput | PutBandwidthRateLimitScheduleCommandInput | PutHypervisorPropertyMappingsCommandInput | PutMaintenanceStartTimeCommandInput | StartVirtualMachinesMetadataSyncCommandInput | TagResourceCommandInput | TestHypervisorConfigurationCommandInput | UntagResourceCommandInput | UpdateGatewayInformationCommandInput | UpdateGatewaySoftwareNowCommandInput | UpdateHypervisorCommandInput;
37
+ export type ServiceOutputTypes = AssociateGatewayToServerCommandOutput | CreateGatewayCommandOutput | DeleteGatewayCommandOutput | DeleteHypervisorCommandOutput | DisassociateGatewayFromServerCommandOutput | GetBandwidthRateLimitScheduleCommandOutput | GetGatewayCommandOutput | GetHypervisorCommandOutput | GetHypervisorPropertyMappingsCommandOutput | GetVirtualMachineCommandOutput | ImportHypervisorConfigurationCommandOutput | ListGatewaysCommandOutput | ListHypervisorsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualMachinesCommandOutput | PutBandwidthRateLimitScheduleCommandOutput | PutHypervisorPropertyMappingsCommandOutput | PutMaintenanceStartTimeCommandOutput | StartVirtualMachinesMetadataSyncCommandOutput | TagResourceCommandOutput | TestHypervisorConfigurationCommandOutput | UntagResourceCommandOutput | UpdateGatewayInformationCommandOutput | UpdateGatewaySoftwareNowCommandOutput | UpdateHypervisorCommandOutput;
38
38
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
39
39
  /**
40
40
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -135,13 +135,13 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
135
135
  */
136
136
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
137
137
  }
138
- declare type BackupGatewayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
138
+ type BackupGatewayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
139
139
  /**
140
140
  * The configuration interface of BackupGatewayClient class constructor that set the region, credentials and other options.
141
141
  */
142
142
  export interface BackupGatewayClientConfig extends BackupGatewayClientConfigType {
143
143
  }
144
- declare type BackupGatewayClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
144
+ type BackupGatewayClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
145
145
  /**
146
146
  * The resolved configuration interface of BackupGatewayClient class. This is resolved and normalized from the {@link BackupGatewayClientConfig | constructor configuration interface}.
147
147
  */
@@ -5,7 +5,7 @@ export interface ClientInputEndpointParameters {
5
5
  useFipsEndpoint?: boolean | Provider<boolean>;
6
6
  endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
7
7
  }
8
- export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
8
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
9
  defaultSigningName: string;
10
10
  };
11
11
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
@@ -149,7 +149,7 @@ import {
149
149
  ClientResolvedEndpointParameters,
150
150
  EndpointParameters,
151
151
  } from "./endpoint/EndpointParameters";
152
- export declare type ServiceInputTypes =
152
+ export type ServiceInputTypes =
153
153
  | AssociateGatewayToServerCommandInput
154
154
  | CreateGatewayCommandInput
155
155
  | DeleteGatewayCommandInput
@@ -175,7 +175,7 @@ export declare type ServiceInputTypes =
175
175
  | UpdateGatewayInformationCommandInput
176
176
  | UpdateGatewaySoftwareNowCommandInput
177
177
  | UpdateHypervisorCommandInput;
178
- export declare type ServiceOutputTypes =
178
+ export type ServiceOutputTypes =
179
179
  | AssociateGatewayToServerCommandOutput
180
180
  | CreateGatewayCommandOutput
181
181
  | DeleteGatewayCommandOutput
@@ -225,7 +225,7 @@ export interface ClientDefaults
225
225
  logger?: __Logger;
226
226
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
227
227
  }
228
- declare type BackupGatewayClientConfigType = Partial<
228
+ type BackupGatewayClientConfigType = Partial<
229
229
  __SmithyConfiguration<__HttpHandlerOptions>
230
230
  > &
231
231
  ClientDefaults &
@@ -238,7 +238,7 @@ declare type BackupGatewayClientConfigType = Partial<
238
238
  ClientInputEndpointParameters;
239
239
  export interface BackupGatewayClientConfig
240
240
  extends BackupGatewayClientConfigType {}
241
- declare type BackupGatewayClientResolvedConfigType =
241
+ type BackupGatewayClientResolvedConfigType =
242
242
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
243
243
  Required<ClientDefaults> &
244
244
  RegionResolvedConfig &
@@ -16,10 +16,9 @@ export interface ClientInputEndpointParameters {
16
16
  | EndpointV2
17
17
  | Provider<EndpointV2>;
18
18
  }
19
- export declare type ClientResolvedEndpointParameters =
20
- ClientInputEndpointParameters & {
21
- defaultSigningName: string;
22
- };
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
23
22
  export declare const resolveClientEndpointParameters: <T>(
24
23
  options: T & ClientInputEndpointParameters
25
24
  ) => T &