@aws-sdk/client-backup-gateway 3.295.0 → 3.297.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-types/BackupGateway.d.ts +26 -0
- package/dist-types/BackupGatewayClient.d.ts +24 -4
- package/dist-types/commands/AssociateGatewayToServerCommand.d.ts +16 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHypervisorCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +16 -0
- package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +16 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +16 -0
- package/dist-types/commands/GetHypervisorCommand.d.ts +16 -0
- package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +16 -0
- package/dist-types/commands/GetVirtualMachineCommand.d.ts +16 -0
- package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +16 -0
- package/dist-types/commands/ListHypervisorsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVirtualMachinesCommand.d.ts +16 -0
- package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +16 -0
- package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +16 -0
- package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +16 -0
- package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHypervisorCommand.d.ts +16 -0
- package/dist-types/models/BackupGatewayServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +176 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHypervisorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVirtualMachinesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHypervisorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHypervisorCommandInput extends GetHypervisorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHypervisorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action requests information about the specified hypervisor to which the gateway will connect.
|
|
18
23
|
* A hypervisor is hardware, software, or firmware that creates and manages virtual machines,
|
|
19
24
|
* and allocates resources to them.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetHypervisorCommandInput - {@link GetHypervisorCommandInput}
|
|
36
|
+
* @returns {@link GetHypervisorCommandOutput}
|
|
30
37
|
* @see {@link GetHypervisorCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetHypervisorCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __Metad
|
|
|
49
56
|
export declare class GetHypervisorCommand extends $Command<GetHypervisorCommandInput, GetHypervisorCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
50
57
|
readonly input: GetHypervisorCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetHypervisorCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHypervisorCommandInput, GetHypervisorCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { GetHypervisorPropertyMappingsInput, GetHypervisorPropertyMappingsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHypervisorPropertyMappingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHypervisorPropertyMappingsCommandInput extends GetHypervisorPropertyMappingsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHypervisorPropertyMappingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHypervisorPropertyMappingsCommandOutput extends GetHypervisorPropertyMappingsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action retrieves the property mappings for the specified hypervisor.
|
|
18
23
|
* A hypervisor property mapping displays the relationship of entity properties
|
|
19
24
|
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetHypervisorPropertyMappingsCommandOutput extends GetHyperviso
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetHypervisorPropertyMappingsCommandInput - {@link GetHypervisorPropertyMappingsCommandInput}
|
|
36
|
+
* @returns {@link GetHypervisorPropertyMappingsCommandOutput}
|
|
30
37
|
* @see {@link GetHypervisorPropertyMappingsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetHypervisorPropertyMappingsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetHypervisorPropertyMappingsCommandOutput extends GetHyperviso
|
|
|
49
56
|
export declare class GetHypervisorPropertyMappingsCommand extends $Command<GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
50
57
|
readonly input: GetHypervisorPropertyMappingsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetHypervisorPropertyMappingsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHypervisorPropertyMappingsCommandInput, GetHypervisorPropertyMappingsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { GetVirtualMachineInput, GetVirtualMachineOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVirtualMachineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVirtualMachineCommandInput extends GetVirtualMachineInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVirtualMachineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>By providing the ARN (Amazon Resource Name), this API returns the virtual machine.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetVirtualMachineCommandInput - {@link GetVirtualMachineCommandInput}
|
|
34
|
+
* @returns {@link GetVirtualMachineCommandOutput}
|
|
28
35
|
* @see {@link GetVirtualMachineCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetVirtualMachineCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput,
|
|
|
47
54
|
export declare class GetVirtualMachineCommand extends $Command<GetVirtualMachineCommandInput, GetVirtualMachineCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
48
55
|
readonly input: GetVirtualMachineCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetVirtualMachineCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVirtualMachineCommandInput, GetVirtualMachineCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { ImportHypervisorConfigurationInput, ImportHypervisorConfigurationOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ImportHypervisorConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ImportHypervisorConfigurationCommandInput extends ImportHypervisorConfigurationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ImportHypervisorConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ImportHypervisorConfigurationCommandOutput extends ImportHypervisorConfigurationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Connect to a hypervisor by importing its configuration.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ImportHypervisorConfigurationCommandOutput extends ImportHyperv
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ImportHypervisorConfigurationCommandInput - {@link ImportHypervisorConfigurationCommandInput}
|
|
34
|
+
* @returns {@link ImportHypervisorConfigurationCommandOutput}
|
|
28
35
|
* @see {@link ImportHypervisorConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ImportHypervisorConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ImportHypervisorConfigurationCommandOutput extends ImportHyperv
|
|
|
50
57
|
export declare class ImportHypervisorConfigurationCommand extends $Command<ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
51
58
|
readonly input: ImportHypervisorConfigurationCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ImportHypervisorConfigurationCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportHypervisorConfigurationCommandInput, ImportHypervisorConfigurationCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGatewaysCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGatewaysCommandInput extends ListGatewaysInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGatewaysCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists backup gateways owned by an Amazon Web Services account in an Amazon Web Services Region. The returned list is ordered by gateway Amazon Resource Name (ARN).</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListGatewaysCommandInput - {@link ListGatewaysCommandInput}
|
|
34
|
+
* @returns {@link ListGatewaysCommandOutput}
|
|
28
35
|
* @see {@link ListGatewaysCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListGatewaysCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat
|
|
|
44
51
|
export declare class ListGatewaysCommand extends $Command<ListGatewaysCommandInput, ListGatewaysCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
45
52
|
readonly input: ListGatewaysCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListGatewaysCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGatewaysCommandInput, ListGatewaysCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { ListHypervisorsInput, ListHypervisorsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHypervisorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHypervisorsCommandInput extends ListHypervisorsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHypervisorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists your hypervisors.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListHypervisorsCommandInput - {@link ListHypervisorsCommandInput}
|
|
34
|
+
* @returns {@link ListHypervisorsCommandOutput}
|
|
28
35
|
* @see {@link ListHypervisorsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListHypervisorsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __M
|
|
|
44
51
|
export declare class ListHypervisorsCommand extends $Command<ListHypervisorsCommandInput, ListHypervisorsCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
45
52
|
readonly input: ListHypervisorsCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListHypervisorsCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHypervisorsCommandInput, ListHypervisorsCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags applied to the resource identified by its Amazon Resource Name
|
|
18
23
|
* (ARN).</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
35
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
29
36
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
48
55
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
49
56
|
readonly input: ListTagsForResourceCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListTagsForResourceCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { ListVirtualMachinesInput, ListVirtualMachinesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListVirtualMachinesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListVirtualMachinesCommandInput extends ListVirtualMachinesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListVirtualMachinesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists your virtual machines.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListVirtualMachinesCommandInput - {@link ListVirtualMachinesCommandInput}
|
|
34
|
+
* @returns {@link ListVirtualMachinesCommandOutput}
|
|
28
35
|
* @see {@link ListVirtualMachinesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListVirtualMachinesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOut
|
|
|
44
51
|
export declare class ListVirtualMachinesCommand extends $Command<ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
45
52
|
readonly input: ListVirtualMachinesCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: ListVirtualMachinesCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { PutBandwidthRateLimitScheduleInput, PutBandwidthRateLimitScheduleOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutBandwidthRateLimitScheduleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutBandwidthRateLimitScheduleCommandInput extends PutBandwidthRateLimitScheduleInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutBandwidthRateLimitScheduleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidthRateLimitScheduleOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action sets the bandwidth rate limit schedule for a specified gateway.
|
|
18
23
|
* By default, gateways do not have a bandwidth rate limit schedule, which means
|
|
19
24
|
* no bandwidth rate limiting is in effect. Use this to initiate a
|
|
@@ -28,6 +33,8 @@ export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidth
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutBandwidthRateLimitScheduleCommandInput - {@link PutBandwidthRateLimitScheduleCommandInput}
|
|
37
|
+
* @returns {@link PutBandwidthRateLimitScheduleCommandOutput}
|
|
31
38
|
* @see {@link PutBandwidthRateLimitScheduleCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutBandwidthRateLimitScheduleCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidth
|
|
|
50
57
|
export declare class PutBandwidthRateLimitScheduleCommand extends $Command<PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
51
58
|
readonly input: PutBandwidthRateLimitScheduleCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: PutBandwidthRateLimitScheduleCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutBandwidthRateLimitScheduleCommandInput, PutBandwidthRateLimitScheduleCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { PutHypervisorPropertyMappingsInput, PutHypervisorPropertyMappingsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutHypervisorPropertyMappingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutHypervisorPropertyMappingsCommandInput extends PutHypervisorPropertyMappingsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutHypervisorPropertyMappingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutHypervisorPropertyMappingsCommandOutput extends PutHypervisorPropertyMappingsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action sets the property mappings for the specified hypervisor.
|
|
18
23
|
* A hypervisor property mapping displays the relationship of entity properties
|
|
19
24
|
* available from the on-premises hypervisor to the properties available in Amazon Web Services.</p>
|
|
@@ -27,6 +32,8 @@ export interface PutHypervisorPropertyMappingsCommandOutput extends PutHyperviso
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param PutHypervisorPropertyMappingsCommandInput - {@link PutHypervisorPropertyMappingsCommandInput}
|
|
36
|
+
* @returns {@link PutHypervisorPropertyMappingsCommandOutput}
|
|
30
37
|
* @see {@link PutHypervisorPropertyMappingsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link PutHypervisorPropertyMappingsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface PutHypervisorPropertyMappingsCommandOutput extends PutHyperviso
|
|
|
55
62
|
export declare class PutHypervisorPropertyMappingsCommand extends $Command<PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
56
63
|
readonly input: PutHypervisorPropertyMappingsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: PutHypervisorPropertyMappingsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutHypervisorPropertyMappingsCommandInput, PutHypervisorPropertyMappingsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { PutMaintenanceStartTimeInput, PutMaintenanceStartTimeOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutMaintenanceStartTimeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutMaintenanceStartTimeCommandInput extends PutMaintenanceStartTimeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutMaintenanceStartTimeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStartTimeOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Set the maintenance start time for a gateway.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStar
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutMaintenanceStartTimeCommandInput - {@link PutMaintenanceStartTimeCommandInput}
|
|
34
|
+
* @returns {@link PutMaintenanceStartTimeCommandOutput}
|
|
28
35
|
* @see {@link PutMaintenanceStartTimeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutMaintenanceStartTimeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStar
|
|
|
50
57
|
export declare class PutMaintenanceStartTimeCommand extends $Command<PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
51
58
|
readonly input: PutMaintenanceStartTimeCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: PutMaintenanceStartTimeCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutMaintenanceStartTimeCommandInput, PutMaintenanceStartTimeCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient";
|
|
5
5
|
import { StartVirtualMachinesMetadataSyncInput, StartVirtualMachinesMetadataSyncOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartVirtualMachinesMetadataSyncCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartVirtualMachinesMetadataSyncCommandInput extends StartVirtualMachinesMetadataSyncInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartVirtualMachinesMetadataSyncCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirtualMachinesMetadataSyncOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action sends a request to sync metadata across the specified virtual machines.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirt
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartVirtualMachinesMetadataSyncCommandInput - {@link StartVirtualMachinesMetadataSyncCommandInput}
|
|
34
|
+
* @returns {@link StartVirtualMachinesMetadataSyncCommandOutput}
|
|
28
35
|
* @see {@link StartVirtualMachinesMetadataSyncCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartVirtualMachinesMetadataSyncCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirt
|
|
|
50
57
|
export declare class StartVirtualMachinesMetadataSyncCommand extends $Command<StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput, BackupGatewayClientResolvedConfig> {
|
|
51
58
|
readonly input: StartVirtualMachinesMetadataSyncCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: StartVirtualMachinesMetadataSyncCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BackupGatewayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartVirtualMachinesMetadataSyncCommandInput, StartVirtualMachinesMetadataSyncCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|