@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 { UpdateFailbackReplicationConfigurationRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFailbackReplicationConfigurationCommand}.
8
10
  */
9
11
  export interface UpdateFailbackReplicationConfigurationCommandInput extends UpdateFailbackReplicationConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFailbackReplicationConfigurationCommand}.
13
17
  */
14
18
  export interface UpdateFailbackReplicationConfigurationCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Allows you to update the failback replication configuration of a Recovery Instance by ID.</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 UpdateFailbackReplicationConfigurationCommandOutput extends __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFailbackReplicationConfigurationCommandInput - {@link UpdateFailbackReplicationConfigurationCommandInput}
34
+ * @returns {@link UpdateFailbackReplicationConfigurationCommandOutput}
28
35
  * @see {@link UpdateFailbackReplicationConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFailbackReplicationConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateFailbackReplicationConfigurationCommandOutput extends __M
49
56
  export declare class UpdateFailbackReplicationConfigurationCommand extends $Command<UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackReplicationConfigurationCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: UpdateFailbackReplicationConfigurationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateFailbackReplicationConfigurationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFailbackReplicationConfigurationCommandInput, UpdateFailbackReplicationConfigurationCommandOutput>;
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 { LaunchConfiguration, UpdateLaunchConfigurationRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateLaunchConfigurationCommand}.
8
10
  */
9
11
  export interface UpdateLaunchConfigurationCommandInput extends UpdateLaunchConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateLaunchConfigurationCommand}.
13
17
  */
14
18
  export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfiguration, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a LaunchConfiguration by Source Server ID.</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 UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateLaunchConfigurationCommandInput - {@link UpdateLaunchConfigurationCommandInput}
34
+ * @returns {@link UpdateLaunchConfigurationCommandOutput}
28
35
  * @see {@link UpdateLaunchConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateLaunchConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat
52
59
  export declare class UpdateLaunchConfigurationCommand extends $Command<UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput, DrsClientResolvedConfig> {
53
60
  readonly input: UpdateLaunchConfigurationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateLaunchConfigurationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommandOutput>;
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 { ReplicationConfiguration, UpdateReplicationConfigurationRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateReplicationConfigurationCommand}.
8
10
  */
9
11
  export interface UpdateReplicationConfigurationCommandInput extends UpdateReplicationConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateReplicationConfigurationCommand}.
13
17
  */
14
18
  export interface UpdateReplicationConfigurationCommandOutput extends ReplicationConfiguration, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Allows you to update a ReplicationConfiguration by Source Server ID.</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 UpdateReplicationConfigurationCommandOutput extends Replication
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateReplicationConfigurationCommandInput - {@link UpdateReplicationConfigurationCommandInput}
34
+ * @returns {@link UpdateReplicationConfigurationCommandOutput}
28
35
  * @see {@link UpdateReplicationConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateReplicationConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -55,11 +62,20 @@ export interface UpdateReplicationConfigurationCommandOutput extends Replication
55
62
  export declare class UpdateReplicationConfigurationCommand extends $Command<UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput, DrsClientResolvedConfig> {
56
63
  readonly input: UpdateReplicationConfigurationCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: UpdateReplicationConfigurationCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput>;
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 { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { ReplicationConfigurationTemplate, UpdateReplicationConfigurationTemplateRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateReplicationConfigurationTemplateCommand}.
8
10
  */
9
11
  export interface UpdateReplicationConfigurationTemplateCommandInput extends UpdateReplicationConfigurationTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateReplicationConfigurationTemplateCommand}.
13
17
  */
14
18
  export interface UpdateReplicationConfigurationTemplateCommandOutput extends ReplicationConfigurationTemplate, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a ReplicationConfigurationTemplate by ID.</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 UpdateReplicationConfigurationTemplateCommandOutput extends Rep
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateReplicationConfigurationTemplateCommandInput - {@link UpdateReplicationConfigurationTemplateCommandInput}
34
+ * @returns {@link UpdateReplicationConfigurationTemplateCommandOutput}
28
35
  * @see {@link UpdateReplicationConfigurationTemplateCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateReplicationConfigurationTemplateCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateReplicationConfigurationTemplateCommandOutput extends Rep
52
59
  export declare class UpdateReplicationConfigurationTemplateCommand extends $Command<UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
53
60
  readonly input: UpdateReplicationConfigurationTemplateCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateReplicationConfigurationTemplateCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Drs service.
4
6
  */
5
7
  export declare class DrsServiceException extends __ServiceException {