@aws-sdk/client-drs 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Drs.d.ts +36 -0
- package/dist-types/DrsClient.d.ts +24 -4
- package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +16 -0
- package/dist-types/commands/CreateReplicationConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRecoveryInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSourceServerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobLogItemsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRecoveryInstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRecoverySnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSourceServersCommand.d.ts +16 -0
- package/dist-types/commands/DisconnectRecoveryInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DisconnectSourceServerCommand.d.ts +16 -0
- package/dist-types/commands/GetFailbackReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetLaunchConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/InitializeServiceCommand.d.ts +16 -0
- package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +16 -0
- package/dist-types/commands/ListStagingAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RetryDataReplicationCommand.d.ts +16 -0
- package/dist-types/commands/ReverseReplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartFailbackLaunchCommand.d.ts +16 -0
- package/dist-types/commands/StartRecoveryCommand.d.ts +16 -0
- package/dist-types/commands/StartReplicationCommand.d.ts +16 -0
- package/dist-types/commands/StopFailbackCommand.d.ts +16 -0
- package/dist-types/commands/StopReplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLaunchConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/models/DrsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +320 -0
- package/dist-types/pagination/DescribeJobLogItemsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeRecoveryInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeRecoverySnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeReplicationConfigurationTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeSourceServersPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DrsServiceException as __BaseException } from "./DrsServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
17
|
+
* @public
|
|
16
18
|
* <p>AWS account.</p>
|
|
17
19
|
*/
|
|
18
20
|
export interface Account {
|
|
@@ -22,6 +24,7 @@ export interface Account {
|
|
|
22
24
|
accountID?: string;
|
|
23
25
|
}
|
|
24
26
|
/**
|
|
27
|
+
* @public
|
|
25
28
|
* <p>The request could not be completed due to a conflict with the current state of the target resource.</p>
|
|
26
29
|
*/
|
|
27
30
|
export declare class ConflictException extends __BaseException {
|
|
@@ -42,6 +45,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
42
45
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
43
46
|
}
|
|
44
47
|
/**
|
|
48
|
+
* @public
|
|
45
49
|
* <p>Properties of a conversion job</p>
|
|
46
50
|
*/
|
|
47
51
|
export interface ConversionProperties {
|
|
@@ -67,6 +71,7 @@ export interface ConversionProperties {
|
|
|
67
71
|
volumeToVolumeSize?: Record<string, number>;
|
|
68
72
|
}
|
|
69
73
|
/**
|
|
74
|
+
* @public
|
|
70
75
|
* <p>Information about a server's CPU.</p>
|
|
71
76
|
*/
|
|
72
77
|
export interface CPU {
|
|
@@ -79,6 +84,9 @@ export interface CPU {
|
|
|
79
84
|
*/
|
|
80
85
|
modelName?: string;
|
|
81
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
82
90
|
export interface CreateExtendedSourceServerRequest {
|
|
83
91
|
/**
|
|
84
92
|
* <p>This defines the ARN of the source server in staging Account based on which you want to create an extended source server.</p>
|
|
@@ -89,6 +97,9 @@ export interface CreateExtendedSourceServerRequest {
|
|
|
89
97
|
*/
|
|
90
98
|
tags?: Record<string, string>;
|
|
91
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
92
103
|
export declare enum DataReplicationErrorString {
|
|
93
104
|
AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
|
|
94
105
|
FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
|
|
@@ -106,6 +117,7 @@ export declare enum DataReplicationErrorString {
|
|
|
106
117
|
UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
|
|
107
118
|
}
|
|
108
119
|
/**
|
|
120
|
+
* @public
|
|
109
121
|
* <p>Error in data replication.</p>
|
|
110
122
|
*/
|
|
111
123
|
export interface DataReplicationError {
|
|
@@ -118,6 +130,9 @@ export interface DataReplicationError {
|
|
|
118
130
|
*/
|
|
119
131
|
rawError?: string;
|
|
120
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
121
136
|
export declare enum DataReplicationInitiationStepName {
|
|
122
137
|
ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
|
|
123
138
|
AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
|
|
@@ -131,6 +146,9 @@ export declare enum DataReplicationInitiationStepName {
|
|
|
131
146
|
START_DATA_TRANSFER = "START_DATA_TRANSFER",
|
|
132
147
|
WAIT = "WAIT"
|
|
133
148
|
}
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
134
152
|
export declare enum DataReplicationInitiationStepStatus {
|
|
135
153
|
FAILED = "FAILED",
|
|
136
154
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -139,6 +157,7 @@ export declare enum DataReplicationInitiationStepStatus {
|
|
|
139
157
|
SUCCEEDED = "SUCCEEDED"
|
|
140
158
|
}
|
|
141
159
|
/**
|
|
160
|
+
* @public
|
|
142
161
|
* <p>Data replication initiation step.</p>
|
|
143
162
|
*/
|
|
144
163
|
export interface DataReplicationInitiationStep {
|
|
@@ -152,6 +171,7 @@ export interface DataReplicationInitiationStep {
|
|
|
152
171
|
status?: DataReplicationInitiationStepStatus | string;
|
|
153
172
|
}
|
|
154
173
|
/**
|
|
174
|
+
* @public
|
|
155
175
|
* <p>Data replication initiation.</p>
|
|
156
176
|
*/
|
|
157
177
|
export interface DataReplicationInitiation {
|
|
@@ -168,6 +188,9 @@ export interface DataReplicationInitiation {
|
|
|
168
188
|
*/
|
|
169
189
|
steps?: DataReplicationInitiationStep[];
|
|
170
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
171
194
|
export declare enum DataReplicationState {
|
|
172
195
|
BACKLOG = "BACKLOG",
|
|
173
196
|
CONTINUOUS = "CONTINUOUS",
|
|
@@ -181,6 +204,7 @@ export declare enum DataReplicationState {
|
|
|
181
204
|
STOPPED = "STOPPED"
|
|
182
205
|
}
|
|
183
206
|
/**
|
|
207
|
+
* @public
|
|
184
208
|
* <p>A disk that should be replicated.</p>
|
|
185
209
|
*/
|
|
186
210
|
export interface DataReplicationInfoReplicatedDisk {
|
|
@@ -206,6 +230,7 @@ export interface DataReplicationInfoReplicatedDisk {
|
|
|
206
230
|
backloggedStorageBytes?: number;
|
|
207
231
|
}
|
|
208
232
|
/**
|
|
233
|
+
* @public
|
|
209
234
|
* <p>Information about Data Replication</p>
|
|
210
235
|
*/
|
|
211
236
|
export interface DataReplicationInfo {
|
|
@@ -238,17 +263,24 @@ export interface DataReplicationInfo {
|
|
|
238
263
|
*/
|
|
239
264
|
stagingAvailabilityZone?: string;
|
|
240
265
|
}
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
*/
|
|
241
269
|
export declare enum LastLaunchResult {
|
|
242
270
|
FAILED = "FAILED",
|
|
243
271
|
NOT_STARTED = "NOT_STARTED",
|
|
244
272
|
PENDING = "PENDING",
|
|
245
273
|
SUCCEEDED = "SUCCEEDED"
|
|
246
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
247
278
|
export declare enum LastLaunchType {
|
|
248
279
|
DRILL = "DRILL",
|
|
249
280
|
RECOVERY = "RECOVERY"
|
|
250
281
|
}
|
|
251
282
|
/**
|
|
283
|
+
* @public
|
|
252
284
|
* <p>An object containing information regarding the initiation of the last launch of a Source Server.</p>
|
|
253
285
|
*/
|
|
254
286
|
export interface LifeCycleLastLaunchInitiated {
|
|
@@ -265,6 +297,9 @@ export interface LifeCycleLastLaunchInitiated {
|
|
|
265
297
|
*/
|
|
266
298
|
type?: LastLaunchType | string;
|
|
267
299
|
}
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
268
303
|
export declare enum LaunchStatus {
|
|
269
304
|
FAILED = "FAILED",
|
|
270
305
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -273,6 +308,7 @@ export declare enum LaunchStatus {
|
|
|
273
308
|
TERMINATED = "TERMINATED"
|
|
274
309
|
}
|
|
275
310
|
/**
|
|
311
|
+
* @public
|
|
276
312
|
* <p>An object containing information regarding the last launch of a Source Server.</p>
|
|
277
313
|
*/
|
|
278
314
|
export interface LifeCycleLastLaunch {
|
|
@@ -286,6 +322,7 @@ export interface LifeCycleLastLaunch {
|
|
|
286
322
|
status?: LaunchStatus | string;
|
|
287
323
|
}
|
|
288
324
|
/**
|
|
325
|
+
* @public
|
|
289
326
|
* <p>An object representing the Source Server Lifecycle.</p>
|
|
290
327
|
*/
|
|
291
328
|
export interface LifeCycle {
|
|
@@ -310,11 +347,15 @@ export interface LifeCycle {
|
|
|
310
347
|
*/
|
|
311
348
|
lastLaunch?: LifeCycleLastLaunch;
|
|
312
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
313
353
|
export declare enum ReplicationDirection {
|
|
314
354
|
FAILBACK = "FAILBACK",
|
|
315
355
|
FAILOVER = "FAILOVER"
|
|
316
356
|
}
|
|
317
357
|
/**
|
|
358
|
+
* @public
|
|
318
359
|
* <p>Properties of the cloud environment where this Source Server originated from.</p>
|
|
319
360
|
*/
|
|
320
361
|
export interface SourceCloudProperties {
|
|
@@ -332,6 +373,7 @@ export interface SourceCloudProperties {
|
|
|
332
373
|
originAvailabilityZone?: string;
|
|
333
374
|
}
|
|
334
375
|
/**
|
|
376
|
+
* @public
|
|
335
377
|
* <p>An object representing a data storage device on a server.</p>
|
|
336
378
|
*/
|
|
337
379
|
export interface Disk {
|
|
@@ -345,6 +387,7 @@ export interface Disk {
|
|
|
345
387
|
bytes?: number;
|
|
346
388
|
}
|
|
347
389
|
/**
|
|
390
|
+
* @public
|
|
348
391
|
* <p>Hints used to uniquely identify a machine.</p>
|
|
349
392
|
*/
|
|
350
393
|
export interface IdentificationHints {
|
|
@@ -366,6 +409,7 @@ export interface IdentificationHints {
|
|
|
366
409
|
awsInstanceID?: string;
|
|
367
410
|
}
|
|
368
411
|
/**
|
|
412
|
+
* @public
|
|
369
413
|
* <p>Network interface.</p>
|
|
370
414
|
*/
|
|
371
415
|
export interface NetworkInterface {
|
|
@@ -383,6 +427,7 @@ export interface NetworkInterface {
|
|
|
383
427
|
isPrimary?: boolean;
|
|
384
428
|
}
|
|
385
429
|
/**
|
|
430
|
+
* @public
|
|
386
431
|
* <p>Operating System.</p>
|
|
387
432
|
*/
|
|
388
433
|
export interface OS {
|
|
@@ -392,6 +437,7 @@ export interface OS {
|
|
|
392
437
|
fullString?: string;
|
|
393
438
|
}
|
|
394
439
|
/**
|
|
440
|
+
* @public
|
|
395
441
|
* <p>Properties of the Source Server machine.</p>
|
|
396
442
|
*/
|
|
397
443
|
export interface SourceProperties {
|
|
@@ -428,12 +474,16 @@ export interface SourceProperties {
|
|
|
428
474
|
*/
|
|
429
475
|
os?: OS;
|
|
430
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
431
480
|
export declare enum ExtensionStatus {
|
|
432
481
|
EXTENDED = "EXTENDED",
|
|
433
482
|
EXTENSION_ERROR = "EXTENSION_ERROR",
|
|
434
483
|
NOT_EXTENDED = "NOT_EXTENDED"
|
|
435
484
|
}
|
|
436
485
|
/**
|
|
486
|
+
* @public
|
|
437
487
|
* <p>Staging information related to source server.</p>
|
|
438
488
|
*/
|
|
439
489
|
export interface StagingArea {
|
|
@@ -457,6 +507,9 @@ export interface StagingArea {
|
|
|
457
507
|
*/
|
|
458
508
|
errorMessage?: string;
|
|
459
509
|
}
|
|
510
|
+
/**
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
460
513
|
export interface SourceServer {
|
|
461
514
|
/**
|
|
462
515
|
* <p>The ID of the Source Server.</p>
|
|
@@ -507,6 +560,9 @@ export interface SourceServer {
|
|
|
507
560
|
*/
|
|
508
561
|
reversedDirectionSourceServerArn?: string;
|
|
509
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
510
566
|
export interface CreateExtendedSourceServerResponse {
|
|
511
567
|
/**
|
|
512
568
|
* <p>Created extended source server.</p>
|
|
@@ -514,6 +570,7 @@ export interface CreateExtendedSourceServerResponse {
|
|
|
514
570
|
sourceServer?: SourceServer;
|
|
515
571
|
}
|
|
516
572
|
/**
|
|
573
|
+
* @public
|
|
517
574
|
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
518
575
|
*/
|
|
519
576
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -529,6 +586,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
529
586
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
530
587
|
}
|
|
531
588
|
/**
|
|
589
|
+
* @public
|
|
532
590
|
* <p>The resource for this operation was not found.</p>
|
|
533
591
|
*/
|
|
534
592
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -549,6 +607,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
549
607
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
550
608
|
}
|
|
551
609
|
/**
|
|
610
|
+
* @public
|
|
552
611
|
* <p>The request could not be completed because its exceeded the service quota.</p>
|
|
553
612
|
*/
|
|
554
613
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -577,6 +636,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
577
636
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
578
637
|
}
|
|
579
638
|
/**
|
|
639
|
+
* @public
|
|
580
640
|
* <p>The request was denied due to request throttling.</p>
|
|
581
641
|
*/
|
|
582
642
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -600,6 +660,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
600
660
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
601
661
|
}
|
|
602
662
|
/**
|
|
663
|
+
* @public
|
|
603
664
|
* <p>The account performing the request has not been initialized.</p>
|
|
604
665
|
*/
|
|
605
666
|
export declare class UninitializedAccountException extends __BaseException {
|
|
@@ -612,6 +673,7 @@ export declare class UninitializedAccountException extends __BaseException {
|
|
|
612
673
|
constructor(opts: __ExceptionOptionType<UninitializedAccountException, __BaseException>);
|
|
613
674
|
}
|
|
614
675
|
/**
|
|
676
|
+
* @public
|
|
615
677
|
* <p>Validate exception field.</p>
|
|
616
678
|
*/
|
|
617
679
|
export interface ValidationExceptionField {
|
|
@@ -624,6 +686,9 @@ export interface ValidationExceptionField {
|
|
|
624
686
|
*/
|
|
625
687
|
message?: string;
|
|
626
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
627
692
|
export declare enum ValidationExceptionReason {
|
|
628
693
|
CANNOT_PARSE = "cannotParse",
|
|
629
694
|
FIELD_VALIDATION_FAILED = "fieldValidationFailed",
|
|
@@ -631,6 +696,7 @@ export declare enum ValidationExceptionReason {
|
|
|
631
696
|
UNKNOWN_OPERATION = "unknownOperation"
|
|
632
697
|
}
|
|
633
698
|
/**
|
|
699
|
+
* @public
|
|
634
700
|
* <p>The input fails to satisfy the constraints specified by the AWS service.</p>
|
|
635
701
|
*/
|
|
636
702
|
export declare class ValidationException extends __BaseException {
|
|
@@ -650,26 +716,39 @@ export declare class ValidationException extends __BaseException {
|
|
|
650
716
|
*/
|
|
651
717
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
652
718
|
}
|
|
719
|
+
/**
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
653
722
|
export declare enum ReplicationConfigurationDataPlaneRouting {
|
|
654
723
|
PRIVATE_IP = "PRIVATE_IP",
|
|
655
724
|
PUBLIC_IP = "PUBLIC_IP"
|
|
656
725
|
}
|
|
726
|
+
/**
|
|
727
|
+
* @public
|
|
728
|
+
*/
|
|
657
729
|
export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
|
|
658
730
|
AUTO = "AUTO",
|
|
659
731
|
GP2 = "GP2",
|
|
660
732
|
GP3 = "GP3",
|
|
661
733
|
ST1 = "ST1"
|
|
662
734
|
}
|
|
735
|
+
/**
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
663
738
|
export declare enum ReplicationConfigurationEbsEncryption {
|
|
664
739
|
CUSTOM = "CUSTOM",
|
|
665
740
|
DEFAULT = "DEFAULT"
|
|
666
741
|
}
|
|
742
|
+
/**
|
|
743
|
+
* @public
|
|
744
|
+
*/
|
|
667
745
|
export declare enum PITPolicyRuleUnits {
|
|
668
746
|
DAY = "DAY",
|
|
669
747
|
HOUR = "HOUR",
|
|
670
748
|
MINUTE = "MINUTE"
|
|
671
749
|
}
|
|
672
750
|
/**
|
|
751
|
+
* @public
|
|
673
752
|
* <p>A rule in the Point in Time (PIT) policy representing when to take snapshots and how long to retain them for.</p>
|
|
674
753
|
*/
|
|
675
754
|
export interface PITPolicyRule {
|
|
@@ -694,6 +773,9 @@ export interface PITPolicyRule {
|
|
|
694
773
|
*/
|
|
695
774
|
enabled?: boolean;
|
|
696
775
|
}
|
|
776
|
+
/**
|
|
777
|
+
* @public
|
|
778
|
+
*/
|
|
697
779
|
export interface CreateReplicationConfigurationTemplateRequest {
|
|
698
780
|
/**
|
|
699
781
|
* <p>The subnet to be used by the replication staging area.</p>
|
|
@@ -752,6 +834,9 @@ export interface CreateReplicationConfigurationTemplateRequest {
|
|
|
752
834
|
*/
|
|
753
835
|
tags?: Record<string, string>;
|
|
754
836
|
}
|
|
837
|
+
/**
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
755
840
|
export interface ReplicationConfigurationTemplate {
|
|
756
841
|
/**
|
|
757
842
|
* <p>The Replication Configuration Template ID.</p>
|
|
@@ -818,36 +903,60 @@ export interface ReplicationConfigurationTemplate {
|
|
|
818
903
|
*/
|
|
819
904
|
pitPolicy?: PITPolicyRule[];
|
|
820
905
|
}
|
|
906
|
+
/**
|
|
907
|
+
* @public
|
|
908
|
+
*/
|
|
821
909
|
export interface DeleteJobRequest {
|
|
822
910
|
/**
|
|
823
911
|
* <p>The ID of the Job to be deleted.</p>
|
|
824
912
|
*/
|
|
825
913
|
jobID: string | undefined;
|
|
826
914
|
}
|
|
915
|
+
/**
|
|
916
|
+
* @public
|
|
917
|
+
*/
|
|
827
918
|
export interface DeleteJobResponse {
|
|
828
919
|
}
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
*/
|
|
829
923
|
export interface DeleteRecoveryInstanceRequest {
|
|
830
924
|
/**
|
|
831
925
|
* <p>The ID of the Recovery Instance to be deleted.</p>
|
|
832
926
|
*/
|
|
833
927
|
recoveryInstanceID: string | undefined;
|
|
834
928
|
}
|
|
929
|
+
/**
|
|
930
|
+
* @public
|
|
931
|
+
*/
|
|
835
932
|
export interface DeleteReplicationConfigurationTemplateRequest {
|
|
836
933
|
/**
|
|
837
934
|
* <p>The ID of the Replication Configuration Template to be deleted.</p>
|
|
838
935
|
*/
|
|
839
936
|
replicationConfigurationTemplateID: string | undefined;
|
|
840
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
841
941
|
export interface DeleteReplicationConfigurationTemplateResponse {
|
|
842
942
|
}
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
843
946
|
export interface DeleteSourceServerRequest {
|
|
844
947
|
/**
|
|
845
948
|
* <p>The ID of the Source Server to be deleted.</p>
|
|
846
949
|
*/
|
|
847
950
|
sourceServerID: string | undefined;
|
|
848
951
|
}
|
|
952
|
+
/**
|
|
953
|
+
* @public
|
|
954
|
+
*/
|
|
849
955
|
export interface DeleteSourceServerResponse {
|
|
850
956
|
}
|
|
957
|
+
/**
|
|
958
|
+
* @public
|
|
959
|
+
*/
|
|
851
960
|
export interface DescribeJobLogItemsRequest {
|
|
852
961
|
/**
|
|
853
962
|
* <p>The ID of the Job for which Job log items will be retrieved.</p>
|
|
@@ -862,6 +971,9 @@ export interface DescribeJobLogItemsRequest {
|
|
|
862
971
|
*/
|
|
863
972
|
nextToken?: string;
|
|
864
973
|
}
|
|
974
|
+
/**
|
|
975
|
+
* @public
|
|
976
|
+
*/
|
|
865
977
|
export declare enum JobLogEvent {
|
|
866
978
|
CLEANUP_END = "CLEANUP_END",
|
|
867
979
|
CLEANUP_FAIL = "CLEANUP_FAIL",
|
|
@@ -882,6 +994,7 @@ export declare enum JobLogEvent {
|
|
|
882
994
|
USING_PREVIOUS_SNAPSHOT_FAILED = "USING_PREVIOUS_SNAPSHOT_FAILED"
|
|
883
995
|
}
|
|
884
996
|
/**
|
|
997
|
+
* @public
|
|
885
998
|
* <p>Metadata associated with a Job log.</p>
|
|
886
999
|
*/
|
|
887
1000
|
export interface JobLogEventData {
|
|
@@ -907,6 +1020,7 @@ export interface JobLogEventData {
|
|
|
907
1020
|
conversionProperties?: ConversionProperties;
|
|
908
1021
|
}
|
|
909
1022
|
/**
|
|
1023
|
+
* @public
|
|
910
1024
|
* <p>A log outputted by a Job.</p>
|
|
911
1025
|
*/
|
|
912
1026
|
export interface JobLog {
|
|
@@ -923,6 +1037,9 @@ export interface JobLog {
|
|
|
923
1037
|
*/
|
|
924
1038
|
eventData?: JobLogEventData;
|
|
925
1039
|
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @public
|
|
1042
|
+
*/
|
|
926
1043
|
export interface DescribeJobLogItemsResponse {
|
|
927
1044
|
/**
|
|
928
1045
|
* <p>An array of Job log items.</p>
|
|
@@ -934,6 +1051,7 @@ export interface DescribeJobLogItemsResponse {
|
|
|
934
1051
|
nextToken?: string;
|
|
935
1052
|
}
|
|
936
1053
|
/**
|
|
1054
|
+
* @public
|
|
937
1055
|
* <p>A set of filters by which to return Jobs.</p>
|
|
938
1056
|
*/
|
|
939
1057
|
export interface DescribeJobsRequestFilters {
|
|
@@ -950,6 +1068,9 @@ export interface DescribeJobsRequestFilters {
|
|
|
950
1068
|
*/
|
|
951
1069
|
toDate?: string;
|
|
952
1070
|
}
|
|
1071
|
+
/**
|
|
1072
|
+
* @public
|
|
1073
|
+
*/
|
|
953
1074
|
export interface DescribeJobsRequest {
|
|
954
1075
|
/**
|
|
955
1076
|
* <p>A set of filters by which to return Jobs.</p>
|
|
@@ -964,6 +1085,9 @@ export interface DescribeJobsRequest {
|
|
|
964
1085
|
*/
|
|
965
1086
|
nextToken?: string;
|
|
966
1087
|
}
|
|
1088
|
+
/**
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
967
1091
|
export declare enum InitiatedBy {
|
|
968
1092
|
DIAGNOSTIC = "DIAGNOSTIC",
|
|
969
1093
|
FAILBACK = "FAILBACK",
|
|
@@ -973,6 +1097,7 @@ export declare enum InitiatedBy {
|
|
|
973
1097
|
TERMINATE_RECOVERY_INSTANCES = "TERMINATE_RECOVERY_INSTANCES"
|
|
974
1098
|
}
|
|
975
1099
|
/**
|
|
1100
|
+
* @public
|
|
976
1101
|
* <p>Represents a server participating in an asynchronous Job.</p>
|
|
977
1102
|
*/
|
|
978
1103
|
export interface ParticipatingServer {
|
|
@@ -989,17 +1114,24 @@ export interface ParticipatingServer {
|
|
|
989
1114
|
*/
|
|
990
1115
|
launchStatus?: LaunchStatus | string;
|
|
991
1116
|
}
|
|
1117
|
+
/**
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
992
1120
|
export declare enum JobStatus {
|
|
993
1121
|
COMPLETED = "COMPLETED",
|
|
994
1122
|
PENDING = "PENDING",
|
|
995
1123
|
STARTED = "STARTED"
|
|
996
1124
|
}
|
|
1125
|
+
/**
|
|
1126
|
+
* @public
|
|
1127
|
+
*/
|
|
997
1128
|
export declare enum JobType {
|
|
998
1129
|
CREATE_CONVERTED_SNAPSHOT = "CREATE_CONVERTED_SNAPSHOT",
|
|
999
1130
|
LAUNCH = "LAUNCH",
|
|
1000
1131
|
TERMINATE = "TERMINATE"
|
|
1001
1132
|
}
|
|
1002
1133
|
/**
|
|
1134
|
+
* @public
|
|
1003
1135
|
* <p>A job is an asynchronous workflow.</p>
|
|
1004
1136
|
*/
|
|
1005
1137
|
export interface Job {
|
|
@@ -1040,6 +1172,9 @@ export interface Job {
|
|
|
1040
1172
|
*/
|
|
1041
1173
|
tags?: Record<string, string>;
|
|
1042
1174
|
}
|
|
1175
|
+
/**
|
|
1176
|
+
* @public
|
|
1177
|
+
*/
|
|
1043
1178
|
export interface DescribeJobsResponse {
|
|
1044
1179
|
/**
|
|
1045
1180
|
* <p>An array of Jobs.</p>
|
|
@@ -1051,6 +1186,7 @@ export interface DescribeJobsResponse {
|
|
|
1051
1186
|
nextToken?: string;
|
|
1052
1187
|
}
|
|
1053
1188
|
/**
|
|
1189
|
+
* @public
|
|
1054
1190
|
* <p>A set of filters by which to return Recovery Instances.</p>
|
|
1055
1191
|
*/
|
|
1056
1192
|
export interface DescribeRecoveryInstancesRequestFilters {
|
|
@@ -1063,6 +1199,9 @@ export interface DescribeRecoveryInstancesRequestFilters {
|
|
|
1063
1199
|
*/
|
|
1064
1200
|
sourceServerIDs?: string[];
|
|
1065
1201
|
}
|
|
1202
|
+
/**
|
|
1203
|
+
* @public
|
|
1204
|
+
*/
|
|
1066
1205
|
export interface DescribeRecoveryInstancesRequest {
|
|
1067
1206
|
/**
|
|
1068
1207
|
* <p>A set of filters by which to return Recovery Instances.</p>
|
|
@@ -1077,6 +1216,9 @@ export interface DescribeRecoveryInstancesRequest {
|
|
|
1077
1216
|
*/
|
|
1078
1217
|
nextToken?: string;
|
|
1079
1218
|
}
|
|
1219
|
+
/**
|
|
1220
|
+
* @public
|
|
1221
|
+
*/
|
|
1080
1222
|
export declare enum FailbackReplicationError {
|
|
1081
1223
|
AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
|
|
1082
1224
|
FAILBACK_CLIENT_NOT_SEEN = "FAILBACK_CLIENT_NOT_SEEN",
|
|
@@ -1101,6 +1243,7 @@ export declare enum FailbackReplicationError {
|
|
|
1101
1243
|
UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
|
|
1102
1244
|
}
|
|
1103
1245
|
/**
|
|
1246
|
+
* @public
|
|
1104
1247
|
* <p>Error in data replication.</p>
|
|
1105
1248
|
*/
|
|
1106
1249
|
export interface RecoveryInstanceDataReplicationError {
|
|
@@ -1113,6 +1256,9 @@ export interface RecoveryInstanceDataReplicationError {
|
|
|
1113
1256
|
*/
|
|
1114
1257
|
rawError?: string;
|
|
1115
1258
|
}
|
|
1259
|
+
/**
|
|
1260
|
+
* @public
|
|
1261
|
+
*/
|
|
1116
1262
|
export declare enum RecoveryInstanceDataReplicationInitiationStepName {
|
|
1117
1263
|
ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
|
|
1118
1264
|
AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
|
|
@@ -1133,6 +1279,9 @@ export declare enum RecoveryInstanceDataReplicationInitiationStepName {
|
|
|
1133
1279
|
START_DATA_TRANSFER = "START_DATA_TRANSFER",
|
|
1134
1280
|
WAIT = "WAIT"
|
|
1135
1281
|
}
|
|
1282
|
+
/**
|
|
1283
|
+
* @public
|
|
1284
|
+
*/
|
|
1136
1285
|
export declare enum RecoveryInstanceDataReplicationInitiationStepStatus {
|
|
1137
1286
|
FAILED = "FAILED",
|
|
1138
1287
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -1141,6 +1290,7 @@ export declare enum RecoveryInstanceDataReplicationInitiationStepStatus {
|
|
|
1141
1290
|
SUCCEEDED = "SUCCEEDED"
|
|
1142
1291
|
}
|
|
1143
1292
|
/**
|
|
1293
|
+
* @public
|
|
1144
1294
|
* <p>Data replication initiation step.</p>
|
|
1145
1295
|
*/
|
|
1146
1296
|
export interface RecoveryInstanceDataReplicationInitiationStep {
|
|
@@ -1154,6 +1304,7 @@ export interface RecoveryInstanceDataReplicationInitiationStep {
|
|
|
1154
1304
|
status?: RecoveryInstanceDataReplicationInitiationStepStatus | string;
|
|
1155
1305
|
}
|
|
1156
1306
|
/**
|
|
1307
|
+
* @public
|
|
1157
1308
|
* <p>Data replication initiation.</p>
|
|
1158
1309
|
*/
|
|
1159
1310
|
export interface RecoveryInstanceDataReplicationInitiation {
|
|
@@ -1166,6 +1317,9 @@ export interface RecoveryInstanceDataReplicationInitiation {
|
|
|
1166
1317
|
*/
|
|
1167
1318
|
steps?: RecoveryInstanceDataReplicationInitiationStep[];
|
|
1168
1319
|
}
|
|
1320
|
+
/**
|
|
1321
|
+
* @public
|
|
1322
|
+
*/
|
|
1169
1323
|
export declare enum RecoveryInstanceDataReplicationState {
|
|
1170
1324
|
BACKLOG = "BACKLOG",
|
|
1171
1325
|
CONTINUOUS = "CONTINUOUS",
|
|
@@ -1181,6 +1335,7 @@ export declare enum RecoveryInstanceDataReplicationState {
|
|
|
1181
1335
|
STOPPED = "STOPPED"
|
|
1182
1336
|
}
|
|
1183
1337
|
/**
|
|
1338
|
+
* @public
|
|
1184
1339
|
* <p>A disk that should be replicated.</p>
|
|
1185
1340
|
*/
|
|
1186
1341
|
export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
|
|
@@ -1206,6 +1361,7 @@ export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
|
|
|
1206
1361
|
backloggedStorageBytes?: number;
|
|
1207
1362
|
}
|
|
1208
1363
|
/**
|
|
1364
|
+
* @public
|
|
1209
1365
|
* <p>Information about Data Replication</p>
|
|
1210
1366
|
*/
|
|
1211
1367
|
export interface RecoveryInstanceDataReplicationInfo {
|
|
@@ -1238,6 +1394,9 @@ export interface RecoveryInstanceDataReplicationInfo {
|
|
|
1238
1394
|
*/
|
|
1239
1395
|
stagingAvailabilityZone?: string;
|
|
1240
1396
|
}
|
|
1397
|
+
/**
|
|
1398
|
+
* @public
|
|
1399
|
+
*/
|
|
1241
1400
|
export declare enum EC2InstanceState {
|
|
1242
1401
|
NOT_FOUND = "NOT_FOUND",
|
|
1243
1402
|
PENDING = "PENDING",
|
|
@@ -1247,10 +1406,16 @@ export declare enum EC2InstanceState {
|
|
|
1247
1406
|
STOPPING = "STOPPING",
|
|
1248
1407
|
TERMINATED = "TERMINATED"
|
|
1249
1408
|
}
|
|
1409
|
+
/**
|
|
1410
|
+
* @public
|
|
1411
|
+
*/
|
|
1250
1412
|
export declare enum FailbackLaunchType {
|
|
1251
1413
|
DRILL = "DRILL",
|
|
1252
1414
|
RECOVERY = "RECOVERY"
|
|
1253
1415
|
}
|
|
1416
|
+
/**
|
|
1417
|
+
* @public
|
|
1418
|
+
*/
|
|
1254
1419
|
export declare enum FailbackState {
|
|
1255
1420
|
FAILBACK_COMPLETED = "FAILBACK_COMPLETED",
|
|
1256
1421
|
FAILBACK_ERROR = "FAILBACK_ERROR",
|
|
@@ -1261,6 +1426,7 @@ export declare enum FailbackState {
|
|
|
1261
1426
|
FAILBACK_READY_FOR_LAUNCH = "FAILBACK_READY_FOR_LAUNCH"
|
|
1262
1427
|
}
|
|
1263
1428
|
/**
|
|
1429
|
+
* @public
|
|
1264
1430
|
* <p>An object representing failback related information of the Recovery Instance.</p>
|
|
1265
1431
|
*/
|
|
1266
1432
|
export interface RecoveryInstanceFailback {
|
|
@@ -1305,11 +1471,15 @@ export interface RecoveryInstanceFailback {
|
|
|
1305
1471
|
*/
|
|
1306
1472
|
failbackLaunchType?: FailbackLaunchType | string;
|
|
1307
1473
|
}
|
|
1474
|
+
/**
|
|
1475
|
+
* @public
|
|
1476
|
+
*/
|
|
1308
1477
|
export declare enum OriginEnvironment {
|
|
1309
1478
|
AWS = "AWS",
|
|
1310
1479
|
ON_PREMISES = "ON_PREMISES"
|
|
1311
1480
|
}
|
|
1312
1481
|
/**
|
|
1482
|
+
* @public
|
|
1313
1483
|
* <p>An object representing a block storage device on the Recovery Instance.</p>
|
|
1314
1484
|
*/
|
|
1315
1485
|
export interface RecoveryInstanceDisk {
|
|
@@ -1327,6 +1497,7 @@ export interface RecoveryInstanceDisk {
|
|
|
1327
1497
|
ebsVolumeID?: string;
|
|
1328
1498
|
}
|
|
1329
1499
|
/**
|
|
1500
|
+
* @public
|
|
1330
1501
|
* <p>Properties of the Recovery Instance machine.</p>
|
|
1331
1502
|
*/
|
|
1332
1503
|
export interface RecoveryInstanceProperties {
|
|
@@ -1360,6 +1531,7 @@ export interface RecoveryInstanceProperties {
|
|
|
1360
1531
|
os?: OS;
|
|
1361
1532
|
}
|
|
1362
1533
|
/**
|
|
1534
|
+
* @public
|
|
1363
1535
|
* <p>A Recovery Instance is a replica of a Source Server running on EC2.</p>
|
|
1364
1536
|
*/
|
|
1365
1537
|
export interface RecoveryInstance {
|
|
@@ -1420,6 +1592,9 @@ export interface RecoveryInstance {
|
|
|
1420
1592
|
*/
|
|
1421
1593
|
originAvailabilityZone?: string;
|
|
1422
1594
|
}
|
|
1595
|
+
/**
|
|
1596
|
+
* @public
|
|
1597
|
+
*/
|
|
1423
1598
|
export interface DescribeRecoveryInstancesResponse {
|
|
1424
1599
|
/**
|
|
1425
1600
|
* <p>The token of the next Recovery Instance to retrieve.</p>
|
|
@@ -1431,6 +1606,7 @@ export interface DescribeRecoveryInstancesResponse {
|
|
|
1431
1606
|
items?: RecoveryInstance[];
|
|
1432
1607
|
}
|
|
1433
1608
|
/**
|
|
1609
|
+
* @public
|
|
1434
1610
|
* <p>A set of filters by which to return Recovery Snapshots.</p>
|
|
1435
1611
|
*/
|
|
1436
1612
|
export interface DescribeRecoverySnapshotsRequestFilters {
|
|
@@ -1443,10 +1619,16 @@ export interface DescribeRecoverySnapshotsRequestFilters {
|
|
|
1443
1619
|
*/
|
|
1444
1620
|
toDateTime?: string;
|
|
1445
1621
|
}
|
|
1622
|
+
/**
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1446
1625
|
export declare enum RecoverySnapshotsOrder {
|
|
1447
1626
|
ASC = "ASC",
|
|
1448
1627
|
DESC = "DESC"
|
|
1449
1628
|
}
|
|
1629
|
+
/**
|
|
1630
|
+
* @public
|
|
1631
|
+
*/
|
|
1450
1632
|
export interface DescribeRecoverySnapshotsRequest {
|
|
1451
1633
|
/**
|
|
1452
1634
|
* <p>Filter Recovery Snapshots by Source Server ID.</p>
|
|
@@ -1470,6 +1652,7 @@ export interface DescribeRecoverySnapshotsRequest {
|
|
|
1470
1652
|
nextToken?: string;
|
|
1471
1653
|
}
|
|
1472
1654
|
/**
|
|
1655
|
+
* @public
|
|
1473
1656
|
* <p>A snapshot of a Source Server used during recovery.</p>
|
|
1474
1657
|
*/
|
|
1475
1658
|
export interface RecoverySnapshot {
|
|
@@ -1494,6 +1677,9 @@ export interface RecoverySnapshot {
|
|
|
1494
1677
|
*/
|
|
1495
1678
|
ebsSnapshots?: string[];
|
|
1496
1679
|
}
|
|
1680
|
+
/**
|
|
1681
|
+
* @public
|
|
1682
|
+
*/
|
|
1497
1683
|
export interface DescribeRecoverySnapshotsResponse {
|
|
1498
1684
|
/**
|
|
1499
1685
|
* <p>An array of Recovery Snapshots.</p>
|
|
@@ -1504,6 +1690,9 @@ export interface DescribeRecoverySnapshotsResponse {
|
|
|
1504
1690
|
*/
|
|
1505
1691
|
nextToken?: string;
|
|
1506
1692
|
}
|
|
1693
|
+
/**
|
|
1694
|
+
* @public
|
|
1695
|
+
*/
|
|
1507
1696
|
export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
1508
1697
|
/**
|
|
1509
1698
|
* <p>The IDs of the Replication Configuration Templates to retrieve. An empty list means all Replication Configuration Templates.</p>
|
|
@@ -1518,6 +1707,9 @@ export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
|
1518
1707
|
*/
|
|
1519
1708
|
nextToken?: string;
|
|
1520
1709
|
}
|
|
1710
|
+
/**
|
|
1711
|
+
* @public
|
|
1712
|
+
*/
|
|
1521
1713
|
export interface DescribeReplicationConfigurationTemplatesResponse {
|
|
1522
1714
|
/**
|
|
1523
1715
|
* <p>An array of Replication Configuration Templates.</p>
|
|
@@ -1529,6 +1721,7 @@ export interface DescribeReplicationConfigurationTemplatesResponse {
|
|
|
1529
1721
|
nextToken?: string;
|
|
1530
1722
|
}
|
|
1531
1723
|
/**
|
|
1724
|
+
* @public
|
|
1532
1725
|
* <p>A set of filters by which to return Source Servers.</p>
|
|
1533
1726
|
*/
|
|
1534
1727
|
export interface DescribeSourceServersRequestFilters {
|
|
@@ -1545,6 +1738,9 @@ export interface DescribeSourceServersRequestFilters {
|
|
|
1545
1738
|
*/
|
|
1546
1739
|
stagingAccountIDs?: string[];
|
|
1547
1740
|
}
|
|
1741
|
+
/**
|
|
1742
|
+
* @public
|
|
1743
|
+
*/
|
|
1548
1744
|
export interface DescribeSourceServersRequest {
|
|
1549
1745
|
/**
|
|
1550
1746
|
* <p>A set of filters by which to return Source Servers.</p>
|
|
@@ -1559,6 +1755,9 @@ export interface DescribeSourceServersRequest {
|
|
|
1559
1755
|
*/
|
|
1560
1756
|
nextToken?: string;
|
|
1561
1757
|
}
|
|
1758
|
+
/**
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1562
1761
|
export interface DescribeSourceServersResponse {
|
|
1563
1762
|
/**
|
|
1564
1763
|
* <p>An array of Source Servers.</p>
|
|
@@ -1569,22 +1768,37 @@ export interface DescribeSourceServersResponse {
|
|
|
1569
1768
|
*/
|
|
1570
1769
|
nextToken?: string;
|
|
1571
1770
|
}
|
|
1771
|
+
/**
|
|
1772
|
+
* @public
|
|
1773
|
+
*/
|
|
1572
1774
|
export interface DisconnectRecoveryInstanceRequest {
|
|
1573
1775
|
/**
|
|
1574
1776
|
* <p>The ID of the Recovery Instance to disconnect.</p>
|
|
1575
1777
|
*/
|
|
1576
1778
|
recoveryInstanceID: string | undefined;
|
|
1577
1779
|
}
|
|
1780
|
+
/**
|
|
1781
|
+
* @public
|
|
1782
|
+
*/
|
|
1578
1783
|
export interface DisconnectSourceServerRequest {
|
|
1579
1784
|
/**
|
|
1580
1785
|
* <p>The ID of the Source Server to disconnect.</p>
|
|
1581
1786
|
*/
|
|
1582
1787
|
sourceServerID: string | undefined;
|
|
1583
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1584
1792
|
export interface InitializeServiceRequest {
|
|
1585
1793
|
}
|
|
1794
|
+
/**
|
|
1795
|
+
* @public
|
|
1796
|
+
*/
|
|
1586
1797
|
export interface InitializeServiceResponse {
|
|
1587
1798
|
}
|
|
1799
|
+
/**
|
|
1800
|
+
* @public
|
|
1801
|
+
*/
|
|
1588
1802
|
export interface ListExtensibleSourceServersRequest {
|
|
1589
1803
|
/**
|
|
1590
1804
|
* <p>The Id of the staging Account to retrieve extensible source servers from.</p>
|
|
@@ -1600,6 +1814,7 @@ export interface ListExtensibleSourceServersRequest {
|
|
|
1600
1814
|
nextToken?: string;
|
|
1601
1815
|
}
|
|
1602
1816
|
/**
|
|
1817
|
+
* @public
|
|
1603
1818
|
* <p>Source server in staging account that extended source server connected to.</p>
|
|
1604
1819
|
*/
|
|
1605
1820
|
export interface StagingSourceServer {
|
|
@@ -1616,6 +1831,9 @@ export interface StagingSourceServer {
|
|
|
1616
1831
|
*/
|
|
1617
1832
|
tags?: Record<string, string>;
|
|
1618
1833
|
}
|
|
1834
|
+
/**
|
|
1835
|
+
* @public
|
|
1836
|
+
*/
|
|
1619
1837
|
export interface ListExtensibleSourceServersResponse {
|
|
1620
1838
|
/**
|
|
1621
1839
|
* <p>A list of source servers on a staging Account that are extensible.</p>
|
|
@@ -1626,6 +1844,9 @@ export interface ListExtensibleSourceServersResponse {
|
|
|
1626
1844
|
*/
|
|
1627
1845
|
nextToken?: string;
|
|
1628
1846
|
}
|
|
1847
|
+
/**
|
|
1848
|
+
* @public
|
|
1849
|
+
*/
|
|
1629
1850
|
export interface ListStagingAccountsRequest {
|
|
1630
1851
|
/**
|
|
1631
1852
|
* <p>The maximum number of staging Accounts to retrieve.</p>
|
|
@@ -1636,6 +1857,9 @@ export interface ListStagingAccountsRequest {
|
|
|
1636
1857
|
*/
|
|
1637
1858
|
nextToken?: string;
|
|
1638
1859
|
}
|
|
1860
|
+
/**
|
|
1861
|
+
* @public
|
|
1862
|
+
*/
|
|
1639
1863
|
export interface ListStagingAccountsResponse {
|
|
1640
1864
|
/**
|
|
1641
1865
|
* <p>An array of staging AWS Accounts.</p>
|
|
@@ -1646,24 +1870,36 @@ export interface ListStagingAccountsResponse {
|
|
|
1646
1870
|
*/
|
|
1647
1871
|
nextToken?: string;
|
|
1648
1872
|
}
|
|
1873
|
+
/**
|
|
1874
|
+
* @public
|
|
1875
|
+
*/
|
|
1649
1876
|
export interface ListTagsForResourceRequest {
|
|
1650
1877
|
/**
|
|
1651
1878
|
* <p>The ARN of the resource whose tags should be returned.</p>
|
|
1652
1879
|
*/
|
|
1653
1880
|
resourceArn: string | undefined;
|
|
1654
1881
|
}
|
|
1882
|
+
/**
|
|
1883
|
+
* @public
|
|
1884
|
+
*/
|
|
1655
1885
|
export interface ListTagsForResourceResponse {
|
|
1656
1886
|
/**
|
|
1657
1887
|
* <p>The tags of the requested resource.</p>
|
|
1658
1888
|
*/
|
|
1659
1889
|
tags?: Record<string, string>;
|
|
1660
1890
|
}
|
|
1891
|
+
/**
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1661
1894
|
export interface GetFailbackReplicationConfigurationRequest {
|
|
1662
1895
|
/**
|
|
1663
1896
|
* <p>The ID of the Recovery Instance whose failback replication configuration should be returned.</p>
|
|
1664
1897
|
*/
|
|
1665
1898
|
recoveryInstanceID: string | undefined;
|
|
1666
1899
|
}
|
|
1900
|
+
/**
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1667
1903
|
export interface GetFailbackReplicationConfigurationResponse {
|
|
1668
1904
|
/**
|
|
1669
1905
|
* <p>The ID of the Recovery Instance.</p>
|
|
@@ -1682,18 +1918,27 @@ export interface GetFailbackReplicationConfigurationResponse {
|
|
|
1682
1918
|
*/
|
|
1683
1919
|
usePrivateIP?: boolean;
|
|
1684
1920
|
}
|
|
1921
|
+
/**
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1685
1924
|
export interface ReverseReplicationRequest {
|
|
1686
1925
|
/**
|
|
1687
1926
|
* <p>The ID of the Recovery Instance that we want to reverse the replication for.</p>
|
|
1688
1927
|
*/
|
|
1689
1928
|
recoveryInstanceID: string | undefined;
|
|
1690
1929
|
}
|
|
1930
|
+
/**
|
|
1931
|
+
* @public
|
|
1932
|
+
*/
|
|
1691
1933
|
export interface ReverseReplicationResponse {
|
|
1692
1934
|
/**
|
|
1693
1935
|
* <p>ARN of created SourceServer.</p>
|
|
1694
1936
|
*/
|
|
1695
1937
|
reversedDirectionSourceServerArn?: string;
|
|
1696
1938
|
}
|
|
1939
|
+
/**
|
|
1940
|
+
* @public
|
|
1941
|
+
*/
|
|
1697
1942
|
export interface StartFailbackLaunchRequest {
|
|
1698
1943
|
/**
|
|
1699
1944
|
* <p>The IDs of the Recovery Instance whose failback launch we want to request.</p>
|
|
@@ -1704,30 +1949,45 @@ export interface StartFailbackLaunchRequest {
|
|
|
1704
1949
|
*/
|
|
1705
1950
|
tags?: Record<string, string>;
|
|
1706
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* @public
|
|
1954
|
+
*/
|
|
1707
1955
|
export interface StartFailbackLaunchResponse {
|
|
1708
1956
|
/**
|
|
1709
1957
|
* <p>The failback launch Job.</p>
|
|
1710
1958
|
*/
|
|
1711
1959
|
job?: Job;
|
|
1712
1960
|
}
|
|
1961
|
+
/**
|
|
1962
|
+
* @public
|
|
1963
|
+
*/
|
|
1713
1964
|
export interface StopFailbackRequest {
|
|
1714
1965
|
/**
|
|
1715
1966
|
* <p>The ID of the Recovery Instance we want to stop failback for.</p>
|
|
1716
1967
|
*/
|
|
1717
1968
|
recoveryInstanceID: string | undefined;
|
|
1718
1969
|
}
|
|
1970
|
+
/**
|
|
1971
|
+
* @public
|
|
1972
|
+
*/
|
|
1719
1973
|
export interface TerminateRecoveryInstancesRequest {
|
|
1720
1974
|
/**
|
|
1721
1975
|
* <p>The IDs of the Recovery Instances that should be terminated.</p>
|
|
1722
1976
|
*/
|
|
1723
1977
|
recoveryInstanceIDs: string[] | undefined;
|
|
1724
1978
|
}
|
|
1979
|
+
/**
|
|
1980
|
+
* @public
|
|
1981
|
+
*/
|
|
1725
1982
|
export interface TerminateRecoveryInstancesResponse {
|
|
1726
1983
|
/**
|
|
1727
1984
|
* <p>The Job for terminating the Recovery Instances.</p>
|
|
1728
1985
|
*/
|
|
1729
1986
|
job?: Job;
|
|
1730
1987
|
}
|
|
1988
|
+
/**
|
|
1989
|
+
* @public
|
|
1990
|
+
*/
|
|
1731
1991
|
export interface UpdateFailbackReplicationConfigurationRequest {
|
|
1732
1992
|
/**
|
|
1733
1993
|
* <p>The ID of the Recovery Instance.</p>
|
|
@@ -1746,6 +2006,9 @@ export interface UpdateFailbackReplicationConfigurationRequest {
|
|
|
1746
2006
|
*/
|
|
1747
2007
|
usePrivateIP?: boolean;
|
|
1748
2008
|
}
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
1749
2012
|
export interface UpdateReplicationConfigurationTemplateRequest {
|
|
1750
2013
|
/**
|
|
1751
2014
|
* <p>The Replication Configuration Template ID.</p>
|
|
@@ -1808,17 +2071,24 @@ export interface UpdateReplicationConfigurationTemplateRequest {
|
|
|
1808
2071
|
*/
|
|
1809
2072
|
pitPolicy?: PITPolicyRule[];
|
|
1810
2073
|
}
|
|
2074
|
+
/**
|
|
2075
|
+
* @public
|
|
2076
|
+
*/
|
|
1811
2077
|
export interface GetLaunchConfigurationRequest {
|
|
1812
2078
|
/**
|
|
1813
2079
|
* <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
|
|
1814
2080
|
*/
|
|
1815
2081
|
sourceServerID: string | undefined;
|
|
1816
2082
|
}
|
|
2083
|
+
/**
|
|
2084
|
+
* @public
|
|
2085
|
+
*/
|
|
1817
2086
|
export declare enum LaunchDisposition {
|
|
1818
2087
|
STARTED = "STARTED",
|
|
1819
2088
|
STOPPED = "STOPPED"
|
|
1820
2089
|
}
|
|
1821
2090
|
/**
|
|
2091
|
+
* @public
|
|
1822
2092
|
* <p>Configuration of a machine's license.</p>
|
|
1823
2093
|
*/
|
|
1824
2094
|
export interface Licensing {
|
|
@@ -1827,10 +2097,16 @@ export interface Licensing {
|
|
|
1827
2097
|
*/
|
|
1828
2098
|
osByol?: boolean;
|
|
1829
2099
|
}
|
|
2100
|
+
/**
|
|
2101
|
+
* @public
|
|
2102
|
+
*/
|
|
1830
2103
|
export declare enum TargetInstanceTypeRightSizingMethod {
|
|
1831
2104
|
BASIC = "BASIC",
|
|
1832
2105
|
NONE = "NONE"
|
|
1833
2106
|
}
|
|
2107
|
+
/**
|
|
2108
|
+
* @public
|
|
2109
|
+
*/
|
|
1834
2110
|
export interface LaunchConfiguration {
|
|
1835
2111
|
/**
|
|
1836
2112
|
* <p>The ID of the Source Server for this launch configuration.</p>
|
|
@@ -1865,12 +2141,18 @@ export interface LaunchConfiguration {
|
|
|
1865
2141
|
*/
|
|
1866
2142
|
licensing?: Licensing;
|
|
1867
2143
|
}
|
|
2144
|
+
/**
|
|
2145
|
+
* @public
|
|
2146
|
+
*/
|
|
1868
2147
|
export interface GetReplicationConfigurationRequest {
|
|
1869
2148
|
/**
|
|
1870
2149
|
* <p>The ID of the Source Serve for this Replication Configuration.r</p>
|
|
1871
2150
|
*/
|
|
1872
2151
|
sourceServerID: string | undefined;
|
|
1873
2152
|
}
|
|
2153
|
+
/**
|
|
2154
|
+
* @public
|
|
2155
|
+
*/
|
|
1874
2156
|
export declare enum ReplicationConfigurationReplicatedDiskStagingDiskType {
|
|
1875
2157
|
AUTO = "AUTO",
|
|
1876
2158
|
GP2 = "GP2",
|
|
@@ -1881,6 +2163,7 @@ export declare enum ReplicationConfigurationReplicatedDiskStagingDiskType {
|
|
|
1881
2163
|
STANDARD = "STANDARD"
|
|
1882
2164
|
}
|
|
1883
2165
|
/**
|
|
2166
|
+
* @public
|
|
1884
2167
|
* <p>The configuration of a disk of the Source Server to be replicated.</p>
|
|
1885
2168
|
*/
|
|
1886
2169
|
export interface ReplicationConfigurationReplicatedDisk {
|
|
@@ -1909,6 +2192,9 @@ export interface ReplicationConfigurationReplicatedDisk {
|
|
|
1909
2192
|
*/
|
|
1910
2193
|
optimizedStagingDiskType?: ReplicationConfigurationReplicatedDiskStagingDiskType | string;
|
|
1911
2194
|
}
|
|
2195
|
+
/**
|
|
2196
|
+
* @public
|
|
2197
|
+
*/
|
|
1912
2198
|
export interface ReplicationConfiguration {
|
|
1913
2199
|
/**
|
|
1914
2200
|
* <p>The ID of the Source Server for this Replication Configuration.</p>
|
|
@@ -1975,6 +2261,9 @@ export interface ReplicationConfiguration {
|
|
|
1975
2261
|
*/
|
|
1976
2262
|
pitPolicy?: PITPolicyRule[];
|
|
1977
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* @public
|
|
2266
|
+
*/
|
|
1978
2267
|
export interface RetryDataReplicationRequest {
|
|
1979
2268
|
/**
|
|
1980
2269
|
* <p>The ID of the Source Server whose data replication should be retried.</p>
|
|
@@ -1982,6 +2271,7 @@ export interface RetryDataReplicationRequest {
|
|
|
1982
2271
|
sourceServerID: string | undefined;
|
|
1983
2272
|
}
|
|
1984
2273
|
/**
|
|
2274
|
+
* @public
|
|
1985
2275
|
* <p>An object representing the Source Server to recover.</p>
|
|
1986
2276
|
*/
|
|
1987
2277
|
export interface StartRecoveryRequestSourceServer {
|
|
@@ -1994,6 +2284,9 @@ export interface StartRecoveryRequestSourceServer {
|
|
|
1994
2284
|
*/
|
|
1995
2285
|
recoverySnapshotID?: string;
|
|
1996
2286
|
}
|
|
2287
|
+
/**
|
|
2288
|
+
* @public
|
|
2289
|
+
*/
|
|
1997
2290
|
export interface StartRecoveryRequest {
|
|
1998
2291
|
/**
|
|
1999
2292
|
* <p>The Source Servers that we want to start a Recovery Job for.</p>
|
|
@@ -2008,36 +2301,54 @@ export interface StartRecoveryRequest {
|
|
|
2008
2301
|
*/
|
|
2009
2302
|
tags?: Record<string, string>;
|
|
2010
2303
|
}
|
|
2304
|
+
/**
|
|
2305
|
+
* @public
|
|
2306
|
+
*/
|
|
2011
2307
|
export interface StartRecoveryResponse {
|
|
2012
2308
|
/**
|
|
2013
2309
|
* <p>The Recovery Job.</p>
|
|
2014
2310
|
*/
|
|
2015
2311
|
job?: Job;
|
|
2016
2312
|
}
|
|
2313
|
+
/**
|
|
2314
|
+
* @public
|
|
2315
|
+
*/
|
|
2017
2316
|
export interface StartReplicationRequest {
|
|
2018
2317
|
/**
|
|
2019
2318
|
* <p>The ID of the Source Server to start replication for.</p>
|
|
2020
2319
|
*/
|
|
2021
2320
|
sourceServerID: string | undefined;
|
|
2022
2321
|
}
|
|
2322
|
+
/**
|
|
2323
|
+
* @public
|
|
2324
|
+
*/
|
|
2023
2325
|
export interface StartReplicationResponse {
|
|
2024
2326
|
/**
|
|
2025
2327
|
* <p>The Source Server that this action was targeted on.</p>
|
|
2026
2328
|
*/
|
|
2027
2329
|
sourceServer?: SourceServer;
|
|
2028
2330
|
}
|
|
2331
|
+
/**
|
|
2332
|
+
* @public
|
|
2333
|
+
*/
|
|
2029
2334
|
export interface StopReplicationRequest {
|
|
2030
2335
|
/**
|
|
2031
2336
|
* <p>The ID of the Source Server to stop replication for.</p>
|
|
2032
2337
|
*/
|
|
2033
2338
|
sourceServerID: string | undefined;
|
|
2034
2339
|
}
|
|
2340
|
+
/**
|
|
2341
|
+
* @public
|
|
2342
|
+
*/
|
|
2035
2343
|
export interface StopReplicationResponse {
|
|
2036
2344
|
/**
|
|
2037
2345
|
* <p>The Source Server that this action was targeted on.</p>
|
|
2038
2346
|
*/
|
|
2039
2347
|
sourceServer?: SourceServer;
|
|
2040
2348
|
}
|
|
2349
|
+
/**
|
|
2350
|
+
* @public
|
|
2351
|
+
*/
|
|
2041
2352
|
export interface UpdateLaunchConfigurationRequest {
|
|
2042
2353
|
/**
|
|
2043
2354
|
* <p>The ID of the Source Server that we want to retrieve a Launch Configuration for.</p>
|
|
@@ -2068,6 +2379,9 @@ export interface UpdateLaunchConfigurationRequest {
|
|
|
2068
2379
|
*/
|
|
2069
2380
|
licensing?: Licensing;
|
|
2070
2381
|
}
|
|
2382
|
+
/**
|
|
2383
|
+
* @public
|
|
2384
|
+
*/
|
|
2071
2385
|
export interface UpdateReplicationConfigurationRequest {
|
|
2072
2386
|
/**
|
|
2073
2387
|
* <p>The ID of the Source Server for this Replication Configuration.</p>
|
|
@@ -2134,6 +2448,9 @@ export interface UpdateReplicationConfigurationRequest {
|
|
|
2134
2448
|
*/
|
|
2135
2449
|
pitPolicy?: PITPolicyRule[];
|
|
2136
2450
|
}
|
|
2451
|
+
/**
|
|
2452
|
+
* @public
|
|
2453
|
+
*/
|
|
2137
2454
|
export interface TagResourceRequest {
|
|
2138
2455
|
/**
|
|
2139
2456
|
* <p>ARN of the resource for which tags are to be added or updated.</p>
|
|
@@ -2144,6 +2461,9 @@ export interface TagResourceRequest {
|
|
|
2144
2461
|
*/
|
|
2145
2462
|
tags: Record<string, string> | undefined;
|
|
2146
2463
|
}
|
|
2464
|
+
/**
|
|
2465
|
+
* @public
|
|
2466
|
+
*/
|
|
2147
2467
|
export interface UntagResourceRequest {
|
|
2148
2468
|
/**
|
|
2149
2469
|
* <p>ARN of the resource for which tags are to be removed.</p>
|