@aws-sdk/client-backup-gateway 3.231.0 → 3.232.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.
- package/dist-cjs/BackupGateway.js +90 -0
- package/dist-cjs/commands/GetBandwidthRateLimitScheduleCommand.js +46 -0
- package/dist-cjs/commands/GetHypervisorCommand.js +46 -0
- package/dist-cjs/commands/GetHypervisorPropertyMappingsCommand.js +46 -0
- package/dist-cjs/commands/PutBandwidthRateLimitScheduleCommand.js +46 -0
- package/dist-cjs/commands/PutHypervisorPropertyMappingsCommand.js +46 -0
- package/dist-cjs/commands/StartVirtualMachinesMetadataSyncCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoint/ruleset.js +1 -10
- package/dist-cjs/models/models_0.js +78 -6
- package/dist-cjs/protocols/Aws_json1_0.js +538 -1
- package/dist-es/BackupGateway.js +90 -0
- package/dist-es/commands/GetBandwidthRateLimitScheduleCommand.js +42 -0
- package/dist-es/commands/GetHypervisorCommand.js +42 -0
- package/dist-es/commands/GetHypervisorPropertyMappingsCommand.js +42 -0
- package/dist-es/commands/PutBandwidthRateLimitScheduleCommand.js +42 -0
- package/dist-es/commands/PutHypervisorPropertyMappingsCommand.js +42 -0
- package/dist-es/commands/StartVirtualMachinesMetadataSyncCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/ruleset.js +1 -10
- package/dist-es/models/models_0.js +60 -4
- package/dist-es/protocols/Aws_json1_0.js +526 -1
- package/dist-types/BackupGateway.d.ts +54 -0
- package/dist-types/BackupGatewayClient.d.ts +8 -2
- package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +40 -0
- package/dist-types/commands/GetHypervisorCommand.d.ts +39 -0
- package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +39 -0
- package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +40 -0
- package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +39 -0
- package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +355 -22
- package/dist-types/protocols/Aws_json1_0.d.ts +18 -0
- package/dist-types/ts3.4/BackupGateway.d.ts +102 -0
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetBandwidthRateLimitScheduleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetHypervisorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetHypervisorPropertyMappingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutBandwidthRateLimitScheduleCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutHypervisorPropertyMappingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +142 -15
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
- package/package.json +1 -1
|
@@ -5,14 +5,20 @@ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./command
|
|
|
5
5
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
6
6
|
import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "./commands/DeleteHypervisorCommand";
|
|
7
7
|
import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "./commands/DisassociateGatewayFromServerCommand";
|
|
8
|
+
import { GetBandwidthRateLimitScheduleCommandInput, GetBandwidthRateLimitScheduleCommandOutput } from "./commands/GetBandwidthRateLimitScheduleCommand";
|
|
8
9
|
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
10
|
+
import { GetHypervisorCommandInput, GetHypervisorCommandOutput } from "./commands/GetHypervisorCommand";
|
|
11
|
+
import { GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput } from "./commands/GetHypervisorPropertyMappingsCommand";
|
|
9
12
|
import { GetVirtualMachineCommandInput, GetVirtualMachineCommandOutput } from "./commands/GetVirtualMachineCommand";
|
|
10
13
|
import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
|
|
11
14
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
12
15
|
import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
|
|
13
16
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
17
|
import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "./commands/ListVirtualMachinesCommand";
|
|
18
|
+
import { PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput } from "./commands/PutBandwidthRateLimitScheduleCommand";
|
|
19
|
+
import { PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput } from "./commands/PutHypervisorPropertyMappingsCommand";
|
|
15
20
|
import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "./commands/PutMaintenanceStartTimeCommand";
|
|
21
|
+
import { StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput } from "./commands/StartVirtualMachinesMetadataSyncCommand";
|
|
16
22
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
23
|
import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
|
|
18
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -64,6 +70,15 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
64
70
|
disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateGatewayFromServerCommandOutput>;
|
|
65
71
|
disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void): void;
|
|
66
72
|
disassociateGatewayFromServer(args: DisassociateGatewayFromServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateGatewayFromServerCommandOutput) => void): void;
|
|
73
|
+
/**
|
|
74
|
+
* <p>Retrieves the bandwidth rate limit schedule for a specified gateway.
|
|
75
|
+
* By default, gateways do not have bandwidth rate limit schedules, which means
|
|
76
|
+
* no bandwidth rate limiting is in effect. Use this to get a gateway's
|
|
77
|
+
* bandwidth rate limit schedule.</p>
|
|
78
|
+
*/
|
|
79
|
+
getBandwidthRateLimitSchedule(args: GetBandwidthRateLimitScheduleCommandInput, options?: __HttpHandlerOptions): Promise<GetBandwidthRateLimitScheduleCommandOutput>;
|
|
80
|
+
getBandwidthRateLimitSchedule(args: GetBandwidthRateLimitScheduleCommandInput, cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void): void;
|
|
81
|
+
getBandwidthRateLimitSchedule(args: GetBandwidthRateLimitScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBandwidthRateLimitScheduleCommandOutput) => void): void;
|
|
67
82
|
/**
|
|
68
83
|
* <p>By providing the ARN (Amazon Resource Name), this
|
|
69
84
|
* API returns the gateway.</p>
|
|
@@ -71,6 +86,22 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
71
86
|
getGateway(args: GetGatewayCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayCommandOutput>;
|
|
72
87
|
getGateway(args: GetGatewayCommandInput, cb: (err: any, data?: GetGatewayCommandOutput) => void): void;
|
|
73
88
|
getGateway(args: GetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayCommandOutput) => void): void;
|
|
89
|
+
/**
|
|
90
|
+
* <p>This action requests information about the specified hypervisor to which the gateway will connect.
|
|
91
|
+
* A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
|
|
92
|
+
* and allocates resources to them.</p>
|
|
93
|
+
*/
|
|
94
|
+
getHypervisor(args: GetHypervisorCommandInput, options?: __HttpHandlerOptions): Promise<GetHypervisorCommandOutput>;
|
|
95
|
+
getHypervisor(args: GetHypervisorCommandInput, cb: (err: any, data?: GetHypervisorCommandOutput) => void): void;
|
|
96
|
+
getHypervisor(args: GetHypervisorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHypervisorCommandOutput) => void): void;
|
|
97
|
+
/**
|
|
98
|
+
* <p>This action retrieves the property mappings for the specified hypervisor.
|
|
99
|
+
* A hypervisor property mapping displays the relationship of entity properties
|
|
100
|
+
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
101
|
+
*/
|
|
102
|
+
getHypervisorPropertyMappings(args: GetHypervisorPropertyMappingsCommandInput, options?: __HttpHandlerOptions): Promise<GetHypervisorPropertyMappingsCommandOutput>;
|
|
103
|
+
getHypervisorPropertyMappings(args: GetHypervisorPropertyMappingsCommandInput, cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void): void;
|
|
104
|
+
getHypervisorPropertyMappings(args: GetHypervisorPropertyMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHypervisorPropertyMappingsCommandOutput) => void): void;
|
|
74
105
|
/**
|
|
75
106
|
* <p>By providing the ARN (Amazon Resource Name), this API returns the virtual machine.</p>
|
|
76
107
|
*/
|
|
@@ -108,12 +139,35 @@ export declare class BackupGateway extends BackupGatewayClient {
|
|
|
108
139
|
listVirtualMachines(args: ListVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<ListVirtualMachinesCommandOutput>;
|
|
109
140
|
listVirtualMachines(args: ListVirtualMachinesCommandInput, cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void): void;
|
|
110
141
|
listVirtualMachines(args: ListVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVirtualMachinesCommandOutput) => void): void;
|
|
142
|
+
/**
|
|
143
|
+
* <p>This action sets the bandwidth rate limit schedule for a specified gateway.
|
|
144
|
+
* By default, gateways do not have a bandwidth rate limit schedule, which means
|
|
145
|
+
* no bandwidth rate limiting is in effect. Use this to initiate a
|
|
146
|
+
* gateway's bandwidth rate limit schedule.</p>
|
|
147
|
+
*/
|
|
148
|
+
putBandwidthRateLimitSchedule(args: PutBandwidthRateLimitScheduleCommandInput, options?: __HttpHandlerOptions): Promise<PutBandwidthRateLimitScheduleCommandOutput>;
|
|
149
|
+
putBandwidthRateLimitSchedule(args: PutBandwidthRateLimitScheduleCommandInput, cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void): void;
|
|
150
|
+
putBandwidthRateLimitSchedule(args: PutBandwidthRateLimitScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutBandwidthRateLimitScheduleCommandOutput) => void): void;
|
|
151
|
+
/**
|
|
152
|
+
* <p>This action sets the property mappings for the specified hypervisor.
|
|
153
|
+
* A hypervisor property mapping displays the relationship of entity properties
|
|
154
|
+
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
155
|
+
*/
|
|
156
|
+
putHypervisorPropertyMappings(args: PutHypervisorPropertyMappingsCommandInput, options?: __HttpHandlerOptions): Promise<PutHypervisorPropertyMappingsCommandOutput>;
|
|
157
|
+
putHypervisorPropertyMappings(args: PutHypervisorPropertyMappingsCommandInput, cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void): void;
|
|
158
|
+
putHypervisorPropertyMappings(args: PutHypervisorPropertyMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutHypervisorPropertyMappingsCommandOutput) => void): void;
|
|
111
159
|
/**
|
|
112
160
|
* <p>Set the maintenance start time for a gateway.</p>
|
|
113
161
|
*/
|
|
114
162
|
putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, options?: __HttpHandlerOptions): Promise<PutMaintenanceStartTimeCommandOutput>;
|
|
115
163
|
putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void): void;
|
|
116
164
|
putMaintenanceStartTime(args: PutMaintenanceStartTimeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMaintenanceStartTimeCommandOutput) => void): void;
|
|
165
|
+
/**
|
|
166
|
+
* <p>This action sends a request to sync metadata across the specified virtual machines.</p>
|
|
167
|
+
*/
|
|
168
|
+
startVirtualMachinesMetadataSync(args: StartVirtualMachinesMetadataSyncCommandInput, options?: __HttpHandlerOptions): Promise<StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
169
|
+
startVirtualMachinesMetadataSync(args: StartVirtualMachinesMetadataSyncCommandInput, cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void): void;
|
|
170
|
+
startVirtualMachinesMetadataSync(args: StartVirtualMachinesMetadataSyncCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartVirtualMachinesMetadataSyncCommandOutput) => void): void;
|
|
117
171
|
/**
|
|
118
172
|
* <p>Tag the resource.</p>
|
|
119
173
|
*/
|
|
@@ -12,14 +12,20 @@ import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./command
|
|
|
12
12
|
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
13
13
|
import { DeleteHypervisorCommandInput, DeleteHypervisorCommandOutput } from "./commands/DeleteHypervisorCommand";
|
|
14
14
|
import { DisassociateGatewayFromServerCommandInput, DisassociateGatewayFromServerCommandOutput } from "./commands/DisassociateGatewayFromServerCommand";
|
|
15
|
+
import { GetBandwidthRateLimitScheduleCommandInput, GetBandwidthRateLimitScheduleCommandOutput } from "./commands/GetBandwidthRateLimitScheduleCommand";
|
|
15
16
|
import { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
17
|
+
import { GetHypervisorCommandInput, GetHypervisorCommandOutput } from "./commands/GetHypervisorCommand";
|
|
18
|
+
import { GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput } from "./commands/GetHypervisorPropertyMappingsCommand";
|
|
16
19
|
import { GetVirtualMachineCommandInput, GetVirtualMachineCommandOutput } from "./commands/GetVirtualMachineCommand";
|
|
17
20
|
import { ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput } from "./commands/ImportHypervisorConfigurationCommand";
|
|
18
21
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
19
22
|
import { ListHypervisorsCommandInput, ListHypervisorsCommandOutput } from "./commands/ListHypervisorsCommand";
|
|
20
23
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
21
24
|
import { ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput } from "./commands/ListVirtualMachinesCommand";
|
|
25
|
+
import { PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput } from "./commands/PutBandwidthRateLimitScheduleCommand";
|
|
26
|
+
import { PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput } from "./commands/PutHypervisorPropertyMappingsCommand";
|
|
22
27
|
import { PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput } from "./commands/PutMaintenanceStartTimeCommand";
|
|
28
|
+
import { StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput } from "./commands/StartVirtualMachinesMetadataSyncCommand";
|
|
23
29
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
30
|
import { TestHypervisorConfigurationCommandInput, TestHypervisorConfigurationCommandOutput } from "./commands/TestHypervisorConfigurationCommand";
|
|
25
31
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -27,8 +33,8 @@ import { UpdateGatewayInformationCommandInput, UpdateGatewayInformationCommandOu
|
|
|
27
33
|
import { UpdateGatewaySoftwareNowCommandInput, UpdateGatewaySoftwareNowCommandOutput } from "./commands/UpdateGatewaySoftwareNowCommand";
|
|
28
34
|
import { UpdateHypervisorCommandInput, UpdateHypervisorCommandOutput } from "./commands/UpdateHypervisorCommand";
|
|
29
35
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
-
export declare type ServiceInputTypes = AssociateGatewayToServerCommandInput | CreateGatewayCommandInput | DeleteGatewayCommandInput | DeleteHypervisorCommandInput | DisassociateGatewayFromServerCommandInput | GetGatewayCommandInput | GetVirtualMachineCommandInput | ImportHypervisorConfigurationCommandInput | ListGatewaysCommandInput | ListHypervisorsCommandInput | ListTagsForResourceCommandInput | ListVirtualMachinesCommandInput | PutMaintenanceStartTimeCommandInput | TagResourceCommandInput | TestHypervisorConfigurationCommandInput | UntagResourceCommandInput | UpdateGatewayInformationCommandInput | UpdateGatewaySoftwareNowCommandInput | UpdateHypervisorCommandInput;
|
|
31
|
-
export declare type ServiceOutputTypes = AssociateGatewayToServerCommandOutput | CreateGatewayCommandOutput | DeleteGatewayCommandOutput | DeleteHypervisorCommandOutput | DisassociateGatewayFromServerCommandOutput | GetGatewayCommandOutput | GetVirtualMachineCommandOutput | ImportHypervisorConfigurationCommandOutput | ListGatewaysCommandOutput | ListHypervisorsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualMachinesCommandOutput | PutMaintenanceStartTimeCommandOutput | TagResourceCommandOutput | TestHypervisorConfigurationCommandOutput | UntagResourceCommandOutput | UpdateGatewayInformationCommandOutput | UpdateGatewaySoftwareNowCommandOutput | UpdateHypervisorCommandOutput;
|
|
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;
|
|
32
38
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
39
|
/**
|
|
34
40
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { GetBandwidthRateLimitScheduleInput, GetBandwidthRateLimitScheduleOutput } from "../models/models_0";
|
|
6
|
+
export interface GetBandwidthRateLimitScheduleCommandInput extends GetBandwidthRateLimitScheduleInput {
|
|
7
|
+
}
|
|
8
|
+
export interface GetBandwidthRateLimitScheduleCommandOutput extends GetBandwidthRateLimitScheduleOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Retrieves the bandwidth rate limit schedule for a specified gateway.
|
|
12
|
+
* By default, gateways do not have bandwidth rate limit schedules, which means
|
|
13
|
+
* no bandwidth rate limiting is in effect. Use this to get a gateway's
|
|
14
|
+
* bandwidth rate limit schedule.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
19
|
+
* // const { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
20
|
+
* const client = new BackupGatewayClient(config);
|
|
21
|
+
* const command = new GetBandwidthRateLimitScheduleCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link GetBandwidthRateLimitScheduleCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link GetBandwidthRateLimitScheduleCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class GetBandwidthRateLimitScheduleCommand extends $Command<GetBandwidthRateLimitScheduleCommandInput, GetBandwidthRateLimitScheduleCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
31
|
+
readonly input: GetBandwidthRateLimitScheduleCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: GetBandwidthRateLimitScheduleCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBandwidthRateLimitScheduleCommandInput, GetBandwidthRateLimitScheduleCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0";
|
|
6
|
+
export interface GetHypervisorCommandInput extends GetHypervisorInput {
|
|
7
|
+
}
|
|
8
|
+
export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action requests information about the specified hypervisor to which the gateway will connect.
|
|
12
|
+
* A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
|
|
13
|
+
* and allocates resources to them.</p>
|
|
14
|
+
* @example
|
|
15
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
+
* ```javascript
|
|
17
|
+
* import { BackupGatewayClient, GetHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
18
|
+
* // const { BackupGatewayClient, GetHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
19
|
+
* const client = new BackupGatewayClient(config);
|
|
20
|
+
* const command = new GetHypervisorCommand(input);
|
|
21
|
+
* const response = await client.send(command);
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @see {@link GetHypervisorCommandInput} for command's `input` shape.
|
|
25
|
+
* @see {@link GetHypervisorCommandOutput} for command's `response` shape.
|
|
26
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
export declare class GetHypervisorCommand extends $Command<GetHypervisorCommandInput, GetHypervisorCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
30
|
+
readonly input: GetHypervisorCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
|
+
constructor(input: GetHypervisorCommandInput);
|
|
33
|
+
/**
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHypervisorCommandInput, GetHypervisorCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { GetHypervisorPropertyMappingsInput, GetHypervisorPropertyMappingsOutput } from "../models/models_0";
|
|
6
|
+
export interface GetHypervisorPropertyMappingsCommandInput extends GetHypervisorPropertyMappingsInput {
|
|
7
|
+
}
|
|
8
|
+
export interface GetHypervisorPropertyMappingsCommandOutput extends GetHypervisorPropertyMappingsOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action retrieves the property mappings for the specified hypervisor.
|
|
12
|
+
* A hypervisor property mapping displays the relationship of entity properties
|
|
13
|
+
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
14
|
+
* @example
|
|
15
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
+
* ```javascript
|
|
17
|
+
* import { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
18
|
+
* // const { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
19
|
+
* const client = new BackupGatewayClient(config);
|
|
20
|
+
* const command = new GetHypervisorPropertyMappingsCommand(input);
|
|
21
|
+
* const response = await client.send(command);
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @see {@link GetHypervisorPropertyMappingsCommandInput} for command's `input` shape.
|
|
25
|
+
* @see {@link GetHypervisorPropertyMappingsCommandOutput} for command's `response` shape.
|
|
26
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
export declare class GetHypervisorPropertyMappingsCommand extends $Command<GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
30
|
+
readonly input: GetHypervisorPropertyMappingsCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
|
+
constructor(input: GetHypervisorPropertyMappingsCommandInput);
|
|
33
|
+
/**
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { PutBandwidthRateLimitScheduleInput, PutBandwidthRateLimitScheduleOutput } from "../models/models_0";
|
|
6
|
+
export interface PutBandwidthRateLimitScheduleCommandInput extends PutBandwidthRateLimitScheduleInput {
|
|
7
|
+
}
|
|
8
|
+
export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidthRateLimitScheduleOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action sets the bandwidth rate limit schedule for a specified gateway.
|
|
12
|
+
* By default, gateways do not have a bandwidth rate limit schedule, which means
|
|
13
|
+
* no bandwidth rate limiting is in effect. Use this to initiate a
|
|
14
|
+
* gateway's bandwidth rate limit schedule.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
19
|
+
* // const { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
20
|
+
* const client = new BackupGatewayClient(config);
|
|
21
|
+
* const command = new PutBandwidthRateLimitScheduleCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link PutBandwidthRateLimitScheduleCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link PutBandwidthRateLimitScheduleCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class PutBandwidthRateLimitScheduleCommand extends $Command<PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
31
|
+
readonly input: PutBandwidthRateLimitScheduleCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: PutBandwidthRateLimitScheduleCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { PutHypervisorPropertyMappingsInput, PutHypervisorPropertyMappingsOutput } from "../models/models_0";
|
|
6
|
+
export interface PutHypervisorPropertyMappingsCommandInput extends PutHypervisorPropertyMappingsInput {
|
|
7
|
+
}
|
|
8
|
+
export interface PutHypervisorPropertyMappingsCommandOutput extends PutHypervisorPropertyMappingsOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action sets the property mappings for the specified hypervisor.
|
|
12
|
+
* A hypervisor property mapping displays the relationship of entity properties
|
|
13
|
+
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
14
|
+
* @example
|
|
15
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
+
* ```javascript
|
|
17
|
+
* import { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
18
|
+
* // const { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
19
|
+
* const client = new BackupGatewayClient(config);
|
|
20
|
+
* const command = new PutHypervisorPropertyMappingsCommand(input);
|
|
21
|
+
* const response = await client.send(command);
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @see {@link PutHypervisorPropertyMappingsCommandInput} for command's `input` shape.
|
|
25
|
+
* @see {@link PutHypervisorPropertyMappingsCommandOutput} for command's `response` shape.
|
|
26
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
export declare class PutHypervisorPropertyMappingsCommand extends $Command<PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
30
|
+
readonly input: PutHypervisorPropertyMappingsCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
|
+
constructor(input: PutHypervisorPropertyMappingsCommandInput);
|
|
33
|
+
/**
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
|
+
import { StartVirtualMachinesMetadataSyncInput, StartVirtualMachinesMetadataSyncOutput } from "../models/models_0";
|
|
6
|
+
export interface StartVirtualMachinesMetadataSyncCommandInput extends StartVirtualMachinesMetadataSyncInput {
|
|
7
|
+
}
|
|
8
|
+
export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirtualMachinesMetadataSyncOutput, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action sends a request to sync metadata across the specified virtual machines.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
|
|
16
|
+
* // const { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
|
|
17
|
+
* const client = new BackupGatewayClient(config);
|
|
18
|
+
* const command = new StartVirtualMachinesMetadataSyncCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link StartVirtualMachinesMetadataSyncCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link StartVirtualMachinesMetadataSyncCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class StartVirtualMachinesMetadataSyncCommand extends $Command<StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
28
|
+
readonly input: StartVirtualMachinesMetadataSyncCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StartVirtualMachinesMetadataSyncCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -3,14 +3,20 @@ export * from "./CreateGatewayCommand";
|
|
|
3
3
|
export * from "./DeleteGatewayCommand";
|
|
4
4
|
export * from "./DeleteHypervisorCommand";
|
|
5
5
|
export * from "./DisassociateGatewayFromServerCommand";
|
|
6
|
+
export * from "./GetBandwidthRateLimitScheduleCommand";
|
|
6
7
|
export * from "./GetGatewayCommand";
|
|
8
|
+
export * from "./GetHypervisorCommand";
|
|
9
|
+
export * from "./GetHypervisorPropertyMappingsCommand";
|
|
7
10
|
export * from "./GetVirtualMachineCommand";
|
|
8
11
|
export * from "./ImportHypervisorConfigurationCommand";
|
|
9
12
|
export * from "./ListGatewaysCommand";
|
|
10
13
|
export * from "./ListHypervisorsCommand";
|
|
11
14
|
export * from "./ListTagsForResourceCommand";
|
|
12
15
|
export * from "./ListVirtualMachinesCommand";
|
|
16
|
+
export * from "./PutBandwidthRateLimitScheduleCommand";
|
|
17
|
+
export * from "./PutHypervisorPropertyMappingsCommand";
|
|
13
18
|
export * from "./PutMaintenanceStartTimeCommand";
|
|
19
|
+
export * from "./StartVirtualMachinesMetadataSyncCommand";
|
|
14
20
|
export * from "./TagResourceCommand";
|
|
15
21
|
export * from "./TestHypervisorConfigurationCommand";
|
|
16
22
|
export * from "./UntagResourceCommand";
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|