@aws-sdk/client-drs 3.1111.0 → 3.1113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +147 -7
- package/dist-cjs/index.js +715 -5
- package/dist-es/Drs.js +48 -0
- package/dist-es/commands/CancelRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/CreateRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/CreateRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/DeleteRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/GetRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanExecutionStepsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanExecutionsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlanStepsCommand.js +4 -0
- package/dist-es/commands/ListRecoveryPlansCommand.js +4 -0
- package/dist-es/commands/ReorderRecoveryPlanStepsCommand.js +4 -0
- package/dist-es/commands/RetryRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/StartRecoveryPlanExecutionCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanExecutionStepCommand.js +4 -0
- package/dist-es/commands/UpdateRecoveryPlanStepCommand.js +4 -0
- package/dist-es/commands/index.js +20 -0
- package/dist-es/models/enums.js +29 -0
- package/dist-es/pagination/ListRecoveryPlanExecutionStepsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlanExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlanStepsPaginator.js +4 -0
- package/dist-es/pagination/ListRecoveryPlansPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +488 -4
- package/dist-types/Drs.d.ts +170 -0
- package/dist-types/DrsClient.d.ts +22 -2
- package/dist-types/commands/CancelRecoveryPlanExecutionCommand.d.ts +106 -0
- package/dist-types/commands/CreateRecoveryPlanCommand.d.ts +107 -0
- package/dist-types/commands/CreateRecoveryPlanStepCommand.d.ts +130 -0
- package/dist-types/commands/DeleteRecoveryPlanCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRecoveryPlanExecutionCommand.d.ts +92 -0
- package/dist-types/commands/DeleteRecoveryPlanStepCommand.d.ts +92 -0
- package/dist-types/commands/GetRecoveryPlanCommand.d.ts +99 -0
- package/dist-types/commands/GetRecoveryPlanExecutionCommand.d.ts +103 -0
- package/dist-types/commands/GetRecoveryPlanExecutionStepCommand.d.ts +115 -0
- package/dist-types/commands/GetRecoveryPlanStepCommand.d.ts +108 -0
- package/dist-types/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +120 -0
- package/dist-types/commands/ListRecoveryPlanExecutionsCommand.d.ts +102 -0
- package/dist-types/commands/ListRecoveryPlanStepsCommand.d.ts +113 -0
- package/dist-types/commands/ListRecoveryPlansCommand.d.ts +96 -0
- package/dist-types/commands/ReorderRecoveryPlanStepsCommand.d.ts +116 -0
- package/dist-types/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +118 -0
- package/dist-types/commands/StartRecoveryPlanExecutionCommand.d.ts +120 -0
- package/dist-types/commands/UpdateRecoveryPlanCommand.d.ts +104 -0
- package/dist-types/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +126 -0
- package/dist-types/commands/UpdateRecoveryPlanStepCommand.d.ts +125 -0
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/models/enums.d.ts +69 -0
- package/dist-types/models/models_0.d.ts +1049 -2
- package/dist-types/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlanStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecoveryPlansPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +77 -0
- package/dist-types/ts3.4/Drs.d.ts +370 -0
- package/dist-types/ts3.4/DrsClient.d.ts +120 -0
- package/dist-types/ts3.4/commands/CancelRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanExecutionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlanStepsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListRecoveryPlansCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ReorderRecoveryPlanStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/RetryRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartRecoveryPlanExecutionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanExecutionStepCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateRecoveryPlanStepCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/models/enums.d.ts +38 -0
- package/dist-types/ts3.4/models/models_0.d.ts +299 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlanStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecoveryPlansPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +77 -0
- package/package.json +1 -1
|
@@ -37,6 +37,10 @@ import {
|
|
|
37
37
|
AssociateSourceNetworkStackCommandInput,
|
|
38
38
|
AssociateSourceNetworkStackCommandOutput,
|
|
39
39
|
} from "./commands/AssociateSourceNetworkStackCommand";
|
|
40
|
+
import {
|
|
41
|
+
CancelRecoveryPlanExecutionCommandInput,
|
|
42
|
+
CancelRecoveryPlanExecutionCommandOutput,
|
|
43
|
+
} from "./commands/CancelRecoveryPlanExecutionCommand";
|
|
40
44
|
import {
|
|
41
45
|
CreateExtendedSourceServerCommandInput,
|
|
42
46
|
CreateExtendedSourceServerCommandOutput,
|
|
@@ -45,6 +49,14 @@ import {
|
|
|
45
49
|
CreateLaunchConfigurationTemplateCommandInput,
|
|
46
50
|
CreateLaunchConfigurationTemplateCommandOutput,
|
|
47
51
|
} from "./commands/CreateLaunchConfigurationTemplateCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateRecoveryPlanCommandInput,
|
|
54
|
+
CreateRecoveryPlanCommandOutput,
|
|
55
|
+
} from "./commands/CreateRecoveryPlanCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateRecoveryPlanStepCommandInput,
|
|
58
|
+
CreateRecoveryPlanStepCommandOutput,
|
|
59
|
+
} from "./commands/CreateRecoveryPlanStepCommand";
|
|
48
60
|
import {
|
|
49
61
|
CreateReplicationConfigurationTemplateCommandInput,
|
|
50
62
|
CreateReplicationConfigurationTemplateCommandOutput,
|
|
@@ -66,6 +78,18 @@ import {
|
|
|
66
78
|
DeleteRecoveryInstanceCommandInput,
|
|
67
79
|
DeleteRecoveryInstanceCommandOutput,
|
|
68
80
|
} from "./commands/DeleteRecoveryInstanceCommand";
|
|
81
|
+
import {
|
|
82
|
+
DeleteRecoveryPlanCommandInput,
|
|
83
|
+
DeleteRecoveryPlanCommandOutput,
|
|
84
|
+
} from "./commands/DeleteRecoveryPlanCommand";
|
|
85
|
+
import {
|
|
86
|
+
DeleteRecoveryPlanExecutionCommandInput,
|
|
87
|
+
DeleteRecoveryPlanExecutionCommandOutput,
|
|
88
|
+
} from "./commands/DeleteRecoveryPlanExecutionCommand";
|
|
89
|
+
import {
|
|
90
|
+
DeleteRecoveryPlanStepCommandInput,
|
|
91
|
+
DeleteRecoveryPlanStepCommandOutput,
|
|
92
|
+
} from "./commands/DeleteRecoveryPlanStepCommand";
|
|
69
93
|
import {
|
|
70
94
|
DeleteReplicationConfigurationTemplateCommandInput,
|
|
71
95
|
DeleteReplicationConfigurationTemplateCommandOutput,
|
|
@@ -130,6 +154,22 @@ import {
|
|
|
130
154
|
GetLaunchConfigurationCommandInput,
|
|
131
155
|
GetLaunchConfigurationCommandOutput,
|
|
132
156
|
} from "./commands/GetLaunchConfigurationCommand";
|
|
157
|
+
import {
|
|
158
|
+
GetRecoveryPlanCommandInput,
|
|
159
|
+
GetRecoveryPlanCommandOutput,
|
|
160
|
+
} from "./commands/GetRecoveryPlanCommand";
|
|
161
|
+
import {
|
|
162
|
+
GetRecoveryPlanExecutionCommandInput,
|
|
163
|
+
GetRecoveryPlanExecutionCommandOutput,
|
|
164
|
+
} from "./commands/GetRecoveryPlanExecutionCommand";
|
|
165
|
+
import {
|
|
166
|
+
GetRecoveryPlanExecutionStepCommandInput,
|
|
167
|
+
GetRecoveryPlanExecutionStepCommandOutput,
|
|
168
|
+
} from "./commands/GetRecoveryPlanExecutionStepCommand";
|
|
169
|
+
import {
|
|
170
|
+
GetRecoveryPlanStepCommandInput,
|
|
171
|
+
GetRecoveryPlanStepCommandOutput,
|
|
172
|
+
} from "./commands/GetRecoveryPlanStepCommand";
|
|
133
173
|
import {
|
|
134
174
|
GetReplicationConfigurationCommandInput,
|
|
135
175
|
GetReplicationConfigurationCommandOutput,
|
|
@@ -146,6 +186,22 @@ import {
|
|
|
146
186
|
ListLaunchActionsCommandInput,
|
|
147
187
|
ListLaunchActionsCommandOutput,
|
|
148
188
|
} from "./commands/ListLaunchActionsCommand";
|
|
189
|
+
import {
|
|
190
|
+
ListRecoveryPlanExecutionsCommandInput,
|
|
191
|
+
ListRecoveryPlanExecutionsCommandOutput,
|
|
192
|
+
} from "./commands/ListRecoveryPlanExecutionsCommand";
|
|
193
|
+
import {
|
|
194
|
+
ListRecoveryPlanExecutionStepsCommandInput,
|
|
195
|
+
ListRecoveryPlanExecutionStepsCommandOutput,
|
|
196
|
+
} from "./commands/ListRecoveryPlanExecutionStepsCommand";
|
|
197
|
+
import {
|
|
198
|
+
ListRecoveryPlansCommandInput,
|
|
199
|
+
ListRecoveryPlansCommandOutput,
|
|
200
|
+
} from "./commands/ListRecoveryPlansCommand";
|
|
201
|
+
import {
|
|
202
|
+
ListRecoveryPlanStepsCommandInput,
|
|
203
|
+
ListRecoveryPlanStepsCommandOutput,
|
|
204
|
+
} from "./commands/ListRecoveryPlanStepsCommand";
|
|
149
205
|
import {
|
|
150
206
|
ListStagingAccountsCommandInput,
|
|
151
207
|
ListStagingAccountsCommandOutput,
|
|
@@ -158,10 +214,18 @@ import {
|
|
|
158
214
|
PutLaunchActionCommandInput,
|
|
159
215
|
PutLaunchActionCommandOutput,
|
|
160
216
|
} from "./commands/PutLaunchActionCommand";
|
|
217
|
+
import {
|
|
218
|
+
ReorderRecoveryPlanStepsCommandInput,
|
|
219
|
+
ReorderRecoveryPlanStepsCommandOutput,
|
|
220
|
+
} from "./commands/ReorderRecoveryPlanStepsCommand";
|
|
161
221
|
import {
|
|
162
222
|
RetryDataReplicationCommandInput,
|
|
163
223
|
RetryDataReplicationCommandOutput,
|
|
164
224
|
} from "./commands/RetryDataReplicationCommand";
|
|
225
|
+
import {
|
|
226
|
+
RetryRecoveryPlanExecutionStepCommandInput,
|
|
227
|
+
RetryRecoveryPlanExecutionStepCommandOutput,
|
|
228
|
+
} from "./commands/RetryRecoveryPlanExecutionStepCommand";
|
|
165
229
|
import {
|
|
166
230
|
ReverseReplicationCommandInput,
|
|
167
231
|
ReverseReplicationCommandOutput,
|
|
@@ -174,6 +238,10 @@ import {
|
|
|
174
238
|
StartRecoveryCommandInput,
|
|
175
239
|
StartRecoveryCommandOutput,
|
|
176
240
|
} from "./commands/StartRecoveryCommand";
|
|
241
|
+
import {
|
|
242
|
+
StartRecoveryPlanExecutionCommandInput,
|
|
243
|
+
StartRecoveryPlanExecutionCommandOutput,
|
|
244
|
+
} from "./commands/StartRecoveryPlanExecutionCommand";
|
|
177
245
|
import {
|
|
178
246
|
StartReplicationCommandInput,
|
|
179
247
|
StartReplicationCommandOutput,
|
|
@@ -219,6 +287,18 @@ import {
|
|
|
219
287
|
UpdateLaunchConfigurationTemplateCommandInput,
|
|
220
288
|
UpdateLaunchConfigurationTemplateCommandOutput,
|
|
221
289
|
} from "./commands/UpdateLaunchConfigurationTemplateCommand";
|
|
290
|
+
import {
|
|
291
|
+
UpdateRecoveryPlanCommandInput,
|
|
292
|
+
UpdateRecoveryPlanCommandOutput,
|
|
293
|
+
} from "./commands/UpdateRecoveryPlanCommand";
|
|
294
|
+
import {
|
|
295
|
+
UpdateRecoveryPlanExecutionStepCommandInput,
|
|
296
|
+
UpdateRecoveryPlanExecutionStepCommandOutput,
|
|
297
|
+
} from "./commands/UpdateRecoveryPlanExecutionStepCommand";
|
|
298
|
+
import {
|
|
299
|
+
UpdateRecoveryPlanStepCommandInput,
|
|
300
|
+
UpdateRecoveryPlanStepCommandOutput,
|
|
301
|
+
} from "./commands/UpdateRecoveryPlanStepCommand";
|
|
222
302
|
import {
|
|
223
303
|
UpdateReplicationConfigurationCommandInput,
|
|
224
304
|
UpdateReplicationConfigurationCommandOutput,
|
|
@@ -236,14 +316,20 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
236
316
|
export { __Client };
|
|
237
317
|
export type ServiceInputTypes =
|
|
238
318
|
| AssociateSourceNetworkStackCommandInput
|
|
319
|
+
| CancelRecoveryPlanExecutionCommandInput
|
|
239
320
|
| CreateExtendedSourceServerCommandInput
|
|
240
321
|
| CreateLaunchConfigurationTemplateCommandInput
|
|
322
|
+
| CreateRecoveryPlanCommandInput
|
|
323
|
+
| CreateRecoveryPlanStepCommandInput
|
|
241
324
|
| CreateReplicationConfigurationTemplateCommandInput
|
|
242
325
|
| CreateSourceNetworkCommandInput
|
|
243
326
|
| DeleteJobCommandInput
|
|
244
327
|
| DeleteLaunchActionCommandInput
|
|
245
328
|
| DeleteLaunchConfigurationTemplateCommandInput
|
|
246
329
|
| DeleteRecoveryInstanceCommandInput
|
|
330
|
+
| DeleteRecoveryPlanCommandInput
|
|
331
|
+
| DeleteRecoveryPlanExecutionCommandInput
|
|
332
|
+
| DeleteRecoveryPlanStepCommandInput
|
|
247
333
|
| DeleteReplicationConfigurationTemplateCommandInput
|
|
248
334
|
| DeleteSourceNetworkCommandInput
|
|
249
335
|
| DeleteSourceServerCommandInput
|
|
@@ -260,17 +346,28 @@ export type ServiceInputTypes =
|
|
|
260
346
|
| ExportSourceNetworkCfnTemplateCommandInput
|
|
261
347
|
| GetFailbackReplicationConfigurationCommandInput
|
|
262
348
|
| GetLaunchConfigurationCommandInput
|
|
349
|
+
| GetRecoveryPlanCommandInput
|
|
350
|
+
| GetRecoveryPlanExecutionCommandInput
|
|
351
|
+
| GetRecoveryPlanExecutionStepCommandInput
|
|
352
|
+
| GetRecoveryPlanStepCommandInput
|
|
263
353
|
| GetReplicationConfigurationCommandInput
|
|
264
354
|
| InitializeServiceCommandInput
|
|
265
355
|
| ListExtensibleSourceServersCommandInput
|
|
266
356
|
| ListLaunchActionsCommandInput
|
|
357
|
+
| ListRecoveryPlanExecutionStepsCommandInput
|
|
358
|
+
| ListRecoveryPlanExecutionsCommandInput
|
|
359
|
+
| ListRecoveryPlanStepsCommandInput
|
|
360
|
+
| ListRecoveryPlansCommandInput
|
|
267
361
|
| ListStagingAccountsCommandInput
|
|
268
362
|
| ListTagsForResourceCommandInput
|
|
269
363
|
| PutLaunchActionCommandInput
|
|
364
|
+
| ReorderRecoveryPlanStepsCommandInput
|
|
270
365
|
| RetryDataReplicationCommandInput
|
|
366
|
+
| RetryRecoveryPlanExecutionStepCommandInput
|
|
271
367
|
| ReverseReplicationCommandInput
|
|
272
368
|
| StartFailbackLaunchCommandInput
|
|
273
369
|
| StartRecoveryCommandInput
|
|
370
|
+
| StartRecoveryPlanExecutionCommandInput
|
|
274
371
|
| StartReplicationCommandInput
|
|
275
372
|
| StartSourceNetworkRecoveryCommandInput
|
|
276
373
|
| StartSourceNetworkReplicationCommandInput
|
|
@@ -283,18 +380,27 @@ export type ServiceInputTypes =
|
|
|
283
380
|
| UpdateFailbackReplicationConfigurationCommandInput
|
|
284
381
|
| UpdateLaunchConfigurationCommandInput
|
|
285
382
|
| UpdateLaunchConfigurationTemplateCommandInput
|
|
383
|
+
| UpdateRecoveryPlanCommandInput
|
|
384
|
+
| UpdateRecoveryPlanExecutionStepCommandInput
|
|
385
|
+
| UpdateRecoveryPlanStepCommandInput
|
|
286
386
|
| UpdateReplicationConfigurationCommandInput
|
|
287
387
|
| UpdateReplicationConfigurationTemplateCommandInput;
|
|
288
388
|
export type ServiceOutputTypes =
|
|
289
389
|
| AssociateSourceNetworkStackCommandOutput
|
|
390
|
+
| CancelRecoveryPlanExecutionCommandOutput
|
|
290
391
|
| CreateExtendedSourceServerCommandOutput
|
|
291
392
|
| CreateLaunchConfigurationTemplateCommandOutput
|
|
393
|
+
| CreateRecoveryPlanCommandOutput
|
|
394
|
+
| CreateRecoveryPlanStepCommandOutput
|
|
292
395
|
| CreateReplicationConfigurationTemplateCommandOutput
|
|
293
396
|
| CreateSourceNetworkCommandOutput
|
|
294
397
|
| DeleteJobCommandOutput
|
|
295
398
|
| DeleteLaunchActionCommandOutput
|
|
296
399
|
| DeleteLaunchConfigurationTemplateCommandOutput
|
|
297
400
|
| DeleteRecoveryInstanceCommandOutput
|
|
401
|
+
| DeleteRecoveryPlanCommandOutput
|
|
402
|
+
| DeleteRecoveryPlanExecutionCommandOutput
|
|
403
|
+
| DeleteRecoveryPlanStepCommandOutput
|
|
298
404
|
| DeleteReplicationConfigurationTemplateCommandOutput
|
|
299
405
|
| DeleteSourceNetworkCommandOutput
|
|
300
406
|
| DeleteSourceServerCommandOutput
|
|
@@ -311,17 +417,28 @@ export type ServiceOutputTypes =
|
|
|
311
417
|
| ExportSourceNetworkCfnTemplateCommandOutput
|
|
312
418
|
| GetFailbackReplicationConfigurationCommandOutput
|
|
313
419
|
| GetLaunchConfigurationCommandOutput
|
|
420
|
+
| GetRecoveryPlanCommandOutput
|
|
421
|
+
| GetRecoveryPlanExecutionCommandOutput
|
|
422
|
+
| GetRecoveryPlanExecutionStepCommandOutput
|
|
423
|
+
| GetRecoveryPlanStepCommandOutput
|
|
314
424
|
| GetReplicationConfigurationCommandOutput
|
|
315
425
|
| InitializeServiceCommandOutput
|
|
316
426
|
| ListExtensibleSourceServersCommandOutput
|
|
317
427
|
| ListLaunchActionsCommandOutput
|
|
428
|
+
| ListRecoveryPlanExecutionStepsCommandOutput
|
|
429
|
+
| ListRecoveryPlanExecutionsCommandOutput
|
|
430
|
+
| ListRecoveryPlanStepsCommandOutput
|
|
431
|
+
| ListRecoveryPlansCommandOutput
|
|
318
432
|
| ListStagingAccountsCommandOutput
|
|
319
433
|
| ListTagsForResourceCommandOutput
|
|
320
434
|
| PutLaunchActionCommandOutput
|
|
435
|
+
| ReorderRecoveryPlanStepsCommandOutput
|
|
321
436
|
| RetryDataReplicationCommandOutput
|
|
437
|
+
| RetryRecoveryPlanExecutionStepCommandOutput
|
|
322
438
|
| ReverseReplicationCommandOutput
|
|
323
439
|
| StartFailbackLaunchCommandOutput
|
|
324
440
|
| StartRecoveryCommandOutput
|
|
441
|
+
| StartRecoveryPlanExecutionCommandOutput
|
|
325
442
|
| StartReplicationCommandOutput
|
|
326
443
|
| StartSourceNetworkRecoveryCommandOutput
|
|
327
444
|
| StartSourceNetworkReplicationCommandOutput
|
|
@@ -334,6 +451,9 @@ export type ServiceOutputTypes =
|
|
|
334
451
|
| UpdateFailbackReplicationConfigurationCommandOutput
|
|
335
452
|
| UpdateLaunchConfigurationCommandOutput
|
|
336
453
|
| UpdateLaunchConfigurationTemplateCommandOutput
|
|
454
|
+
| UpdateRecoveryPlanCommandOutput
|
|
455
|
+
| UpdateRecoveryPlanExecutionStepCommandOutput
|
|
456
|
+
| UpdateRecoveryPlanStepCommandOutput
|
|
337
457
|
| UpdateReplicationConfigurationCommandOutput
|
|
338
458
|
| UpdateReplicationConfigurationTemplateCommandOutput;
|
|
339
459
|
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CancelRecoveryPlanExecutionRequest,
|
|
4
|
+
CancelRecoveryPlanExecutionResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface CancelRecoveryPlanExecutionCommandInput extends CancelRecoveryPlanExecutionRequest {}
|
|
8
|
+
export interface CancelRecoveryPlanExecutionCommandOutput
|
|
9
|
+
extends CancelRecoveryPlanExecutionResponse, __MetadataBearer {}
|
|
10
|
+
declare const CancelRecoveryPlanExecutionCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: CancelRecoveryPlanExecutionCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
CancelRecoveryPlanExecutionCommandInput,
|
|
15
|
+
CancelRecoveryPlanExecutionCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: CancelRecoveryPlanExecutionCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CancelRecoveryPlanExecutionCommandInput,
|
|
24
|
+
CancelRecoveryPlanExecutionCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class CancelRecoveryPlanExecutionCommand extends CancelRecoveryPlanExecutionCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: CancelRecoveryPlanExecutionRequest;
|
|
35
|
+
output: CancelRecoveryPlanExecutionResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: CancelRecoveryPlanExecutionCommandInput;
|
|
39
|
+
output: CancelRecoveryPlanExecutionCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CreateRecoveryPlanRequest, CreateRecoveryPlanResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CreateRecoveryPlanCommandInput extends CreateRecoveryPlanRequest {}
|
|
5
|
+
export interface CreateRecoveryPlanCommandOutput
|
|
6
|
+
extends CreateRecoveryPlanResponse, __MetadataBearer {}
|
|
7
|
+
declare const CreateRecoveryPlanCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: CreateRecoveryPlanCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
CreateRecoveryPlanCommandInput,
|
|
12
|
+
CreateRecoveryPlanCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: CreateRecoveryPlanCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
CreateRecoveryPlanCommandInput,
|
|
21
|
+
CreateRecoveryPlanCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class CreateRecoveryPlanCommand extends CreateRecoveryPlanCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: CreateRecoveryPlanRequest;
|
|
32
|
+
output: CreateRecoveryPlanResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: CreateRecoveryPlanCommandInput;
|
|
36
|
+
output: CreateRecoveryPlanCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CreateRecoveryPlanStepRequest, CreateRecoveryPlanStepResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CreateRecoveryPlanStepCommandInput extends CreateRecoveryPlanStepRequest {}
|
|
5
|
+
export interface CreateRecoveryPlanStepCommandOutput
|
|
6
|
+
extends CreateRecoveryPlanStepResponse, __MetadataBearer {}
|
|
7
|
+
declare const CreateRecoveryPlanStepCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: CreateRecoveryPlanStepCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
CreateRecoveryPlanStepCommandInput,
|
|
12
|
+
CreateRecoveryPlanStepCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: CreateRecoveryPlanStepCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
CreateRecoveryPlanStepCommandInput,
|
|
21
|
+
CreateRecoveryPlanStepCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class CreateRecoveryPlanStepCommand extends CreateRecoveryPlanStepCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: CreateRecoveryPlanStepRequest;
|
|
32
|
+
output: CreateRecoveryPlanStepResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: CreateRecoveryPlanStepCommandInput;
|
|
36
|
+
output: CreateRecoveryPlanStepCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteRecoveryPlanRequest, DeleteRecoveryPlanResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteRecoveryPlanCommandInput extends DeleteRecoveryPlanRequest {}
|
|
5
|
+
export interface DeleteRecoveryPlanCommandOutput
|
|
6
|
+
extends DeleteRecoveryPlanResponse, __MetadataBearer {}
|
|
7
|
+
declare const DeleteRecoveryPlanCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: DeleteRecoveryPlanCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
DeleteRecoveryPlanCommandInput,
|
|
12
|
+
DeleteRecoveryPlanCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: DeleteRecoveryPlanCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
DeleteRecoveryPlanCommandInput,
|
|
21
|
+
DeleteRecoveryPlanCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class DeleteRecoveryPlanCommand extends DeleteRecoveryPlanCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: DeleteRecoveryPlanRequest;
|
|
32
|
+
output: DeleteRecoveryPlanResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: DeleteRecoveryPlanCommandInput;
|
|
36
|
+
output: DeleteRecoveryPlanCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteRecoveryPlanExecutionRequest,
|
|
4
|
+
DeleteRecoveryPlanExecutionResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface DeleteRecoveryPlanExecutionCommandInput extends DeleteRecoveryPlanExecutionRequest {}
|
|
8
|
+
export interface DeleteRecoveryPlanExecutionCommandOutput
|
|
9
|
+
extends DeleteRecoveryPlanExecutionResponse, __MetadataBearer {}
|
|
10
|
+
declare const DeleteRecoveryPlanExecutionCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: DeleteRecoveryPlanExecutionCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
DeleteRecoveryPlanExecutionCommandInput,
|
|
15
|
+
DeleteRecoveryPlanExecutionCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteRecoveryPlanExecutionCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteRecoveryPlanExecutionCommandInput,
|
|
24
|
+
DeleteRecoveryPlanExecutionCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class DeleteRecoveryPlanExecutionCommand extends DeleteRecoveryPlanExecutionCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: DeleteRecoveryPlanExecutionRequest;
|
|
35
|
+
output: DeleteRecoveryPlanExecutionResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: DeleteRecoveryPlanExecutionCommandInput;
|
|
39
|
+
output: DeleteRecoveryPlanExecutionCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteRecoveryPlanStepRequest, DeleteRecoveryPlanStepResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteRecoveryPlanStepCommandInput extends DeleteRecoveryPlanStepRequest {}
|
|
5
|
+
export interface DeleteRecoveryPlanStepCommandOutput
|
|
6
|
+
extends DeleteRecoveryPlanStepResponse, __MetadataBearer {}
|
|
7
|
+
declare const DeleteRecoveryPlanStepCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: DeleteRecoveryPlanStepCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
DeleteRecoveryPlanStepCommandInput,
|
|
12
|
+
DeleteRecoveryPlanStepCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: DeleteRecoveryPlanStepCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
DeleteRecoveryPlanStepCommandInput,
|
|
21
|
+
DeleteRecoveryPlanStepCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class DeleteRecoveryPlanStepCommand extends DeleteRecoveryPlanStepCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: DeleteRecoveryPlanStepRequest;
|
|
32
|
+
output: DeleteRecoveryPlanStepResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: DeleteRecoveryPlanStepCommandInput;
|
|
36
|
+
output: DeleteRecoveryPlanStepCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetRecoveryPlanRequest, GetRecoveryPlanResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetRecoveryPlanCommandInput extends GetRecoveryPlanRequest {}
|
|
5
|
+
export interface GetRecoveryPlanCommandOutput extends GetRecoveryPlanResponse, __MetadataBearer {}
|
|
6
|
+
declare const GetRecoveryPlanCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: GetRecoveryPlanCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
GetRecoveryPlanCommandInput,
|
|
11
|
+
GetRecoveryPlanCommandOutput,
|
|
12
|
+
import("..").DrsClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: GetRecoveryPlanCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetRecoveryPlanCommandInput,
|
|
20
|
+
GetRecoveryPlanCommandOutput,
|
|
21
|
+
import("..").DrsClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class GetRecoveryPlanCommand extends GetRecoveryPlanCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: GetRecoveryPlanRequest;
|
|
31
|
+
output: GetRecoveryPlanResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: GetRecoveryPlanCommandInput;
|
|
35
|
+
output: GetRecoveryPlanCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetRecoveryPlanExecutionRequest,
|
|
4
|
+
GetRecoveryPlanExecutionResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface GetRecoveryPlanExecutionCommandInput extends GetRecoveryPlanExecutionRequest {}
|
|
8
|
+
export interface GetRecoveryPlanExecutionCommandOutput
|
|
9
|
+
extends GetRecoveryPlanExecutionResponse, __MetadataBearer {}
|
|
10
|
+
declare const GetRecoveryPlanExecutionCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: GetRecoveryPlanExecutionCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
GetRecoveryPlanExecutionCommandInput,
|
|
15
|
+
GetRecoveryPlanExecutionCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: GetRecoveryPlanExecutionCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetRecoveryPlanExecutionCommandInput,
|
|
24
|
+
GetRecoveryPlanExecutionCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class GetRecoveryPlanExecutionCommand extends GetRecoveryPlanExecutionCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: GetRecoveryPlanExecutionRequest;
|
|
35
|
+
output: GetRecoveryPlanExecutionResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: GetRecoveryPlanExecutionCommandInput;
|
|
39
|
+
output: GetRecoveryPlanExecutionCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetRecoveryPlanExecutionStepRequest,
|
|
4
|
+
GetRecoveryPlanExecutionStepResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface GetRecoveryPlanExecutionStepCommandInput extends GetRecoveryPlanExecutionStepRequest {}
|
|
8
|
+
export interface GetRecoveryPlanExecutionStepCommandOutput
|
|
9
|
+
extends GetRecoveryPlanExecutionStepResponse, __MetadataBearer {}
|
|
10
|
+
declare const GetRecoveryPlanExecutionStepCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: GetRecoveryPlanExecutionStepCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
GetRecoveryPlanExecutionStepCommandInput,
|
|
15
|
+
GetRecoveryPlanExecutionStepCommandOutput,
|
|
16
|
+
import("..").DrsClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: GetRecoveryPlanExecutionStepCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetRecoveryPlanExecutionStepCommandInput,
|
|
24
|
+
GetRecoveryPlanExecutionStepCommandOutput,
|
|
25
|
+
import("..").DrsClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class GetRecoveryPlanExecutionStepCommand extends GetRecoveryPlanExecutionStepCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: GetRecoveryPlanExecutionStepRequest;
|
|
35
|
+
output: GetRecoveryPlanExecutionStepResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: GetRecoveryPlanExecutionStepCommandInput;
|
|
39
|
+
output: GetRecoveryPlanExecutionStepCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetRecoveryPlanStepRequest, GetRecoveryPlanStepResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetRecoveryPlanStepCommandInput extends GetRecoveryPlanStepRequest {}
|
|
5
|
+
export interface GetRecoveryPlanStepCommandOutput
|
|
6
|
+
extends GetRecoveryPlanStepResponse, __MetadataBearer {}
|
|
7
|
+
declare const GetRecoveryPlanStepCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: GetRecoveryPlanStepCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
GetRecoveryPlanStepCommandInput,
|
|
12
|
+
GetRecoveryPlanStepCommandOutput,
|
|
13
|
+
import("..").DrsClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: GetRecoveryPlanStepCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
GetRecoveryPlanStepCommandInput,
|
|
21
|
+
GetRecoveryPlanStepCommandOutput,
|
|
22
|
+
import("..").DrsClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class GetRecoveryPlanStepCommand extends GetRecoveryPlanStepCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: GetRecoveryPlanStepRequest;
|
|
32
|
+
output: GetRecoveryPlanStepResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: GetRecoveryPlanStepCommandInput;
|
|
36
|
+
output: GetRecoveryPlanStepCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|