@aws-sdk/client-drs 3.1110.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/runtimeConfig.browser.d.ts +40 -40
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +38 -38
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- 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/runtimeConfig.browser.d.ts +56 -58
- package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +77 -0
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DataReplicationErrorString, DataReplicationInitiationStepName, DataReplicationInitiationStepStatus, DataReplicationState, EC2InstanceState, ExtensionStatus, FailbackLaunchType, FailbackReplicationError, FailbackState, InitiatedBy, InternetProtocol, JobLogEvent, JobStatus, JobType, LastLaunchResult, LastLaunchType, LaunchActionCategory, LaunchActionParameterType, LaunchActionRunStatus, LaunchActionType, LaunchDisposition, LaunchStatus, OriginEnvironment, PITPolicyRuleUnits, ProductCodeMode, RecoveryInstanceDataReplicationInitiationStepName, RecoveryInstanceDataReplicationInitiationStepStatus, RecoveryInstanceDataReplicationState, RecoveryMode, RecoveryResult, RecoverySnapshotsOrder, ReplicationConfigurationDataPlaneRouting, ReplicationConfigurationDefaultLargeStagingDiskType, ReplicationConfigurationEbsEncryption, ReplicationConfigurationReplicatedDiskStagingDiskType, ReplicationDirection, ReplicationStatus, TargetInstanceTypeRightSizingMethod, VolumeStatus } from "./enums";
|
|
1
|
+
import type { DataReplicationErrorString, DataReplicationInitiationStepName, DataReplicationInitiationStepStatus, DataReplicationState, EC2InstanceState, ExtensionStatus, FailbackLaunchType, FailbackReplicationError, FailbackState, InitiatedBy, InternetProtocol, JobLogEvent, JobStatus, JobType, LastLaunchResult, LastLaunchType, LaunchActionCategory, LaunchActionParameterType, LaunchActionRunStatus, LaunchActionType, LaunchDisposition, LaunchStatus, OriginEnvironment, PITPolicyRuleUnits, ProductCodeMode, RecoveryInstanceDataReplicationInitiationStepName, RecoveryInstanceDataReplicationInitiationStepStatus, RecoveryInstanceDataReplicationState, RecoveryMode, RecoveryPlanExecutionMode, RecoveryPlanExecutionStatus, RecoveryPlanExecutionStepStatus, RecoveryPlanServerImpactLevel, RecoveryPlanStatus, RecoveryResult, RecoverySnapshotsOrder, ReplicationConfigurationDataPlaneRouting, ReplicationConfigurationDefaultLargeStagingDiskType, ReplicationConfigurationEbsEncryption, ReplicationConfigurationReplicatedDiskStagingDiskType, ReplicationDirection, ReplicationStatus, TargetInstanceTypeRightSizingMethod, VolumeStatus } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>AWS account.</p>
|
|
4
4
|
* @public
|
|
@@ -301,6 +301,88 @@ export interface ValidationExceptionField {
|
|
|
301
301
|
*/
|
|
302
302
|
message?: string | undefined;
|
|
303
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export interface CancelRecoveryPlanExecutionRequest {
|
|
308
|
+
/**
|
|
309
|
+
* <p>The ARN of the Recovery Plan execution to cancel.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
313
|
+
}
|
|
314
|
+
/**
|
|
315
|
+
* <p>Error details for a failed operation.</p>
|
|
316
|
+
* @public
|
|
317
|
+
*/
|
|
318
|
+
export interface ErrorDetail {
|
|
319
|
+
/**
|
|
320
|
+
* <p>The error message.</p>
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
message: string | undefined;
|
|
324
|
+
/**
|
|
325
|
+
* <p>The error code.</p>
|
|
326
|
+
* @public
|
|
327
|
+
*/
|
|
328
|
+
code: string | undefined;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* <p>A Recovery Plan execution.</p>
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
334
|
+
export interface RecoveryPlanExecution {
|
|
335
|
+
/**
|
|
336
|
+
* <p>The ARN of the Recovery Plan execution.</p>
|
|
337
|
+
* @public
|
|
338
|
+
*/
|
|
339
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
340
|
+
/**
|
|
341
|
+
* <p>The ARN of the Recovery Plan being executed.</p>
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
344
|
+
recoveryPlanArn: string | undefined;
|
|
345
|
+
/**
|
|
346
|
+
* <p>The execution mode.</p>
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
350
|
+
/**
|
|
351
|
+
* <p>The execution status.</p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
status: RecoveryPlanExecutionStatus | undefined;
|
|
355
|
+
/**
|
|
356
|
+
* <p>The timestamp when the execution started.</p>
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
startedAt: string | undefined;
|
|
360
|
+
/**
|
|
361
|
+
* <p>The timestamp when the execution completed.</p>
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
completedAt?: string | undefined;
|
|
365
|
+
/**
|
|
366
|
+
* <p>Error details if the execution failed.</p>
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
369
|
+
errorDetail?: ErrorDetail | undefined;
|
|
370
|
+
/**
|
|
371
|
+
* <p>The tags associated with the Recovery Plan execution.</p>
|
|
372
|
+
* @public
|
|
373
|
+
*/
|
|
374
|
+
tags?: Record<string, string> | undefined;
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* @public
|
|
378
|
+
*/
|
|
379
|
+
export interface CancelRecoveryPlanExecutionResponse {
|
|
380
|
+
/**
|
|
381
|
+
* <p>The cancelled Recovery Plan execution.</p>
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
385
|
+
}
|
|
304
386
|
/**
|
|
305
387
|
* <p>Properties of a product code associated with a volume.</p>
|
|
306
388
|
* @public
|
|
@@ -991,6 +1073,244 @@ export interface CreateLaunchConfigurationTemplateResponse {
|
|
|
991
1073
|
*/
|
|
992
1074
|
launchConfigurationTemplate?: LaunchConfigurationTemplate | undefined;
|
|
993
1075
|
}
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
*/
|
|
1079
|
+
export interface CreateRecoveryPlanRequest {
|
|
1080
|
+
/**
|
|
1081
|
+
* The name of a Recovery Plan.
|
|
1082
|
+
* @public
|
|
1083
|
+
*/
|
|
1084
|
+
name: string | undefined;
|
|
1085
|
+
/**
|
|
1086
|
+
* The description of a Recovery Plan.
|
|
1087
|
+
* @public
|
|
1088
|
+
*/
|
|
1089
|
+
description?: string | undefined;
|
|
1090
|
+
/**
|
|
1091
|
+
* <p>A unique string provided to ensure request idempotency.</p>
|
|
1092
|
+
* @public
|
|
1093
|
+
*/
|
|
1094
|
+
clientToken?: string | undefined;
|
|
1095
|
+
/**
|
|
1096
|
+
* <p>The tags to apply to the Recovery Plan.</p>
|
|
1097
|
+
* @public
|
|
1098
|
+
*/
|
|
1099
|
+
tags?: Record<string, string> | undefined;
|
|
1100
|
+
}
|
|
1101
|
+
/**
|
|
1102
|
+
* A Recovery Plan resource.
|
|
1103
|
+
* @public
|
|
1104
|
+
*/
|
|
1105
|
+
export interface RecoveryPlan {
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>The ARN of the Recovery Plan.</p>
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
1110
|
+
recoveryPlanArn: string | undefined;
|
|
1111
|
+
/**
|
|
1112
|
+
* The name of a Recovery Plan.
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
name: string | undefined;
|
|
1116
|
+
/**
|
|
1117
|
+
* The description of a Recovery Plan.
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
1120
|
+
description?: string | undefined;
|
|
1121
|
+
/**
|
|
1122
|
+
* <p>The status of the Recovery Plan.</p>
|
|
1123
|
+
* @public
|
|
1124
|
+
*/
|
|
1125
|
+
status: RecoveryPlanStatus | undefined;
|
|
1126
|
+
/**
|
|
1127
|
+
* <p>The timestamp when the Recovery Plan was created.</p>
|
|
1128
|
+
* @public
|
|
1129
|
+
*/
|
|
1130
|
+
createdAt: string | undefined;
|
|
1131
|
+
/**
|
|
1132
|
+
* <p>The timestamp when the Recovery Plan was last updated.</p>
|
|
1133
|
+
* @public
|
|
1134
|
+
*/
|
|
1135
|
+
updatedAt: string | undefined;
|
|
1136
|
+
/**
|
|
1137
|
+
* <p>The tags associated with the Recovery Plan.</p>
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1140
|
+
tags?: Record<string, string> | undefined;
|
|
1141
|
+
}
|
|
1142
|
+
/**
|
|
1143
|
+
* @public
|
|
1144
|
+
*/
|
|
1145
|
+
export interface CreateRecoveryPlanResponse {
|
|
1146
|
+
/**
|
|
1147
|
+
* A Recovery Plan resource.
|
|
1148
|
+
* @public
|
|
1149
|
+
*/
|
|
1150
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
1151
|
+
}
|
|
1152
|
+
/**
|
|
1153
|
+
* A server associated with a Recovery Plan Step.
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
export interface RecoveryPlanServer {
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>The ARN of the source server.</p>
|
|
1159
|
+
* @public
|
|
1160
|
+
*/
|
|
1161
|
+
serverArn: string | undefined;
|
|
1162
|
+
/**
|
|
1163
|
+
* Defaults to CRITICAL if not specified.
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1166
|
+
impactLevel?: RecoveryPlanServerImpactLevel | undefined;
|
|
1167
|
+
}
|
|
1168
|
+
/**
|
|
1169
|
+
* <p>Configuration for a <code>SERVER</code> type step.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
export interface ServerStepConfiguration {
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>The list of servers to recover in this step.</p>
|
|
1175
|
+
* @public
|
|
1176
|
+
*/
|
|
1177
|
+
servers: RecoveryPlanServer[] | undefined;
|
|
1178
|
+
}
|
|
1179
|
+
/**
|
|
1180
|
+
* <p>Configuration for a <code>WAIT</code> type step.</p>
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1183
|
+
export interface WaitStepConfiguration {
|
|
1184
|
+
/**
|
|
1185
|
+
* The wait duration in minutes for a Wait type step.
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
waitDurationMinutes: number | undefined;
|
|
1189
|
+
}
|
|
1190
|
+
/**
|
|
1191
|
+
* Type-specific configuration for a recovery plan step.
|
|
1192
|
+
* Exactly one member must be set.
|
|
1193
|
+
* @public
|
|
1194
|
+
*/
|
|
1195
|
+
export type RecoveryPlanStepConfiguration = RecoveryPlanStepConfiguration.ServerStepConfigurationMember | RecoveryPlanStepConfiguration.WaitStepConfigurationMember | RecoveryPlanStepConfiguration.$UnknownMember;
|
|
1196
|
+
/**
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1199
|
+
export declare namespace RecoveryPlanStepConfiguration {
|
|
1200
|
+
/**
|
|
1201
|
+
* Configuration for a SERVER type step.
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
interface ServerStepConfigurationMember {
|
|
1205
|
+
serverStepConfiguration: ServerStepConfiguration;
|
|
1206
|
+
waitStepConfiguration?: never;
|
|
1207
|
+
$unknown?: never;
|
|
1208
|
+
}
|
|
1209
|
+
/**
|
|
1210
|
+
* Configuration for a WAIT type step.
|
|
1211
|
+
* @public
|
|
1212
|
+
*/
|
|
1213
|
+
interface WaitStepConfigurationMember {
|
|
1214
|
+
serverStepConfiguration?: never;
|
|
1215
|
+
waitStepConfiguration: WaitStepConfiguration;
|
|
1216
|
+
$unknown?: never;
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* @public
|
|
1220
|
+
*/
|
|
1221
|
+
interface $UnknownMember {
|
|
1222
|
+
serverStepConfiguration?: never;
|
|
1223
|
+
waitStepConfiguration?: never;
|
|
1224
|
+
$unknown: [string, any];
|
|
1225
|
+
}
|
|
1226
|
+
/**
|
|
1227
|
+
* @deprecated unused in schema-serde mode.
|
|
1228
|
+
*
|
|
1229
|
+
*/
|
|
1230
|
+
interface Visitor<T> {
|
|
1231
|
+
serverStepConfiguration: (value: ServerStepConfiguration) => T;
|
|
1232
|
+
waitStepConfiguration: (value: WaitStepConfiguration) => T;
|
|
1233
|
+
_: (name: string, value: any) => T;
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
/**
|
|
1237
|
+
* @public
|
|
1238
|
+
*/
|
|
1239
|
+
export interface CreateRecoveryPlanStepRequest {
|
|
1240
|
+
/**
|
|
1241
|
+
* <p>The ARN of the Recovery Plan to add the step to.</p>
|
|
1242
|
+
* @public
|
|
1243
|
+
*/
|
|
1244
|
+
recoveryPlanArn: string | undefined;
|
|
1245
|
+
/**
|
|
1246
|
+
* The name of a Recovery Plan Step.
|
|
1247
|
+
* @public
|
|
1248
|
+
*/
|
|
1249
|
+
stepName: string | undefined;
|
|
1250
|
+
/**
|
|
1251
|
+
* The order of a step within a Recovery Plan (1-based).
|
|
1252
|
+
* @public
|
|
1253
|
+
*/
|
|
1254
|
+
stepOrder?: number | undefined;
|
|
1255
|
+
/**
|
|
1256
|
+
* Type-specific configuration for a recovery plan step.
|
|
1257
|
+
* Exactly one member must be set.
|
|
1258
|
+
* @public
|
|
1259
|
+
*/
|
|
1260
|
+
configuration: RecoveryPlanStepConfiguration | undefined;
|
|
1261
|
+
/**
|
|
1262
|
+
* <p>A unique string provided to ensure request idempotency.</p>
|
|
1263
|
+
* @public
|
|
1264
|
+
*/
|
|
1265
|
+
clientToken?: string | undefined;
|
|
1266
|
+
}
|
|
1267
|
+
/**
|
|
1268
|
+
* A Recovery Plan Step resource.
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1271
|
+
export interface RecoveryPlanStep {
|
|
1272
|
+
/**
|
|
1273
|
+
* <p>The ARN of the Recovery Plan step.</p>
|
|
1274
|
+
* @public
|
|
1275
|
+
*/
|
|
1276
|
+
recoveryPlanStepArn: string | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* The order of a step within a Recovery Plan (1-based).
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
stepOrder: number | undefined;
|
|
1282
|
+
/**
|
|
1283
|
+
* The name of a Recovery Plan Step.
|
|
1284
|
+
* @public
|
|
1285
|
+
*/
|
|
1286
|
+
stepName: string | undefined;
|
|
1287
|
+
/**
|
|
1288
|
+
* Type-specific configuration for a recovery plan step.
|
|
1289
|
+
* Exactly one member must be set.
|
|
1290
|
+
* @public
|
|
1291
|
+
*/
|
|
1292
|
+
configuration: RecoveryPlanStepConfiguration | undefined;
|
|
1293
|
+
/**
|
|
1294
|
+
* <p>The timestamp when the step was created.</p>
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
createdAt: string | undefined;
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>The timestamp when the step was last updated.</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
updatedAt: string | undefined;
|
|
1303
|
+
}
|
|
1304
|
+
/**
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
export interface CreateRecoveryPlanStepResponse {
|
|
1308
|
+
/**
|
|
1309
|
+
* A Recovery Plan Step resource.
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
1313
|
+
}
|
|
994
1314
|
/**
|
|
995
1315
|
* <p>A rule in the Point in Time (PIT) policy representing when to take snapshots and how long to retain them for.</p>
|
|
996
1316
|
* @public
|
|
@@ -1297,6 +1617,66 @@ export interface DeleteRecoveryInstanceRequest {
|
|
|
1297
1617
|
*/
|
|
1298
1618
|
recoveryInstanceID: string | undefined;
|
|
1299
1619
|
}
|
|
1620
|
+
/**
|
|
1621
|
+
* @public
|
|
1622
|
+
*/
|
|
1623
|
+
export interface DeleteRecoveryPlanRequest {
|
|
1624
|
+
/**
|
|
1625
|
+
* <p>The ARN of the Recovery Plan to delete.</p>
|
|
1626
|
+
* @public
|
|
1627
|
+
*/
|
|
1628
|
+
recoveryPlanArn: string | undefined;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* @public
|
|
1632
|
+
*/
|
|
1633
|
+
export interface DeleteRecoveryPlanResponse {
|
|
1634
|
+
/**
|
|
1635
|
+
* <p>The ARN of the deleted Recovery Plan.</p>
|
|
1636
|
+
* @public
|
|
1637
|
+
*/
|
|
1638
|
+
recoveryPlanArn: string | undefined;
|
|
1639
|
+
}
|
|
1640
|
+
/**
|
|
1641
|
+
* @public
|
|
1642
|
+
*/
|
|
1643
|
+
export interface DeleteRecoveryPlanExecutionRequest {
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>The ARN of the Recovery Plan execution to delete.</p>
|
|
1646
|
+
* @public
|
|
1647
|
+
*/
|
|
1648
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
* @public
|
|
1652
|
+
*/
|
|
1653
|
+
export interface DeleteRecoveryPlanExecutionResponse {
|
|
1654
|
+
/**
|
|
1655
|
+
* <p>The ARN of the deleted Recovery Plan execution.</p>
|
|
1656
|
+
* @public
|
|
1657
|
+
*/
|
|
1658
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
1659
|
+
}
|
|
1660
|
+
/**
|
|
1661
|
+
* @public
|
|
1662
|
+
*/
|
|
1663
|
+
export interface DeleteRecoveryPlanStepRequest {
|
|
1664
|
+
/**
|
|
1665
|
+
* <p>The ARN of the Recovery Plan step to delete.</p>
|
|
1666
|
+
* @public
|
|
1667
|
+
*/
|
|
1668
|
+
recoveryPlanStepArn: string | undefined;
|
|
1669
|
+
}
|
|
1670
|
+
/**
|
|
1671
|
+
* @public
|
|
1672
|
+
*/
|
|
1673
|
+
export interface DeleteRecoveryPlanStepResponse {
|
|
1674
|
+
/**
|
|
1675
|
+
* <p>The ARN of the deleted Recovery Plan step.</p>
|
|
1676
|
+
* @public
|
|
1677
|
+
*/
|
|
1678
|
+
recoveryPlanStepArn: string | undefined;
|
|
1679
|
+
}
|
|
1300
1680
|
/**
|
|
1301
1681
|
* @public
|
|
1302
1682
|
*/
|
|
@@ -2318,7 +2698,217 @@ export interface DisconnectSourceServerRequest {
|
|
|
2318
2698
|
/**
|
|
2319
2699
|
* @public
|
|
2320
2700
|
*/
|
|
2321
|
-
export interface
|
|
2701
|
+
export interface GetRecoveryPlanRequest {
|
|
2702
|
+
/**
|
|
2703
|
+
* <p>The ARN of the Recovery Plan to retrieve.</p>
|
|
2704
|
+
* @public
|
|
2705
|
+
*/
|
|
2706
|
+
recoveryPlanArn: string | undefined;
|
|
2707
|
+
}
|
|
2708
|
+
/**
|
|
2709
|
+
* @public
|
|
2710
|
+
*/
|
|
2711
|
+
export interface GetRecoveryPlanResponse {
|
|
2712
|
+
/**
|
|
2713
|
+
* A Recovery Plan resource.
|
|
2714
|
+
* @public
|
|
2715
|
+
*/
|
|
2716
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
2717
|
+
}
|
|
2718
|
+
/**
|
|
2719
|
+
* @public
|
|
2720
|
+
*/
|
|
2721
|
+
export interface GetRecoveryPlanExecutionRequest {
|
|
2722
|
+
/**
|
|
2723
|
+
* <p>The ARN of the Recovery Plan execution.</p>
|
|
2724
|
+
* @public
|
|
2725
|
+
*/
|
|
2726
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
2727
|
+
}
|
|
2728
|
+
/**
|
|
2729
|
+
* @public
|
|
2730
|
+
*/
|
|
2731
|
+
export interface GetRecoveryPlanExecutionResponse {
|
|
2732
|
+
/**
|
|
2733
|
+
* <p>The Recovery Plan execution details.</p>
|
|
2734
|
+
* @public
|
|
2735
|
+
*/
|
|
2736
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
2737
|
+
}
|
|
2738
|
+
/**
|
|
2739
|
+
* @public
|
|
2740
|
+
*/
|
|
2741
|
+
export interface GetRecoveryPlanExecutionStepRequest {
|
|
2742
|
+
/**
|
|
2743
|
+
* <p>The ARN of the execution step.</p>
|
|
2744
|
+
* @public
|
|
2745
|
+
*/
|
|
2746
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
2747
|
+
}
|
|
2748
|
+
/**
|
|
2749
|
+
* A server within a recovery plan execution step, enriched with execution state.
|
|
2750
|
+
* @public
|
|
2751
|
+
*/
|
|
2752
|
+
export interface RecoveryPlanExecutionServer {
|
|
2753
|
+
/**
|
|
2754
|
+
* <p>The ARN of the source server.</p>
|
|
2755
|
+
* @public
|
|
2756
|
+
*/
|
|
2757
|
+
serverArn: string | undefined;
|
|
2758
|
+
/**
|
|
2759
|
+
* Defaults to CRITICAL if not specified.
|
|
2760
|
+
* @public
|
|
2761
|
+
*/
|
|
2762
|
+
impactLevel?: RecoveryPlanServerImpactLevel | undefined;
|
|
2763
|
+
/**
|
|
2764
|
+
* The DRS recovery job ID. Populated when recovery is initiated for this server.
|
|
2765
|
+
* @public
|
|
2766
|
+
*/
|
|
2767
|
+
jobID?: string | undefined;
|
|
2768
|
+
}
|
|
2769
|
+
/**
|
|
2770
|
+
* <p>Configuration for a <code>SERVER</code> type execution step.</p>
|
|
2771
|
+
* @public
|
|
2772
|
+
*/
|
|
2773
|
+
export interface ExecutionServerStepConfiguration {
|
|
2774
|
+
/**
|
|
2775
|
+
* <p>The list of servers in this execution step.</p>
|
|
2776
|
+
* @public
|
|
2777
|
+
*/
|
|
2778
|
+
servers: RecoveryPlanExecutionServer[] | undefined;
|
|
2779
|
+
}
|
|
2780
|
+
/**
|
|
2781
|
+
* Type-specific configuration for an execution step response.
|
|
2782
|
+
* Mirrors RecoveryPlanStepConfiguration but uses execution-enriched server shapes.
|
|
2783
|
+
* @public
|
|
2784
|
+
*/
|
|
2785
|
+
export type RecoveryPlanExecutionStepConfiguration = RecoveryPlanExecutionStepConfiguration.ExecutionServerStepConfigurationMember | RecoveryPlanExecutionStepConfiguration.WaitStepConfigurationMember | RecoveryPlanExecutionStepConfiguration.$UnknownMember;
|
|
2786
|
+
/**
|
|
2787
|
+
* @public
|
|
2788
|
+
*/
|
|
2789
|
+
export declare namespace RecoveryPlanExecutionStepConfiguration {
|
|
2790
|
+
/**
|
|
2791
|
+
* Configuration for a SERVER type step (with execution state like jobID).
|
|
2792
|
+
* @public
|
|
2793
|
+
*/
|
|
2794
|
+
interface ExecutionServerStepConfigurationMember {
|
|
2795
|
+
executionServerStepConfiguration: ExecutionServerStepConfiguration;
|
|
2796
|
+
waitStepConfiguration?: never;
|
|
2797
|
+
$unknown?: never;
|
|
2798
|
+
}
|
|
2799
|
+
/**
|
|
2800
|
+
* Configuration for a WAIT type step.
|
|
2801
|
+
* @public
|
|
2802
|
+
*/
|
|
2803
|
+
interface WaitStepConfigurationMember {
|
|
2804
|
+
executionServerStepConfiguration?: never;
|
|
2805
|
+
waitStepConfiguration: WaitStepConfiguration;
|
|
2806
|
+
$unknown?: never;
|
|
2807
|
+
}
|
|
2808
|
+
/**
|
|
2809
|
+
* @public
|
|
2810
|
+
*/
|
|
2811
|
+
interface $UnknownMember {
|
|
2812
|
+
executionServerStepConfiguration?: never;
|
|
2813
|
+
waitStepConfiguration?: never;
|
|
2814
|
+
$unknown: [string, any];
|
|
2815
|
+
}
|
|
2816
|
+
/**
|
|
2817
|
+
* @deprecated unused in schema-serde mode.
|
|
2818
|
+
*
|
|
2819
|
+
*/
|
|
2820
|
+
interface Visitor<T> {
|
|
2821
|
+
executionServerStepConfiguration: (value: ExecutionServerStepConfiguration) => T;
|
|
2822
|
+
waitStepConfiguration: (value: WaitStepConfiguration) => T;
|
|
2823
|
+
_: (name: string, value: any) => T;
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
/**
|
|
2827
|
+
* A Recovery Plan Execution Step resource.
|
|
2828
|
+
* @public
|
|
2829
|
+
*/
|
|
2830
|
+
export interface RecoveryPlanExecutionStep {
|
|
2831
|
+
/**
|
|
2832
|
+
* <p>The ARN of the execution step.</p>
|
|
2833
|
+
* @public
|
|
2834
|
+
*/
|
|
2835
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
2836
|
+
/**
|
|
2837
|
+
* The order of a step within a Recovery Plan (1-based).
|
|
2838
|
+
* @public
|
|
2839
|
+
*/
|
|
2840
|
+
stepIndex: number | undefined;
|
|
2841
|
+
/**
|
|
2842
|
+
* <p>The status of the execution step.</p>
|
|
2843
|
+
* @public
|
|
2844
|
+
*/
|
|
2845
|
+
status: RecoveryPlanExecutionStepStatus | undefined;
|
|
2846
|
+
/**
|
|
2847
|
+
* The name of a Recovery Plan Step.
|
|
2848
|
+
* @public
|
|
2849
|
+
*/
|
|
2850
|
+
stepName: string | undefined;
|
|
2851
|
+
/**
|
|
2852
|
+
* Type-specific configuration for an execution step response.
|
|
2853
|
+
* Mirrors RecoveryPlanStepConfiguration but uses execution-enriched server shapes.
|
|
2854
|
+
* @public
|
|
2855
|
+
*/
|
|
2856
|
+
configuration: RecoveryPlanExecutionStepConfiguration | undefined;
|
|
2857
|
+
/**
|
|
2858
|
+
* <p>Error details if the step failed.</p>
|
|
2859
|
+
* @public
|
|
2860
|
+
*/
|
|
2861
|
+
errorDetail?: ErrorDetail | undefined;
|
|
2862
|
+
/**
|
|
2863
|
+
* <p>The number of times this step has been attempted.</p>
|
|
2864
|
+
* @public
|
|
2865
|
+
*/
|
|
2866
|
+
attempt: number | undefined;
|
|
2867
|
+
/**
|
|
2868
|
+
* <p>The timestamp when the execution step was created.</p>
|
|
2869
|
+
* @public
|
|
2870
|
+
*/
|
|
2871
|
+
createdAt: string | undefined;
|
|
2872
|
+
/**
|
|
2873
|
+
* <p>The timestamp when the execution step was last updated.</p>
|
|
2874
|
+
* @public
|
|
2875
|
+
*/
|
|
2876
|
+
updatedAt: string | undefined;
|
|
2877
|
+
}
|
|
2878
|
+
/**
|
|
2879
|
+
* @public
|
|
2880
|
+
*/
|
|
2881
|
+
export interface GetRecoveryPlanExecutionStepResponse {
|
|
2882
|
+
/**
|
|
2883
|
+
* A Recovery Plan Execution Step resource.
|
|
2884
|
+
* @public
|
|
2885
|
+
*/
|
|
2886
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
2887
|
+
}
|
|
2888
|
+
/**
|
|
2889
|
+
* @public
|
|
2890
|
+
*/
|
|
2891
|
+
export interface GetRecoveryPlanStepRequest {
|
|
2892
|
+
/**
|
|
2893
|
+
* <p>The ARN of the Recovery Plan step to retrieve.</p>
|
|
2894
|
+
* @public
|
|
2895
|
+
*/
|
|
2896
|
+
recoveryPlanStepArn: string | undefined;
|
|
2897
|
+
}
|
|
2898
|
+
/**
|
|
2899
|
+
* @public
|
|
2900
|
+
*/
|
|
2901
|
+
export interface GetRecoveryPlanStepResponse {
|
|
2902
|
+
/**
|
|
2903
|
+
* A Recovery Plan Step resource.
|
|
2904
|
+
* @public
|
|
2905
|
+
*/
|
|
2906
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
2907
|
+
}
|
|
2908
|
+
/**
|
|
2909
|
+
* @public
|
|
2910
|
+
*/
|
|
2911
|
+
export interface InitializeServiceRequest {
|
|
2322
2912
|
}
|
|
2323
2913
|
/**
|
|
2324
2914
|
* @public
|
|
@@ -2497,6 +3087,266 @@ export interface ListLaunchActionsResponse {
|
|
|
2497
3087
|
*/
|
|
2498
3088
|
nextToken?: string | undefined;
|
|
2499
3089
|
}
|
|
3090
|
+
/**
|
|
3091
|
+
* @public
|
|
3092
|
+
*/
|
|
3093
|
+
export interface ListRecoveryPlanExecutionsRequest {
|
|
3094
|
+
/**
|
|
3095
|
+
* <p>Filter executions by Recovery Plan ARN.</p>
|
|
3096
|
+
* @public
|
|
3097
|
+
*/
|
|
3098
|
+
recoveryPlanArn?: string | undefined;
|
|
3099
|
+
/**
|
|
3100
|
+
* <p>Filter executions by status.</p>
|
|
3101
|
+
* @public
|
|
3102
|
+
*/
|
|
3103
|
+
status?: RecoveryPlanExecutionStatus | undefined;
|
|
3104
|
+
/**
|
|
3105
|
+
* <p>Maximum number of results to return.</p>
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
maxResults?: number | undefined;
|
|
3109
|
+
/**
|
|
3110
|
+
* <p>The token for the next page of results.</p>
|
|
3111
|
+
* @public
|
|
3112
|
+
*/
|
|
3113
|
+
nextToken?: string | undefined;
|
|
3114
|
+
}
|
|
3115
|
+
/**
|
|
3116
|
+
* <p>Summary information about a Recovery Plan execution.</p>
|
|
3117
|
+
* @public
|
|
3118
|
+
*/
|
|
3119
|
+
export interface RecoveryPlanExecutionSummary {
|
|
3120
|
+
/**
|
|
3121
|
+
* <p>The ARN of the Recovery Plan execution.</p>
|
|
3122
|
+
* @public
|
|
3123
|
+
*/
|
|
3124
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
3125
|
+
/**
|
|
3126
|
+
* <p>The ARN of the Recovery Plan.</p>
|
|
3127
|
+
* @public
|
|
3128
|
+
*/
|
|
3129
|
+
recoveryPlanArn: string | undefined;
|
|
3130
|
+
/**
|
|
3131
|
+
* <p>The execution mode.</p>
|
|
3132
|
+
* @public
|
|
3133
|
+
*/
|
|
3134
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
3135
|
+
/**
|
|
3136
|
+
* <p>The execution status.</p>
|
|
3137
|
+
* @public
|
|
3138
|
+
*/
|
|
3139
|
+
status: RecoveryPlanExecutionStatus | undefined;
|
|
3140
|
+
/**
|
|
3141
|
+
* <p>The timestamp when the execution started.</p>
|
|
3142
|
+
* @public
|
|
3143
|
+
*/
|
|
3144
|
+
startedAt: string | undefined;
|
|
3145
|
+
/**
|
|
3146
|
+
* <p>Error details if the execution failed.</p>
|
|
3147
|
+
* @public
|
|
3148
|
+
*/
|
|
3149
|
+
errorDetail?: ErrorDetail | undefined;
|
|
3150
|
+
}
|
|
3151
|
+
/**
|
|
3152
|
+
* @public
|
|
3153
|
+
*/
|
|
3154
|
+
export interface ListRecoveryPlanExecutionsResponse {
|
|
3155
|
+
/**
|
|
3156
|
+
* <p>The list of Recovery Plan executions.</p>
|
|
3157
|
+
* @public
|
|
3158
|
+
*/
|
|
3159
|
+
recoveryPlanExecutions: RecoveryPlanExecutionSummary[] | undefined;
|
|
3160
|
+
/**
|
|
3161
|
+
* <p>The token for the next page of results.</p>
|
|
3162
|
+
* @public
|
|
3163
|
+
*/
|
|
3164
|
+
nextToken?: string | undefined;
|
|
3165
|
+
}
|
|
3166
|
+
/**
|
|
3167
|
+
* <p>Filters for listing Recovery Plan execution steps.</p>
|
|
3168
|
+
* @public
|
|
3169
|
+
*/
|
|
3170
|
+
export interface ListRecoveryPlanExecutionStepsFilter {
|
|
3171
|
+
/**
|
|
3172
|
+
* <p>Filter by execution step status.</p>
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
status?: RecoveryPlanExecutionStepStatus | undefined;
|
|
3176
|
+
}
|
|
3177
|
+
/**
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
export interface ListRecoveryPlanExecutionStepsRequest {
|
|
3181
|
+
/**
|
|
3182
|
+
* <p>The ARN of the Recovery Plan execution.</p>
|
|
3183
|
+
* @public
|
|
3184
|
+
*/
|
|
3185
|
+
recoveryPlanExecutionArn: string | undefined;
|
|
3186
|
+
/**
|
|
3187
|
+
* <p>Filters for listing execution steps.</p>
|
|
3188
|
+
* @public
|
|
3189
|
+
*/
|
|
3190
|
+
filter?: ListRecoveryPlanExecutionStepsFilter | undefined;
|
|
3191
|
+
/**
|
|
3192
|
+
* <p>Maximum number of results to return.</p>
|
|
3193
|
+
* @public
|
|
3194
|
+
*/
|
|
3195
|
+
maxResults?: number | undefined;
|
|
3196
|
+
/**
|
|
3197
|
+
* <p>The token for the next page of results.</p>
|
|
3198
|
+
* @public
|
|
3199
|
+
*/
|
|
3200
|
+
nextToken?: string | undefined;
|
|
3201
|
+
}
|
|
3202
|
+
/**
|
|
3203
|
+
* <p>Summary information about a Recovery Plan execution step.</p>
|
|
3204
|
+
* @public
|
|
3205
|
+
*/
|
|
3206
|
+
export interface RecoveryPlanExecutionStepSummary {
|
|
3207
|
+
/**
|
|
3208
|
+
* <p>The ARN of the execution step.</p>
|
|
3209
|
+
* @public
|
|
3210
|
+
*/
|
|
3211
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
3212
|
+
/**
|
|
3213
|
+
* The name of a Recovery Plan Step.
|
|
3214
|
+
* @public
|
|
3215
|
+
*/
|
|
3216
|
+
stepName: string | undefined;
|
|
3217
|
+
/**
|
|
3218
|
+
* The order of a step within a Recovery Plan (1-based).
|
|
3219
|
+
* @public
|
|
3220
|
+
*/
|
|
3221
|
+
stepIndex: number | undefined;
|
|
3222
|
+
/**
|
|
3223
|
+
* <p>The status of the execution step.</p>
|
|
3224
|
+
* @public
|
|
3225
|
+
*/
|
|
3226
|
+
status: RecoveryPlanExecutionStepStatus | undefined;
|
|
3227
|
+
/**
|
|
3228
|
+
* Type-specific configuration for an execution step response.
|
|
3229
|
+
* Mirrors RecoveryPlanStepConfiguration but uses execution-enriched server shapes.
|
|
3230
|
+
* @public
|
|
3231
|
+
*/
|
|
3232
|
+
configuration: RecoveryPlanExecutionStepConfiguration | undefined;
|
|
3233
|
+
/**
|
|
3234
|
+
* <p>Error details if the step failed.</p>
|
|
3235
|
+
* @public
|
|
3236
|
+
*/
|
|
3237
|
+
errorDetail?: ErrorDetail | undefined;
|
|
3238
|
+
}
|
|
3239
|
+
/**
|
|
3240
|
+
* @public
|
|
3241
|
+
*/
|
|
3242
|
+
export interface ListRecoveryPlanExecutionStepsResponse {
|
|
3243
|
+
/**
|
|
3244
|
+
* <p>The list of execution steps.</p>
|
|
3245
|
+
* @public
|
|
3246
|
+
*/
|
|
3247
|
+
recoveryPlanExecutionSteps: RecoveryPlanExecutionStepSummary[] | undefined;
|
|
3248
|
+
/**
|
|
3249
|
+
* <p>The token for the next page of results.</p>
|
|
3250
|
+
* @public
|
|
3251
|
+
*/
|
|
3252
|
+
nextToken?: string | undefined;
|
|
3253
|
+
}
|
|
3254
|
+
/**
|
|
3255
|
+
* @public
|
|
3256
|
+
*/
|
|
3257
|
+
export interface ListRecoveryPlansRequest {
|
|
3258
|
+
/**
|
|
3259
|
+
* <p>Maximum number of results to return.</p>
|
|
3260
|
+
* @public
|
|
3261
|
+
*/
|
|
3262
|
+
maxResults?: number | undefined;
|
|
3263
|
+
/**
|
|
3264
|
+
* <p>The token for the next page of results.</p>
|
|
3265
|
+
* @public
|
|
3266
|
+
*/
|
|
3267
|
+
nextToken?: string | undefined;
|
|
3268
|
+
}
|
|
3269
|
+
/**
|
|
3270
|
+
* <p>Summary information about a Recovery Plan.</p>
|
|
3271
|
+
* @public
|
|
3272
|
+
*/
|
|
3273
|
+
export interface RecoveryPlanSummary {
|
|
3274
|
+
/**
|
|
3275
|
+
* <p>The ARN of the Recovery Plan.</p>
|
|
3276
|
+
* @public
|
|
3277
|
+
*/
|
|
3278
|
+
recoveryPlanArn: string | undefined;
|
|
3279
|
+
/**
|
|
3280
|
+
* The name of a Recovery Plan.
|
|
3281
|
+
* @public
|
|
3282
|
+
*/
|
|
3283
|
+
name: string | undefined;
|
|
3284
|
+
/**
|
|
3285
|
+
* <p>The status of the Recovery Plan.</p>
|
|
3286
|
+
* @public
|
|
3287
|
+
*/
|
|
3288
|
+
status: RecoveryPlanStatus | undefined;
|
|
3289
|
+
/**
|
|
3290
|
+
* <p>The timestamp when the Recovery Plan was created.</p>
|
|
3291
|
+
* @public
|
|
3292
|
+
*/
|
|
3293
|
+
createdAt: string | undefined;
|
|
3294
|
+
/**
|
|
3295
|
+
* <p>The timestamp when the Recovery Plan was last updated.</p>
|
|
3296
|
+
* @public
|
|
3297
|
+
*/
|
|
3298
|
+
updatedAt: string | undefined;
|
|
3299
|
+
}
|
|
3300
|
+
/**
|
|
3301
|
+
* @public
|
|
3302
|
+
*/
|
|
3303
|
+
export interface ListRecoveryPlansResponse {
|
|
3304
|
+
/**
|
|
3305
|
+
* <p>The list of Recovery Plans.</p>
|
|
3306
|
+
* @public
|
|
3307
|
+
*/
|
|
3308
|
+
recoveryPlans: RecoveryPlanSummary[] | undefined;
|
|
3309
|
+
/**
|
|
3310
|
+
* <p>The token for the next page of results.</p>
|
|
3311
|
+
* @public
|
|
3312
|
+
*/
|
|
3313
|
+
nextToken?: string | undefined;
|
|
3314
|
+
}
|
|
3315
|
+
/**
|
|
3316
|
+
* @public
|
|
3317
|
+
*/
|
|
3318
|
+
export interface ListRecoveryPlanStepsRequest {
|
|
3319
|
+
/**
|
|
3320
|
+
* <p>The ARN of the Recovery Plan.</p>
|
|
3321
|
+
* @public
|
|
3322
|
+
*/
|
|
3323
|
+
recoveryPlanArn: string | undefined;
|
|
3324
|
+
/**
|
|
3325
|
+
* <p>Maximum number of results to return.</p>
|
|
3326
|
+
* @public
|
|
3327
|
+
*/
|
|
3328
|
+
maxResults?: number | undefined;
|
|
3329
|
+
/**
|
|
3330
|
+
* <p>The token for the next page of results.</p>
|
|
3331
|
+
* @public
|
|
3332
|
+
*/
|
|
3333
|
+
nextToken?: string | undefined;
|
|
3334
|
+
}
|
|
3335
|
+
/**
|
|
3336
|
+
* @public
|
|
3337
|
+
*/
|
|
3338
|
+
export interface ListRecoveryPlanStepsResponse {
|
|
3339
|
+
/**
|
|
3340
|
+
* <p>The list of Recovery Plan steps.</p>
|
|
3341
|
+
* @public
|
|
3342
|
+
*/
|
|
3343
|
+
recoveryPlanSteps: RecoveryPlanStep[] | undefined;
|
|
3344
|
+
/**
|
|
3345
|
+
* <p>The token for the next page of results.</p>
|
|
3346
|
+
* @public
|
|
3347
|
+
*/
|
|
3348
|
+
nextToken?: string | undefined;
|
|
3349
|
+
}
|
|
2500
3350
|
/**
|
|
2501
3351
|
* @public
|
|
2502
3352
|
*/
|
|
@@ -2817,6 +3667,87 @@ export interface UpdateFailbackReplicationConfigurationRequest {
|
|
|
2817
3667
|
*/
|
|
2818
3668
|
internetProtocol?: InternetProtocol | undefined;
|
|
2819
3669
|
}
|
|
3670
|
+
/**
|
|
3671
|
+
* <p>A source server with a specific recovery snapshot for plan execution.</p>
|
|
3672
|
+
* @public
|
|
3673
|
+
*/
|
|
3674
|
+
export interface RecoveryPlanExecutionSourceServer {
|
|
3675
|
+
/**
|
|
3676
|
+
* <p>The ID of the source server.</p>
|
|
3677
|
+
* @public
|
|
3678
|
+
*/
|
|
3679
|
+
sourceServerID: string | undefined;
|
|
3680
|
+
/**
|
|
3681
|
+
* <p>The ID of the recovery snapshot to use.</p>
|
|
3682
|
+
* @public
|
|
3683
|
+
*/
|
|
3684
|
+
recoverySnapshotID: string | undefined;
|
|
3685
|
+
}
|
|
3686
|
+
/**
|
|
3687
|
+
* @public
|
|
3688
|
+
*/
|
|
3689
|
+
export interface StartRecoveryPlanExecutionRequest {
|
|
3690
|
+
/**
|
|
3691
|
+
* <p>The ARN of the Recovery Plan to execute.</p>
|
|
3692
|
+
* @public
|
|
3693
|
+
*/
|
|
3694
|
+
recoveryPlanArn: string | undefined;
|
|
3695
|
+
/**
|
|
3696
|
+
* <p>The execution mode (<code>DRILL</code> or <code>RECOVERY</code>).</p>
|
|
3697
|
+
* @public
|
|
3698
|
+
*/
|
|
3699
|
+
mode: RecoveryPlanExecutionMode | undefined;
|
|
3700
|
+
/**
|
|
3701
|
+
* <p>A unique string provided to ensure request idempotency.</p>
|
|
3702
|
+
* @public
|
|
3703
|
+
*/
|
|
3704
|
+
clientToken?: string | undefined;
|
|
3705
|
+
/**
|
|
3706
|
+
* <p>Optional list of source servers with specific recovery snapshots. If not provided, the latest snapshot is used for each server.</p>
|
|
3707
|
+
* @public
|
|
3708
|
+
*/
|
|
3709
|
+
sourceServers?: RecoveryPlanExecutionSourceServer[] | undefined;
|
|
3710
|
+
/**
|
|
3711
|
+
* <p>The tags to apply to the Recovery Plan execution.</p>
|
|
3712
|
+
* @public
|
|
3713
|
+
*/
|
|
3714
|
+
tags?: Record<string, string> | undefined;
|
|
3715
|
+
}
|
|
3716
|
+
/**
|
|
3717
|
+
* @public
|
|
3718
|
+
*/
|
|
3719
|
+
export interface StartRecoveryPlanExecutionResponse {
|
|
3720
|
+
/**
|
|
3721
|
+
* <p>The started Recovery Plan execution.</p>
|
|
3722
|
+
* @public
|
|
3723
|
+
*/
|
|
3724
|
+
recoveryPlanExecution: RecoveryPlanExecution | undefined;
|
|
3725
|
+
}
|
|
3726
|
+
/**
|
|
3727
|
+
* @public
|
|
3728
|
+
*/
|
|
3729
|
+
export interface ReorderRecoveryPlanStepsRequest {
|
|
3730
|
+
/**
|
|
3731
|
+
* <p>The ARN of the Recovery Plan.</p>
|
|
3732
|
+
* @public
|
|
3733
|
+
*/
|
|
3734
|
+
recoveryPlanArn: string | undefined;
|
|
3735
|
+
/**
|
|
3736
|
+
* <p>Ordered list of all step ARNs representing the desired sequence.</p>
|
|
3737
|
+
* @public
|
|
3738
|
+
*/
|
|
3739
|
+
orderedStepArns: string[] | undefined;
|
|
3740
|
+
}
|
|
3741
|
+
/**
|
|
3742
|
+
* @public
|
|
3743
|
+
*/
|
|
3744
|
+
export interface ReorderRecoveryPlanStepsResponse {
|
|
3745
|
+
/**
|
|
3746
|
+
* <p>The steps with updated order.</p>
|
|
3747
|
+
* @public
|
|
3748
|
+
*/
|
|
3749
|
+
recoveryPlanSteps: RecoveryPlanStep[] | undefined;
|
|
3750
|
+
}
|
|
2820
3751
|
/**
|
|
2821
3752
|
* @public
|
|
2822
3753
|
*/
|
|
@@ -2907,6 +3838,26 @@ export interface UpdateReplicationConfigurationTemplateRequest {
|
|
|
2907
3838
|
*/
|
|
2908
3839
|
internetProtocol?: InternetProtocol | undefined;
|
|
2909
3840
|
}
|
|
3841
|
+
/**
|
|
3842
|
+
* @public
|
|
3843
|
+
*/
|
|
3844
|
+
export interface RetryRecoveryPlanExecutionStepRequest {
|
|
3845
|
+
/**
|
|
3846
|
+
* <p>The ARN of the execution step to retry.</p>
|
|
3847
|
+
* @public
|
|
3848
|
+
*/
|
|
3849
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
3850
|
+
}
|
|
3851
|
+
/**
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
export interface RetryRecoveryPlanExecutionStepResponse {
|
|
3855
|
+
/**
|
|
3856
|
+
* A Recovery Plan Execution Step resource.
|
|
3857
|
+
* @public
|
|
3858
|
+
*/
|
|
3859
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
3860
|
+
}
|
|
2910
3861
|
/**
|
|
2911
3862
|
* @public
|
|
2912
3863
|
*/
|
|
@@ -3512,3 +4463,99 @@ export interface UntagResourceRequest {
|
|
|
3512
4463
|
*/
|
|
3513
4464
|
tagKeys: string[] | undefined;
|
|
3514
4465
|
}
|
|
4466
|
+
/**
|
|
4467
|
+
* @public
|
|
4468
|
+
*/
|
|
4469
|
+
export interface UpdateRecoveryPlanRequest {
|
|
4470
|
+
/**
|
|
4471
|
+
* <p>The ARN of the Recovery Plan to update.</p>
|
|
4472
|
+
* @public
|
|
4473
|
+
*/
|
|
4474
|
+
recoveryPlanArn: string | undefined;
|
|
4475
|
+
/**
|
|
4476
|
+
* The name of a Recovery Plan.
|
|
4477
|
+
* @public
|
|
4478
|
+
*/
|
|
4479
|
+
name?: string | undefined;
|
|
4480
|
+
/**
|
|
4481
|
+
* The description of a Recovery Plan.
|
|
4482
|
+
* @public
|
|
4483
|
+
*/
|
|
4484
|
+
description?: string | undefined;
|
|
4485
|
+
}
|
|
4486
|
+
/**
|
|
4487
|
+
* @public
|
|
4488
|
+
*/
|
|
4489
|
+
export interface UpdateRecoveryPlanResponse {
|
|
4490
|
+
/**
|
|
4491
|
+
* A Recovery Plan resource.
|
|
4492
|
+
* @public
|
|
4493
|
+
*/
|
|
4494
|
+
recoveryPlan: RecoveryPlan | undefined;
|
|
4495
|
+
}
|
|
4496
|
+
/**
|
|
4497
|
+
* @public
|
|
4498
|
+
*/
|
|
4499
|
+
export interface UpdateRecoveryPlanExecutionStepRequest {
|
|
4500
|
+
/**
|
|
4501
|
+
* <p>The ARN of the execution step to update.</p>
|
|
4502
|
+
* @public
|
|
4503
|
+
*/
|
|
4504
|
+
recoveryPlanExecutionStepArn: string | undefined;
|
|
4505
|
+
/**
|
|
4506
|
+
* Only SKIPPED is accepted. Step must be in NOT_STARTED or FAILED status.
|
|
4507
|
+
* @public
|
|
4508
|
+
*/
|
|
4509
|
+
status?: RecoveryPlanExecutionStepStatus | undefined;
|
|
4510
|
+
/**
|
|
4511
|
+
* Full replacement of the server list. Only allowed when the step is in NOT_STARTED status (Server type steps only).
|
|
4512
|
+
* @public
|
|
4513
|
+
*/
|
|
4514
|
+
servers?: RecoveryPlanServer[] | undefined;
|
|
4515
|
+
/**
|
|
4516
|
+
* Updated wait duration. Only allowed when the step is in NOT_STARTED status (Wait type steps only).
|
|
4517
|
+
* @public
|
|
4518
|
+
*/
|
|
4519
|
+
waitDurationMinutes?: number | undefined;
|
|
4520
|
+
}
|
|
4521
|
+
/**
|
|
4522
|
+
* @public
|
|
4523
|
+
*/
|
|
4524
|
+
export interface UpdateRecoveryPlanExecutionStepResponse {
|
|
4525
|
+
/**
|
|
4526
|
+
* A Recovery Plan Execution Step resource.
|
|
4527
|
+
* @public
|
|
4528
|
+
*/
|
|
4529
|
+
recoveryPlanExecutionStep: RecoveryPlanExecutionStep | undefined;
|
|
4530
|
+
}
|
|
4531
|
+
/**
|
|
4532
|
+
* @public
|
|
4533
|
+
*/
|
|
4534
|
+
export interface UpdateRecoveryPlanStepRequest {
|
|
4535
|
+
/**
|
|
4536
|
+
* <p>The ARN of the Recovery Plan step to update.</p>
|
|
4537
|
+
* @public
|
|
4538
|
+
*/
|
|
4539
|
+
recoveryPlanStepArn: string | undefined;
|
|
4540
|
+
/**
|
|
4541
|
+
* The name of a Recovery Plan Step.
|
|
4542
|
+
* @public
|
|
4543
|
+
*/
|
|
4544
|
+
stepName?: string | undefined;
|
|
4545
|
+
/**
|
|
4546
|
+
* Type-specific configuration for a recovery plan step.
|
|
4547
|
+
* Exactly one member must be set.
|
|
4548
|
+
* @public
|
|
4549
|
+
*/
|
|
4550
|
+
configuration?: RecoveryPlanStepConfiguration | undefined;
|
|
4551
|
+
}
|
|
4552
|
+
/**
|
|
4553
|
+
* @public
|
|
4554
|
+
*/
|
|
4555
|
+
export interface UpdateRecoveryPlanStepResponse {
|
|
4556
|
+
/**
|
|
4557
|
+
* A Recovery Plan Step resource.
|
|
4558
|
+
* @public
|
|
4559
|
+
*/
|
|
4560
|
+
recoveryPlanStep: RecoveryPlanStep | undefined;
|
|
4561
|
+
}
|