@aws-sdk/client-drs 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Drs.d.ts +0 -32
- package/dist-types/ts3.4/DrsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateReplicationConfigurationTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRecoveryInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteReplicationConfigurationTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSourceServerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobLogItemsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRecoveryInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRecoverySnapshotsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeReplicationConfigurationTemplatesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSourceServersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisconnectRecoveryInstanceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisconnectSourceServerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetFailbackReplicationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLaunchConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetReplicationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/InitializeServiceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RetryDataReplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartFailbackLaunchCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartRecoveryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopFailbackCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TerminateRecoveryInstancesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateFailbackReplicationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLaunchConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateReplicationConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateReplicationConfigurationTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/DrsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -414
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,52 +1,37 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DrsServiceException as __BaseException } from "./DrsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
code?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export interface Account {
|
|
15
12
|
accountID?: string;
|
|
16
13
|
}
|
|
17
|
-
|
|
18
14
|
export declare class ConflictException extends __BaseException {
|
|
19
15
|
readonly name: "ConflictException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
17
|
code?: string;
|
|
22
|
-
|
|
23
18
|
resourceId?: string;
|
|
24
|
-
|
|
25
19
|
resourceType?: string;
|
|
26
|
-
|
|
27
20
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
21
|
}
|
|
29
|
-
|
|
30
22
|
export interface ConversionProperties {
|
|
31
23
|
volumeToConversionMap?: Record<string, Record<string, string>>;
|
|
32
|
-
|
|
33
24
|
rootVolumeName?: string;
|
|
34
|
-
|
|
35
25
|
forceUefi?: boolean;
|
|
36
|
-
|
|
37
26
|
dataTimestamp?: string;
|
|
38
|
-
|
|
39
27
|
volumeToVolumeSize?: Record<string, number>;
|
|
40
28
|
}
|
|
41
|
-
|
|
42
29
|
export interface CPU {
|
|
43
30
|
cores?: number;
|
|
44
|
-
|
|
45
31
|
modelName?: string;
|
|
46
32
|
}
|
|
47
33
|
export interface CreateExtendedSourceServerRequest {
|
|
48
34
|
sourceServerArn: string | undefined;
|
|
49
|
-
|
|
50
35
|
tags?: Record<string, string>;
|
|
51
36
|
}
|
|
52
37
|
export declare enum DataReplicationErrorString {
|
|
@@ -65,10 +50,8 @@ export declare enum DataReplicationErrorString {
|
|
|
65
50
|
SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
|
|
66
51
|
UNSTABLE_NETWORK = "UNSTABLE_NETWORK",
|
|
67
52
|
}
|
|
68
|
-
|
|
69
53
|
export interface DataReplicationError {
|
|
70
54
|
error?: DataReplicationErrorString | string;
|
|
71
|
-
|
|
72
55
|
rawError?: string;
|
|
73
56
|
}
|
|
74
57
|
export declare enum DataReplicationInitiationStepName {
|
|
@@ -91,18 +74,13 @@ export declare enum DataReplicationInitiationStepStatus {
|
|
|
91
74
|
SKIPPED = "SKIPPED",
|
|
92
75
|
SUCCEEDED = "SUCCEEDED",
|
|
93
76
|
}
|
|
94
|
-
|
|
95
77
|
export interface DataReplicationInitiationStep {
|
|
96
78
|
name?: DataReplicationInitiationStepName | string;
|
|
97
|
-
|
|
98
79
|
status?: DataReplicationInitiationStepStatus | string;
|
|
99
80
|
}
|
|
100
|
-
|
|
101
81
|
export interface DataReplicationInitiation {
|
|
102
82
|
startDateTime?: string;
|
|
103
|
-
|
|
104
83
|
nextAttemptDateTime?: string;
|
|
105
|
-
|
|
106
84
|
steps?: DataReplicationInitiationStep[];
|
|
107
85
|
}
|
|
108
86
|
export declare enum DataReplicationState {
|
|
@@ -117,30 +95,19 @@ export declare enum DataReplicationState {
|
|
|
117
95
|
STALLED = "STALLED",
|
|
118
96
|
STOPPED = "STOPPED",
|
|
119
97
|
}
|
|
120
|
-
|
|
121
98
|
export interface DataReplicationInfoReplicatedDisk {
|
|
122
99
|
deviceName?: string;
|
|
123
|
-
|
|
124
100
|
totalStorageBytes?: number;
|
|
125
|
-
|
|
126
101
|
replicatedStorageBytes?: number;
|
|
127
|
-
|
|
128
102
|
rescannedStorageBytes?: number;
|
|
129
|
-
|
|
130
103
|
backloggedStorageBytes?: number;
|
|
131
104
|
}
|
|
132
|
-
|
|
133
105
|
export interface DataReplicationInfo {
|
|
134
106
|
lagDuration?: string;
|
|
135
|
-
|
|
136
107
|
etaDateTime?: string;
|
|
137
|
-
|
|
138
108
|
replicatedDisks?: DataReplicationInfoReplicatedDisk[];
|
|
139
|
-
|
|
140
109
|
dataReplicationState?: DataReplicationState | string;
|
|
141
|
-
|
|
142
110
|
dataReplicationInitiation?: DataReplicationInitiation;
|
|
143
|
-
|
|
144
111
|
dataReplicationError?: DataReplicationError;
|
|
145
112
|
}
|
|
146
113
|
export declare enum LastLaunchResult {
|
|
@@ -153,74 +120,47 @@ export declare enum LastLaunchType {
|
|
|
153
120
|
DRILL = "DRILL",
|
|
154
121
|
RECOVERY = "RECOVERY",
|
|
155
122
|
}
|
|
156
|
-
|
|
157
123
|
export interface LifeCycleLastLaunchInitiated {
|
|
158
124
|
apiCallDateTime?: string;
|
|
159
|
-
|
|
160
125
|
jobID?: string;
|
|
161
|
-
|
|
162
126
|
type?: LastLaunchType | string;
|
|
163
127
|
}
|
|
164
|
-
|
|
165
128
|
export interface LifeCycleLastLaunch {
|
|
166
129
|
initiated?: LifeCycleLastLaunchInitiated;
|
|
167
130
|
}
|
|
168
|
-
|
|
169
131
|
export interface LifeCycle {
|
|
170
132
|
addedToServiceDateTime?: string;
|
|
171
|
-
|
|
172
133
|
firstByteDateTime?: string;
|
|
173
|
-
|
|
174
134
|
elapsedReplicationDuration?: string;
|
|
175
|
-
|
|
176
135
|
lastSeenByServiceDateTime?: string;
|
|
177
|
-
|
|
178
136
|
lastLaunch?: LifeCycleLastLaunch;
|
|
179
137
|
}
|
|
180
|
-
|
|
181
138
|
export interface Disk {
|
|
182
139
|
deviceName?: string;
|
|
183
|
-
|
|
184
140
|
bytes?: number;
|
|
185
141
|
}
|
|
186
|
-
|
|
187
142
|
export interface IdentificationHints {
|
|
188
143
|
fqdn?: string;
|
|
189
|
-
|
|
190
144
|
hostname?: string;
|
|
191
|
-
|
|
192
145
|
vmWareUuid?: string;
|
|
193
|
-
|
|
194
146
|
awsInstanceID?: string;
|
|
195
147
|
}
|
|
196
|
-
|
|
197
148
|
export interface NetworkInterface {
|
|
198
149
|
macAddress?: string;
|
|
199
|
-
|
|
200
150
|
ips?: string[];
|
|
201
|
-
|
|
202
151
|
isPrimary?: boolean;
|
|
203
152
|
}
|
|
204
|
-
|
|
205
153
|
export interface OS {
|
|
206
154
|
fullString?: string;
|
|
207
155
|
}
|
|
208
|
-
|
|
209
156
|
export interface SourceProperties {
|
|
210
157
|
lastUpdatedDateTime?: string;
|
|
211
|
-
|
|
212
158
|
recommendedInstanceType?: string;
|
|
213
|
-
|
|
214
159
|
identificationHints?: IdentificationHints;
|
|
215
|
-
|
|
216
160
|
networkInterfaces?: NetworkInterface[];
|
|
217
|
-
|
|
218
161
|
disks?: Disk[];
|
|
219
|
-
|
|
220
162
|
cpus?: CPU[];
|
|
221
|
-
|
|
222
163
|
ramBytes?: number;
|
|
223
|
-
|
|
224
164
|
os?: OS;
|
|
225
165
|
}
|
|
226
166
|
export declare enum ExtensionStatus {
|
|
@@ -228,110 +168,76 @@ export declare enum ExtensionStatus {
|
|
|
228
168
|
EXTENSION_ERROR = "EXTENSION_ERROR",
|
|
229
169
|
NOT_EXTENDED = "NOT_EXTENDED",
|
|
230
170
|
}
|
|
231
|
-
|
|
232
171
|
export interface StagingArea {
|
|
233
172
|
status?: ExtensionStatus | string;
|
|
234
|
-
|
|
235
173
|
stagingAccountID?: string;
|
|
236
|
-
|
|
237
174
|
stagingSourceServerArn?: string;
|
|
238
|
-
|
|
239
175
|
errorMessage?: string;
|
|
240
176
|
}
|
|
241
177
|
export interface SourceServer {
|
|
242
178
|
sourceServerID?: string;
|
|
243
|
-
|
|
244
179
|
arn?: string;
|
|
245
|
-
|
|
246
180
|
tags?: Record<string, string>;
|
|
247
|
-
|
|
248
181
|
recoveryInstanceId?: string;
|
|
249
|
-
|
|
250
182
|
lastLaunchResult?: LastLaunchResult | string;
|
|
251
|
-
|
|
252
183
|
dataReplicationInfo?: DataReplicationInfo;
|
|
253
|
-
|
|
254
184
|
lifeCycle?: LifeCycle;
|
|
255
|
-
|
|
256
185
|
sourceProperties?: SourceProperties;
|
|
257
|
-
|
|
258
186
|
stagingArea?: StagingArea;
|
|
259
187
|
}
|
|
260
188
|
export interface CreateExtendedSourceServerResponse {
|
|
261
189
|
sourceServer?: SourceServer;
|
|
262
190
|
}
|
|
263
|
-
|
|
264
191
|
export declare class InternalServerException extends __BaseException {
|
|
265
192
|
readonly name: "InternalServerException";
|
|
266
193
|
readonly $fault: "server";
|
|
267
|
-
|
|
268
194
|
retryAfterSeconds?: number;
|
|
269
|
-
|
|
270
195
|
constructor(
|
|
271
196
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
272
197
|
);
|
|
273
198
|
}
|
|
274
|
-
|
|
275
199
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
276
200
|
readonly name: "ResourceNotFoundException";
|
|
277
201
|
readonly $fault: "client";
|
|
278
202
|
code?: string;
|
|
279
|
-
|
|
280
203
|
resourceId?: string;
|
|
281
|
-
|
|
282
204
|
resourceType?: string;
|
|
283
|
-
|
|
284
205
|
constructor(
|
|
285
206
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
286
207
|
);
|
|
287
208
|
}
|
|
288
|
-
|
|
289
209
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
290
210
|
readonly name: "ServiceQuotaExceededException";
|
|
291
211
|
readonly $fault: "client";
|
|
292
212
|
code?: string;
|
|
293
|
-
|
|
294
213
|
resourceId?: string;
|
|
295
|
-
|
|
296
214
|
resourceType?: string;
|
|
297
|
-
|
|
298
215
|
serviceCode?: string;
|
|
299
|
-
|
|
300
216
|
quotaCode?: string;
|
|
301
|
-
|
|
302
217
|
constructor(
|
|
303
218
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
304
219
|
);
|
|
305
220
|
}
|
|
306
|
-
|
|
307
221
|
export declare class ThrottlingException extends __BaseException {
|
|
308
222
|
readonly name: "ThrottlingException";
|
|
309
223
|
readonly $fault: "client";
|
|
310
|
-
|
|
311
224
|
serviceCode?: string;
|
|
312
|
-
|
|
313
225
|
quotaCode?: string;
|
|
314
|
-
|
|
315
226
|
retryAfterSeconds?: string;
|
|
316
|
-
|
|
317
227
|
constructor(
|
|
318
228
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
319
229
|
);
|
|
320
230
|
}
|
|
321
|
-
|
|
322
231
|
export declare class UninitializedAccountException extends __BaseException {
|
|
323
232
|
readonly name: "UninitializedAccountException";
|
|
324
233
|
readonly $fault: "client";
|
|
325
234
|
code?: string;
|
|
326
|
-
|
|
327
235
|
constructor(
|
|
328
236
|
opts: __ExceptionOptionType<UninitializedAccountException, __BaseException>
|
|
329
237
|
);
|
|
330
238
|
}
|
|
331
|
-
|
|
332
239
|
export interface ValidationExceptionField {
|
|
333
240
|
name?: string;
|
|
334
|
-
|
|
335
241
|
message?: string;
|
|
336
242
|
}
|
|
337
243
|
export declare enum ValidationExceptionReason {
|
|
@@ -340,16 +246,12 @@ export declare enum ValidationExceptionReason {
|
|
|
340
246
|
OTHER = "other",
|
|
341
247
|
UNKNOWN_OPERATION = "unknownOperation",
|
|
342
248
|
}
|
|
343
|
-
|
|
344
249
|
export declare class ValidationException extends __BaseException {
|
|
345
250
|
readonly name: "ValidationException";
|
|
346
251
|
readonly $fault: "client";
|
|
347
252
|
code?: string;
|
|
348
|
-
|
|
349
253
|
reason?: ValidationExceptionReason | string;
|
|
350
|
-
|
|
351
254
|
fieldList?: ValidationExceptionField[];
|
|
352
|
-
|
|
353
255
|
constructor(
|
|
354
256
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
355
257
|
);
|
|
@@ -373,86 +275,53 @@ export declare enum PITPolicyRuleUnits {
|
|
|
373
275
|
HOUR = "HOUR",
|
|
374
276
|
MINUTE = "MINUTE",
|
|
375
277
|
}
|
|
376
|
-
|
|
377
278
|
export interface PITPolicyRule {
|
|
378
279
|
ruleID?: number;
|
|
379
|
-
|
|
380
280
|
units: PITPolicyRuleUnits | string | undefined;
|
|
381
|
-
|
|
382
281
|
interval: number | undefined;
|
|
383
|
-
|
|
384
282
|
retentionDuration: number | undefined;
|
|
385
|
-
|
|
386
283
|
enabled?: boolean;
|
|
387
284
|
}
|
|
388
285
|
export interface CreateReplicationConfigurationTemplateRequest {
|
|
389
286
|
stagingAreaSubnetId: string | undefined;
|
|
390
|
-
|
|
391
287
|
associateDefaultSecurityGroup: boolean | undefined;
|
|
392
|
-
|
|
393
288
|
replicationServersSecurityGroupsIDs: string[] | undefined;
|
|
394
|
-
|
|
395
289
|
replicationServerInstanceType: string | undefined;
|
|
396
|
-
|
|
397
290
|
useDedicatedReplicationServer: boolean | undefined;
|
|
398
|
-
|
|
399
291
|
defaultLargeStagingDiskType:
|
|
400
292
|
| ReplicationConfigurationDefaultLargeStagingDiskType
|
|
401
293
|
| string
|
|
402
294
|
| undefined;
|
|
403
|
-
|
|
404
295
|
ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
|
|
405
|
-
|
|
406
296
|
ebsEncryptionKeyArn?: string;
|
|
407
|
-
|
|
408
297
|
bandwidthThrottling: number | undefined;
|
|
409
|
-
|
|
410
298
|
dataPlaneRouting:
|
|
411
299
|
| ReplicationConfigurationDataPlaneRouting
|
|
412
300
|
| string
|
|
413
301
|
| undefined;
|
|
414
|
-
|
|
415
302
|
createPublicIP: boolean | undefined;
|
|
416
|
-
|
|
417
303
|
stagingAreaTags: Record<string, string> | undefined;
|
|
418
|
-
|
|
419
304
|
pitPolicy: PITPolicyRule[] | undefined;
|
|
420
|
-
|
|
421
305
|
tags?: Record<string, string>;
|
|
422
306
|
}
|
|
423
307
|
export interface ReplicationConfigurationTemplate {
|
|
424
308
|
replicationConfigurationTemplateID: string | undefined;
|
|
425
|
-
|
|
426
309
|
arn?: string;
|
|
427
|
-
|
|
428
310
|
stagingAreaSubnetId?: string;
|
|
429
|
-
|
|
430
311
|
associateDefaultSecurityGroup?: boolean;
|
|
431
|
-
|
|
432
312
|
replicationServersSecurityGroupsIDs?: string[];
|
|
433
|
-
|
|
434
313
|
replicationServerInstanceType?: string;
|
|
435
|
-
|
|
436
314
|
useDedicatedReplicationServer?: boolean;
|
|
437
|
-
|
|
438
315
|
defaultLargeStagingDiskType?:
|
|
439
316
|
| ReplicationConfigurationDefaultLargeStagingDiskType
|
|
440
317
|
| string;
|
|
441
|
-
|
|
442
318
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
443
|
-
|
|
444
319
|
ebsEncryptionKeyArn?: string;
|
|
445
|
-
|
|
446
320
|
bandwidthThrottling?: number;
|
|
447
|
-
|
|
448
321
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
449
|
-
|
|
450
322
|
createPublicIP?: boolean;
|
|
451
|
-
|
|
452
323
|
stagingAreaTags?: Record<string, string>;
|
|
453
|
-
|
|
454
324
|
tags?: Record<string, string>;
|
|
455
|
-
|
|
456
325
|
pitPolicy?: PITPolicyRule[];
|
|
457
326
|
}
|
|
458
327
|
export interface DeleteJobRequest {
|
|
@@ -472,9 +341,7 @@ export interface DeleteSourceServerRequest {
|
|
|
472
341
|
export interface DeleteSourceServerResponse {}
|
|
473
342
|
export interface DescribeJobLogItemsRequest {
|
|
474
343
|
jobID: string | undefined;
|
|
475
|
-
|
|
476
344
|
maxResults?: number;
|
|
477
|
-
|
|
478
345
|
nextToken?: string;
|
|
479
346
|
}
|
|
480
347
|
export declare enum JobLogEvent {
|
|
@@ -496,44 +363,30 @@ export declare enum JobLogEvent {
|
|
|
496
363
|
USING_PREVIOUS_SNAPSHOT = "USING_PREVIOUS_SNAPSHOT",
|
|
497
364
|
USING_PREVIOUS_SNAPSHOT_FAILED = "USING_PREVIOUS_SNAPSHOT_FAILED",
|
|
498
365
|
}
|
|
499
|
-
|
|
500
366
|
export interface JobLogEventData {
|
|
501
367
|
sourceServerID?: string;
|
|
502
|
-
|
|
503
368
|
conversionServerID?: string;
|
|
504
|
-
|
|
505
369
|
targetInstanceID?: string;
|
|
506
|
-
|
|
507
370
|
rawError?: string;
|
|
508
|
-
|
|
509
371
|
conversionProperties?: ConversionProperties;
|
|
510
372
|
}
|
|
511
|
-
|
|
512
373
|
export interface JobLog {
|
|
513
374
|
logDateTime?: string;
|
|
514
|
-
|
|
515
375
|
event?: JobLogEvent | string;
|
|
516
|
-
|
|
517
376
|
eventData?: JobLogEventData;
|
|
518
377
|
}
|
|
519
378
|
export interface DescribeJobLogItemsResponse {
|
|
520
379
|
items?: JobLog[];
|
|
521
|
-
|
|
522
380
|
nextToken?: string;
|
|
523
381
|
}
|
|
524
|
-
|
|
525
382
|
export interface DescribeJobsRequestFilters {
|
|
526
383
|
jobIDs?: string[];
|
|
527
|
-
|
|
528
384
|
fromDate?: string;
|
|
529
|
-
|
|
530
385
|
toDate?: string;
|
|
531
386
|
}
|
|
532
387
|
export interface DescribeJobsRequest {
|
|
533
388
|
filters?: DescribeJobsRequestFilters;
|
|
534
|
-
|
|
535
389
|
maxResults?: number;
|
|
536
|
-
|
|
537
390
|
nextToken?: string;
|
|
538
391
|
}
|
|
539
392
|
export declare enum InitiatedBy {
|
|
@@ -551,12 +404,9 @@ export declare enum LaunchStatus {
|
|
|
551
404
|
PENDING = "PENDING",
|
|
552
405
|
TERMINATED = "TERMINATED",
|
|
553
406
|
}
|
|
554
|
-
|
|
555
407
|
export interface ParticipatingServer {
|
|
556
408
|
sourceServerID?: string;
|
|
557
|
-
|
|
558
409
|
recoveryInstanceID?: string;
|
|
559
|
-
|
|
560
410
|
launchStatus?: LaunchStatus | string;
|
|
561
411
|
}
|
|
562
412
|
export declare enum JobStatus {
|
|
@@ -569,42 +419,28 @@ export declare enum JobType {
|
|
|
569
419
|
LAUNCH = "LAUNCH",
|
|
570
420
|
TERMINATE = "TERMINATE",
|
|
571
421
|
}
|
|
572
|
-
|
|
573
422
|
export interface Job {
|
|
574
423
|
jobID: string | undefined;
|
|
575
|
-
|
|
576
424
|
arn?: string;
|
|
577
|
-
|
|
578
425
|
type?: JobType | string;
|
|
579
|
-
|
|
580
426
|
initiatedBy?: InitiatedBy | string;
|
|
581
|
-
|
|
582
427
|
creationDateTime?: string;
|
|
583
|
-
|
|
584
428
|
endDateTime?: string;
|
|
585
|
-
|
|
586
429
|
status?: JobStatus | string;
|
|
587
|
-
|
|
588
430
|
participatingServers?: ParticipatingServer[];
|
|
589
|
-
|
|
590
431
|
tags?: Record<string, string>;
|
|
591
432
|
}
|
|
592
433
|
export interface DescribeJobsResponse {
|
|
593
434
|
items?: Job[];
|
|
594
|
-
|
|
595
435
|
nextToken?: string;
|
|
596
436
|
}
|
|
597
|
-
|
|
598
437
|
export interface DescribeRecoveryInstancesRequestFilters {
|
|
599
438
|
recoveryInstanceIDs?: string[];
|
|
600
|
-
|
|
601
439
|
sourceServerIDs?: string[];
|
|
602
440
|
}
|
|
603
441
|
export interface DescribeRecoveryInstancesRequest {
|
|
604
442
|
filters?: DescribeRecoveryInstancesRequestFilters;
|
|
605
|
-
|
|
606
443
|
maxResults?: number;
|
|
607
|
-
|
|
608
444
|
nextToken?: string;
|
|
609
445
|
}
|
|
610
446
|
export declare enum FailbackReplicationError {
|
|
@@ -618,10 +454,8 @@ export declare enum FailbackReplicationError {
|
|
|
618
454
|
NOT_CONVERGING = "NOT_CONVERGING",
|
|
619
455
|
UNSTABLE_NETWORK = "UNSTABLE_NETWORK",
|
|
620
456
|
}
|
|
621
|
-
|
|
622
457
|
export interface RecoveryInstanceDataReplicationError {
|
|
623
458
|
error?: FailbackReplicationError | string;
|
|
624
|
-
|
|
625
459
|
rawError?: string;
|
|
626
460
|
}
|
|
627
461
|
export declare enum RecoveryInstanceDataReplicationInitiationStepName {
|
|
@@ -640,16 +474,12 @@ export declare enum RecoveryInstanceDataReplicationInitiationStepStatus {
|
|
|
640
474
|
SKIPPED = "SKIPPED",
|
|
641
475
|
SUCCEEDED = "SUCCEEDED",
|
|
642
476
|
}
|
|
643
|
-
|
|
644
477
|
export interface RecoveryInstanceDataReplicationInitiationStep {
|
|
645
478
|
name?: RecoveryInstanceDataReplicationInitiationStepName | string;
|
|
646
|
-
|
|
647
479
|
status?: RecoveryInstanceDataReplicationInitiationStepStatus | string;
|
|
648
480
|
}
|
|
649
|
-
|
|
650
481
|
export interface RecoveryInstanceDataReplicationInitiation {
|
|
651
482
|
startDateTime?: string;
|
|
652
|
-
|
|
653
483
|
steps?: RecoveryInstanceDataReplicationInitiationStep[];
|
|
654
484
|
}
|
|
655
485
|
export declare enum RecoveryInstanceDataReplicationState {
|
|
@@ -664,30 +494,19 @@ export declare enum RecoveryInstanceDataReplicationState {
|
|
|
664
494
|
STALLED = "STALLED",
|
|
665
495
|
STOPPED = "STOPPED",
|
|
666
496
|
}
|
|
667
|
-
|
|
668
497
|
export interface RecoveryInstanceDataReplicationInfoReplicatedDisk {
|
|
669
498
|
deviceName?: string;
|
|
670
|
-
|
|
671
499
|
totalStorageBytes?: number;
|
|
672
|
-
|
|
673
500
|
replicatedStorageBytes?: number;
|
|
674
|
-
|
|
675
501
|
rescannedStorageBytes?: number;
|
|
676
|
-
|
|
677
502
|
backloggedStorageBytes?: number;
|
|
678
503
|
}
|
|
679
|
-
|
|
680
504
|
export interface RecoveryInstanceDataReplicationInfo {
|
|
681
505
|
lagDuration?: string;
|
|
682
|
-
|
|
683
506
|
etaDateTime?: string;
|
|
684
|
-
|
|
685
507
|
replicatedDisks?: RecoveryInstanceDataReplicationInfoReplicatedDisk[];
|
|
686
|
-
|
|
687
508
|
dataReplicationState?: RecoveryInstanceDataReplicationState | string;
|
|
688
|
-
|
|
689
509
|
dataReplicationInitiation?: RecoveryInstanceDataReplicationInitiation;
|
|
690
|
-
|
|
691
510
|
dataReplicationError?: RecoveryInstanceDataReplicationError;
|
|
692
511
|
}
|
|
693
512
|
export declare enum EC2InstanceState {
|
|
@@ -706,85 +525,51 @@ export declare enum FailbackState {
|
|
|
706
525
|
FAILBACK_NOT_STARTED = "FAILBACK_NOT_STARTED",
|
|
707
526
|
FAILBACK_READY_FOR_LAUNCH = "FAILBACK_READY_FOR_LAUNCH",
|
|
708
527
|
}
|
|
709
|
-
|
|
710
528
|
export interface RecoveryInstanceFailback {
|
|
711
529
|
failbackClientID?: string;
|
|
712
|
-
|
|
713
530
|
failbackJobID?: string;
|
|
714
|
-
|
|
715
531
|
failbackInitiationTime?: string;
|
|
716
|
-
|
|
717
532
|
state?: FailbackState | string;
|
|
718
|
-
|
|
719
533
|
agentLastSeenByServiceDateTime?: string;
|
|
720
|
-
|
|
721
534
|
failbackClientLastSeenByServiceDateTime?: string;
|
|
722
|
-
|
|
723
535
|
failbackToOriginalServer?: boolean;
|
|
724
|
-
|
|
725
536
|
firstByteDateTime?: string;
|
|
726
|
-
|
|
727
537
|
elapsedReplicationDuration?: string;
|
|
728
538
|
}
|
|
729
|
-
|
|
730
539
|
export interface RecoveryInstanceDisk {
|
|
731
540
|
internalDeviceName?: string;
|
|
732
|
-
|
|
733
541
|
bytes?: number;
|
|
734
|
-
|
|
735
542
|
ebsVolumeID?: string;
|
|
736
543
|
}
|
|
737
|
-
|
|
738
544
|
export interface RecoveryInstanceProperties {
|
|
739
545
|
lastUpdatedDateTime?: string;
|
|
740
|
-
|
|
741
546
|
identificationHints?: IdentificationHints;
|
|
742
|
-
|
|
743
547
|
networkInterfaces?: NetworkInterface[];
|
|
744
|
-
|
|
745
548
|
disks?: RecoveryInstanceDisk[];
|
|
746
|
-
|
|
747
549
|
cpus?: CPU[];
|
|
748
|
-
|
|
749
550
|
ramBytes?: number;
|
|
750
|
-
|
|
751
551
|
os?: OS;
|
|
752
552
|
}
|
|
753
|
-
|
|
754
553
|
export interface RecoveryInstance {
|
|
755
554
|
ec2InstanceID?: string;
|
|
756
|
-
|
|
757
555
|
ec2InstanceState?: EC2InstanceState | string;
|
|
758
|
-
|
|
759
556
|
jobID?: string;
|
|
760
|
-
|
|
761
557
|
recoveryInstanceID?: string;
|
|
762
|
-
|
|
763
558
|
sourceServerID?: string;
|
|
764
|
-
|
|
765
559
|
arn?: string;
|
|
766
|
-
|
|
767
560
|
tags?: Record<string, string>;
|
|
768
|
-
|
|
769
561
|
failback?: RecoveryInstanceFailback;
|
|
770
|
-
|
|
771
562
|
dataReplicationInfo?: RecoveryInstanceDataReplicationInfo;
|
|
772
|
-
|
|
773
563
|
recoveryInstanceProperties?: RecoveryInstanceProperties;
|
|
774
|
-
|
|
775
564
|
pointInTimeSnapshotDateTime?: string;
|
|
776
|
-
|
|
777
565
|
isDrill?: boolean;
|
|
778
566
|
}
|
|
779
567
|
export interface DescribeRecoveryInstancesResponse {
|
|
780
568
|
nextToken?: string;
|
|
781
|
-
|
|
782
569
|
items?: RecoveryInstance[];
|
|
783
570
|
}
|
|
784
|
-
|
|
785
571
|
export interface DescribeRecoverySnapshotsRequestFilters {
|
|
786
572
|
fromDateTime?: string;
|
|
787
|
-
|
|
788
573
|
toDateTime?: string;
|
|
789
574
|
}
|
|
790
575
|
export declare enum RecoverySnapshotsOrder {
|
|
@@ -793,62 +578,43 @@ export declare enum RecoverySnapshotsOrder {
|
|
|
793
578
|
}
|
|
794
579
|
export interface DescribeRecoverySnapshotsRequest {
|
|
795
580
|
sourceServerID: string | undefined;
|
|
796
|
-
|
|
797
581
|
filters?: DescribeRecoverySnapshotsRequestFilters;
|
|
798
|
-
|
|
799
582
|
order?: RecoverySnapshotsOrder | string;
|
|
800
|
-
|
|
801
583
|
maxResults?: number;
|
|
802
|
-
|
|
803
584
|
nextToken?: string;
|
|
804
585
|
}
|
|
805
|
-
|
|
806
586
|
export interface RecoverySnapshot {
|
|
807
587
|
snapshotID: string | undefined;
|
|
808
|
-
|
|
809
588
|
sourceServerID: string | undefined;
|
|
810
|
-
|
|
811
589
|
expectedTimestamp: string | undefined;
|
|
812
|
-
|
|
813
590
|
timestamp?: string;
|
|
814
|
-
|
|
815
591
|
ebsSnapshots?: string[];
|
|
816
592
|
}
|
|
817
593
|
export interface DescribeRecoverySnapshotsResponse {
|
|
818
594
|
items?: RecoverySnapshot[];
|
|
819
|
-
|
|
820
595
|
nextToken?: string;
|
|
821
596
|
}
|
|
822
597
|
export interface DescribeReplicationConfigurationTemplatesRequest {
|
|
823
598
|
replicationConfigurationTemplateIDs?: string[];
|
|
824
|
-
|
|
825
599
|
maxResults?: number;
|
|
826
|
-
|
|
827
600
|
nextToken?: string;
|
|
828
601
|
}
|
|
829
602
|
export interface DescribeReplicationConfigurationTemplatesResponse {
|
|
830
603
|
items?: ReplicationConfigurationTemplate[];
|
|
831
|
-
|
|
832
604
|
nextToken?: string;
|
|
833
605
|
}
|
|
834
|
-
|
|
835
606
|
export interface DescribeSourceServersRequestFilters {
|
|
836
607
|
sourceServerIDs?: string[];
|
|
837
|
-
|
|
838
608
|
hardwareId?: string;
|
|
839
|
-
|
|
840
609
|
stagingAccountIDs?: string[];
|
|
841
610
|
}
|
|
842
611
|
export interface DescribeSourceServersRequest {
|
|
843
612
|
filters?: DescribeSourceServersRequestFilters;
|
|
844
|
-
|
|
845
613
|
maxResults?: number;
|
|
846
|
-
|
|
847
614
|
nextToken?: string;
|
|
848
615
|
}
|
|
849
616
|
export interface DescribeSourceServersResponse {
|
|
850
617
|
items?: SourceServer[];
|
|
851
|
-
|
|
852
618
|
nextToken?: string;
|
|
853
619
|
}
|
|
854
620
|
export interface DisconnectRecoveryInstanceRequest {
|
|
@@ -861,32 +627,24 @@ export interface InitializeServiceRequest {}
|
|
|
861
627
|
export interface InitializeServiceResponse {}
|
|
862
628
|
export interface ListExtensibleSourceServersRequest {
|
|
863
629
|
stagingAccountID: string | undefined;
|
|
864
|
-
|
|
865
630
|
maxResults?: number;
|
|
866
|
-
|
|
867
631
|
nextToken?: string;
|
|
868
632
|
}
|
|
869
|
-
|
|
870
633
|
export interface StagingSourceServer {
|
|
871
634
|
hostname?: string;
|
|
872
|
-
|
|
873
635
|
arn?: string;
|
|
874
|
-
|
|
875
636
|
tags?: Record<string, string>;
|
|
876
637
|
}
|
|
877
638
|
export interface ListExtensibleSourceServersResponse {
|
|
878
639
|
items?: StagingSourceServer[];
|
|
879
|
-
|
|
880
640
|
nextToken?: string;
|
|
881
641
|
}
|
|
882
642
|
export interface ListStagingAccountsRequest {
|
|
883
643
|
maxResults?: number;
|
|
884
|
-
|
|
885
644
|
nextToken?: string;
|
|
886
645
|
}
|
|
887
646
|
export interface ListStagingAccountsResponse {
|
|
888
647
|
accounts?: Account[];
|
|
889
|
-
|
|
890
648
|
nextToken?: string;
|
|
891
649
|
}
|
|
892
650
|
export interface ListTagsForResourceRequest {
|
|
@@ -900,16 +658,12 @@ export interface GetFailbackReplicationConfigurationRequest {
|
|
|
900
658
|
}
|
|
901
659
|
export interface GetFailbackReplicationConfigurationResponse {
|
|
902
660
|
recoveryInstanceID: string | undefined;
|
|
903
|
-
|
|
904
661
|
name?: string;
|
|
905
|
-
|
|
906
662
|
bandwidthThrottling?: number;
|
|
907
|
-
|
|
908
663
|
usePrivateIP?: boolean;
|
|
909
664
|
}
|
|
910
665
|
export interface StartFailbackLaunchRequest {
|
|
911
666
|
recoveryInstanceIDs: string[] | undefined;
|
|
912
|
-
|
|
913
667
|
tags?: Record<string, string>;
|
|
914
668
|
}
|
|
915
669
|
export interface StartFailbackLaunchResponse {
|
|
@@ -926,44 +680,27 @@ export interface TerminateRecoveryInstancesResponse {
|
|
|
926
680
|
}
|
|
927
681
|
export interface UpdateFailbackReplicationConfigurationRequest {
|
|
928
682
|
recoveryInstanceID: string | undefined;
|
|
929
|
-
|
|
930
683
|
name?: string;
|
|
931
|
-
|
|
932
684
|
bandwidthThrottling?: number;
|
|
933
|
-
|
|
934
685
|
usePrivateIP?: boolean;
|
|
935
686
|
}
|
|
936
687
|
export interface UpdateReplicationConfigurationTemplateRequest {
|
|
937
688
|
replicationConfigurationTemplateID: string | undefined;
|
|
938
|
-
|
|
939
689
|
arn?: string;
|
|
940
|
-
|
|
941
690
|
stagingAreaSubnetId?: string;
|
|
942
|
-
|
|
943
691
|
associateDefaultSecurityGroup?: boolean;
|
|
944
|
-
|
|
945
692
|
replicationServersSecurityGroupsIDs?: string[];
|
|
946
|
-
|
|
947
693
|
replicationServerInstanceType?: string;
|
|
948
|
-
|
|
949
694
|
useDedicatedReplicationServer?: boolean;
|
|
950
|
-
|
|
951
695
|
defaultLargeStagingDiskType?:
|
|
952
696
|
| ReplicationConfigurationDefaultLargeStagingDiskType
|
|
953
697
|
| string;
|
|
954
|
-
|
|
955
698
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
956
|
-
|
|
957
699
|
ebsEncryptionKeyArn?: string;
|
|
958
|
-
|
|
959
700
|
bandwidthThrottling?: number;
|
|
960
|
-
|
|
961
701
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
962
|
-
|
|
963
702
|
createPublicIP?: boolean;
|
|
964
|
-
|
|
965
703
|
stagingAreaTags?: Record<string, string>;
|
|
966
|
-
|
|
967
704
|
pitPolicy?: PITPolicyRule[];
|
|
968
705
|
}
|
|
969
706
|
export interface GetLaunchConfigurationRequest {
|
|
@@ -973,7 +710,6 @@ export declare enum LaunchDisposition {
|
|
|
973
710
|
STARTED = "STARTED",
|
|
974
711
|
STOPPED = "STOPPED",
|
|
975
712
|
}
|
|
976
|
-
|
|
977
713
|
export interface Licensing {
|
|
978
714
|
osByol?: boolean;
|
|
979
715
|
}
|
|
@@ -983,21 +719,14 @@ export declare enum TargetInstanceTypeRightSizingMethod {
|
|
|
983
719
|
}
|
|
984
720
|
export interface LaunchConfiguration {
|
|
985
721
|
sourceServerID?: string;
|
|
986
|
-
|
|
987
722
|
name?: string;
|
|
988
|
-
|
|
989
723
|
ec2LaunchTemplateID?: string;
|
|
990
|
-
|
|
991
724
|
launchDisposition?: LaunchDisposition | string;
|
|
992
|
-
|
|
993
725
|
targetInstanceTypeRightSizingMethod?:
|
|
994
726
|
| TargetInstanceTypeRightSizingMethod
|
|
995
727
|
| string;
|
|
996
|
-
|
|
997
728
|
copyPrivateIp?: boolean;
|
|
998
|
-
|
|
999
729
|
copyTags?: boolean;
|
|
1000
|
-
|
|
1001
730
|
licensing?: Licensing;
|
|
1002
731
|
}
|
|
1003
732
|
export interface GetReplicationConfigurationRequest {
|
|
@@ -1012,73 +741,48 @@ export declare enum ReplicationConfigurationReplicatedDiskStagingDiskType {
|
|
|
1012
741
|
ST1 = "ST1",
|
|
1013
742
|
STANDARD = "STANDARD",
|
|
1014
743
|
}
|
|
1015
|
-
|
|
1016
744
|
export interface ReplicationConfigurationReplicatedDisk {
|
|
1017
745
|
deviceName?: string;
|
|
1018
|
-
|
|
1019
746
|
isBootDisk?: boolean;
|
|
1020
|
-
|
|
1021
747
|
stagingDiskType?:
|
|
1022
748
|
| ReplicationConfigurationReplicatedDiskStagingDiskType
|
|
1023
749
|
| string;
|
|
1024
|
-
|
|
1025
750
|
iops?: number;
|
|
1026
|
-
|
|
1027
751
|
throughput?: number;
|
|
1028
|
-
|
|
1029
752
|
optimizedStagingDiskType?:
|
|
1030
753
|
| ReplicationConfigurationReplicatedDiskStagingDiskType
|
|
1031
754
|
| string;
|
|
1032
755
|
}
|
|
1033
756
|
export interface ReplicationConfiguration {
|
|
1034
757
|
sourceServerID?: string;
|
|
1035
|
-
|
|
1036
758
|
name?: string;
|
|
1037
|
-
|
|
1038
759
|
stagingAreaSubnetId?: string;
|
|
1039
|
-
|
|
1040
760
|
associateDefaultSecurityGroup?: boolean;
|
|
1041
|
-
|
|
1042
761
|
replicationServersSecurityGroupsIDs?: string[];
|
|
1043
|
-
|
|
1044
762
|
replicationServerInstanceType?: string;
|
|
1045
|
-
|
|
1046
763
|
useDedicatedReplicationServer?: boolean;
|
|
1047
|
-
|
|
1048
764
|
defaultLargeStagingDiskType?:
|
|
1049
765
|
| ReplicationConfigurationDefaultLargeStagingDiskType
|
|
1050
766
|
| string;
|
|
1051
|
-
|
|
1052
767
|
replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
|
|
1053
|
-
|
|
1054
768
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
1055
|
-
|
|
1056
769
|
ebsEncryptionKeyArn?: string;
|
|
1057
|
-
|
|
1058
770
|
bandwidthThrottling?: number;
|
|
1059
|
-
|
|
1060
771
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
1061
|
-
|
|
1062
772
|
createPublicIP?: boolean;
|
|
1063
|
-
|
|
1064
773
|
stagingAreaTags?: Record<string, string>;
|
|
1065
|
-
|
|
1066
774
|
pitPolicy?: PITPolicyRule[];
|
|
1067
775
|
}
|
|
1068
776
|
export interface RetryDataReplicationRequest {
|
|
1069
777
|
sourceServerID: string | undefined;
|
|
1070
778
|
}
|
|
1071
|
-
|
|
1072
779
|
export interface StartRecoveryRequestSourceServer {
|
|
1073
780
|
sourceServerID: string | undefined;
|
|
1074
|
-
|
|
1075
781
|
recoverySnapshotID?: string;
|
|
1076
782
|
}
|
|
1077
783
|
export interface StartRecoveryRequest {
|
|
1078
784
|
sourceServers: StartRecoveryRequestSourceServer[] | undefined;
|
|
1079
|
-
|
|
1080
785
|
isDrill?: boolean;
|
|
1081
|
-
|
|
1082
786
|
tags?: Record<string, string>;
|
|
1083
787
|
}
|
|
1084
788
|
export interface StartRecoveryResponse {
|
|
@@ -1086,423 +790,305 @@ export interface StartRecoveryResponse {
|
|
|
1086
790
|
}
|
|
1087
791
|
export interface UpdateLaunchConfigurationRequest {
|
|
1088
792
|
sourceServerID: string | undefined;
|
|
1089
|
-
|
|
1090
793
|
name?: string;
|
|
1091
|
-
|
|
1092
794
|
launchDisposition?: LaunchDisposition | string;
|
|
1093
|
-
|
|
1094
795
|
targetInstanceTypeRightSizingMethod?:
|
|
1095
796
|
| TargetInstanceTypeRightSizingMethod
|
|
1096
797
|
| string;
|
|
1097
|
-
|
|
1098
798
|
copyPrivateIp?: boolean;
|
|
1099
|
-
|
|
1100
799
|
copyTags?: boolean;
|
|
1101
|
-
|
|
1102
800
|
licensing?: Licensing;
|
|
1103
801
|
}
|
|
1104
802
|
export interface UpdateReplicationConfigurationRequest {
|
|
1105
803
|
sourceServerID: string | undefined;
|
|
1106
|
-
|
|
1107
804
|
name?: string;
|
|
1108
|
-
|
|
1109
805
|
stagingAreaSubnetId?: string;
|
|
1110
|
-
|
|
1111
806
|
associateDefaultSecurityGroup?: boolean;
|
|
1112
|
-
|
|
1113
807
|
replicationServersSecurityGroupsIDs?: string[];
|
|
1114
|
-
|
|
1115
808
|
replicationServerInstanceType?: string;
|
|
1116
|
-
|
|
1117
809
|
useDedicatedReplicationServer?: boolean;
|
|
1118
|
-
|
|
1119
810
|
defaultLargeStagingDiskType?:
|
|
1120
811
|
| ReplicationConfigurationDefaultLargeStagingDiskType
|
|
1121
812
|
| string;
|
|
1122
|
-
|
|
1123
813
|
replicatedDisks?: ReplicationConfigurationReplicatedDisk[];
|
|
1124
|
-
|
|
1125
814
|
ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
|
|
1126
|
-
|
|
1127
815
|
ebsEncryptionKeyArn?: string;
|
|
1128
|
-
|
|
1129
816
|
bandwidthThrottling?: number;
|
|
1130
|
-
|
|
1131
817
|
dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
|
|
1132
|
-
|
|
1133
818
|
createPublicIP?: boolean;
|
|
1134
|
-
|
|
1135
819
|
stagingAreaTags?: Record<string, string>;
|
|
1136
|
-
|
|
1137
820
|
pitPolicy?: PITPolicyRule[];
|
|
1138
821
|
}
|
|
1139
822
|
export interface TagResourceRequest {
|
|
1140
823
|
resourceArn: string | undefined;
|
|
1141
|
-
|
|
1142
824
|
tags: Record<string, string> | undefined;
|
|
1143
825
|
}
|
|
1144
826
|
export interface UntagResourceRequest {
|
|
1145
827
|
resourceArn: string | undefined;
|
|
1146
|
-
|
|
1147
828
|
tagKeys: string[] | undefined;
|
|
1148
829
|
}
|
|
1149
|
-
|
|
1150
830
|
export declare const AccountFilterSensitiveLog: (obj: Account) => any;
|
|
1151
|
-
|
|
1152
831
|
export declare const ConversionPropertiesFilterSensitiveLog: (
|
|
1153
832
|
obj: ConversionProperties
|
|
1154
833
|
) => any;
|
|
1155
|
-
|
|
1156
834
|
export declare const CPUFilterSensitiveLog: (obj: CPU) => any;
|
|
1157
|
-
|
|
1158
835
|
export declare const CreateExtendedSourceServerRequestFilterSensitiveLog: (
|
|
1159
836
|
obj: CreateExtendedSourceServerRequest
|
|
1160
837
|
) => any;
|
|
1161
|
-
|
|
1162
838
|
export declare const DataReplicationErrorFilterSensitiveLog: (
|
|
1163
839
|
obj: DataReplicationError
|
|
1164
840
|
) => any;
|
|
1165
|
-
|
|
1166
841
|
export declare const DataReplicationInitiationStepFilterSensitiveLog: (
|
|
1167
842
|
obj: DataReplicationInitiationStep
|
|
1168
843
|
) => any;
|
|
1169
|
-
|
|
1170
844
|
export declare const DataReplicationInitiationFilterSensitiveLog: (
|
|
1171
845
|
obj: DataReplicationInitiation
|
|
1172
846
|
) => any;
|
|
1173
|
-
|
|
1174
847
|
export declare const DataReplicationInfoReplicatedDiskFilterSensitiveLog: (
|
|
1175
848
|
obj: DataReplicationInfoReplicatedDisk
|
|
1176
849
|
) => any;
|
|
1177
|
-
|
|
1178
850
|
export declare const DataReplicationInfoFilterSensitiveLog: (
|
|
1179
851
|
obj: DataReplicationInfo
|
|
1180
852
|
) => any;
|
|
1181
|
-
|
|
1182
853
|
export declare const LifeCycleLastLaunchInitiatedFilterSensitiveLog: (
|
|
1183
854
|
obj: LifeCycleLastLaunchInitiated
|
|
1184
855
|
) => any;
|
|
1185
|
-
|
|
1186
856
|
export declare const LifeCycleLastLaunchFilterSensitiveLog: (
|
|
1187
857
|
obj: LifeCycleLastLaunch
|
|
1188
858
|
) => any;
|
|
1189
|
-
|
|
1190
859
|
export declare const LifeCycleFilterSensitiveLog: (obj: LifeCycle) => any;
|
|
1191
|
-
|
|
1192
860
|
export declare const DiskFilterSensitiveLog: (obj: Disk) => any;
|
|
1193
|
-
|
|
1194
861
|
export declare const IdentificationHintsFilterSensitiveLog: (
|
|
1195
862
|
obj: IdentificationHints
|
|
1196
863
|
) => any;
|
|
1197
|
-
|
|
1198
864
|
export declare const NetworkInterfaceFilterSensitiveLog: (
|
|
1199
865
|
obj: NetworkInterface
|
|
1200
866
|
) => any;
|
|
1201
|
-
|
|
1202
867
|
export declare const OSFilterSensitiveLog: (obj: OS) => any;
|
|
1203
|
-
|
|
1204
868
|
export declare const SourcePropertiesFilterSensitiveLog: (
|
|
1205
869
|
obj: SourceProperties
|
|
1206
870
|
) => any;
|
|
1207
|
-
|
|
1208
871
|
export declare const StagingAreaFilterSensitiveLog: (obj: StagingArea) => any;
|
|
1209
|
-
|
|
1210
872
|
export declare const SourceServerFilterSensitiveLog: (obj: SourceServer) => any;
|
|
1211
|
-
|
|
1212
873
|
export declare const CreateExtendedSourceServerResponseFilterSensitiveLog: (
|
|
1213
874
|
obj: CreateExtendedSourceServerResponse
|
|
1214
875
|
) => any;
|
|
1215
|
-
|
|
1216
876
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
1217
877
|
obj: ValidationExceptionField
|
|
1218
878
|
) => any;
|
|
1219
|
-
|
|
1220
879
|
export declare const PITPolicyRuleFilterSensitiveLog: (
|
|
1221
880
|
obj: PITPolicyRule
|
|
1222
881
|
) => any;
|
|
1223
|
-
|
|
1224
882
|
export declare const CreateReplicationConfigurationTemplateRequestFilterSensitiveLog: (
|
|
1225
883
|
obj: CreateReplicationConfigurationTemplateRequest
|
|
1226
884
|
) => any;
|
|
1227
|
-
|
|
1228
885
|
export declare const ReplicationConfigurationTemplateFilterSensitiveLog: (
|
|
1229
886
|
obj: ReplicationConfigurationTemplate
|
|
1230
887
|
) => any;
|
|
1231
|
-
|
|
1232
888
|
export declare const DeleteJobRequestFilterSensitiveLog: (
|
|
1233
889
|
obj: DeleteJobRequest
|
|
1234
890
|
) => any;
|
|
1235
|
-
|
|
1236
891
|
export declare const DeleteJobResponseFilterSensitiveLog: (
|
|
1237
892
|
obj: DeleteJobResponse
|
|
1238
893
|
) => any;
|
|
1239
|
-
|
|
1240
894
|
export declare const DeleteRecoveryInstanceRequestFilterSensitiveLog: (
|
|
1241
895
|
obj: DeleteRecoveryInstanceRequest
|
|
1242
896
|
) => any;
|
|
1243
|
-
|
|
1244
897
|
export declare const DeleteReplicationConfigurationTemplateRequestFilterSensitiveLog: (
|
|
1245
898
|
obj: DeleteReplicationConfigurationTemplateRequest
|
|
1246
899
|
) => any;
|
|
1247
|
-
|
|
1248
900
|
export declare const DeleteReplicationConfigurationTemplateResponseFilterSensitiveLog: (
|
|
1249
901
|
obj: DeleteReplicationConfigurationTemplateResponse
|
|
1250
902
|
) => any;
|
|
1251
|
-
|
|
1252
903
|
export declare const DeleteSourceServerRequestFilterSensitiveLog: (
|
|
1253
904
|
obj: DeleteSourceServerRequest
|
|
1254
905
|
) => any;
|
|
1255
|
-
|
|
1256
906
|
export declare const DeleteSourceServerResponseFilterSensitiveLog: (
|
|
1257
907
|
obj: DeleteSourceServerResponse
|
|
1258
908
|
) => any;
|
|
1259
|
-
|
|
1260
909
|
export declare const DescribeJobLogItemsRequestFilterSensitiveLog: (
|
|
1261
910
|
obj: DescribeJobLogItemsRequest
|
|
1262
911
|
) => any;
|
|
1263
|
-
|
|
1264
912
|
export declare const JobLogEventDataFilterSensitiveLog: (
|
|
1265
913
|
obj: JobLogEventData
|
|
1266
914
|
) => any;
|
|
1267
|
-
|
|
1268
915
|
export declare const JobLogFilterSensitiveLog: (obj: JobLog) => any;
|
|
1269
|
-
|
|
1270
916
|
export declare const DescribeJobLogItemsResponseFilterSensitiveLog: (
|
|
1271
917
|
obj: DescribeJobLogItemsResponse
|
|
1272
918
|
) => any;
|
|
1273
|
-
|
|
1274
919
|
export declare const DescribeJobsRequestFiltersFilterSensitiveLog: (
|
|
1275
920
|
obj: DescribeJobsRequestFilters
|
|
1276
921
|
) => any;
|
|
1277
|
-
|
|
1278
922
|
export declare const DescribeJobsRequestFilterSensitiveLog: (
|
|
1279
923
|
obj: DescribeJobsRequest
|
|
1280
924
|
) => any;
|
|
1281
|
-
|
|
1282
925
|
export declare const ParticipatingServerFilterSensitiveLog: (
|
|
1283
926
|
obj: ParticipatingServer
|
|
1284
927
|
) => any;
|
|
1285
|
-
|
|
1286
928
|
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
1287
|
-
|
|
1288
929
|
export declare const DescribeJobsResponseFilterSensitiveLog: (
|
|
1289
930
|
obj: DescribeJobsResponse
|
|
1290
931
|
) => any;
|
|
1291
|
-
|
|
1292
932
|
export declare const DescribeRecoveryInstancesRequestFiltersFilterSensitiveLog: (
|
|
1293
933
|
obj: DescribeRecoveryInstancesRequestFilters
|
|
1294
934
|
) => any;
|
|
1295
|
-
|
|
1296
935
|
export declare const DescribeRecoveryInstancesRequestFilterSensitiveLog: (
|
|
1297
936
|
obj: DescribeRecoveryInstancesRequest
|
|
1298
937
|
) => any;
|
|
1299
|
-
|
|
1300
938
|
export declare const RecoveryInstanceDataReplicationErrorFilterSensitiveLog: (
|
|
1301
939
|
obj: RecoveryInstanceDataReplicationError
|
|
1302
940
|
) => any;
|
|
1303
|
-
|
|
1304
941
|
export declare const RecoveryInstanceDataReplicationInitiationStepFilterSensitiveLog: (
|
|
1305
942
|
obj: RecoveryInstanceDataReplicationInitiationStep
|
|
1306
943
|
) => any;
|
|
1307
|
-
|
|
1308
944
|
export declare const RecoveryInstanceDataReplicationInitiationFilterSensitiveLog: (
|
|
1309
945
|
obj: RecoveryInstanceDataReplicationInitiation
|
|
1310
946
|
) => any;
|
|
1311
|
-
|
|
1312
947
|
export declare const RecoveryInstanceDataReplicationInfoReplicatedDiskFilterSensitiveLog: (
|
|
1313
948
|
obj: RecoveryInstanceDataReplicationInfoReplicatedDisk
|
|
1314
949
|
) => any;
|
|
1315
|
-
|
|
1316
950
|
export declare const RecoveryInstanceDataReplicationInfoFilterSensitiveLog: (
|
|
1317
951
|
obj: RecoveryInstanceDataReplicationInfo
|
|
1318
952
|
) => any;
|
|
1319
|
-
|
|
1320
953
|
export declare const RecoveryInstanceFailbackFilterSensitiveLog: (
|
|
1321
954
|
obj: RecoveryInstanceFailback
|
|
1322
955
|
) => any;
|
|
1323
|
-
|
|
1324
956
|
export declare const RecoveryInstanceDiskFilterSensitiveLog: (
|
|
1325
957
|
obj: RecoveryInstanceDisk
|
|
1326
958
|
) => any;
|
|
1327
|
-
|
|
1328
959
|
export declare const RecoveryInstancePropertiesFilterSensitiveLog: (
|
|
1329
960
|
obj: RecoveryInstanceProperties
|
|
1330
961
|
) => any;
|
|
1331
|
-
|
|
1332
962
|
export declare const RecoveryInstanceFilterSensitiveLog: (
|
|
1333
963
|
obj: RecoveryInstance
|
|
1334
964
|
) => any;
|
|
1335
|
-
|
|
1336
965
|
export declare const DescribeRecoveryInstancesResponseFilterSensitiveLog: (
|
|
1337
966
|
obj: DescribeRecoveryInstancesResponse
|
|
1338
967
|
) => any;
|
|
1339
|
-
|
|
1340
968
|
export declare const DescribeRecoverySnapshotsRequestFiltersFilterSensitiveLog: (
|
|
1341
969
|
obj: DescribeRecoverySnapshotsRequestFilters
|
|
1342
970
|
) => any;
|
|
1343
|
-
|
|
1344
971
|
export declare const DescribeRecoverySnapshotsRequestFilterSensitiveLog: (
|
|
1345
972
|
obj: DescribeRecoverySnapshotsRequest
|
|
1346
973
|
) => any;
|
|
1347
|
-
|
|
1348
974
|
export declare const RecoverySnapshotFilterSensitiveLog: (
|
|
1349
975
|
obj: RecoverySnapshot
|
|
1350
976
|
) => any;
|
|
1351
|
-
|
|
1352
977
|
export declare const DescribeRecoverySnapshotsResponseFilterSensitiveLog: (
|
|
1353
978
|
obj: DescribeRecoverySnapshotsResponse
|
|
1354
979
|
) => any;
|
|
1355
|
-
|
|
1356
980
|
export declare const DescribeReplicationConfigurationTemplatesRequestFilterSensitiveLog: (
|
|
1357
981
|
obj: DescribeReplicationConfigurationTemplatesRequest
|
|
1358
982
|
) => any;
|
|
1359
|
-
|
|
1360
983
|
export declare const DescribeReplicationConfigurationTemplatesResponseFilterSensitiveLog: (
|
|
1361
984
|
obj: DescribeReplicationConfigurationTemplatesResponse
|
|
1362
985
|
) => any;
|
|
1363
|
-
|
|
1364
986
|
export declare const DescribeSourceServersRequestFiltersFilterSensitiveLog: (
|
|
1365
987
|
obj: DescribeSourceServersRequestFilters
|
|
1366
988
|
) => any;
|
|
1367
|
-
|
|
1368
989
|
export declare const DescribeSourceServersRequestFilterSensitiveLog: (
|
|
1369
990
|
obj: DescribeSourceServersRequest
|
|
1370
991
|
) => any;
|
|
1371
|
-
|
|
1372
992
|
export declare const DescribeSourceServersResponseFilterSensitiveLog: (
|
|
1373
993
|
obj: DescribeSourceServersResponse
|
|
1374
994
|
) => any;
|
|
1375
|
-
|
|
1376
995
|
export declare const DisconnectRecoveryInstanceRequestFilterSensitiveLog: (
|
|
1377
996
|
obj: DisconnectRecoveryInstanceRequest
|
|
1378
997
|
) => any;
|
|
1379
|
-
|
|
1380
998
|
export declare const DisconnectSourceServerRequestFilterSensitiveLog: (
|
|
1381
999
|
obj: DisconnectSourceServerRequest
|
|
1382
1000
|
) => any;
|
|
1383
|
-
|
|
1384
1001
|
export declare const InitializeServiceRequestFilterSensitiveLog: (
|
|
1385
1002
|
obj: InitializeServiceRequest
|
|
1386
1003
|
) => any;
|
|
1387
|
-
|
|
1388
1004
|
export declare const InitializeServiceResponseFilterSensitiveLog: (
|
|
1389
1005
|
obj: InitializeServiceResponse
|
|
1390
1006
|
) => any;
|
|
1391
|
-
|
|
1392
1007
|
export declare const ListExtensibleSourceServersRequestFilterSensitiveLog: (
|
|
1393
1008
|
obj: ListExtensibleSourceServersRequest
|
|
1394
1009
|
) => any;
|
|
1395
|
-
|
|
1396
1010
|
export declare const StagingSourceServerFilterSensitiveLog: (
|
|
1397
1011
|
obj: StagingSourceServer
|
|
1398
1012
|
) => any;
|
|
1399
|
-
|
|
1400
1013
|
export declare const ListExtensibleSourceServersResponseFilterSensitiveLog: (
|
|
1401
1014
|
obj: ListExtensibleSourceServersResponse
|
|
1402
1015
|
) => any;
|
|
1403
|
-
|
|
1404
1016
|
export declare const ListStagingAccountsRequestFilterSensitiveLog: (
|
|
1405
1017
|
obj: ListStagingAccountsRequest
|
|
1406
1018
|
) => any;
|
|
1407
|
-
|
|
1408
1019
|
export declare const ListStagingAccountsResponseFilterSensitiveLog: (
|
|
1409
1020
|
obj: ListStagingAccountsResponse
|
|
1410
1021
|
) => any;
|
|
1411
|
-
|
|
1412
1022
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1413
1023
|
obj: ListTagsForResourceRequest
|
|
1414
1024
|
) => any;
|
|
1415
|
-
|
|
1416
1025
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1417
1026
|
obj: ListTagsForResourceResponse
|
|
1418
1027
|
) => any;
|
|
1419
|
-
|
|
1420
1028
|
export declare const GetFailbackReplicationConfigurationRequestFilterSensitiveLog: (
|
|
1421
1029
|
obj: GetFailbackReplicationConfigurationRequest
|
|
1422
1030
|
) => any;
|
|
1423
|
-
|
|
1424
1031
|
export declare const GetFailbackReplicationConfigurationResponseFilterSensitiveLog: (
|
|
1425
1032
|
obj: GetFailbackReplicationConfigurationResponse
|
|
1426
1033
|
) => any;
|
|
1427
|
-
|
|
1428
1034
|
export declare const StartFailbackLaunchRequestFilterSensitiveLog: (
|
|
1429
1035
|
obj: StartFailbackLaunchRequest
|
|
1430
1036
|
) => any;
|
|
1431
|
-
|
|
1432
1037
|
export declare const StartFailbackLaunchResponseFilterSensitiveLog: (
|
|
1433
1038
|
obj: StartFailbackLaunchResponse
|
|
1434
1039
|
) => any;
|
|
1435
|
-
|
|
1436
1040
|
export declare const StopFailbackRequestFilterSensitiveLog: (
|
|
1437
1041
|
obj: StopFailbackRequest
|
|
1438
1042
|
) => any;
|
|
1439
|
-
|
|
1440
1043
|
export declare const TerminateRecoveryInstancesRequestFilterSensitiveLog: (
|
|
1441
1044
|
obj: TerminateRecoveryInstancesRequest
|
|
1442
1045
|
) => any;
|
|
1443
|
-
|
|
1444
1046
|
export declare const TerminateRecoveryInstancesResponseFilterSensitiveLog: (
|
|
1445
1047
|
obj: TerminateRecoveryInstancesResponse
|
|
1446
1048
|
) => any;
|
|
1447
|
-
|
|
1448
1049
|
export declare const UpdateFailbackReplicationConfigurationRequestFilterSensitiveLog: (
|
|
1449
1050
|
obj: UpdateFailbackReplicationConfigurationRequest
|
|
1450
1051
|
) => any;
|
|
1451
|
-
|
|
1452
1052
|
export declare const UpdateReplicationConfigurationTemplateRequestFilterSensitiveLog: (
|
|
1453
1053
|
obj: UpdateReplicationConfigurationTemplateRequest
|
|
1454
1054
|
) => any;
|
|
1455
|
-
|
|
1456
1055
|
export declare const GetLaunchConfigurationRequestFilterSensitiveLog: (
|
|
1457
1056
|
obj: GetLaunchConfigurationRequest
|
|
1458
1057
|
) => any;
|
|
1459
|
-
|
|
1460
1058
|
export declare const LicensingFilterSensitiveLog: (obj: Licensing) => any;
|
|
1461
|
-
|
|
1462
1059
|
export declare const LaunchConfigurationFilterSensitiveLog: (
|
|
1463
1060
|
obj: LaunchConfiguration
|
|
1464
1061
|
) => any;
|
|
1465
|
-
|
|
1466
1062
|
export declare const GetReplicationConfigurationRequestFilterSensitiveLog: (
|
|
1467
1063
|
obj: GetReplicationConfigurationRequest
|
|
1468
1064
|
) => any;
|
|
1469
|
-
|
|
1470
1065
|
export declare const ReplicationConfigurationReplicatedDiskFilterSensitiveLog: (
|
|
1471
1066
|
obj: ReplicationConfigurationReplicatedDisk
|
|
1472
1067
|
) => any;
|
|
1473
|
-
|
|
1474
1068
|
export declare const ReplicationConfigurationFilterSensitiveLog: (
|
|
1475
1069
|
obj: ReplicationConfiguration
|
|
1476
1070
|
) => any;
|
|
1477
|
-
|
|
1478
1071
|
export declare const RetryDataReplicationRequestFilterSensitiveLog: (
|
|
1479
1072
|
obj: RetryDataReplicationRequest
|
|
1480
1073
|
) => any;
|
|
1481
|
-
|
|
1482
1074
|
export declare const StartRecoveryRequestSourceServerFilterSensitiveLog: (
|
|
1483
1075
|
obj: StartRecoveryRequestSourceServer
|
|
1484
1076
|
) => any;
|
|
1485
|
-
|
|
1486
1077
|
export declare const StartRecoveryRequestFilterSensitiveLog: (
|
|
1487
1078
|
obj: StartRecoveryRequest
|
|
1488
1079
|
) => any;
|
|
1489
|
-
|
|
1490
1080
|
export declare const StartRecoveryResponseFilterSensitiveLog: (
|
|
1491
1081
|
obj: StartRecoveryResponse
|
|
1492
1082
|
) => any;
|
|
1493
|
-
|
|
1494
1083
|
export declare const UpdateLaunchConfigurationRequestFilterSensitiveLog: (
|
|
1495
1084
|
obj: UpdateLaunchConfigurationRequest
|
|
1496
1085
|
) => any;
|
|
1497
|
-
|
|
1498
1086
|
export declare const UpdateReplicationConfigurationRequestFilterSensitiveLog: (
|
|
1499
1087
|
obj: UpdateReplicationConfigurationRequest
|
|
1500
1088
|
) => any;
|
|
1501
|
-
|
|
1502
1089
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1503
1090
|
obj: TagResourceRequest
|
|
1504
1091
|
) => any;
|
|
1505
|
-
|
|
1506
1092
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1507
1093
|
obj: UntagResourceRequest
|
|
1508
1094
|
) => any;
|