@aws-sdk/client-drs 3.296.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 +3 -3
@@ -36,118 +36,138 @@ import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurat
36
36
  import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
37
37
  import { DrsClient } from "./DrsClient";
38
38
  /**
39
+ * @public
39
40
  * <p>AWS Elastic Disaster Recovery Service.</p>
40
41
  */
41
42
  export declare class Drs extends DrsClient {
42
43
  /**
44
+ * @public
43
45
  * <p>Create an extended source server in the target Account based on the source server in staging account.</p>
44
46
  */
45
47
  createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtendedSourceServerCommandOutput>;
46
48
  createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
47
49
  createExtendedSourceServer(args: CreateExtendedSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtendedSourceServerCommandOutput) => void): void;
48
50
  /**
51
+ * @public
49
52
  * <p>Creates a new ReplicationConfigurationTemplate.</p>
50
53
  */
51
54
  createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationConfigurationTemplateCommandOutput>;
52
55
  createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
53
56
  createReplicationConfigurationTemplate(args: CreateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationConfigurationTemplateCommandOutput) => void): void;
54
57
  /**
58
+ * @public
55
59
  * <p>Deletes a single Job by ID.</p>
56
60
  */
57
61
  deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
58
62
  deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
59
63
  deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
60
64
  /**
65
+ * @public
61
66
  * <p>Deletes a single Recovery Instance by ID. This deletes the Recovery Instance resource from Elastic Disaster Recovery. The Recovery Instance must be disconnected first in order to delete it.</p>
62
67
  */
63
68
  deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecoveryInstanceCommandOutput>;
64
69
  deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
65
70
  deleteRecoveryInstance(args: DeleteRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecoveryInstanceCommandOutput) => void): void;
66
71
  /**
72
+ * @public
67
73
  * <p>Deletes a single Replication Configuration Template by ID</p>
68
74
  */
69
75
  deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationConfigurationTemplateCommandOutput>;
70
76
  deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
71
77
  deleteReplicationConfigurationTemplate(args: DeleteReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationConfigurationTemplateCommandOutput) => void): void;
72
78
  /**
79
+ * @public
73
80
  * <p>Deletes a single Source Server by ID. The Source Server must be disconnected first.</p>
74
81
  */
75
82
  deleteSourceServer(args: DeleteSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSourceServerCommandOutput>;
76
83
  deleteSourceServer(args: DeleteSourceServerCommandInput, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
77
84
  deleteSourceServer(args: DeleteSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSourceServerCommandOutput) => void): void;
78
85
  /**
86
+ * @public
79
87
  * <p>Retrieves a detailed Job log with pagination.</p>
80
88
  */
81
89
  describeJobLogItems(args: DescribeJobLogItemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobLogItemsCommandOutput>;
82
90
  describeJobLogItems(args: DescribeJobLogItemsCommandInput, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
83
91
  describeJobLogItems(args: DescribeJobLogItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobLogItemsCommandOutput) => void): void;
84
92
  /**
93
+ * @public
85
94
  * <p>Returns a list of Jobs. Use the JobsID and fromDate and toDate filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are created by the StartRecovery, TerminateRecoveryInstances and StartFailbackLaunch APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.</p>
86
95
  */
87
96
  describeJobs(args: DescribeJobsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobsCommandOutput>;
88
97
  describeJobs(args: DescribeJobsCommandInput, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
89
98
  describeJobs(args: DescribeJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobsCommandOutput) => void): void;
90
99
  /**
100
+ * @public
91
101
  * <p>Lists all Recovery Instances or multiple Recovery Instances by ID.</p>
92
102
  */
93
103
  describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoveryInstancesCommandOutput>;
94
104
  describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
95
105
  describeRecoveryInstances(args: DescribeRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoveryInstancesCommandOutput) => void): void;
96
106
  /**
107
+ * @public
97
108
  * <p>Lists all Recovery Snapshots for a single Source Server.</p>
98
109
  */
99
110
  describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecoverySnapshotsCommandOutput>;
100
111
  describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
101
112
  describeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecoverySnapshotsCommandOutput) => void): void;
102
113
  /**
114
+ * @public
103
115
  * <p>Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.</p>
104
116
  */
105
117
  describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationConfigurationTemplatesCommandOutput>;
106
118
  describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
107
119
  describeReplicationConfigurationTemplates(args: DescribeReplicationConfigurationTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationConfigurationTemplatesCommandOutput) => void): void;
108
120
  /**
121
+ * @public
109
122
  * <p>Lists all Source Servers or multiple Source Servers filtered by ID.</p>
110
123
  */
111
124
  describeSourceServers(args: DescribeSourceServersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSourceServersCommandOutput>;
112
125
  describeSourceServers(args: DescribeSourceServersCommandInput, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
113
126
  describeSourceServers(args: DescribeSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSourceServersCommandOutput) => void): void;
114
127
  /**
128
+ * @public
115
129
  * <p>Disconnect a Recovery Instance from Elastic Disaster Recovery. Data replication is stopped immediately. All AWS resources created by Elastic Disaster Recovery for enabling the replication of the Recovery Instance will be terminated / deleted within 90 minutes. If the agent on the Recovery Instance has not been prevented from communicating with the Elastic Disaster Recovery service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the Recovery Instance will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.</p>
116
130
  */
117
131
  disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectRecoveryInstanceCommandOutput>;
118
132
  disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
119
133
  disconnectRecoveryInstance(args: DisconnectRecoveryInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectRecoveryInstanceCommandOutput) => void): void;
120
134
  /**
135
+ * @public
121
136
  * <p>Disconnects a specific Source Server from Elastic Disaster Recovery. Data replication is stopped immediately. All AWS resources created by Elastic Disaster Recovery for enabling the replication of the Source Server will be terminated / deleted within 90 minutes. You cannot disconnect a Source Server if it has a Recovery Instance. If the agent on the Source Server has not been prevented from communicating with the Elastic Disaster Recovery service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.</p>
122
137
  */
123
138
  disconnectSourceServer(args: DisconnectSourceServerCommandInput, options?: __HttpHandlerOptions): Promise<DisconnectSourceServerCommandOutput>;
124
139
  disconnectSourceServer(args: DisconnectSourceServerCommandInput, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
125
140
  disconnectSourceServer(args: DisconnectSourceServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectSourceServerCommandOutput) => void): void;
126
141
  /**
142
+ * @public
127
143
  * <p>Lists all Failback ReplicationConfigurations, filtered by Recovery Instance ID.</p>
128
144
  */
129
145
  getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetFailbackReplicationConfigurationCommandOutput>;
130
146
  getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
131
147
  getFailbackReplicationConfiguration(args: GetFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFailbackReplicationConfigurationCommandOutput) => void): void;
132
148
  /**
149
+ * @public
133
150
  * <p>Gets a LaunchConfiguration, filtered by Source Server IDs.</p>
134
151
  */
135
152
  getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLaunchConfigurationCommandOutput>;
136
153
  getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
137
154
  getLaunchConfiguration(args: GetLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLaunchConfigurationCommandOutput) => void): void;
138
155
  /**
156
+ * @public
139
157
  * <p>Gets a ReplicationConfiguration, filtered by Source Server ID.</p>
140
158
  */
141
159
  getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetReplicationConfigurationCommandOutput>;
142
160
  getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
143
161
  getReplicationConfiguration(args: GetReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReplicationConfigurationCommandOutput) => void): void;
144
162
  /**
163
+ * @public
145
164
  * <p>Initialize Elastic Disaster Recovery.</p>
146
165
  */
147
166
  initializeService(args: InitializeServiceCommandInput, options?: __HttpHandlerOptions): Promise<InitializeServiceCommandOutput>;
148
167
  initializeService(args: InitializeServiceCommandInput, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
149
168
  initializeService(args: InitializeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
150
169
  /**
170
+ * @public
151
171
  * <p>Returns a list of source servers on a staging account that are extensible, which means that:
152
172
  * a. The source server is not already extended into this Account.
153
173
  * b. The source server on the Account we’re reading from is not an extension of another source server.
@@ -157,24 +177,28 @@ export declare class Drs extends DrsClient {
157
177
  listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
158
178
  listExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void): void;
159
179
  /**
180
+ * @public
160
181
  * <p>Returns an array of staging accounts for existing extended source servers.</p>
161
182
  */
162
183
  listStagingAccounts(args: ListStagingAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListStagingAccountsCommandOutput>;
163
184
  listStagingAccounts(args: ListStagingAccountsCommandInput, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
164
185
  listStagingAccounts(args: ListStagingAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStagingAccountsCommandOutput) => void): void;
165
186
  /**
187
+ * @public
166
188
  * <p>List all tags for your Elastic Disaster Recovery resources.</p>
167
189
  */
168
190
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
169
191
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
170
192
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
171
193
  /**
194
+ * @public
172
195
  * <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>
173
196
  */
174
197
  retryDataReplication(args: RetryDataReplicationCommandInput, options?: __HttpHandlerOptions): Promise<RetryDataReplicationCommandOutput>;
175
198
  retryDataReplication(args: RetryDataReplicationCommandInput, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
176
199
  retryDataReplication(args: RetryDataReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryDataReplicationCommandOutput) => void): void;
177
200
  /**
201
+ * @public
178
202
  * <p>Start replication to origin / target region - applies only to protected instances that originated in EC2.
179
203
  * For recovery instances on target region - starts replication back to origin region.
180
204
  * For failback instances on origin region - starts replication to target region to re-protect them.
@@ -184,72 +208,84 @@ export declare class Drs extends DrsClient {
184
208
  reverseReplication(args: ReverseReplicationCommandInput, cb: (err: any, data?: ReverseReplicationCommandOutput) => void): void;
185
209
  reverseReplication(args: ReverseReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReverseReplicationCommandOutput) => void): void;
186
210
  /**
211
+ * @public
187
212
  * <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>
188
213
  */
189
214
  startFailbackLaunch(args: StartFailbackLaunchCommandInput, options?: __HttpHandlerOptions): Promise<StartFailbackLaunchCommandOutput>;
190
215
  startFailbackLaunch(args: StartFailbackLaunchCommandInput, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
191
216
  startFailbackLaunch(args: StartFailbackLaunchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFailbackLaunchCommandOutput) => void): void;
192
217
  /**
218
+ * @public
193
219
  * <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>
194
220
  */
195
221
  startRecovery(args: StartRecoveryCommandInput, options?: __HttpHandlerOptions): Promise<StartRecoveryCommandOutput>;
196
222
  startRecovery(args: StartRecoveryCommandInput, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
197
223
  startRecovery(args: StartRecoveryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRecoveryCommandOutput) => void): void;
198
224
  /**
225
+ * @public
199
226
  * <p>Starts replication for a stopped Source Server. This action would make the Source Server protected again and restart billing for it.</p>
200
227
  */
201
228
  startReplication(args: StartReplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartReplicationCommandOutput>;
202
229
  startReplication(args: StartReplicationCommandInput, cb: (err: any, data?: StartReplicationCommandOutput) => void): void;
203
230
  startReplication(args: StartReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReplicationCommandOutput) => void): void;
204
231
  /**
232
+ * @public
205
233
  * <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>
206
234
  */
207
235
  stopFailback(args: StopFailbackCommandInput, options?: __HttpHandlerOptions): Promise<StopFailbackCommandOutput>;
208
236
  stopFailback(args: StopFailbackCommandInput, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
209
237
  stopFailback(args: StopFailbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFailbackCommandOutput) => void): void;
210
238
  /**
239
+ * @public
211
240
  * <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>
212
241
  */
213
242
  stopReplication(args: StopReplicationCommandInput, options?: __HttpHandlerOptions): Promise<StopReplicationCommandOutput>;
214
243
  stopReplication(args: StopReplicationCommandInput, cb: (err: any, data?: StopReplicationCommandOutput) => void): void;
215
244
  stopReplication(args: StopReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopReplicationCommandOutput) => void): void;
216
245
  /**
246
+ * @public
217
247
  * <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>
218
248
  */
219
249
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
220
250
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
221
251
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
222
252
  /**
253
+ * @public
223
254
  * <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>
224
255
  */
225
256
  terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options?: __HttpHandlerOptions): Promise<TerminateRecoveryInstancesCommandOutput>;
226
257
  terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
227
258
  terminateRecoveryInstances(args: TerminateRecoveryInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TerminateRecoveryInstancesCommandOutput) => void): void;
228
259
  /**
260
+ * @public
229
261
  * <p>Deletes the specified set of tags from the specified set of Elastic Disaster Recovery resources.</p>
230
262
  */
231
263
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
232
264
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
233
265
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
234
266
  /**
267
+ * @public
235
268
  * <p>Allows you to update the failback replication configuration of a Recovery Instance by ID.</p>
236
269
  */
237
270
  updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFailbackReplicationConfigurationCommandOutput>;
238
271
  updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
239
272
  updateFailbackReplicationConfiguration(args: UpdateFailbackReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFailbackReplicationConfigurationCommandOutput) => void): void;
240
273
  /**
274
+ * @public
241
275
  * <p>Updates a LaunchConfiguration by Source Server ID.</p>
242
276
  */
243
277
  updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLaunchConfigurationCommandOutput>;
244
278
  updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
245
279
  updateLaunchConfiguration(args: UpdateLaunchConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLaunchConfigurationCommandOutput) => void): void;
246
280
  /**
281
+ * @public
247
282
  * <p>Allows you to update a ReplicationConfiguration by Source Server ID.</p>
248
283
  */
249
284
  updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationCommandOutput>;
250
285
  updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
251
286
  updateReplicationConfiguration(args: UpdateReplicationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationCommandOutput) => void): void;
252
287
  /**
288
+ * @public
253
289
  * <p>Updates a ReplicationConfigurationTemplate by ID.</p>
254
290
  */
255
291
  updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationTemplateCommandOutput>;
@@ -43,15 +43,24 @@ import { UpdateLaunchConfigurationCommandInput, UpdateLaunchConfigurationCommand
43
43
  import { UpdateReplicationConfigurationCommandInput, UpdateReplicationConfigurationCommandOutput } from "./commands/UpdateReplicationConfigurationCommand";
44
44
  import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput } from "./commands/UpdateReplicationConfigurationTemplateCommand";
45
45
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
46
+ /**
47
+ * @public
48
+ */
46
49
  export type ServiceInputTypes = CreateExtendedSourceServerCommandInput | CreateReplicationConfigurationTemplateCommandInput | DeleteJobCommandInput | DeleteRecoveryInstanceCommandInput | DeleteReplicationConfigurationTemplateCommandInput | DeleteSourceServerCommandInput | DescribeJobLogItemsCommandInput | DescribeJobsCommandInput | DescribeRecoveryInstancesCommandInput | DescribeRecoverySnapshotsCommandInput | DescribeReplicationConfigurationTemplatesCommandInput | DescribeSourceServersCommandInput | DisconnectRecoveryInstanceCommandInput | DisconnectSourceServerCommandInput | GetFailbackReplicationConfigurationCommandInput | GetLaunchConfigurationCommandInput | GetReplicationConfigurationCommandInput | InitializeServiceCommandInput | ListExtensibleSourceServersCommandInput | ListStagingAccountsCommandInput | ListTagsForResourceCommandInput | RetryDataReplicationCommandInput | ReverseReplicationCommandInput | StartFailbackLaunchCommandInput | StartRecoveryCommandInput | StartReplicationCommandInput | StopFailbackCommandInput | StopReplicationCommandInput | TagResourceCommandInput | TerminateRecoveryInstancesCommandInput | UntagResourceCommandInput | UpdateFailbackReplicationConfigurationCommandInput | UpdateLaunchConfigurationCommandInput | UpdateReplicationConfigurationCommandInput | UpdateReplicationConfigurationTemplateCommandInput;
50
+ /**
51
+ * @public
52
+ */
47
53
  export type ServiceOutputTypes = CreateExtendedSourceServerCommandOutput | CreateReplicationConfigurationTemplateCommandOutput | DeleteJobCommandOutput | DeleteRecoveryInstanceCommandOutput | DeleteReplicationConfigurationTemplateCommandOutput | DeleteSourceServerCommandOutput | DescribeJobLogItemsCommandOutput | DescribeJobsCommandOutput | DescribeRecoveryInstancesCommandOutput | DescribeRecoverySnapshotsCommandOutput | DescribeReplicationConfigurationTemplatesCommandOutput | DescribeSourceServersCommandOutput | DisconnectRecoveryInstanceCommandOutput | DisconnectSourceServerCommandOutput | GetFailbackReplicationConfigurationCommandOutput | GetLaunchConfigurationCommandOutput | GetReplicationConfigurationCommandOutput | InitializeServiceCommandOutput | ListExtensibleSourceServersCommandOutput | ListStagingAccountsCommandOutput | ListTagsForResourceCommandOutput | RetryDataReplicationCommandOutput | ReverseReplicationCommandOutput | StartFailbackLaunchCommandOutput | StartRecoveryCommandOutput | StartReplicationCommandOutput | StopFailbackCommandOutput | StopReplicationCommandOutput | TagResourceCommandOutput | TerminateRecoveryInstancesCommandOutput | UntagResourceCommandOutput | UpdateFailbackReplicationConfigurationCommandOutput | UpdateLaunchConfigurationCommandOutput | UpdateReplicationConfigurationCommandOutput | UpdateReplicationConfigurationTemplateCommandOutput;
54
+ /**
55
+ * @public
56
+ */
48
57
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
49
58
  /**
50
59
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
51
60
  */
52
61
  requestHandler?: __HttpHandler;
53
62
  /**
54
- * A constructor for a class implementing the {@link __Checksum} interface
63
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
55
64
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
56
65
  * @internal
57
66
  */
@@ -141,23 +150,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
141
150
  */
142
151
  logger?: __Logger;
143
152
  /**
144
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
153
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
145
154
  */
146
155
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
147
156
  }
157
+ /**
158
+ * @public
159
+ */
148
160
  type DrsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
149
161
  /**
150
- * The configuration interface of DrsClient class constructor that set the region, credentials and other options.
162
+ * @public
163
+ *
164
+ * The configuration interface of DrsClient class constructor that set the region, credentials and other options.
151
165
  */
152
166
  export interface DrsClientConfig extends DrsClientConfigType {
153
167
  }
168
+ /**
169
+ * @public
170
+ */
154
171
  type DrsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
155
172
  /**
156
- * The resolved configuration interface of DrsClient class. This is resolved and normalized from the {@link DrsClientConfig | constructor configuration interface}.
173
+ * @public
174
+ *
175
+ * The resolved configuration interface of DrsClient class. This is resolved and normalized from the {@link DrsClientConfig | constructor configuration interface}.
157
176
  */
158
177
  export interface DrsClientResolvedConfig extends DrsClientResolvedConfigType {
159
178
  }
160
179
  /**
180
+ * @public
161
181
  * <p>AWS Elastic Disaster Recovery Service.</p>
162
182
  */
163
183
  export declare class DrsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DrsClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient";
5
5
  import { CreateExtendedSourceServerRequest, CreateExtendedSourceServerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateExtendedSourceServerCommand}.
8
10
  */
9
11
  export interface CreateExtendedSourceServerCommandInput extends CreateExtendedSourceServerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateExtendedSourceServerCommand}.
13
17
  */
14
18
  export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedSourceServerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Create an extended source server in the target Account based on the source server in staging account.</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 CreateExtendedSourceServerCommandOutput extends CreateExtendedS
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateExtendedSourceServerCommandInput - {@link CreateExtendedSourceServerCommandInput}
34
+ * @returns {@link CreateExtendedSourceServerCommandOutput}
28
35
  * @see {@link CreateExtendedSourceServerCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateExtendedSourceServerCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -55,11 +62,20 @@ export interface CreateExtendedSourceServerCommandOutput extends CreateExtendedS
55
62
  export declare class CreateExtendedSourceServerCommand extends $Command<CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput, DrsClientResolvedConfig> {
56
63
  readonly input: CreateExtendedSourceServerCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: CreateExtendedSourceServerCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput>;
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 { CreateReplicationConfigurationTemplateRequest, ReplicationConfigurationTemplate } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateReplicationConfigurationTemplateCommand}.
8
10
  */
9
11
  export interface CreateReplicationConfigurationTemplateCommandInput extends CreateReplicationConfigurationTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateReplicationConfigurationTemplateCommand}.
13
17
  */
14
18
  export interface CreateReplicationConfigurationTemplateCommandOutput extends ReplicationConfigurationTemplate, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new ReplicationConfigurationTemplate.</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 CreateReplicationConfigurationTemplateCommandOutput extends Rep
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateReplicationConfigurationTemplateCommandInput - {@link CreateReplicationConfigurationTemplateCommandInput}
34
+ * @returns {@link CreateReplicationConfigurationTemplateCommandOutput}
28
35
  * @see {@link CreateReplicationConfigurationTemplateCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateReplicationConfigurationTemplateCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateReplicationConfigurationTemplateCommandOutput extends Rep
52
59
  export declare class CreateReplicationConfigurationTemplateCommand extends $Command<CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
53
60
  readonly input: CreateReplicationConfigurationTemplateCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateReplicationConfigurationTemplateCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput>;
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 { DeleteJobRequest, DeleteJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteJobCommand}.
8
10
  */
9
11
  export interface DeleteJobCommandInput extends DeleteJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteJobCommand}.
13
17
  */
14
18
  export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a single Job 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 DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteJobCommandInput - {@link DeleteJobCommandInput}
34
+ * @returns {@link DeleteJobCommandOutput}
28
35
  * @see {@link DeleteJobCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBea
49
56
  export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: DeleteJobCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteJobCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobCommandInput, DeleteJobCommandOutput>;
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 { DeleteRecoveryInstanceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRecoveryInstanceCommand}.
8
10
  */
9
11
  export interface DeleteRecoveryInstanceCommandInput extends DeleteRecoveryInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRecoveryInstanceCommand}.
13
17
  */
14
18
  export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a single Recovery Instance by ID. This deletes the Recovery Instance resource from Elastic Disaster Recovery. The Recovery Instance must be disconnected first in order to delete 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 DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteRecoveryInstanceCommandInput - {@link DeleteRecoveryInstanceCommandInput}
34
+ * @returns {@link DeleteRecoveryInstanceCommandOutput}
28
35
  * @see {@link DeleteRecoveryInstanceCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteRecoveryInstanceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteRecoveryInstanceCommandOutput extends __MetadataBearer {
49
56
  export declare class DeleteRecoveryInstanceCommand extends $Command<DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: DeleteRecoveryInstanceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteRecoveryInstanceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput>;
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 { DeleteReplicationConfigurationTemplateRequest, DeleteReplicationConfigurationTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteReplicationConfigurationTemplateCommand}.
8
10
  */
9
11
  export interface DeleteReplicationConfigurationTemplateCommandInput extends DeleteReplicationConfigurationTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteReplicationConfigurationTemplateCommand}.
13
17
  */
14
18
  export interface DeleteReplicationConfigurationTemplateCommandOutput extends DeleteReplicationConfigurationTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a single Replication Configuration Template 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 DeleteReplicationConfigurationTemplateCommandOutput extends Del
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteReplicationConfigurationTemplateCommandInput - {@link DeleteReplicationConfigurationTemplateCommandInput}
34
+ * @returns {@link DeleteReplicationConfigurationTemplateCommandOutput}
28
35
  * @see {@link DeleteReplicationConfigurationTemplateCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteReplicationConfigurationTemplateCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteReplicationConfigurationTemplateCommandOutput extends Del
49
56
  export declare class DeleteReplicationConfigurationTemplateCommand extends $Command<DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: DeleteReplicationConfigurationTemplateCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteReplicationConfigurationTemplateCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput>;
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 { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSourceServerCommand}.
8
10
  */
9
11
  export interface DeleteSourceServerCommandInput extends DeleteSourceServerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSourceServerCommand}.
13
17
  */
14
18
  export interface DeleteSourceServerCommandOutput extends DeleteSourceServerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a single Source Server by ID. The Source Server must be disconnected first.</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 DeleteSourceServerCommandOutput extends DeleteSourceServerRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteSourceServerCommandInput - {@link DeleteSourceServerCommandInput}
34
+ * @returns {@link DeleteSourceServerCommandOutput}
28
35
  * @see {@link DeleteSourceServerCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteSourceServerCommandOutput} for command's `response` shape.
30
37
  * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DeleteSourceServerCommandOutput extends DeleteSourceServerRespo
49
56
  export declare class DeleteSourceServerCommand extends $Command<DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput, DrsClientResolvedConfig> {
50
57
  readonly input: DeleteSourceServerCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DeleteSourceServerCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DrsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSourceServerCommandInput, DeleteSourceServerCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }