@aws-sdk/client-drs 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.
Files changed (49) hide show
  1. package/dist-types/Drs.d.ts +36 -0
  2. package/dist-types/DrsClient.d.ts +24 -4
  3. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateReplicationConfigurationTemplateCommand.d.ts +16 -0
  5. package/dist-types/commands/DeleteJobCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteRecoveryInstanceCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteSourceServerCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeJobLogItemsCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeJobsCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeRecoveryInstancesCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeRecoverySnapshotsCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeSourceServersCommand.d.ts +16 -0
  15. package/dist-types/commands/DisconnectRecoveryInstanceCommand.d.ts +16 -0
  16. package/dist-types/commands/DisconnectSourceServerCommand.d.ts +16 -0
  17. package/dist-types/commands/GetFailbackReplicationConfigurationCommand.d.ts +16 -0
  18. package/dist-types/commands/GetLaunchConfigurationCommand.d.ts +16 -0
  19. package/dist-types/commands/GetReplicationConfigurationCommand.d.ts +16 -0
  20. package/dist-types/commands/InitializeServiceCommand.d.ts +16 -0
  21. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +16 -0
  22. package/dist-types/commands/ListStagingAccountsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/RetryDataReplicationCommand.d.ts +16 -0
  25. package/dist-types/commands/ReverseReplicationCommand.d.ts +16 -0
  26. package/dist-types/commands/StartFailbackLaunchCommand.d.ts +16 -0
  27. package/dist-types/commands/StartRecoveryCommand.d.ts +16 -0
  28. package/dist-types/commands/StartReplicationCommand.d.ts +16 -0
  29. package/dist-types/commands/StopFailbackCommand.d.ts +16 -0
  30. package/dist-types/commands/StopReplicationCommand.d.ts +16 -0
  31. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateLaunchConfigurationCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateReplicationConfigurationCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +16 -0
  38. package/dist-types/models/DrsServiceException.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +320 -0
  40. package/dist-types/pagination/DescribeJobLogItemsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/DescribeJobsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/DescribeRecoveryInstancesPaginator.d.ts +3 -0
  43. package/dist-types/pagination/DescribeRecoverySnapshotsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/DescribeReplicationConfigurationTemplatesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/DescribeSourceServersPaginator.d.ts +3 -0
  46. package/dist-types/pagination/Interfaces.d.ts +3 -0
  47. package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +3 -0
  49. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { ListExtensibleSourceServersRequest, ListExtensibleSourceServersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListExtensibleSourceServersCommand}.
8
10
  */
9
11
  export interface ListExtensibleSourceServersCommandInput extends ListExtensibleSourceServersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListExtensibleSourceServersCommand}.
13
17
  */
14
18
  export interface ListExtensibleSourceServersCommandOutput extends ListExtensibleSourceServersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of source servers on a staging account that are extensible, which means that:
18
23
  * a. The source server is not already extended into this Account.
19
24
  * b. The source server on the Account we’re reading from is not an extension of another source server.
@@ -28,6 +33,8 @@ export interface ListExtensibleSourceServersCommandOutput extends ListExtensible
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param ListExtensibleSourceServersCommandInput - {@link ListExtensibleSourceServersCommandInput}
37
+ * @returns {@link ListExtensibleSourceServersCommandOutput}
31
38
  * @see {@link ListExtensibleSourceServersCommandInput} for command's `input` shape.
32
39
  * @see {@link ListExtensibleSourceServersCommandOutput} for command's `response` shape.
33
40
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListExtensibleSourceServersCommandOutput extends ListExtensible
52
59
  export declare class ListExtensibleSourceServersCommand extends $Command<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput, DrsClientResolvedConfig> {
53
60
  readonly input: ListExtensibleSourceServersCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListExtensibleSourceServersCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { ListStagingAccountsRequest, ListStagingAccountsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListStagingAccountsCommand}.
8
10
  */
9
11
  export interface ListStagingAccountsCommandInput extends ListStagingAccountsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListStagingAccountsCommand}.
13
17
  */
14
18
  export interface ListStagingAccountsCommandOutput extends ListStagingAccountsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns an array of staging accounts for existing extended source servers.</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 ListStagingAccountsCommandOutput extends ListStagingAccountsRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListStagingAccountsCommandInput - {@link ListStagingAccountsCommandInput}
34
+ * @returns {@link ListStagingAccountsCommandOutput}
28
35
  * @see {@link ListStagingAccountsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListStagingAccountsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListStagingAccountsCommandOutput extends ListStagingAccountsRes
49
56
  export declare class ListStagingAccountsCommand extends $Command<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: ListStagingAccountsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListStagingAccountsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List all tags for your Elastic Disaster Recovery resources.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
56
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: ListTagsForResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListTagsForResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { RetryDataReplicationRequest, SourceServer } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RetryDataReplicationCommand}.
8
10
  */
9
11
  export interface RetryDataReplicationCommandInput extends RetryDataReplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RetryDataReplicationCommand}.
13
17
  */
14
18
  export interface RetryDataReplicationCommandOutput extends SourceServer, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Causes the data replication initiation sequence to begin immediately upon next Handshake for the specified Source Server ID, regardless of when the previous initiation started. This command will work only if the Source Server is stalled or is in a DISCONNECTED or STOPPED state.</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 RetryDataReplicationCommandOutput extends SourceServer, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RetryDataReplicationCommandInput - {@link RetryDataReplicationCommandInput}
34
+ * @returns {@link RetryDataReplicationCommandOutput}
28
35
  * @see {@link RetryDataReplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link RetryDataReplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface RetryDataReplicationCommandOutput extends SourceServer, __Metad
49
56
  export declare class RetryDataReplicationCommand extends $Command<RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: RetryDataReplicationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: RetryDataReplicationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { ReverseReplicationRequest, ReverseReplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ReverseReplicationCommand}.
8
10
  */
9
11
  export interface ReverseReplicationCommandInput extends ReverseReplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ReverseReplicationCommand}.
13
17
  */
14
18
  export interface ReverseReplicationCommandOutput extends ReverseReplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Start replication to origin / target region - applies only to protected instances that originated in EC2.
18
23
  * For recovery instances on target region - starts replication back to origin region.
19
24
  * For failback instances on origin region - starts replication to target region to re-protect them.
@@ -28,6 +33,8 @@ export interface ReverseReplicationCommandOutput extends ReverseReplicationRespo
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param ReverseReplicationCommandInput - {@link ReverseReplicationCommandInput}
37
+ * @returns {@link ReverseReplicationCommandOutput}
31
38
  * @see {@link ReverseReplicationCommandInput} for command's `input` shape.
32
39
  * @see {@link ReverseReplicationCommandOutput} for command's `response` shape.
33
40
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -58,11 +65,20 @@ export interface ReverseReplicationCommandOutput extends ReverseReplicationRespo
58
65
  export declare class ReverseReplicationCommand extends $Command<ReverseReplicationCommandInput, ReverseReplicationCommandOutput, DrsClientResolvedConfig> {
59
66
  readonly input: ReverseReplicationCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: ReverseReplicationCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReverseReplicationCommandInput, ReverseReplicationCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { StartFailbackLaunchRequest, StartFailbackLaunchResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartFailbackLaunchCommand}.
8
10
  */
9
11
  export interface StartFailbackLaunchCommandInput extends StartFailbackLaunchRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartFailbackLaunchCommand}.
13
17
  */
14
18
  export interface StartFailbackLaunchCommandOutput extends StartFailbackLaunchResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Initiates a Job for launching the machine that is being failed back to from the specified Recovery Instance. This will run conversion on the failback client and will reboot your machine, thus completing the failback process.</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 StartFailbackLaunchCommandOutput extends StartFailbackLaunchRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartFailbackLaunchCommandInput - {@link StartFailbackLaunchCommandInput}
34
+ * @returns {@link StartFailbackLaunchCommandOutput}
28
35
  * @see {@link StartFailbackLaunchCommandInput} for command's `input` shape.
29
36
  * @see {@link StartFailbackLaunchCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface StartFailbackLaunchCommandOutput extends StartFailbackLaunchRes
52
59
  export declare class StartFailbackLaunchCommand extends $Command<StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput, DrsClientResolvedConfig> {
53
60
  readonly input: StartFailbackLaunchCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: StartFailbackLaunchCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { StartRecoveryRequest, StartRecoveryResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartRecoveryCommand}.
8
10
  */
9
11
  export interface StartRecoveryCommandInput extends StartRecoveryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartRecoveryCommand}.
13
17
  */
14
18
  export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Launches Recovery Instances for the specified Source Servers. For each Source Server you may choose a point in time snapshot to launch from, or use an on demand snapshot.</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 StartRecoveryCommandOutput extends StartRecoveryResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartRecoveryCommandInput - {@link StartRecoveryCommandInput}
34
+ * @returns {@link StartRecoveryCommandOutput}
28
35
  * @see {@link StartRecoveryCommandInput} for command's `input` shape.
29
36
  * @see {@link StartRecoveryCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StartRecoveryCommandOutput extends StartRecoveryResponse, __Met
49
56
  export declare class StartRecoveryCommand extends $Command<StartRecoveryCommandInput, StartRecoveryCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: StartRecoveryCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StartRecoveryCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartRecoveryCommandInput, StartRecoveryCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { StartReplicationRequest, StartReplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartReplicationCommand}.
8
10
  */
9
11
  export interface StartReplicationCommandInput extends StartReplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartReplicationCommand}.
13
17
  */
14
18
  export interface StartReplicationCommandOutput extends StartReplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts replication for a stopped Source Server. This action would make the Source Server protected again and restart billing for it.</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 StartReplicationCommandOutput extends StartReplicationResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartReplicationCommandInput - {@link StartReplicationCommandInput}
34
+ * @returns {@link StartReplicationCommandOutput}
28
35
  * @see {@link StartReplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link StartReplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StartReplicationCommandOutput extends StartReplicationResponse,
49
56
  export declare class StartReplicationCommand extends $Command<StartReplicationCommandInput, StartReplicationCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: StartReplicationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StartReplicationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartReplicationCommandInput, StartReplicationCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { StopFailbackRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopFailbackCommand}.
8
10
  */
9
11
  export interface StopFailbackCommandInput extends StopFailbackRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopFailbackCommand}.
13
17
  */
14
18
  export interface StopFailbackCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops the failback process for a specified Recovery Instance. This changes the Failback State of the Recovery Instance back to FAILBACK_NOT_STARTED.</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 StopFailbackCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopFailbackCommandInput - {@link StopFailbackCommandInput}
34
+ * @returns {@link StopFailbackCommandOutput}
28
35
  * @see {@link StopFailbackCommandInput} for command's `input` shape.
29
36
  * @see {@link StopFailbackCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -46,11 +53,20 @@ export interface StopFailbackCommandOutput extends __MetadataBearer {
46
53
  export declare class StopFailbackCommand extends $Command<StopFailbackCommandInput, StopFailbackCommandOutput, DrsClientResolvedConfig> {
47
54
  readonly input: StopFailbackCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: StopFailbackCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopFailbackCommandInput, StopFailbackCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { StopReplicationRequest, StopReplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopReplicationCommand}.
8
10
  */
9
11
  export interface StopReplicationCommandInput extends StopReplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopReplicationCommand}.
13
17
  */
14
18
  export interface StopReplicationCommandOutput extends StopReplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops replication for a Source Server. This action would make the Source Server unprotected, delete its existing snapshots and stop billing for it.</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 StopReplicationCommandOutput extends StopReplicationResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopReplicationCommandInput - {@link StopReplicationCommandInput}
34
+ * @returns {@link StopReplicationCommandOutput}
28
35
  * @see {@link StopReplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link StopReplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface StopReplicationCommandOutput extends StopReplicationResponse, _
49
56
  export declare class StopReplicationCommand extends $Command<StopReplicationCommandInput, StopReplicationCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: StopReplicationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: StopReplicationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopReplicationCommandInput, StopReplicationCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds or overwrites only the specified tags for the specified Elastic Disaster Recovery resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value.</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 TagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
49
56
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: TagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: TagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { TerminateRecoveryInstancesRequest, TerminateRecoveryInstancesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TerminateRecoveryInstancesCommand}.
8
10
  */
9
11
  export interface TerminateRecoveryInstancesCommandInput extends TerminateRecoveryInstancesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TerminateRecoveryInstancesCommand}.
13
17
  */
14
18
  export interface TerminateRecoveryInstancesCommandOutput extends TerminateRecoveryInstancesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Initiates a Job for terminating the EC2 resources associated with the specified Recovery Instances, and then will delete the Recovery Instances from the Elastic Disaster Recovery service.</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 TerminateRecoveryInstancesCommandOutput extends TerminateRecove
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TerminateRecoveryInstancesCommandInput - {@link TerminateRecoveryInstancesCommandInput}
34
+ * @returns {@link TerminateRecoveryInstancesCommandOutput}
28
35
  * @see {@link TerminateRecoveryInstancesCommandInput} for command's `input` shape.
29
36
  * @see {@link TerminateRecoveryInstancesCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface TerminateRecoveryInstancesCommandOutput extends TerminateRecove
49
56
  export declare class TerminateRecoveryInstancesCommand extends $Command<TerminateRecoveryInstancesCommandInput, TerminateRecoveryInstancesCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: TerminateRecoveryInstancesCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: TerminateRecoveryInstancesCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TerminateRecoveryInstancesCommandInput, TerminateRecoveryInstancesCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified set of tags from the specified set of Elastic Disaster Recovery resources.</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 UntagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
49
56
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: UntagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UntagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }