@aws-sdk/client-backup-gateway 3.1093.0 → 3.1095.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 (39) hide show
  1. package/README.md +40 -9
  2. package/dist-cjs/index.js +1 -1
  3. package/dist-types/BackupGateway.d.ts +1 -9
  4. package/dist-types/BackupGatewayClient.d.ts +1 -9
  5. package/dist-types/commands/AssociateGatewayToServerCommand.d.ts +2 -4
  6. package/dist-types/commands/CreateGatewayCommand.d.ts +2 -4
  7. package/dist-types/commands/DeleteGatewayCommand.d.ts +1 -2
  8. package/dist-types/commands/DeleteHypervisorCommand.d.ts +1 -2
  9. package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +2 -4
  10. package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +2 -6
  11. package/dist-types/commands/GetGatewayCommand.d.ts +2 -4
  12. package/dist-types/commands/GetHypervisorCommand.d.ts +2 -5
  13. package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +2 -5
  14. package/dist-types/commands/GetVirtualMachineCommand.d.ts +1 -2
  15. package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +1 -2
  16. package/dist-types/commands/ListGatewaysCommand.d.ts +1 -2
  17. package/dist-types/commands/ListHypervisorsCommand.d.ts +1 -2
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -4
  19. package/dist-types/commands/ListVirtualMachinesCommand.d.ts +1 -2
  20. package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +2 -6
  21. package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +2 -5
  22. package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +1 -2
  23. package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +1 -2
  24. package/dist-types/commands/TagResourceCommand.d.ts +1 -2
  25. package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +2 -4
  26. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  27. package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +2 -4
  28. package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +2 -9
  29. package/dist-types/commands/UpdateHypervisorCommand.d.ts +2 -5
  30. package/dist-types/index.d.ts +1 -9
  31. package/dist-types/models/errors.d.ts +2 -4
  32. package/dist-types/models/models_0.d.ts +60 -162
  33. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  34. package/dist-types/runtimeConfig.d.ts +2 -0
  35. package/dist-types/runtimeConfig.native.d.ts +2 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  39. package/package.json +6 -6
package/README.md CHANGED
@@ -6,15 +6,7 @@
6
6
 
7
7
  AWS SDK for JavaScript BackupGateway Client for Node.js, Browser and React Native.
8
8
 
9
- <fullname>Backup gateway</fullname>
10
- <p>Backup gateway connects Backup to your hypervisor, so you can
11
- create, store, and restore backups of your virtual machines (VMs) anywhere, whether
12
- on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p>
13
- <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p>
14
- <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run
15
- on-demand backups. Once you have backed up your resources, you can view them and restore them
16
- like any resource supported by Backup.</p>
17
- <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
9
+ <fullname>Backup gateway</fullname> <p>Backup gateway connects Backup to your hypervisor, so you can create, store, and restore backups of your virtual machines (VMs) anywhere, whether on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p> <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p> <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run on-demand backups. Once you have backed up your resources, you can view them and restore them like any resource supported by Backup.</p> <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
18
10
 
19
11
  ## Installing
20
12
 
@@ -59,6 +51,45 @@ const params = { /** input parameters */ };
59
51
  const command = new ListGatewaysCommand(params);
60
52
  ```
61
53
 
54
+ #### Supported Message Protocols
55
+
56
+ This client supports multiple protocols.
57
+
58
+ The default for this client is **AWS JSON (RPC) 1.0**.
59
+
60
+ We have selected this default based on our evaluation of the
61
+ performance characteristics of this protocol format in JavaScript. You don't need to change it,
62
+ but you have the option to do so, for example to support existing integrations or tests.
63
+ Selecting a non-default protocol changes the format
64
+ of the data sent over the network, but does not affect how you interact with the
65
+ client using JavaScript objects.
66
+
67
+ Install the `@aws-sdk/config` package to access alternate protocols.
68
+
69
+ See [AWS Protocols](https://smithy.io/2.0/aws/protocols/index.html) for more information.
70
+
71
+ ##### AWS JSON (RPC) 1.0
72
+
73
+ This protocol uses JSON payloads.
74
+ ```js
75
+ import { AwsJson1_0Protocol } from "@aws-sdk/config/protocol";
76
+
77
+ const client = new BackupGatewayClient({
78
+ protocol: AwsJson1_0Protocol
79
+ });
80
+ ```
81
+
82
+ ##### Smithy RPC v2 CBOR
83
+
84
+ This protocol uses CBOR payloads.
85
+ ```js
86
+ import { AwsSmithyRpcV2CborProtocol } from "@aws-sdk/config/protocol";
87
+
88
+ const client = new BackupGatewayClient({
89
+ protocol: AwsSmithyRpcV2CborProtocol
90
+ });
91
+ ```
92
+
62
93
  #### Async/await
63
94
 
64
95
  We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1092.0";
72
+ var version = "3.1094.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -202,15 +202,7 @@ export interface BackupGateway {
202
202
  paginateListVirtualMachines(args?: ListVirtualMachinesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListVirtualMachinesCommandOutput>;
203
203
  }
204
204
  /**
205
- * <fullname>Backup gateway</fullname>
206
- * <p>Backup gateway connects Backup to your hypervisor, so you can
207
- * create, store, and restore backups of your virtual machines (VMs) anywhere, whether
208
- * on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p>
209
- * <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p>
210
- * <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run
211
- * on-demand backups. Once you have backed up your resources, you can view them and restore them
212
- * like any resource supported by Backup.</p>
213
- * <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
205
+ * <fullname>Backup gateway</fullname> <p>Backup gateway connects Backup to your hypervisor, so you can create, store, and restore backups of your virtual machines (VMs) anywhere, whether on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p> <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p> <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run on-demand backups. Once you have backed up your resources, you can view them and restore them like any resource supported by Backup.</p> <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
214
206
  * @public
215
207
  */
216
208
  export declare class BackupGateway extends BackupGatewayClient implements BackupGateway {
@@ -193,15 +193,7 @@ export type BackupGatewayClientResolvedConfigType = __SmithyResolvedConfiguratio
193
193
  export interface BackupGatewayClientResolvedConfig extends BackupGatewayClientResolvedConfigType {
194
194
  }
195
195
  /**
196
- * <fullname>Backup gateway</fullname>
197
- * <p>Backup gateway connects Backup to your hypervisor, so you can
198
- * create, store, and restore backups of your virtual machines (VMs) anywhere, whether
199
- * on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p>
200
- * <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p>
201
- * <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run
202
- * on-demand backups. Once you have backed up your resources, you can view them and restore them
203
- * like any resource supported by Backup.</p>
204
- * <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
196
+ * <fullname>Backup gateway</fullname> <p>Backup gateway connects Backup to your hypervisor, so you can create, store, and restore backups of your virtual machines (VMs) anywhere, whether on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p> <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p> <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run on-demand backups. Once you have backed up your resources, you can view them and restore them like any resource supported by Backup.</p> <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
205
197
  * @public
206
198
  */
207
199
  export declare class BackupGatewayClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BackupGatewayClientResolvedConfig> {
@@ -24,8 +24,7 @@ declare const AssociateGatewayToServerCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Associates a backup gateway with your server. After you complete the association process,
28
- * you can back up and restore your VMs through the gateway.</p>
27
+ * <p>Associates a backup gateway with your server. After you complete the association process, you can back up and restore your VMs through the gateway.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -59,8 +58,7 @@ declare const AssociateGatewayToServerCommand_base: {
59
58
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
60
59
  *
61
60
  * @throws {@link ThrottlingException} (client fault)
62
- * <p>TPS has been limited to protect against intentional or unintentional
63
- * high request volumes.</p>
61
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
64
62
  *
65
63
  * @throws {@link ValidationException} (client fault)
66
64
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const CreateGatewayCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Creates a backup gateway. After you create a gateway, you can associate it with a server
28
- * using the <code>AssociateGatewayToServer</code> operation.</p>
27
+ * <p>Creates a backup gateway. After you create a gateway, you can associate it with a server using the <code>AssociateGatewayToServer</code> operation.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -63,8 +62,7 @@ declare const CreateGatewayCommand_base: {
63
62
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
64
63
  *
65
64
  * @throws {@link ThrottlingException} (client fault)
66
- * <p>TPS has been limited to protect against intentional or unintentional
67
- * high request volumes.</p>
65
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
68
66
  *
69
67
  * @throws {@link ValidationException} (client fault)
70
68
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -57,8 +57,7 @@ declare const DeleteGatewayCommand_base: {
57
57
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
58
58
  *
59
59
  * @throws {@link ThrottlingException} (client fault)
60
- * <p>TPS has been limited to protect against intentional or unintentional
61
- * high request volumes.</p>
60
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
62
61
  *
63
62
  * @throws {@link ValidationException} (client fault)
64
63
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -63,8 +63,7 @@ declare const DeleteHypervisorCommand_base: {
63
63
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
64
64
  *
65
65
  * @throws {@link ThrottlingException} (client fault)
66
- * <p>TPS has been limited to protect against intentional or unintentional
67
- * high request volumes.</p>
66
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
68
67
  *
69
68
  * @throws {@link ValidationException} (client fault)
70
69
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const DisassociateGatewayFromServerCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Disassociates a backup gateway from the specified server. After the disassociation process
28
- * finishes, the gateway can no longer access the virtual machines on the server.</p>
27
+ * <p>Disassociates a backup gateway from the specified server. After the disassociation process finishes, the gateway can no longer access the virtual machines on the server.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -61,8 +60,7 @@ declare const DisassociateGatewayFromServerCommand_base: {
61
60
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
62
61
  *
63
62
  * @throws {@link ThrottlingException} (client fault)
64
- * <p>TPS has been limited to protect against intentional or unintentional
65
- * high request volumes.</p>
63
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
66
64
  *
67
65
  * @throws {@link ValidationException} (client fault)
68
66
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,10 +24,7 @@ declare const GetBandwidthRateLimitScheduleCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Retrieves the bandwidth rate limit schedule for a specified gateway.
28
- * By default, gateways do not have bandwidth rate limit schedules, which means
29
- * no bandwidth rate limiting is in effect. Use this to get a gateway's
30
- * bandwidth rate limit schedule.</p>
27
+ * <p>Retrieves the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to get a gateway's bandwidth rate limit schedule.</p>
31
28
  * @example
32
29
  * Use a bare-bones client and the command you need to make an API call.
33
30
  * ```javascript
@@ -72,8 +69,7 @@ declare const GetBandwidthRateLimitScheduleCommand_base: {
72
69
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
73
70
  *
74
71
  * @throws {@link ThrottlingException} (client fault)
75
- * <p>TPS has been limited to protect against intentional or unintentional
76
- * high request volumes.</p>
72
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
77
73
  *
78
74
  * @throws {@link ValidationException} (client fault)
79
75
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const GetGatewayCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>By providing the ARN (Amazon Resource Name), this
28
- * API returns the gateway.</p>
27
+ * <p>By providing the ARN (Amazon Resource Name), this API returns the gateway.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -74,8 +73,7 @@ declare const GetGatewayCommand_base: {
74
73
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
75
74
  *
76
75
  * @throws {@link ThrottlingException} (client fault)
77
- * <p>TPS has been limited to protect against intentional or unintentional
78
- * high request volumes.</p>
76
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
79
77
  *
80
78
  * @throws {@link ValidationException} (client fault)
81
79
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,9 +24,7 @@ declare const GetHypervisorCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>This action requests information about the specified hypervisor to which the gateway will connect.
28
- * A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
29
- * and allocates resources to them.</p>
27
+ * <p>This action requests information about the specified hypervisor to which the gateway will connect. A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.</p>
30
28
  * @example
31
29
  * Use a bare-bones client and the command you need to make an API call.
32
30
  * ```javascript
@@ -69,8 +67,7 @@ declare const GetHypervisorCommand_base: {
69
67
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
70
68
  *
71
69
  * @throws {@link ThrottlingException} (client fault)
72
- * <p>TPS has been limited to protect against intentional or unintentional
73
- * high request volumes.</p>
70
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
74
71
  *
75
72
  * @throws {@link ValidationException} (client fault)
76
73
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,9 +24,7 @@ declare const GetHypervisorPropertyMappingsCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>This action retrieves the property mappings for the specified hypervisor.
28
- * A hypervisor property mapping displays the relationship of entity properties
29
- * available from the hypervisor to the properties available in Amazon Web Services.</p>
27
+ * <p>This action retrieves the property mappings for the specified hypervisor. A hypervisor property mapping displays the relationship of entity properties available from the hypervisor to the properties available in Amazon Web Services.</p>
30
28
  * @example
31
29
  * Use a bare-bones client and the command you need to make an API call.
32
30
  * ```javascript
@@ -68,8 +66,7 @@ declare const GetHypervisorPropertyMappingsCommand_base: {
68
66
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
69
67
  *
70
68
  * @throws {@link ThrottlingException} (client fault)
71
- * <p>TPS has been limited to protect against intentional or unintentional
72
- * high request volumes.</p>
69
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
73
70
  *
74
71
  * @throws {@link ValidationException} (client fault)
75
72
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -71,8 +71,7 @@ declare const GetVirtualMachineCommand_base: {
71
71
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
72
72
  *
73
73
  * @throws {@link ThrottlingException} (client fault)
74
- * <p>TPS has been limited to protect against intentional or unintentional
75
- * high request volumes.</p>
74
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
76
75
  *
77
76
  * @throws {@link ValidationException} (client fault)
78
77
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -70,8 +70,7 @@ declare const ImportHypervisorConfigurationCommand_base: {
70
70
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
71
71
  *
72
72
  * @throws {@link ThrottlingException} (client fault)
73
- * <p>TPS has been limited to protect against intentional or unintentional
74
- * high request volumes.</p>
73
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
75
74
  *
76
75
  * @throws {@link ValidationException} (client fault)
77
76
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -64,8 +64,7 @@ declare const ListGatewaysCommand_base: {
64
64
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
65
65
  *
66
66
  * @throws {@link ThrottlingException} (client fault)
67
- * <p>TPS has been limited to protect against intentional or unintentional
68
- * high request volumes.</p>
67
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
69
68
  *
70
69
  * @throws {@link ValidationException} (client fault)
71
70
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -64,8 +64,7 @@ declare const ListHypervisorsCommand_base: {
64
64
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
65
65
  *
66
66
  * @throws {@link ThrottlingException} (client fault)
67
- * <p>TPS has been limited to protect against intentional or unintentional
68
- * high request volumes.</p>
67
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
69
68
  *
70
69
  * @throws {@link ValidationException} (client fault)
71
70
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const ListTagsForResourceCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Lists the tags applied to the resource identified by its Amazon Resource Name
28
- * (ARN).</p>
27
+ * <p>Lists the tags applied to the resource identified by its Amazon Resource Name (ARN).</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -64,8 +63,7 @@ declare const ListTagsForResourceCommand_base: {
64
63
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
65
64
  *
66
65
  * @throws {@link ThrottlingException} (client fault)
67
- * <p>TPS has been limited to protect against intentional or unintentional
68
- * high request volumes.</p>
66
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
69
67
  *
70
68
  * @throws {@link ValidationException} (client fault)
71
69
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -66,8 +66,7 @@ declare const ListVirtualMachinesCommand_base: {
66
66
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
67
67
  *
68
68
  * @throws {@link ThrottlingException} (client fault)
69
- * <p>TPS has been limited to protect against intentional or unintentional
70
- * high request volumes.</p>
69
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
71
70
  *
72
71
  * @throws {@link ValidationException} (client fault)
73
72
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,10 +24,7 @@ declare const PutBandwidthRateLimitScheduleCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>This action sets the bandwidth rate limit schedule for a specified gateway.
28
- * By default, gateways do not have a bandwidth rate limit schedule, which means
29
- * no bandwidth rate limiting is in effect. Use this to initiate a
30
- * gateway's bandwidth rate limit schedule.</p>
27
+ * <p>This action sets the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have a bandwidth rate limit schedule, which means no bandwidth rate limiting is in effect. Use this to initiate a gateway's bandwidth rate limit schedule.</p>
31
28
  * @example
32
29
  * Use a bare-bones client and the command you need to make an API call.
33
30
  * ```javascript
@@ -72,8 +69,7 @@ declare const PutBandwidthRateLimitScheduleCommand_base: {
72
69
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
73
70
  *
74
71
  * @throws {@link ThrottlingException} (client fault)
75
- * <p>TPS has been limited to protect against intentional or unintentional
76
- * high request volumes.</p>
72
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
77
73
  *
78
74
  * @throws {@link ValidationException} (client fault)
79
75
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,9 +24,7 @@ declare const PutHypervisorPropertyMappingsCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>This action sets the property mappings for the specified hypervisor.
28
- * A hypervisor property mapping displays the relationship of entity properties
29
- * available from the hypervisor to the properties available in Amazon Web Services.</p>
27
+ * <p>This action sets the property mappings for the specified hypervisor. A hypervisor property mapping displays the relationship of entity properties available from the hypervisor to the properties available in Amazon Web Services.</p>
30
28
  * @example
31
29
  * Use a bare-bones client and the command you need to make an API call.
32
30
  * ```javascript
@@ -74,8 +72,7 @@ declare const PutHypervisorPropertyMappingsCommand_base: {
74
72
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
75
73
  *
76
74
  * @throws {@link ThrottlingException} (client fault)
77
- * <p>TPS has been limited to protect against intentional or unintentional
78
- * high request volumes.</p>
75
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
79
76
  *
80
77
  * @throws {@link ValidationException} (client fault)
81
78
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -64,8 +64,7 @@ declare const PutMaintenanceStartTimeCommand_base: {
64
64
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
65
65
  *
66
66
  * @throws {@link ThrottlingException} (client fault)
67
- * <p>TPS has been limited to protect against intentional or unintentional
68
- * high request volumes.</p>
67
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
69
68
  *
70
69
  * @throws {@link ValidationException} (client fault)
71
70
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -60,8 +60,7 @@ declare const StartVirtualMachinesMetadataSyncCommand_base: {
60
60
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
61
61
  *
62
62
  * @throws {@link ThrottlingException} (client fault)
63
- * <p>TPS has been limited to protect against intentional or unintentional
64
- * high request volumes.</p>
63
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
65
64
  *
66
65
  * @throws {@link ValidationException} (client fault)
67
66
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -63,8 +63,7 @@ declare const TagResourceCommand_base: {
63
63
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
64
64
  *
65
65
  * @throws {@link ThrottlingException} (client fault)
66
- * <p>TPS has been limited to protect against intentional or unintentional
67
- * high request volumes.</p>
66
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
68
67
  *
69
68
  * @throws {@link ValidationException} (client fault)
70
69
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const TestHypervisorConfigurationCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Tests your hypervisor configuration to validate that backup gateway can connect with the
28
- * hypervisor and its resources.</p>
27
+ * <p>Tests your hypervisor configuration to validate that backup gateway can connect with the hypervisor and its resources.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -62,8 +61,7 @@ declare const TestHypervisorConfigurationCommand_base: {
62
61
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
63
62
  *
64
63
  * @throws {@link ThrottlingException} (client fault)
65
- * <p>TPS has been limited to protect against intentional or unintentional
66
- * high request volumes.</p>
64
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
67
65
  *
68
66
  * @throws {@link ValidationException} (client fault)
69
67
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -60,8 +60,7 @@ declare const UntagResourceCommand_base: {
60
60
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
61
61
  *
62
62
  * @throws {@link ThrottlingException} (client fault)
63
- * <p>TPS has been limited to protect against intentional or unintentional
64
- * high request volumes.</p>
63
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
65
64
  *
66
65
  * @throws {@link ValidationException} (client fault)
67
66
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,8 +24,7 @@ declare const UpdateGatewayInformationCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Updates a gateway's name. Specify which gateway to update using the Amazon Resource Name
28
- * (ARN) of the gateway in your request.</p>
27
+ * <p>Updates a gateway's name. Specify which gateway to update using the Amazon Resource Name (ARN) of the gateway in your request.</p>
29
28
  * @example
30
29
  * Use a bare-bones client and the command you need to make an API call.
31
30
  * ```javascript
@@ -62,8 +61,7 @@ declare const UpdateGatewayInformationCommand_base: {
62
61
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
63
62
  *
64
63
  * @throws {@link ThrottlingException} (client fault)
65
- * <p>TPS has been limited to protect against intentional or unintentional
66
- * high request volumes.</p>
64
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
67
65
  *
68
66
  * @throws {@link ValidationException} (client fault)
69
67
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,13 +24,7 @@ declare const UpdateGatewaySoftwareNowCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Updates the gateway virtual machine (VM) software.
28
- * The request immediately triggers the software update.</p>
29
- * <note>
30
- * <p>When you make this request, you get a <code>200 OK</code>
31
- * success response immediately. However, it might take some
32
- * time for the update to complete.</p>
33
- * </note>
27
+ * <p>Updates the gateway virtual machine (VM) software. The request immediately triggers the software update.</p> <note> <p>When you make this request, you get a <code>200 OK</code> success response immediately. However, it might take some time for the update to complete.</p> </note>
34
28
  * @example
35
29
  * Use a bare-bones client and the command you need to make an API call.
36
30
  * ```javascript
@@ -63,8 +57,7 @@ declare const UpdateGatewaySoftwareNowCommand_base: {
63
57
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
64
58
  *
65
59
  * @throws {@link ThrottlingException} (client fault)
66
- * <p>TPS has been limited to protect against intentional or unintentional
67
- * high request volumes.</p>
60
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
68
61
  *
69
62
  * @throws {@link ValidationException} (client fault)
70
63
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -24,9 +24,7 @@ declare const UpdateHypervisorCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Updates a hypervisor metadata, including its host, username, and password. Specify which
28
- * hypervisor to update using the Amazon Resource Name (ARN) of the hypervisor in your
29
- * request.</p>
27
+ * <p>Updates a hypervisor metadata, including its host, username, and password. Specify which hypervisor to update using the Amazon Resource Name (ARN) of the hypervisor in your request.</p>
30
28
  * @example
31
29
  * Use a bare-bones client and the command you need to make an API call.
32
30
  * ```javascript
@@ -70,8 +68,7 @@ declare const UpdateHypervisorCommand_base: {
70
68
  * <p>The operation did not succeed because an internal error occurred. Try again later.</p>
71
69
  *
72
70
  * @throws {@link ThrottlingException} (client fault)
73
- * <p>TPS has been limited to protect against intentional or unintentional
74
- * high request volumes.</p>
71
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
75
72
  *
76
73
  * @throws {@link ValidationException} (client fault)
77
74
  * <p>The operation did not succeed because a validation error occurred.</p>
@@ -1,13 +1,5 @@
1
1
  /**
2
- * <fullname>Backup gateway</fullname>
3
- * <p>Backup gateway connects Backup to your hypervisor, so you can
4
- * create, store, and restore backups of your virtual machines (VMs) anywhere, whether
5
- * on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p>
6
- * <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p>
7
- * <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run
8
- * on-demand backups. Once you have backed up your resources, you can view them and restore them
9
- * like any resource supported by Backup.</p>
10
- * <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
2
+ * <fullname>Backup gateway</fullname> <p>Backup gateway connects Backup to your hypervisor, so you can create, store, and restore backups of your virtual machines (VMs) anywhere, whether on-premises or in the VMware Cloud (VMC) on Amazon Web Services.</p> <p>Add on-premises resources by connecting to a hypervisor through a gateway. Backup will automatically discover the resources in your hypervisor.</p> <p>Use Backup to assign virtual or on-premises resources to a backup plan, or run on-demand backups. Once you have backed up your resources, you can view them and restore them like any resource supported by Backup.</p> <p>To download the Amazon Web Services software to get started, navigate to the Backup console, choose <b>Gateways</b>, then choose <b>Create gateway</b>.</p>
11
3
  *
12
4
  * @packageDocumentation
13
5
  */
@@ -55,16 +55,14 @@ export declare class InternalServerException extends __BaseException {
55
55
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
56
56
  }
57
57
  /**
58
- * <p>TPS has been limited to protect against intentional or unintentional
59
- * high request volumes.</p>
58
+ * <p>TPS has been limited to protect against intentional or unintentional high request volumes.</p>
60
59
  * @public
61
60
  */
62
61
  export declare class ThrottlingException extends __BaseException {
63
62
  readonly name: "ThrottlingException";
64
63
  readonly $fault: "client";
65
64
  /**
66
- * <p>Error: TPS has been limited to protect against intentional or unintentional
67
- * high request volumes.</p>
65
+ * <p>Error: TPS has been limited to protect against intentional or unintentional high request volumes.</p>
68
66
  * @public
69
67
  */
70
68
  ErrorCode: string | undefined;