@aws-sdk/client-backup-gateway 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/BackupGateway.d.ts +310 -95
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +213 -91
- package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +18 -18
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +342 -410
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHypervisorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVirtualMachinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
ImportHypervisorConfigurationInput,
|
|
15
|
+
ImportHypervisorConfigurationOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ImportHypervisorConfigurationCommandInput
|
|
18
|
+
extends ImportHypervisorConfigurationInput {}
|
|
19
|
+
export interface ImportHypervisorConfigurationCommandOutput
|
|
20
|
+
extends ImportHypervisorConfigurationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ImportHypervisorConfigurationCommand extends $Command<
|
|
23
|
+
ImportHypervisorConfigurationCommandInput,
|
|
24
|
+
ImportHypervisorConfigurationCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ImportHypervisorConfigurationCommandInput;
|
|
28
|
+
constructor(input: ImportHypervisorConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ImportHypervisorConfigurationCommandInput,
|
|
35
|
+
ImportHypervisorConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0";
|
|
14
|
+
export interface ListGatewaysCommandInput extends ListGatewaysInput {}
|
|
15
|
+
export interface ListGatewaysCommandOutput
|
|
16
|
+
extends ListGatewaysOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListGatewaysCommand extends $Command<
|
|
19
|
+
ListGatewaysCommandInput,
|
|
20
|
+
ListGatewaysCommandOutput,
|
|
21
|
+
BackupGatewayClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListGatewaysCommandInput;
|
|
24
|
+
constructor(input: ListGatewaysCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListGatewaysCommandInput, ListGatewaysCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
ListHypervisorsInput,
|
|
15
|
+
ListHypervisorsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListHypervisorsCommandInput extends ListHypervisorsInput {}
|
|
18
|
+
export interface ListHypervisorsCommandOutput
|
|
19
|
+
extends ListHypervisorsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListHypervisorsCommand extends $Command<
|
|
22
|
+
ListHypervisorsCommandInput,
|
|
23
|
+
ListHypervisorsCommandOutput,
|
|
24
|
+
BackupGatewayClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListHypervisorsCommandInput;
|
|
27
|
+
constructor(input: ListHypervisorsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListHypervisorsCommandInput, ListHypervisorsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceInput,
|
|
15
|
+
ListTagsForResourceOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceInput {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
ListVirtualMachinesInput,
|
|
15
|
+
ListVirtualMachinesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListVirtualMachinesCommandInput
|
|
18
|
+
extends ListVirtualMachinesInput {}
|
|
19
|
+
export interface ListVirtualMachinesCommandOutput
|
|
20
|
+
extends ListVirtualMachinesOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListVirtualMachinesCommand extends $Command<
|
|
23
|
+
ListVirtualMachinesCommandInput,
|
|
24
|
+
ListVirtualMachinesCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListVirtualMachinesCommandInput;
|
|
28
|
+
constructor(input: ListVirtualMachinesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListVirtualMachinesCommandInput, ListVirtualMachinesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
PutMaintenanceStartTimeInput,
|
|
15
|
+
PutMaintenanceStartTimeOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutMaintenanceStartTimeCommandInput
|
|
18
|
+
extends PutMaintenanceStartTimeInput {}
|
|
19
|
+
export interface PutMaintenanceStartTimeCommandOutput
|
|
20
|
+
extends PutMaintenanceStartTimeOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutMaintenanceStartTimeCommand extends $Command<
|
|
23
|
+
PutMaintenanceStartTimeCommandInput,
|
|
24
|
+
PutMaintenanceStartTimeCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutMaintenanceStartTimeCommandInput;
|
|
28
|
+
constructor(input: PutMaintenanceStartTimeCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
PutMaintenanceStartTimeCommandInput,
|
|
35
|
+
PutMaintenanceStartTimeCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
BackupGatewayClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
TestHypervisorConfigurationInput,
|
|
15
|
+
TestHypervisorConfigurationOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface TestHypervisorConfigurationCommandInput
|
|
18
|
+
extends TestHypervisorConfigurationInput {}
|
|
19
|
+
export interface TestHypervisorConfigurationCommandOutput
|
|
20
|
+
extends TestHypervisorConfigurationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class TestHypervisorConfigurationCommand extends $Command<
|
|
23
|
+
TestHypervisorConfigurationCommandInput,
|
|
24
|
+
TestHypervisorConfigurationCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: TestHypervisorConfigurationCommandInput;
|
|
28
|
+
constructor(input: TestHypervisorConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
TestHypervisorConfigurationCommandInput,
|
|
35
|
+
TestHypervisorConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UntagResourceCommand extends $Command<
|
|
19
|
+
UntagResourceCommandInput,
|
|
20
|
+
UntagResourceCommandOutput,
|
|
21
|
+
BackupGatewayClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UntagResourceCommandInput;
|
|
24
|
+
constructor(input: UntagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateGatewayInformationInput,
|
|
15
|
+
UpdateGatewayInformationOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateGatewayInformationCommandInput
|
|
18
|
+
extends UpdateGatewayInformationInput {}
|
|
19
|
+
export interface UpdateGatewayInformationCommandOutput
|
|
20
|
+
extends UpdateGatewayInformationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateGatewayInformationCommand extends $Command<
|
|
23
|
+
UpdateGatewayInformationCommandInput,
|
|
24
|
+
UpdateGatewayInformationCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateGatewayInformationCommandInput;
|
|
28
|
+
constructor(input: UpdateGatewayInformationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateGatewayInformationCommandInput,
|
|
35
|
+
UpdateGatewayInformationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BackupGatewayClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BackupGatewayClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateGatewaySoftwareNowInput,
|
|
15
|
+
UpdateGatewaySoftwareNowOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateGatewaySoftwareNowCommandInput
|
|
18
|
+
extends UpdateGatewaySoftwareNowInput {}
|
|
19
|
+
export interface UpdateGatewaySoftwareNowCommandOutput
|
|
20
|
+
extends UpdateGatewaySoftwareNowOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateGatewaySoftwareNowCommand extends $Command<
|
|
23
|
+
UpdateGatewaySoftwareNowCommandInput,
|
|
24
|
+
UpdateGatewaySoftwareNowCommandOutput,
|
|
25
|
+
BackupGatewayClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateGatewaySoftwareNowCommandInput;
|
|
28
|
+
constructor(input: UpdateGatewaySoftwareNowCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BackupGatewayClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateGatewaySoftwareNowCommandInput,
|
|
35
|
+
UpdateGatewaySoftwareNowCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|