@aws-sdk/client-drs 3.1111.0 → 3.1112.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
|
@@ -28,6 +28,11 @@ import {
|
|
|
28
28
|
RecoveryInstanceDataReplicationInitiationStepStatus,
|
|
29
29
|
RecoveryInstanceDataReplicationState,
|
|
30
30
|
RecoveryMode,
|
|
31
|
+
RecoveryPlanExecutionMode,
|
|
32
|
+
RecoveryPlanExecutionStatus,
|
|
33
|
+
RecoveryPlanExecutionStepStatus,
|
|
34
|
+
RecoveryPlanServerImpactLevel,
|
|
35
|
+
RecoveryPlanStatus,
|
|
31
36
|
RecoveryResult,
|
|
32
37
|
RecoverySnapshotsOrder,
|
|
33
38
|
ReplicationConfigurationDataPlaneRouting,
|
|
@@ -119,6 +124,26 @@ export interface ValidationExceptionField {
|
|
|
119
124
|
name?: string | undefined;
|
|
120
125
|
message?: string | undefined;
|
|
121
126
|
}
|
|
127
|
+
export interface CancelRecoveryPlanExecutionRequest {
|
|
128
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface ErrorDetail {
|
|
131
|
+
message: string | undefined;
|
|
132
|
+
code: string | undefined;
|
|
133
|
+
}
|
|
134
|
+
export interface RecoveryPlanExecution {
|
|
135
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
136
|
+
recoveryPlanArn: string | undefined;
|
|
137
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
138
|
+
status: RecoveryPlanExecutionStatus | undefined;
|
|
139
|
+
startedAt: string | undefined;
|
|
140
|
+
completedAt?: string | undefined;
|
|
141
|
+
errorDetail?: ErrorDetail | undefined;
|
|
142
|
+
tags?: Record<string, string> | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface CancelRecoveryPlanExecutionResponse {
|
|
145
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
146
|
+
}
|
|
122
147
|
export interface ProductCode {
|
|
123
148
|
productCodeId?: string | undefined;
|
|
124
149
|
productCodeMode?: ProductCodeMode | undefined;
|
|
@@ -278,6 +303,78 @@ export interface LaunchConfigurationTemplate {
|
|
|
278
303
|
export interface CreateLaunchConfigurationTemplateResponse {
|
|
279
304
|
launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
|
|
280
305
|
}
|
|
306
|
+
export interface CreateRecoveryPlanRequest {
|
|
307
|
+
name: string | undefined;
|
|
308
|
+
description?: string | undefined;
|
|
309
|
+
clientToken?: string | undefined;
|
|
310
|
+
tags?: Record<string, string> | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface RecoveryPlan {
|
|
313
|
+
recoveryPlanArn: string | undefined;
|
|
314
|
+
name: string | undefined;
|
|
315
|
+
description?: string | undefined;
|
|
316
|
+
status: RecoveryPlanStatus | undefined;
|
|
317
|
+
createdAt: string | undefined;
|
|
318
|
+
updatedAt: string | undefined;
|
|
319
|
+
tags?: Record<string, string> | undefined;
|
|
320
|
+
}
|
|
321
|
+
export interface CreateRecoveryPlanResponse {
|
|
322
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
323
|
+
}
|
|
324
|
+
export interface RecoveryPlanServer {
|
|
325
|
+
serverArn: string | undefined;
|
|
326
|
+
impactLevel?: RecoveryPlanServerImpactLevel | undefined;
|
|
327
|
+
}
|
|
328
|
+
export interface ServerStepConfiguration {
|
|
329
|
+
servers: RecoveryPlanServer[] | undefined;
|
|
330
|
+
}
|
|
331
|
+
export interface WaitStepConfiguration {
|
|
332
|
+
waitDurationMinutes: number | undefined;
|
|
333
|
+
}
|
|
334
|
+
export type RecoveryPlanStepConfiguration =
|
|
335
|
+
| RecoveryPlanStepConfiguration.ServerStepConfigurationMember
|
|
336
|
+
| RecoveryPlanStepConfiguration.WaitStepConfigurationMember
|
|
337
|
+
| RecoveryPlanStepConfiguration.$UnknownMember;
|
|
338
|
+
export declare namespace RecoveryPlanStepConfiguration {
|
|
339
|
+
interface ServerStepConfigurationMember {
|
|
340
|
+
serverStepConfiguration: ServerStepConfiguration;
|
|
341
|
+
waitStepConfiguration?: never;
|
|
342
|
+
$unknown?: never;
|
|
343
|
+
}
|
|
344
|
+
interface WaitStepConfigurationMember {
|
|
345
|
+
serverStepConfiguration?: never;
|
|
346
|
+
waitStepConfiguration: WaitStepConfiguration;
|
|
347
|
+
$unknown?: never;
|
|
348
|
+
}
|
|
349
|
+
interface $UnknownMember {
|
|
350
|
+
serverStepConfiguration?: never;
|
|
351
|
+
waitStepConfiguration?: never;
|
|
352
|
+
$unknown: [string, any];
|
|
353
|
+
}
|
|
354
|
+
interface Visitor<T> {
|
|
355
|
+
serverStepConfiguration: (value: ServerStepConfiguration) => T;
|
|
356
|
+
waitStepConfiguration: (value: WaitStepConfiguration) => T;
|
|
357
|
+
_: (name: string, value: any) => T;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
export interface CreateRecoveryPlanStepRequest {
|
|
361
|
+
recoveryPlanArn: string | undefined;
|
|
362
|
+
stepName: string | undefined;
|
|
363
|
+
stepOrder?: number | undefined;
|
|
364
|
+
configuration: RecoveryPlanStepConfiguration | undefined;
|
|
365
|
+
clientToken?: string | undefined;
|
|
366
|
+
}
|
|
367
|
+
export interface RecoveryPlanStep {
|
|
368
|
+
recoveryPlanStepArn: string | undefined;
|
|
369
|
+
stepOrder: number | undefined;
|
|
370
|
+
stepName: string | undefined;
|
|
371
|
+
configuration: RecoveryPlanStepConfiguration | undefined;
|
|
372
|
+
createdAt: string | undefined;
|
|
373
|
+
updatedAt: string | undefined;
|
|
374
|
+
}
|
|
375
|
+
export interface CreateRecoveryPlanStepResponse {
|
|
376
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
377
|
+
}
|
|
281
378
|
export interface PITPolicyRule {
|
|
282
379
|
ruleID?: number | undefined;
|
|
283
380
|
units: PITPolicyRuleUnits | undefined;
|
|
@@ -348,6 +445,24 @@ export interface DeleteLaunchConfigurationTemplateResponse {}
|
|
|
348
445
|
export interface DeleteRecoveryInstanceRequest {
|
|
349
446
|
recoveryInstanceID: string | undefined;
|
|
350
447
|
}
|
|
448
|
+
export interface DeleteRecoveryPlanRequest {
|
|
449
|
+
recoveryPlanArn: string | undefined;
|
|
450
|
+
}
|
|
451
|
+
export interface DeleteRecoveryPlanResponse {
|
|
452
|
+
recoveryPlanArn: string | undefined;
|
|
453
|
+
}
|
|
454
|
+
export interface DeleteRecoveryPlanExecutionRequest {
|
|
455
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
456
|
+
}
|
|
457
|
+
export interface DeleteRecoveryPlanExecutionResponse {
|
|
458
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface DeleteRecoveryPlanStepRequest {
|
|
461
|
+
recoveryPlanStepArn: string | undefined;
|
|
462
|
+
}
|
|
463
|
+
export interface DeleteRecoveryPlanStepResponse {
|
|
464
|
+
recoveryPlanStepArn: string | undefined;
|
|
465
|
+
}
|
|
351
466
|
export interface DeleteReplicationConfigurationTemplateRequest {
|
|
352
467
|
replicationConfigurationTemplateID: string | undefined;
|
|
353
468
|
}
|
|
@@ -599,6 +714,75 @@ export interface DisconnectRecoveryInstanceRequest {
|
|
|
599
714
|
export interface DisconnectSourceServerRequest {
|
|
600
715
|
sourceServerID: string | undefined;
|
|
601
716
|
}
|
|
717
|
+
export interface GetRecoveryPlanRequest {
|
|
718
|
+
recoveryPlanArn: string | undefined;
|
|
719
|
+
}
|
|
720
|
+
export interface GetRecoveryPlanResponse {
|
|
721
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
722
|
+
}
|
|
723
|
+
export interface GetRecoveryPlanExecutionRequest {
|
|
724
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
725
|
+
}
|
|
726
|
+
export interface GetRecoveryPlanExecutionResponse {
|
|
727
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
728
|
+
}
|
|
729
|
+
export interface GetRecoveryPlanExecutionStepRequest {
|
|
730
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
731
|
+
}
|
|
732
|
+
export interface RecoveryPlanExecutionServer {
|
|
733
|
+
serverArn: string | undefined;
|
|
734
|
+
impactLevel?: RecoveryPlanServerImpactLevel | undefined;
|
|
735
|
+
jobID?: string | undefined;
|
|
736
|
+
}
|
|
737
|
+
export interface ExecutionServerStepConfiguration {
|
|
738
|
+
servers: RecoveryPlanExecutionServer[] | undefined;
|
|
739
|
+
}
|
|
740
|
+
export type RecoveryPlanExecutionStepConfiguration =
|
|
741
|
+
| RecoveryPlanExecutionStepConfiguration.ExecutionServerStepConfigurationMember
|
|
742
|
+
| RecoveryPlanExecutionStepConfiguration.WaitStepConfigurationMember
|
|
743
|
+
| RecoveryPlanExecutionStepConfiguration.$UnknownMember;
|
|
744
|
+
export declare namespace RecoveryPlanExecutionStepConfiguration {
|
|
745
|
+
interface ExecutionServerStepConfigurationMember {
|
|
746
|
+
executionServerStepConfiguration: ExecutionServerStepConfiguration;
|
|
747
|
+
waitStepConfiguration?: never;
|
|
748
|
+
$unknown?: never;
|
|
749
|
+
}
|
|
750
|
+
interface WaitStepConfigurationMember {
|
|
751
|
+
executionServerStepConfiguration?: never;
|
|
752
|
+
waitStepConfiguration: WaitStepConfiguration;
|
|
753
|
+
$unknown?: never;
|
|
754
|
+
}
|
|
755
|
+
interface $UnknownMember {
|
|
756
|
+
executionServerStepConfiguration?: never;
|
|
757
|
+
waitStepConfiguration?: never;
|
|
758
|
+
$unknown: [string, any];
|
|
759
|
+
}
|
|
760
|
+
interface Visitor<T> {
|
|
761
|
+
executionServerStepConfiguration: (value: ExecutionServerStepConfiguration) => T;
|
|
762
|
+
waitStepConfiguration: (value: WaitStepConfiguration) => T;
|
|
763
|
+
_: (name: string, value: any) => T;
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
export interface RecoveryPlanExecutionStep {
|
|
767
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
768
|
+
stepIndex: number | undefined;
|
|
769
|
+
status: RecoveryPlanExecutionStepStatus | undefined;
|
|
770
|
+
stepName: string | undefined;
|
|
771
|
+
configuration: RecoveryPlanExecutionStepConfiguration | undefined;
|
|
772
|
+
errorDetail?: ErrorDetail | undefined;
|
|
773
|
+
attempt: number | undefined;
|
|
774
|
+
createdAt: string | undefined;
|
|
775
|
+
updatedAt: string | undefined;
|
|
776
|
+
}
|
|
777
|
+
export interface GetRecoveryPlanExecutionStepResponse {
|
|
778
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
779
|
+
}
|
|
780
|
+
export interface GetRecoveryPlanStepRequest {
|
|
781
|
+
recoveryPlanStepArn: string | undefined;
|
|
782
|
+
}
|
|
783
|
+
export interface GetRecoveryPlanStepResponse {
|
|
784
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
785
|
+
}
|
|
602
786
|
export interface InitializeServiceRequest {}
|
|
603
787
|
export interface InitializeServiceResponse {}
|
|
604
788
|
export interface UpdateLaunchConfigurationTemplateRequest {
|
|
@@ -643,6 +827,69 @@ export interface ListLaunchActionsResponse {
|
|
|
643
827
|
items?: LaunchAction[] | undefined;
|
|
644
828
|
nextToken?: string | undefined;
|
|
645
829
|
}
|
|
830
|
+
export interface ListRecoveryPlanExecutionsRequest {
|
|
831
|
+
recoveryPlanArn?: string | undefined;
|
|
832
|
+
status?: RecoveryPlanExecutionStatus | undefined;
|
|
833
|
+
maxResults?: number | undefined;
|
|
834
|
+
nextToken?: string | undefined;
|
|
835
|
+
}
|
|
836
|
+
export interface RecoveryPlanExecutionSummary {
|
|
837
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
838
|
+
recoveryPlanArn: string | undefined;
|
|
839
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
840
|
+
status: RecoveryPlanExecutionStatus | undefined;
|
|
841
|
+
startedAt: string | undefined;
|
|
842
|
+
errorDetail?: ErrorDetail | undefined;
|
|
843
|
+
}
|
|
844
|
+
export interface ListRecoveryPlanExecutionsResponse {
|
|
845
|
+
recoveryPlanExecutions: RecoveryPlanExecutionSummary[] | undefined;
|
|
846
|
+
nextToken?: string | undefined;
|
|
847
|
+
}
|
|
848
|
+
export interface ListRecoveryPlanExecutionStepsFilter {
|
|
849
|
+
status?: RecoveryPlanExecutionStepStatus | undefined;
|
|
850
|
+
}
|
|
851
|
+
export interface ListRecoveryPlanExecutionStepsRequest {
|
|
852
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
853
|
+
filter?: ListRecoveryPlanExecutionStepsFilter | undefined;
|
|
854
|
+
maxResults?: number | undefined;
|
|
855
|
+
nextToken?: string | undefined;
|
|
856
|
+
}
|
|
857
|
+
export interface RecoveryPlanExecutionStepSummary {
|
|
858
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
859
|
+
stepName: string | undefined;
|
|
860
|
+
stepIndex: number | undefined;
|
|
861
|
+
status: RecoveryPlanExecutionStepStatus | undefined;
|
|
862
|
+
configuration: RecoveryPlanExecutionStepConfiguration | undefined;
|
|
863
|
+
errorDetail?: ErrorDetail | undefined;
|
|
864
|
+
}
|
|
865
|
+
export interface ListRecoveryPlanExecutionStepsResponse {
|
|
866
|
+
recoveryPlanExecutionSteps: RecoveryPlanExecutionStepSummary[] | undefined;
|
|
867
|
+
nextToken?: string | undefined;
|
|
868
|
+
}
|
|
869
|
+
export interface ListRecoveryPlansRequest {
|
|
870
|
+
maxResults?: number | undefined;
|
|
871
|
+
nextToken?: string | undefined;
|
|
872
|
+
}
|
|
873
|
+
export interface RecoveryPlanSummary {
|
|
874
|
+
recoveryPlanArn: string | undefined;
|
|
875
|
+
name: string | undefined;
|
|
876
|
+
status: RecoveryPlanStatus | undefined;
|
|
877
|
+
createdAt: string | undefined;
|
|
878
|
+
updatedAt: string | undefined;
|
|
879
|
+
}
|
|
880
|
+
export interface ListRecoveryPlansResponse {
|
|
881
|
+
recoveryPlans: RecoveryPlanSummary[] | undefined;
|
|
882
|
+
nextToken?: string | undefined;
|
|
883
|
+
}
|
|
884
|
+
export interface ListRecoveryPlanStepsRequest {
|
|
885
|
+
recoveryPlanArn: string | undefined;
|
|
886
|
+
maxResults?: number | undefined;
|
|
887
|
+
nextToken?: string | undefined;
|
|
888
|
+
}
|
|
889
|
+
export interface ListRecoveryPlanStepsResponse {
|
|
890
|
+
recoveryPlanSteps: RecoveryPlanStep[] | undefined;
|
|
891
|
+
nextToken?: string | undefined;
|
|
892
|
+
}
|
|
646
893
|
export interface ListStagingAccountsRequest {
|
|
647
894
|
maxResults?: number | undefined;
|
|
648
895
|
nextToken?: string | undefined;
|
|
@@ -723,6 +970,27 @@ export interface UpdateFailbackReplicationConfigurationRequest {
|
|
|
723
970
|
usePrivateIP?: boolean | undefined;
|
|
724
971
|
internetProtocol?: InternetProtocol | undefined;
|
|
725
972
|
}
|
|
973
|
+
export interface RecoveryPlanExecutionSourceServer {
|
|
974
|
+
sourceServerID: string | undefined;
|
|
975
|
+
recoverySnapshotID: string | undefined;
|
|
976
|
+
}
|
|
977
|
+
export interface StartRecoveryPlanExecutionRequest {
|
|
978
|
+
recoveryPlanArn: string | undefined;
|
|
979
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
980
|
+
clientToken?: string | undefined;
|
|
981
|
+
sourceServers?: RecoveryPlanExecutionSourceServer[] | undefined;
|
|
982
|
+
tags?: Record<string, string> | undefined;
|
|
983
|
+
}
|
|
984
|
+
export interface StartRecoveryPlanExecutionResponse {
|
|
985
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
986
|
+
}
|
|
987
|
+
export interface ReorderRecoveryPlanStepsRequest {
|
|
988
|
+
recoveryPlanArn: string | undefined;
|
|
989
|
+
orderedStepArns: string[] | undefined;
|
|
990
|
+
}
|
|
991
|
+
export interface ReorderRecoveryPlanStepsResponse {
|
|
992
|
+
recoveryPlanSteps: RecoveryPlanStep[] | undefined;
|
|
993
|
+
}
|
|
726
994
|
export interface UpdateReplicationConfigurationTemplateRequest {
|
|
727
995
|
replicationConfigurationTemplateID: string | undefined;
|
|
728
996
|
arn?: string | undefined;
|
|
@@ -742,6 +1010,12 @@ export interface UpdateReplicationConfigurationTemplateRequest {
|
|
|
742
1010
|
autoReplicateNewDisks?: boolean | undefined;
|
|
743
1011
|
internetProtocol?: InternetProtocol | undefined;
|
|
744
1012
|
}
|
|
1013
|
+
export interface RetryRecoveryPlanExecutionStepRequest {
|
|
1014
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
1015
|
+
}
|
|
1016
|
+
export interface RetryRecoveryPlanExecutionStepResponse {
|
|
1017
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
1018
|
+
}
|
|
745
1019
|
export interface ExportSourceNetworkCfnTemplateRequest {
|
|
746
1020
|
sourceNetworkID: string | undefined;
|
|
747
1021
|
}
|
|
@@ -889,3 +1163,28 @@ export interface UntagResourceRequest {
|
|
|
889
1163
|
resourceArn: string | undefined;
|
|
890
1164
|
tagKeys: string[] | undefined;
|
|
891
1165
|
}
|
|
1166
|
+
export interface UpdateRecoveryPlanRequest {
|
|
1167
|
+
recoveryPlanArn: string | undefined;
|
|
1168
|
+
name?: string | undefined;
|
|
1169
|
+
description?: string | undefined;
|
|
1170
|
+
}
|
|
1171
|
+
export interface UpdateRecoveryPlanResponse {
|
|
1172
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
1173
|
+
}
|
|
1174
|
+
export interface UpdateRecoveryPlanExecutionStepRequest {
|
|
1175
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
1176
|
+
status?: RecoveryPlanExecutionStepStatus | undefined;
|
|
1177
|
+
servers?: RecoveryPlanServer[] | undefined;
|
|
1178
|
+
waitDurationMinutes?: number | undefined;
|
|
1179
|
+
}
|
|
1180
|
+
export interface UpdateRecoveryPlanExecutionStepResponse {
|
|
1181
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
1182
|
+
}
|
|
1183
|
+
export interface UpdateRecoveryPlanStepRequest {
|
|
1184
|
+
recoveryPlanStepArn: string | undefined;
|
|
1185
|
+
stepName?: string | undefined;
|
|
1186
|
+
configuration?: RecoveryPlanStepConfiguration | undefined;
|
|
1187
|
+
}
|
|
1188
|
+
export interface UpdateRecoveryPlanStepResponse {
|
|
1189
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
1190
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlanExecutionStepsCommandInput,
|
|
4
|
+
ListRecoveryPlanExecutionStepsCommandOutput,
|
|
5
|
+
} from "../commands/ListRecoveryPlanExecutionStepsCommand";
|
|
6
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecoveryPlanExecutionSteps: (
|
|
8
|
+
config: DrsPaginationConfiguration,
|
|
9
|
+
input: ListRecoveryPlanExecutionStepsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecoveryPlanExecutionStepsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlanExecutionsCommandInput,
|
|
4
|
+
ListRecoveryPlanExecutionsCommandOutput,
|
|
5
|
+
} from "../commands/ListRecoveryPlanExecutionsCommand";
|
|
6
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecoveryPlanExecutions: (
|
|
8
|
+
config: DrsPaginationConfiguration,
|
|
9
|
+
input: ListRecoveryPlanExecutionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecoveryPlanExecutionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlanStepsCommandInput,
|
|
4
|
+
ListRecoveryPlanStepsCommandOutput,
|
|
5
|
+
} from "../commands/ListRecoveryPlanStepsCommand";
|
|
6
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecoveryPlanSteps: (
|
|
8
|
+
config: DrsPaginationConfiguration,
|
|
9
|
+
input: ListRecoveryPlanStepsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecoveryPlanStepsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRecoveryPlansCommandInput,
|
|
4
|
+
ListRecoveryPlansCommandOutput,
|
|
5
|
+
} from "../commands/ListRecoveryPlansCommand";
|
|
6
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRecoveryPlans: (
|
|
8
|
+
config: DrsPaginationConfiguration,
|
|
9
|
+
input: ListRecoveryPlansCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRecoveryPlansCommandOutput>;
|
|
@@ -9,4 +9,8 @@ export * from "./DescribeSourceNetworksPaginator";
|
|
|
9
9
|
export * from "./DescribeSourceServersPaginator";
|
|
10
10
|
export * from "./ListExtensibleSourceServersPaginator";
|
|
11
11
|
export * from "./ListLaunchActionsPaginator";
|
|
12
|
+
export * from "./ListRecoveryPlanExecutionsPaginator";
|
|
13
|
+
export * from "./ListRecoveryPlanExecutionStepsPaginator";
|
|
14
|
+
export * from "./ListRecoveryPlansPaginator";
|
|
15
|
+
export * from "./ListRecoveryPlanStepsPaginator";
|
|
12
16
|
export * from "./ListStagingAccountsPaginator";
|
|
@@ -18,12 +18,18 @@ export declare const errorTypeRegistries: TypeRegistry[];
|
|
|
18
18
|
export declare var Account$: StaticStructureSchema;
|
|
19
19
|
export declare var AssociateSourceNetworkStackRequest$: StaticStructureSchema;
|
|
20
20
|
export declare var AssociateSourceNetworkStackResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var CancelRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var CancelRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
21
23
|
export declare var ConversionProperties$: StaticStructureSchema;
|
|
22
24
|
export declare var CPU$: StaticStructureSchema;
|
|
23
25
|
export declare var CreateExtendedSourceServerRequest$: StaticStructureSchema;
|
|
24
26
|
export declare var CreateExtendedSourceServerResponse$: StaticStructureSchema;
|
|
25
27
|
export declare var CreateLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
26
28
|
export declare var CreateLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
29
|
+
export declare var CreateRecoveryPlanRequest$: StaticStructureSchema;
|
|
30
|
+
export declare var CreateRecoveryPlanResponse$: StaticStructureSchema;
|
|
31
|
+
export declare var CreateRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
32
|
+
export declare var CreateRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
27
33
|
export declare var CreateReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
28
34
|
export declare var CreateSourceNetworkRequest$: StaticStructureSchema;
|
|
29
35
|
export declare var CreateSourceNetworkResponse$: StaticStructureSchema;
|
|
@@ -39,6 +45,12 @@ export declare var DeleteLaunchActionResponse$: StaticStructureSchema;
|
|
|
39
45
|
export declare var DeleteLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
40
46
|
export declare var DeleteLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
41
47
|
export declare var DeleteRecoveryInstanceRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var DeleteRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteRecoveryPlanRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteRecoveryPlanResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
42
54
|
export declare var DeleteReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
43
55
|
export declare var DeleteReplicationConfigurationTemplateResponse$: StaticStructureSchema;
|
|
44
56
|
export declare var DeleteSourceNetworkRequest$: StaticStructureSchema;
|
|
@@ -69,11 +81,21 @@ export declare var DescribeSourceServersResponse$: StaticStructureSchema;
|
|
|
69
81
|
export declare var DisconnectRecoveryInstanceRequest$: StaticStructureSchema;
|
|
70
82
|
export declare var DisconnectSourceServerRequest$: StaticStructureSchema;
|
|
71
83
|
export declare var Disk$: StaticStructureSchema;
|
|
84
|
+
export declare var ErrorDetail$: StaticStructureSchema;
|
|
85
|
+
export declare var ExecutionServerStepConfiguration$: StaticStructureSchema;
|
|
72
86
|
export declare var ExportSourceNetworkCfnTemplateRequest$: StaticStructureSchema;
|
|
73
87
|
export declare var ExportSourceNetworkCfnTemplateResponse$: StaticStructureSchema;
|
|
74
88
|
export declare var GetFailbackReplicationConfigurationRequest$: StaticStructureSchema;
|
|
75
89
|
export declare var GetFailbackReplicationConfigurationResponse$: StaticStructureSchema;
|
|
76
90
|
export declare var GetLaunchConfigurationRequest$: StaticStructureSchema;
|
|
91
|
+
export declare var GetRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
92
|
+
export declare var GetRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
93
|
+
export declare var GetRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
94
|
+
export declare var GetRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
95
|
+
export declare var GetRecoveryPlanRequest$: StaticStructureSchema;
|
|
96
|
+
export declare var GetRecoveryPlanResponse$: StaticStructureSchema;
|
|
97
|
+
export declare var GetRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
98
|
+
export declare var GetRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
77
99
|
export declare var GetReplicationConfigurationRequest$: StaticStructureSchema;
|
|
78
100
|
export declare var IdentificationHints$: StaticStructureSchema;
|
|
79
101
|
export declare var InitializeServiceRequest$: StaticStructureSchema;
|
|
@@ -97,6 +119,15 @@ export declare var ListExtensibleSourceServersRequest$: StaticStructureSchema;
|
|
|
97
119
|
export declare var ListExtensibleSourceServersResponse$: StaticStructureSchema;
|
|
98
120
|
export declare var ListLaunchActionsRequest$: StaticStructureSchema;
|
|
99
121
|
export declare var ListLaunchActionsResponse$: StaticStructureSchema;
|
|
122
|
+
export declare var ListRecoveryPlanExecutionsRequest$: StaticStructureSchema;
|
|
123
|
+
export declare var ListRecoveryPlanExecutionsResponse$: StaticStructureSchema;
|
|
124
|
+
export declare var ListRecoveryPlanExecutionStepsFilter$: StaticStructureSchema;
|
|
125
|
+
export declare var ListRecoveryPlanExecutionStepsRequest$: StaticStructureSchema;
|
|
126
|
+
export declare var ListRecoveryPlanExecutionStepsResponse$: StaticStructureSchema;
|
|
127
|
+
export declare var ListRecoveryPlansRequest$: StaticStructureSchema;
|
|
128
|
+
export declare var ListRecoveryPlansResponse$: StaticStructureSchema;
|
|
129
|
+
export declare var ListRecoveryPlanStepsRequest$: StaticStructureSchema;
|
|
130
|
+
export declare var ListRecoveryPlanStepsResponse$: StaticStructureSchema;
|
|
100
131
|
export declare var ListStagingAccountsRequest$: StaticStructureSchema;
|
|
101
132
|
export declare var ListStagingAccountsResponse$: StaticStructureSchema;
|
|
102
133
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
@@ -119,13 +150,28 @@ export declare var RecoveryInstanceDisk$: StaticStructureSchema;
|
|
|
119
150
|
export declare var RecoveryInstanceFailback$: StaticStructureSchema;
|
|
120
151
|
export declare var RecoveryInstanceProperties$: StaticStructureSchema;
|
|
121
152
|
export declare var RecoveryLifeCycle$: StaticStructureSchema;
|
|
153
|
+
export declare var RecoveryPlan$: StaticStructureSchema;
|
|
154
|
+
export declare var RecoveryPlanExecution$: StaticStructureSchema;
|
|
155
|
+
export declare var RecoveryPlanExecutionServer$: StaticStructureSchema;
|
|
156
|
+
export declare var RecoveryPlanExecutionSourceServer$: StaticStructureSchema;
|
|
157
|
+
export declare var RecoveryPlanExecutionStep$: StaticStructureSchema;
|
|
158
|
+
export declare var RecoveryPlanExecutionStepSummary$: StaticStructureSchema;
|
|
159
|
+
export declare var RecoveryPlanExecutionSummary$: StaticStructureSchema;
|
|
160
|
+
export declare var RecoveryPlanServer$: StaticStructureSchema;
|
|
161
|
+
export declare var RecoveryPlanStep$: StaticStructureSchema;
|
|
162
|
+
export declare var RecoveryPlanSummary$: StaticStructureSchema;
|
|
122
163
|
export declare var RecoverySnapshot$: StaticStructureSchema;
|
|
164
|
+
export declare var ReorderRecoveryPlanStepsRequest$: StaticStructureSchema;
|
|
165
|
+
export declare var ReorderRecoveryPlanStepsResponse$: StaticStructureSchema;
|
|
123
166
|
export declare var ReplicationConfiguration$: StaticStructureSchema;
|
|
124
167
|
export declare var ReplicationConfigurationReplicatedDisk$: StaticStructureSchema;
|
|
125
168
|
export declare var ReplicationConfigurationTemplate$: StaticStructureSchema;
|
|
126
169
|
export declare var RetryDataReplicationRequest$: StaticStructureSchema;
|
|
170
|
+
export declare var RetryRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
171
|
+
export declare var RetryRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
127
172
|
export declare var ReverseReplicationRequest$: StaticStructureSchema;
|
|
128
173
|
export declare var ReverseReplicationResponse$: StaticStructureSchema;
|
|
174
|
+
export declare var ServerStepConfiguration$: StaticStructureSchema;
|
|
129
175
|
export declare var SourceCloudProperties$: StaticStructureSchema;
|
|
130
176
|
export declare var SourceNetwork$: StaticStructureSchema;
|
|
131
177
|
export declare var SourceNetworkData$: StaticStructureSchema;
|
|
@@ -135,6 +181,8 @@ export declare var StagingArea$: StaticStructureSchema;
|
|
|
135
181
|
export declare var StagingSourceServer$: StaticStructureSchema;
|
|
136
182
|
export declare var StartFailbackLaunchRequest$: StaticStructureSchema;
|
|
137
183
|
export declare var StartFailbackLaunchResponse$: StaticStructureSchema;
|
|
184
|
+
export declare var StartRecoveryPlanExecutionRequest$: StaticStructureSchema;
|
|
185
|
+
export declare var StartRecoveryPlanExecutionResponse$: StaticStructureSchema;
|
|
138
186
|
export declare var StartRecoveryRequest$: StaticStructureSchema;
|
|
139
187
|
export declare var StartRecoveryRequestSourceServer$: StaticStructureSchema;
|
|
140
188
|
export declare var StartRecoveryResponse$: StaticStructureSchema;
|
|
@@ -158,20 +206,35 @@ export declare var UpdateFailbackReplicationConfigurationRequest$: StaticStructu
|
|
|
158
206
|
export declare var UpdateLaunchConfigurationRequest$: StaticStructureSchema;
|
|
159
207
|
export declare var UpdateLaunchConfigurationTemplateRequest$: StaticStructureSchema;
|
|
160
208
|
export declare var UpdateLaunchConfigurationTemplateResponse$: StaticStructureSchema;
|
|
209
|
+
export declare var UpdateRecoveryPlanExecutionStepRequest$: StaticStructureSchema;
|
|
210
|
+
export declare var UpdateRecoveryPlanExecutionStepResponse$: StaticStructureSchema;
|
|
211
|
+
export declare var UpdateRecoveryPlanRequest$: StaticStructureSchema;
|
|
212
|
+
export declare var UpdateRecoveryPlanResponse$: StaticStructureSchema;
|
|
213
|
+
export declare var UpdateRecoveryPlanStepRequest$: StaticStructureSchema;
|
|
214
|
+
export declare var UpdateRecoveryPlanStepResponse$: StaticStructureSchema;
|
|
161
215
|
export declare var UpdateReplicationConfigurationRequest$: StaticStructureSchema;
|
|
162
216
|
export declare var UpdateReplicationConfigurationTemplateRequest$: StaticStructureSchema;
|
|
163
217
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
218
|
+
export declare var WaitStepConfiguration$: StaticStructureSchema;
|
|
164
219
|
export declare var EventResourceData$: StaticUnionSchema;
|
|
165
220
|
export declare var ParticipatingResourceID$: StaticUnionSchema;
|
|
221
|
+
export declare var RecoveryPlanExecutionStepConfiguration$: StaticUnionSchema;
|
|
222
|
+
export declare var RecoveryPlanStepConfiguration$: StaticUnionSchema;
|
|
166
223
|
export declare var AssociateSourceNetworkStack$: StaticOperationSchema;
|
|
224
|
+
export declare var CancelRecoveryPlanExecution$: StaticOperationSchema;
|
|
167
225
|
export declare var CreateExtendedSourceServer$: StaticOperationSchema;
|
|
168
226
|
export declare var CreateLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
227
|
+
export declare var CreateRecoveryPlan$: StaticOperationSchema;
|
|
228
|
+
export declare var CreateRecoveryPlanStep$: StaticOperationSchema;
|
|
169
229
|
export declare var CreateReplicationConfigurationTemplate$: StaticOperationSchema;
|
|
170
230
|
export declare var CreateSourceNetwork$: StaticOperationSchema;
|
|
171
231
|
export declare var DeleteJob$: StaticOperationSchema;
|
|
172
232
|
export declare var DeleteLaunchAction$: StaticOperationSchema;
|
|
173
233
|
export declare var DeleteLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
174
234
|
export declare var DeleteRecoveryInstance$: StaticOperationSchema;
|
|
235
|
+
export declare var DeleteRecoveryPlan$: StaticOperationSchema;
|
|
236
|
+
export declare var DeleteRecoveryPlanExecution$: StaticOperationSchema;
|
|
237
|
+
export declare var DeleteRecoveryPlanStep$: StaticOperationSchema;
|
|
175
238
|
export declare var DeleteReplicationConfigurationTemplate$: StaticOperationSchema;
|
|
176
239
|
export declare var DeleteSourceNetwork$: StaticOperationSchema;
|
|
177
240
|
export declare var DeleteSourceServer$: StaticOperationSchema;
|
|
@@ -188,17 +251,28 @@ export declare var DisconnectSourceServer$: StaticOperationSchema;
|
|
|
188
251
|
export declare var ExportSourceNetworkCfnTemplate$: StaticOperationSchema;
|
|
189
252
|
export declare var GetFailbackReplicationConfiguration$: StaticOperationSchema;
|
|
190
253
|
export declare var GetLaunchConfiguration$: StaticOperationSchema;
|
|
254
|
+
export declare var GetRecoveryPlan$: StaticOperationSchema;
|
|
255
|
+
export declare var GetRecoveryPlanExecution$: StaticOperationSchema;
|
|
256
|
+
export declare var GetRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
257
|
+
export declare var GetRecoveryPlanStep$: StaticOperationSchema;
|
|
191
258
|
export declare var GetReplicationConfiguration$: StaticOperationSchema;
|
|
192
259
|
export declare var InitializeService$: StaticOperationSchema;
|
|
193
260
|
export declare var ListExtensibleSourceServers$: StaticOperationSchema;
|
|
194
261
|
export declare var ListLaunchActions$: StaticOperationSchema;
|
|
262
|
+
export declare var ListRecoveryPlanExecutions$: StaticOperationSchema;
|
|
263
|
+
export declare var ListRecoveryPlanExecutionSteps$: StaticOperationSchema;
|
|
264
|
+
export declare var ListRecoveryPlans$: StaticOperationSchema;
|
|
265
|
+
export declare var ListRecoveryPlanSteps$: StaticOperationSchema;
|
|
195
266
|
export declare var ListStagingAccounts$: StaticOperationSchema;
|
|
196
267
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
197
268
|
export declare var PutLaunchAction$: StaticOperationSchema;
|
|
269
|
+
export declare var ReorderRecoveryPlanSteps$: StaticOperationSchema;
|
|
198
270
|
export declare var RetryDataReplication$: StaticOperationSchema;
|
|
271
|
+
export declare var RetryRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
199
272
|
export declare var ReverseReplication$: StaticOperationSchema;
|
|
200
273
|
export declare var StartFailbackLaunch$: StaticOperationSchema;
|
|
201
274
|
export declare var StartRecovery$: StaticOperationSchema;
|
|
275
|
+
export declare var StartRecoveryPlanExecution$: StaticOperationSchema;
|
|
202
276
|
export declare var StartReplication$: StaticOperationSchema;
|
|
203
277
|
export declare var StartSourceNetworkRecovery$: StaticOperationSchema;
|
|
204
278
|
export declare var StartSourceNetworkReplication$: StaticOperationSchema;
|
|
@@ -211,5 +285,8 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
211
285
|
export declare var UpdateFailbackReplicationConfiguration$: StaticOperationSchema;
|
|
212
286
|
export declare var UpdateLaunchConfiguration$: StaticOperationSchema;
|
|
213
287
|
export declare var UpdateLaunchConfigurationTemplate$: StaticOperationSchema;
|
|
288
|
+
export declare var UpdateRecoveryPlan$: StaticOperationSchema;
|
|
289
|
+
export declare var UpdateRecoveryPlanExecutionStep$: StaticOperationSchema;
|
|
290
|
+
export declare var UpdateRecoveryPlanStep$: StaticOperationSchema;
|
|
214
291
|
export declare var UpdateReplicationConfiguration$: StaticOperationSchema;
|
|
215
292
|
export declare var UpdateReplicationConfigurationTemplate$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-drs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1112.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-drs",
|
|
6
6
|
"license": "Apache-2.0",
|