@aws-sdk/client-drs 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.
Files changed (57) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Drs.d.ts +584 -165
  3. package/dist-types/ts3.4/DrsClient.d.ts +295 -105
  4. package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateReplicationConfigurationTemplateCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteRecoveryInstanceCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteSourceServerCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DescribeJobLogItemsCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DescribeRecoveryInstancesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeRecoverySnapshotsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeSourceServersCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/DisconnectRecoveryInstanceCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/DisconnectSourceServerCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/GetFailbackReplicationConfigurationCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/GetLaunchConfigurationCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/GetReplicationConfigurationCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/InitializeServiceCommand.d.ts +36 -17
  22. package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/RetryDataReplicationCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/StartFailbackLaunchCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/StartRecoveryCommand.d.ts +35 -17
  28. package/dist-types/ts3.4/commands/StopFailbackCommand.d.ts +30 -17
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  30. package/dist-types/ts3.4/commands/TerminateRecoveryInstancesCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  32. package/dist-types/ts3.4/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/UpdateLaunchConfigurationCommand.d.ts +39 -17
  34. package/dist-types/ts3.4/commands/UpdateReplicationConfigurationCommand.d.ts +39 -17
  35. package/dist-types/ts3.4/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +39 -17
  36. package/dist-types/ts3.4/commands/index.d.ts +32 -32
  37. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  38. package/dist-types/ts3.4/index.d.ts +6 -6
  39. package/dist-types/ts3.4/models/DrsServiceException.d.ts +7 -6
  40. package/dist-types/ts3.4/models/index.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +1094 -1397
  42. package/dist-types/ts3.4/pagination/DescribeJobLogItemsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/DescribeJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/DescribeRecoveryInstancesPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/DescribeRecoverySnapshotsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/DescribeReplicationConfigurationTemplatesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/DescribeSourceServersPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  49. package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +11 -4
  51. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  56. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  57. package/package.json +34 -34
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { GetLaunchConfigurationRequest, LaunchConfiguration } from "../models/models_0";
5
- export interface GetLaunchConfigurationCommandInput extends GetLaunchConfigurationRequest {
6
- }
7
- export interface GetLaunchConfigurationCommandOutput extends LaunchConfiguration, __MetadataBearer {
8
- }
9
-
10
- export declare class GetLaunchConfigurationCommand extends $Command<GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: GetLaunchConfigurationCommandInput;
12
- constructor(input: GetLaunchConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ GetLaunchConfigurationRequest,
15
+ LaunchConfiguration,
16
+ } from "../models/models_0";
17
+ export interface GetLaunchConfigurationCommandInput
18
+ extends GetLaunchConfigurationRequest {}
19
+ export interface GetLaunchConfigurationCommandOutput
20
+ extends LaunchConfiguration,
21
+ __MetadataBearer {}
22
+ export declare class GetLaunchConfigurationCommand extends $Command<
23
+ GetLaunchConfigurationCommandInput,
24
+ GetLaunchConfigurationCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: GetLaunchConfigurationCommandInput;
28
+ constructor(input: GetLaunchConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetLaunchConfigurationCommandInput,
35
+ GetLaunchConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { GetReplicationConfigurationRequest, ReplicationConfiguration } from "../models/models_0";
5
- export interface GetReplicationConfigurationCommandInput extends GetReplicationConfigurationRequest {
6
- }
7
- export interface GetReplicationConfigurationCommandOutput extends ReplicationConfiguration, __MetadataBearer {
8
- }
9
-
10
- export declare class GetReplicationConfigurationCommand extends $Command<GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: GetReplicationConfigurationCommandInput;
12
- constructor(input: GetReplicationConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ GetReplicationConfigurationRequest,
15
+ ReplicationConfiguration,
16
+ } from "../models/models_0";
17
+ export interface GetReplicationConfigurationCommandInput
18
+ extends GetReplicationConfigurationRequest {}
19
+ export interface GetReplicationConfigurationCommandOutput
20
+ extends ReplicationConfiguration,
21
+ __MetadataBearer {}
22
+ export declare class GetReplicationConfigurationCommand extends $Command<
23
+ GetReplicationConfigurationCommandInput,
24
+ GetReplicationConfigurationCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: GetReplicationConfigurationCommandInput;
28
+ constructor(input: GetReplicationConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetReplicationConfigurationCommandInput,
35
+ GetReplicationConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { InitializeServiceRequest, InitializeServiceResponse } from "../models/models_0";
5
- export interface InitializeServiceCommandInput extends InitializeServiceRequest {
6
- }
7
- export interface InitializeServiceCommandOutput extends InitializeServiceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class InitializeServiceCommand extends $Command<InitializeServiceCommandInput, InitializeServiceCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: InitializeServiceCommandInput;
12
- constructor(input: InitializeServiceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitializeServiceCommandInput, InitializeServiceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ InitializeServiceRequest,
15
+ InitializeServiceResponse,
16
+ } from "../models/models_0";
17
+ export interface InitializeServiceCommandInput
18
+ extends InitializeServiceRequest {}
19
+ export interface InitializeServiceCommandOutput
20
+ extends InitializeServiceResponse,
21
+ __MetadataBearer {}
22
+ export declare class InitializeServiceCommand extends $Command<
23
+ InitializeServiceCommandInput,
24
+ InitializeServiceCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: InitializeServiceCommandInput;
28
+ constructor(input: InitializeServiceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<InitializeServiceCommandInput, InitializeServiceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { ListExtensibleSourceServersRequest, ListExtensibleSourceServersResponse } from "../models/models_0";
5
- export interface ListExtensibleSourceServersCommandInput extends ListExtensibleSourceServersRequest {
6
- }
7
- export interface ListExtensibleSourceServersCommandOutput extends ListExtensibleSourceServersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListExtensibleSourceServersCommand extends $Command<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: ListExtensibleSourceServersCommandInput;
12
- constructor(input: ListExtensibleSourceServersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ ListExtensibleSourceServersRequest,
15
+ ListExtensibleSourceServersResponse,
16
+ } from "../models/models_0";
17
+ export interface ListExtensibleSourceServersCommandInput
18
+ extends ListExtensibleSourceServersRequest {}
19
+ export interface ListExtensibleSourceServersCommandOutput
20
+ extends ListExtensibleSourceServersResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListExtensibleSourceServersCommand extends $Command<
23
+ ListExtensibleSourceServersCommandInput,
24
+ ListExtensibleSourceServersCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: ListExtensibleSourceServersCommandInput;
28
+ constructor(input: ListExtensibleSourceServersCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListExtensibleSourceServersCommandInput,
35
+ ListExtensibleSourceServersCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { ListStagingAccountsRequest, ListStagingAccountsResponse } from "../models/models_0";
5
- export interface ListStagingAccountsCommandInput extends ListStagingAccountsRequest {
6
- }
7
- export interface ListStagingAccountsCommandOutput extends ListStagingAccountsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListStagingAccountsCommand extends $Command<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: ListStagingAccountsCommandInput;
12
- constructor(input: ListStagingAccountsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ ListStagingAccountsRequest,
15
+ ListStagingAccountsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListStagingAccountsCommandInput
18
+ extends ListStagingAccountsRequest {}
19
+ export interface ListStagingAccountsCommandOutput
20
+ extends ListStagingAccountsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListStagingAccountsCommand extends $Command<
23
+ ListStagingAccountsCommandInput,
24
+ ListStagingAccountsCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: ListStagingAccountsCommandInput;
28
+ constructor(input: ListStagingAccountsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { RetryDataReplicationRequest, SourceServer } from "../models/models_0";
5
- export interface RetryDataReplicationCommandInput extends RetryDataReplicationRequest {
6
- }
7
- export interface RetryDataReplicationCommandOutput extends SourceServer, __MetadataBearer {
8
- }
9
-
10
- export declare class RetryDataReplicationCommand extends $Command<RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: RetryDataReplicationCommandInput;
12
- constructor(input: RetryDataReplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import { RetryDataReplicationRequest, SourceServer } from "../models/models_0";
14
+ export interface RetryDataReplicationCommandInput
15
+ extends RetryDataReplicationRequest {}
16
+ export interface RetryDataReplicationCommandOutput
17
+ extends SourceServer,
18
+ __MetadataBearer {}
19
+ export declare class RetryDataReplicationCommand extends $Command<
20
+ RetryDataReplicationCommandInput,
21
+ RetryDataReplicationCommandOutput,
22
+ DrsClientResolvedConfig
23
+ > {
24
+ readonly input: RetryDataReplicationCommandInput;
25
+ constructor(input: RetryDataReplicationCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: DrsClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ RetryDataReplicationCommandInput,
32
+ RetryDataReplicationCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { StartFailbackLaunchRequest, StartFailbackLaunchResponse } from "../models/models_0";
5
- export interface StartFailbackLaunchCommandInput extends StartFailbackLaunchRequest {
6
- }
7
- export interface StartFailbackLaunchCommandOutput extends StartFailbackLaunchResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartFailbackLaunchCommand extends $Command<StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: StartFailbackLaunchCommandInput;
12
- constructor(input: StartFailbackLaunchCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ StartFailbackLaunchRequest,
15
+ StartFailbackLaunchResponse,
16
+ } from "../models/models_0";
17
+ export interface StartFailbackLaunchCommandInput
18
+ extends StartFailbackLaunchRequest {}
19
+ export interface StartFailbackLaunchCommandOutput
20
+ extends StartFailbackLaunchResponse,
21
+ __MetadataBearer {}
22
+ export declare class StartFailbackLaunchCommand extends $Command<
23
+ StartFailbackLaunchCommandInput,
24
+ StartFailbackLaunchCommandOutput,
25
+ DrsClientResolvedConfig
26
+ > {
27
+ readonly input: StartFailbackLaunchCommandInput;
28
+ constructor(input: StartFailbackLaunchCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DrsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { StartRecoveryRequest, StartRecoveryResponse } from "../models/models_0";
5
- export interface StartRecoveryCommandInput extends StartRecoveryRequest {
6
- }
7
- export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartRecoveryCommand extends $Command<StartRecoveryCommandInput, StartRecoveryCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: StartRecoveryCommandInput;
12
- constructor(input: StartRecoveryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartRecoveryCommandInput, StartRecoveryCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import {
14
+ StartRecoveryRequest,
15
+ StartRecoveryResponse,
16
+ } from "../models/models_0";
17
+ export interface StartRecoveryCommandInput extends StartRecoveryRequest {}
18
+ export interface StartRecoveryCommandOutput
19
+ extends StartRecoveryResponse,
20
+ __MetadataBearer {}
21
+ export declare class StartRecoveryCommand extends $Command<
22
+ StartRecoveryCommandInput,
23
+ StartRecoveryCommandOutput,
24
+ DrsClientResolvedConfig
25
+ > {
26
+ readonly input: StartRecoveryCommandInput;
27
+ constructor(input: StartRecoveryCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: DrsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartRecoveryCommandInput, StartRecoveryCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { StopFailbackRequest } from "../models/models_0";
5
- export interface StopFailbackCommandInput extends StopFailbackRequest {
6
- }
7
- export interface StopFailbackCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StopFailbackCommand extends $Command<StopFailbackCommandInput, StopFailbackCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: StopFailbackCommandInput;
12
- constructor(input: StopFailbackCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopFailbackCommandInput, StopFailbackCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import { StopFailbackRequest } from "../models/models_0";
14
+ export interface StopFailbackCommandInput extends StopFailbackRequest {}
15
+ export interface StopFailbackCommandOutput extends __MetadataBearer {}
16
+ export declare class StopFailbackCommand extends $Command<
17
+ StopFailbackCommandInput,
18
+ StopFailbackCommandOutput,
19
+ DrsClientResolvedConfig
20
+ > {
21
+ readonly input: StopFailbackCommandInput;
22
+ constructor(input: StopFailbackCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DrsClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<StopFailbackCommandInput, StopFailbackCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
4
- import { TagResourceRequest } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DrsClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DrsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DrsClient";
13
+ import { TagResourceRequest } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
16
+ export declare class TagResourceCommand extends $Command<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ DrsClientResolvedConfig
20
+ > {
21
+ readonly input: TagResourceCommandInput;
22
+ constructor(input: TagResourceCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DrsClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }