@aws-sdk/client-drs 3.100.0 → 3.109.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/Drs.js +45 -0
  4. package/dist-cjs/DrsClient.js +2 -0
  5. package/dist-cjs/commands/CreateExtendedSourceServerCommand.js +36 -0
  6. package/dist-cjs/commands/ListExtensibleSourceServersCommand.js +36 -0
  7. package/dist-cjs/commands/ListStagingAccountsCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +3 -0
  9. package/dist-cjs/models/models_0.js +273 -201
  10. package/dist-cjs/pagination/ListExtensibleSourceServersPaginator.js +36 -0
  11. package/dist-cjs/pagination/ListStagingAccountsPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +2 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +353 -2
  14. package/dist-es/Drs.js +45 -0
  15. package/dist-es/DrsClient.js +2 -0
  16. package/dist-es/commands/CreateExtendedSourceServerCommand.js +39 -0
  17. package/dist-es/commands/ListExtensibleSourceServersCommand.js +39 -0
  18. package/dist-es/commands/ListStagingAccountsCommand.js +39 -0
  19. package/dist-es/commands/index.js +3 -0
  20. package/dist-es/models/models_0.js +217 -169
  21. package/dist-es/pagination/ListExtensibleSourceServersPaginator.js +75 -0
  22. package/dist-es/pagination/ListStagingAccountsPaginator.js +75 -0
  23. package/dist-es/pagination/index.js +2 -0
  24. package/dist-es/protocols/Aws_restJson1.js +439 -15
  25. package/dist-types/Drs.d.ts +24 -0
  26. package/dist-types/DrsClient.d.ts +5 -2
  27. package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +35 -0
  28. package/dist-types/commands/ListExtensibleSourceServersCommand.d.ts +38 -0
  29. package/dist-types/commands/ListStagingAccountsCommand.d.ts +35 -0
  30. package/dist-types/commands/index.d.ts +3 -0
  31. package/dist-types/models/models_0.d.ts +723 -537
  32. package/dist-types/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  33. package/dist-types/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +2 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  36. package/dist-types/ts3.4/Drs.d.ts +15 -0
  37. package/dist-types/ts3.4/DrsClient.d.ts +5 -2
  38. package/dist-types/ts3.4/commands/CreateExtendedSourceServerCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/ListExtensibleSourceServersCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/ListStagingAccountsCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +437 -338
  43. package/dist-types/ts3.4/pagination/ListExtensibleSourceServersPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListStagingAccountsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
  47. package/package.json +29 -28
@@ -9,6 +9,15 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
10
  }
11
11
 
12
+ export interface Account {
13
+
14
+ accountID?: string;
15
+ }
16
+ export declare namespace Account {
17
+
18
+ const filterSensitiveLog: (obj: Account) => any;
19
+ }
20
+
12
21
  export declare class ConflictException extends __BaseException {
13
22
  readonly name: "ConflictException";
14
23
  readonly $fault: "client";
@@ -21,6 +30,23 @@ export declare class ConflictException extends __BaseException {
21
30
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
22
31
  }
23
32
 
33
+ export interface ConversionProperties {
34
+
35
+ volumeToConversionMap?: Record<string, Record<string, string>>;
36
+
37
+ rootVolumeName?: string;
38
+
39
+ forceUefi?: boolean;
40
+
41
+ dataTimestamp?: string;
42
+
43
+ volumeToVolumeSize?: Record<string, number>;
44
+ }
45
+ export declare namespace ConversionProperties {
46
+
47
+ const filterSensitiveLog: (obj: ConversionProperties) => any;
48
+ }
49
+
24
50
  export interface CPU {
25
51
 
26
52
  cores?: number;
@@ -31,129 +57,327 @@ export declare namespace CPU {
31
57
 
32
58
  const filterSensitiveLog: (obj: CPU) => any;
33
59
  }
34
- export declare enum ReplicationConfigurationDataPlaneRouting {
35
- PRIVATE_IP = "PRIVATE_IP",
36
- PUBLIC_IP = "PUBLIC_IP"
60
+ export interface CreateExtendedSourceServerRequest {
61
+
62
+ sourceServerArn: string | undefined;
63
+
64
+ tags?: Record<string, string>;
37
65
  }
38
- export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
39
- GP2 = "GP2",
40
- GP3 = "GP3",
41
- ST1 = "ST1"
66
+ export declare namespace CreateExtendedSourceServerRequest {
67
+
68
+ const filterSensitiveLog: (obj: CreateExtendedSourceServerRequest) => any;
42
69
  }
43
- export declare enum ReplicationConfigurationEbsEncryption {
44
- CUSTOM = "CUSTOM",
45
- DEFAULT = "DEFAULT"
70
+ export declare enum DataReplicationErrorString {
71
+ AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
72
+ FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
73
+ FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
74
+ FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
75
+ FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
76
+ FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
77
+ FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
78
+ FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
79
+ FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
80
+ FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
81
+ FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
82
+ NOT_CONVERGING = "NOT_CONVERGING",
83
+ SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
84
+ UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
46
85
  }
47
- export declare enum PITPolicyRuleUnits {
48
- DAY = "DAY",
49
- HOUR = "HOUR",
50
- MINUTE = "MINUTE"
86
+
87
+ export interface DataReplicationError {
88
+
89
+ error?: DataReplicationErrorString | string;
90
+
91
+ rawError?: string;
92
+ }
93
+ export declare namespace DataReplicationError {
94
+
95
+ const filterSensitiveLog: (obj: DataReplicationError) => any;
96
+ }
97
+ export declare enum DataReplicationInitiationStepName {
98
+ ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
99
+ AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
100
+ BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
101
+ CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
102
+ CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
103
+ CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
104
+ DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
105
+ LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
106
+ PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
107
+ START_DATA_TRANSFER = "START_DATA_TRANSFER",
108
+ WAIT = "WAIT"
109
+ }
110
+ export declare enum DataReplicationInitiationStepStatus {
111
+ FAILED = "FAILED",
112
+ IN_PROGRESS = "IN_PROGRESS",
113
+ NOT_STARTED = "NOT_STARTED",
114
+ SKIPPED = "SKIPPED",
115
+ SUCCEEDED = "SUCCEEDED"
51
116
  }
52
117
 
53
- export interface PITPolicyRule {
118
+ export interface DataReplicationInitiationStep {
54
119
 
55
- ruleID?: number;
120
+ name?: DataReplicationInitiationStepName | string;
56
121
 
57
- units: PITPolicyRuleUnits | string | undefined;
122
+ status?: DataReplicationInitiationStepStatus | string;
123
+ }
124
+ export declare namespace DataReplicationInitiationStep {
58
125
 
59
- interval: number | undefined;
126
+ const filterSensitiveLog: (obj: DataReplicationInitiationStep) => any;
127
+ }
128
+
129
+ export interface DataReplicationInitiation {
60
130
 
61
- retentionDuration: number | undefined;
131
+ startDateTime?: string;
62
132
 
63
- enabled?: boolean;
133
+ nextAttemptDateTime?: string;
134
+
135
+ steps?: DataReplicationInitiationStep[];
64
136
  }
65
- export declare namespace PITPolicyRule {
137
+ export declare namespace DataReplicationInitiation {
66
138
 
67
- const filterSensitiveLog: (obj: PITPolicyRule) => any;
139
+ const filterSensitiveLog: (obj: DataReplicationInitiation) => any;
68
140
  }
69
- export interface CreateReplicationConfigurationTemplateRequest {
141
+ export declare enum DataReplicationState {
142
+ BACKLOG = "BACKLOG",
143
+ CONTINUOUS = "CONTINUOUS",
144
+ CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
145
+ DISCONNECTED = "DISCONNECTED",
146
+ INITIAL_SYNC = "INITIAL_SYNC",
147
+ INITIATING = "INITIATING",
148
+ PAUSED = "PAUSED",
149
+ RESCAN = "RESCAN",
150
+ STALLED = "STALLED",
151
+ STOPPED = "STOPPED"
152
+ }
153
+
154
+ export interface DataReplicationInfoReplicatedDisk {
70
155
 
71
- stagingAreaSubnetId: string | undefined;
156
+ deviceName?: string;
72
157
 
73
- associateDefaultSecurityGroup: boolean | undefined;
158
+ totalStorageBytes?: number;
74
159
 
75
- replicationServersSecurityGroupsIDs: string[] | undefined;
160
+ replicatedStorageBytes?: number;
76
161
 
77
- replicationServerInstanceType: string | undefined;
162
+ rescannedStorageBytes?: number;
78
163
 
79
- useDedicatedReplicationServer: boolean | undefined;
164
+ backloggedStorageBytes?: number;
165
+ }
166
+ export declare namespace DataReplicationInfoReplicatedDisk {
80
167
 
81
- defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
168
+ const filterSensitiveLog: (obj: DataReplicationInfoReplicatedDisk) => any;
169
+ }
170
+
171
+ export interface DataReplicationInfo {
82
172
 
83
- ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
173
+ lagDuration?: string;
84
174
 
85
- ebsEncryptionKeyArn?: string;
175
+ etaDateTime?: string;
86
176
 
87
- bandwidthThrottling: number | undefined;
177
+ replicatedDisks?: DataReplicationInfoReplicatedDisk[];
88
178
 
89
- dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
179
+ dataReplicationState?: DataReplicationState | string;
90
180
 
91
- createPublicIP: boolean | undefined;
181
+ dataReplicationInitiation?: DataReplicationInitiation;
92
182
 
93
- stagingAreaTags: {
94
- [key: string]: string;
95
- } | undefined;
183
+ dataReplicationError?: DataReplicationError;
184
+ }
185
+ export declare namespace DataReplicationInfo {
96
186
 
97
- pitPolicy: PITPolicyRule[] | undefined;
187
+ const filterSensitiveLog: (obj: DataReplicationInfo) => any;
188
+ }
189
+ export declare enum LastLaunchResult {
190
+ FAILED = "FAILED",
191
+ NOT_STARTED = "NOT_STARTED",
192
+ PENDING = "PENDING",
193
+ SUCCEEDED = "SUCCEEDED"
194
+ }
195
+ export declare enum LastLaunchType {
196
+ DRILL = "DRILL",
197
+ RECOVERY = "RECOVERY"
198
+ }
199
+
200
+ export interface LifeCycleLastLaunchInitiated {
201
+
202
+ apiCallDateTime?: string;
203
+
204
+ jobID?: string;
98
205
 
99
- tags?: {
100
- [key: string]: string;
101
- };
206
+ type?: LastLaunchType | string;
102
207
  }
103
- export declare namespace CreateReplicationConfigurationTemplateRequest {
208
+ export declare namespace LifeCycleLastLaunchInitiated {
104
209
 
105
- const filterSensitiveLog: (obj: CreateReplicationConfigurationTemplateRequest) => any;
210
+ const filterSensitiveLog: (obj: LifeCycleLastLaunchInitiated) => any;
106
211
  }
107
212
 
108
- export declare class InternalServerException extends __BaseException {
109
- readonly name: "InternalServerException";
110
- readonly $fault: "server";
213
+ export interface LifeCycleLastLaunch {
111
214
 
112
- retryAfterSeconds?: number;
215
+ initiated?: LifeCycleLastLaunchInitiated;
216
+ }
217
+ export declare namespace LifeCycleLastLaunch {
113
218
 
114
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
219
+ const filterSensitiveLog: (obj: LifeCycleLastLaunch) => any;
115
220
  }
116
- export interface ReplicationConfigurationTemplate {
221
+
222
+ export interface LifeCycle {
117
223
 
118
- replicationConfigurationTemplateID: string | undefined;
224
+ addedToServiceDateTime?: string;
119
225
 
120
- arn?: string;
226
+ firstByteDateTime?: string;
121
227
 
122
- stagingAreaSubnetId?: string;
228
+ elapsedReplicationDuration?: string;
123
229
 
124
- associateDefaultSecurityGroup?: boolean;
230
+ lastSeenByServiceDateTime?: string;
125
231
 
126
- replicationServersSecurityGroupsIDs?: string[];
232
+ lastLaunch?: LifeCycleLastLaunch;
233
+ }
234
+ export declare namespace LifeCycle {
127
235
 
128
- replicationServerInstanceType?: string;
236
+ const filterSensitiveLog: (obj: LifeCycle) => any;
237
+ }
238
+
239
+ export interface Disk {
129
240
 
130
- useDedicatedReplicationServer?: boolean;
241
+ deviceName?: string;
131
242
 
132
- defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
243
+ bytes?: number;
244
+ }
245
+ export declare namespace Disk {
133
246
 
134
- ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
247
+ const filterSensitiveLog: (obj: Disk) => any;
248
+ }
249
+
250
+ export interface IdentificationHints {
135
251
 
136
- ebsEncryptionKeyArn?: string;
252
+ fqdn?: string;
137
253
 
138
- bandwidthThrottling?: number;
254
+ hostname?: string;
139
255
 
140
- dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
256
+ vmWareUuid?: string;
141
257
 
142
- createPublicIP?: boolean;
258
+ awsInstanceID?: string;
259
+ }
260
+ export declare namespace IdentificationHints {
143
261
 
144
- stagingAreaTags?: {
145
- [key: string]: string;
146
- };
262
+ const filterSensitiveLog: (obj: IdentificationHints) => any;
263
+ }
264
+
265
+ export interface NetworkInterface {
147
266
 
148
- tags?: {
149
- [key: string]: string;
150
- };
267
+ macAddress?: string;
151
268
 
152
- pitPolicy?: PITPolicyRule[];
269
+ ips?: string[];
270
+
271
+ isPrimary?: boolean;
153
272
  }
154
- export declare namespace ReplicationConfigurationTemplate {
273
+ export declare namespace NetworkInterface {
155
274
 
156
- const filterSensitiveLog: (obj: ReplicationConfigurationTemplate) => any;
275
+ const filterSensitiveLog: (obj: NetworkInterface) => any;
276
+ }
277
+
278
+ export interface OS {
279
+
280
+ fullString?: string;
281
+ }
282
+ export declare namespace OS {
283
+
284
+ const filterSensitiveLog: (obj: OS) => any;
285
+ }
286
+
287
+ export interface SourceProperties {
288
+
289
+ lastUpdatedDateTime?: string;
290
+
291
+ recommendedInstanceType?: string;
292
+
293
+ identificationHints?: IdentificationHints;
294
+
295
+ networkInterfaces?: NetworkInterface[];
296
+
297
+ disks?: Disk[];
298
+
299
+ cpus?: CPU[];
300
+
301
+ ramBytes?: number;
302
+
303
+ os?: OS;
304
+ }
305
+ export declare namespace SourceProperties {
306
+
307
+ const filterSensitiveLog: (obj: SourceProperties) => any;
308
+ }
309
+ export declare enum ExtensionStatus {
310
+ EXTENDED = "EXTENDED",
311
+ EXTENSION_ERROR = "EXTENSION_ERROR",
312
+ NOT_EXTENDED = "NOT_EXTENDED"
313
+ }
314
+
315
+ export interface StagingArea {
316
+
317
+ status?: ExtensionStatus | string;
318
+
319
+ stagingAccountID?: string;
320
+
321
+ stagingSourceServerArn?: string;
322
+
323
+ errorMessage?: string;
324
+ }
325
+ export declare namespace StagingArea {
326
+
327
+ const filterSensitiveLog: (obj: StagingArea) => any;
328
+ }
329
+ export interface SourceServer {
330
+
331
+ sourceServerID?: string;
332
+
333
+ arn?: string;
334
+
335
+ tags?: Record<string, string>;
336
+
337
+ recoveryInstanceId?: string;
338
+
339
+ lastLaunchResult?: LastLaunchResult | string;
340
+
341
+ dataReplicationInfo?: DataReplicationInfo;
342
+
343
+ lifeCycle?: LifeCycle;
344
+
345
+ sourceProperties?: SourceProperties;
346
+
347
+ stagingArea?: StagingArea;
348
+ }
349
+ export declare namespace SourceServer {
350
+
351
+ const filterSensitiveLog: (obj: SourceServer) => any;
352
+ }
353
+ export interface CreateExtendedSourceServerResponse {
354
+
355
+ sourceServer?: SourceServer;
356
+ }
357
+ export declare namespace CreateExtendedSourceServerResponse {
358
+
359
+ const filterSensitiveLog: (obj: CreateExtendedSourceServerResponse) => any;
360
+ }
361
+
362
+ export declare class InternalServerException extends __BaseException {
363
+ readonly name: "InternalServerException";
364
+ readonly $fault: "server";
365
+
366
+ retryAfterSeconds?: number;
367
+
368
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
369
+ }
370
+
371
+ export declare class ResourceNotFoundException extends __BaseException {
372
+ readonly name: "ResourceNotFoundException";
373
+ readonly $fault: "client";
374
+ code?: string;
375
+
376
+ resourceId?: string;
377
+
378
+ resourceType?: string;
379
+
380
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
157
381
  }
158
382
 
159
383
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -221,124 +445,112 @@ export declare class ValidationException extends __BaseException {
221
445
 
222
446
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
223
447
  }
224
- export declare enum DataReplicationErrorString {
225
- AGENT_NOT_SEEN = "AGENT_NOT_SEEN",
226
- FAILED_TO_ATTACH_STAGING_DISKS = "FAILED_TO_ATTACH_STAGING_DISKS",
227
- FAILED_TO_AUTHENTICATE_WITH_SERVICE = "FAILED_TO_AUTHENTICATE_WITH_SERVICE",
228
- FAILED_TO_BOOT_REPLICATION_SERVER = "FAILED_TO_BOOT_REPLICATION_SERVER",
229
- FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER = "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",
230
- FAILED_TO_CREATE_SECURITY_GROUP = "FAILED_TO_CREATE_SECURITY_GROUP",
231
- FAILED_TO_CREATE_STAGING_DISKS = "FAILED_TO_CREATE_STAGING_DISKS",
232
- FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE = "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",
233
- FAILED_TO_LAUNCH_REPLICATION_SERVER = "FAILED_TO_LAUNCH_REPLICATION_SERVER",
234
- FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT = "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",
235
- FAILED_TO_START_DATA_TRANSFER = "FAILED_TO_START_DATA_TRANSFER",
236
- NOT_CONVERGING = "NOT_CONVERGING",
237
- SNAPSHOTS_FAILURE = "SNAPSHOTS_FAILURE",
238
- UNSTABLE_NETWORK = "UNSTABLE_NETWORK"
448
+ export declare enum ReplicationConfigurationDataPlaneRouting {
449
+ PRIVATE_IP = "PRIVATE_IP",
450
+ PUBLIC_IP = "PUBLIC_IP"
451
+ }
452
+ export declare enum ReplicationConfigurationDefaultLargeStagingDiskType {
453
+ GP2 = "GP2",
454
+ GP3 = "GP3",
455
+ ST1 = "ST1"
456
+ }
457
+ export declare enum ReplicationConfigurationEbsEncryption {
458
+ CUSTOM = "CUSTOM",
459
+ DEFAULT = "DEFAULT"
460
+ }
461
+ export declare enum PITPolicyRuleUnits {
462
+ DAY = "DAY",
463
+ HOUR = "HOUR",
464
+ MINUTE = "MINUTE"
239
465
  }
240
466
 
241
- export interface DataReplicationError {
467
+ export interface PITPolicyRule {
242
468
 
243
- error?: DataReplicationErrorString | string;
469
+ ruleID?: number;
244
470
 
245
- rawError?: string;
246
- }
247
- export declare namespace DataReplicationError {
471
+ units: PITPolicyRuleUnits | string | undefined;
248
472
 
249
- const filterSensitiveLog: (obj: DataReplicationError) => any;
250
- }
251
- export declare enum DataReplicationInitiationStepName {
252
- ATTACH_STAGING_DISKS = "ATTACH_STAGING_DISKS",
253
- AUTHENTICATE_WITH_SERVICE = "AUTHENTICATE_WITH_SERVICE",
254
- BOOT_REPLICATION_SERVER = "BOOT_REPLICATION_SERVER",
255
- CONNECT_AGENT_TO_REPLICATION_SERVER = "CONNECT_AGENT_TO_REPLICATION_SERVER",
256
- CREATE_SECURITY_GROUP = "CREATE_SECURITY_GROUP",
257
- CREATE_STAGING_DISKS = "CREATE_STAGING_DISKS",
258
- DOWNLOAD_REPLICATION_SOFTWARE = "DOWNLOAD_REPLICATION_SOFTWARE",
259
- LAUNCH_REPLICATION_SERVER = "LAUNCH_REPLICATION_SERVER",
260
- PAIR_REPLICATION_SERVER_WITH_AGENT = "PAIR_REPLICATION_SERVER_WITH_AGENT",
261
- START_DATA_TRANSFER = "START_DATA_TRANSFER",
262
- WAIT = "WAIT"
473
+ interval: number | undefined;
474
+
475
+ retentionDuration: number | undefined;
476
+
477
+ enabled?: boolean;
263
478
  }
264
- export declare enum DataReplicationInitiationStepStatus {
265
- FAILED = "FAILED",
266
- IN_PROGRESS = "IN_PROGRESS",
267
- NOT_STARTED = "NOT_STARTED",
268
- SKIPPED = "SKIPPED",
269
- SUCCEEDED = "SUCCEEDED"
479
+ export declare namespace PITPolicyRule {
480
+
481
+ const filterSensitiveLog: (obj: PITPolicyRule) => any;
270
482
  }
271
-
272
- export interface DataReplicationInitiationStep {
483
+ export interface CreateReplicationConfigurationTemplateRequest {
484
+
485
+ stagingAreaSubnetId: string | undefined;
486
+
487
+ associateDefaultSecurityGroup: boolean | undefined;
488
+
489
+ replicationServersSecurityGroupsIDs: string[] | undefined;
490
+
491
+ replicationServerInstanceType: string | undefined;
273
492
 
274
- name?: DataReplicationInitiationStepName | string;
493
+ useDedicatedReplicationServer: boolean | undefined;
275
494
 
276
- status?: DataReplicationInitiationStepStatus | string;
277
- }
278
- export declare namespace DataReplicationInitiationStep {
495
+ defaultLargeStagingDiskType: ReplicationConfigurationDefaultLargeStagingDiskType | string | undefined;
279
496
 
280
- const filterSensitiveLog: (obj: DataReplicationInitiationStep) => any;
281
- }
282
-
283
- export interface DataReplicationInitiation {
497
+ ebsEncryption: ReplicationConfigurationEbsEncryption | string | undefined;
284
498
 
285
- startDateTime?: string;
499
+ ebsEncryptionKeyArn?: string;
286
500
 
287
- nextAttemptDateTime?: string;
501
+ bandwidthThrottling: number | undefined;
288
502
 
289
- steps?: DataReplicationInitiationStep[];
290
- }
291
- export declare namespace DataReplicationInitiation {
503
+ dataPlaneRouting: ReplicationConfigurationDataPlaneRouting | string | undefined;
292
504
 
293
- const filterSensitiveLog: (obj: DataReplicationInitiation) => any;
505
+ createPublicIP: boolean | undefined;
506
+
507
+ stagingAreaTags: Record<string, string> | undefined;
508
+
509
+ pitPolicy: PITPolicyRule[] | undefined;
510
+
511
+ tags?: Record<string, string>;
294
512
  }
295
- export declare enum DataReplicationState {
296
- BACKLOG = "BACKLOG",
297
- CONTINUOUS = "CONTINUOUS",
298
- CREATING_SNAPSHOT = "CREATING_SNAPSHOT",
299
- DISCONNECTED = "DISCONNECTED",
300
- INITIAL_SYNC = "INITIAL_SYNC",
301
- INITIATING = "INITIATING",
302
- PAUSED = "PAUSED",
303
- RESCAN = "RESCAN",
304
- STALLED = "STALLED",
305
- STOPPED = "STOPPED"
513
+ export declare namespace CreateReplicationConfigurationTemplateRequest {
514
+
515
+ const filterSensitiveLog: (obj: CreateReplicationConfigurationTemplateRequest) => any;
306
516
  }
307
-
308
- export interface DataReplicationInfoReplicatedDisk {
517
+ export interface ReplicationConfigurationTemplate {
309
518
 
310
- deviceName?: string;
519
+ replicationConfigurationTemplateID: string | undefined;
311
520
 
312
- totalStorageBytes?: number;
521
+ arn?: string;
313
522
 
314
- replicatedStorageBytes?: number;
523
+ stagingAreaSubnetId?: string;
315
524
 
316
- rescannedStorageBytes?: number;
525
+ associateDefaultSecurityGroup?: boolean;
317
526
 
318
- backloggedStorageBytes?: number;
319
- }
320
- export declare namespace DataReplicationInfoReplicatedDisk {
527
+ replicationServersSecurityGroupsIDs?: string[];
321
528
 
322
- const filterSensitiveLog: (obj: DataReplicationInfoReplicatedDisk) => any;
323
- }
324
-
325
- export interface DataReplicationInfo {
529
+ replicationServerInstanceType?: string;
326
530
 
327
- lagDuration?: string;
531
+ useDedicatedReplicationServer?: boolean;
328
532
 
329
- etaDateTime?: string;
533
+ defaultLargeStagingDiskType?: ReplicationConfigurationDefaultLargeStagingDiskType | string;
330
534
 
331
- replicatedDisks?: DataReplicationInfoReplicatedDisk[];
535
+ ebsEncryption?: ReplicationConfigurationEbsEncryption | string;
332
536
 
333
- dataReplicationState?: DataReplicationState | string;
537
+ ebsEncryptionKeyArn?: string;
334
538
 
335
- dataReplicationInitiation?: DataReplicationInitiation;
539
+ bandwidthThrottling?: number;
336
540
 
337
- dataReplicationError?: DataReplicationError;
541
+ dataPlaneRouting?: ReplicationConfigurationDataPlaneRouting | string;
542
+
543
+ createPublicIP?: boolean;
544
+
545
+ stagingAreaTags?: Record<string, string>;
546
+
547
+ tags?: Record<string, string>;
548
+
549
+ pitPolicy?: PITPolicyRule[];
338
550
  }
339
- export declare namespace DataReplicationInfo {
551
+ export declare namespace ReplicationConfigurationTemplate {
340
552
 
341
- const filterSensitiveLog: (obj: DataReplicationInfo) => any;
553
+ const filterSensitiveLog: (obj: ReplicationConfigurationTemplate) => any;
342
554
  }
343
555
  export interface DeleteJobRequest {
344
556
 
@@ -354,18 +566,6 @@ export declare namespace DeleteJobResponse {
354
566
 
355
567
  const filterSensitiveLog: (obj: DeleteJobResponse) => any;
356
568
  }
357
-
358
- export declare class ResourceNotFoundException extends __BaseException {
359
- readonly name: "ResourceNotFoundException";
360
- readonly $fault: "client";
361
- code?: string;
362
-
363
- resourceId?: string;
364
-
365
- resourceType?: string;
366
-
367
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
368
- }
369
569
  export interface DeleteRecoveryInstanceRequest {
370
570
 
371
571
  recoveryInstanceID: string | undefined;
@@ -443,6 +643,8 @@ export interface JobLogEventData {
443
643
  targetInstanceID?: string;
444
644
 
445
645
  rawError?: string;
646
+
647
+ conversionProperties?: ConversionProperties;
446
648
  }
447
649
  export declare namespace JobLogEventData {
448
650
 
@@ -486,7 +688,7 @@ export declare namespace DescribeJobsRequestFilters {
486
688
  }
487
689
  export interface DescribeJobsRequest {
488
690
 
489
- filters: DescribeJobsRequestFilters | undefined;
691
+ filters?: DescribeJobsRequestFilters;
490
692
 
491
693
  maxResults?: number;
492
694
 
@@ -501,6 +703,7 @@ export declare enum InitiatedBy {
501
703
  FAILBACK = "FAILBACK",
502
704
  START_DRILL = "START_DRILL",
503
705
  START_RECOVERY = "START_RECOVERY",
706
+ TARGET_ACCOUNT = "TARGET_ACCOUNT",
504
707
  TERMINATE_RECOVERY_INSTANCES = "TERMINATE_RECOVERY_INSTANCES"
505
708
  }
506
709
  export declare enum LaunchStatus {
@@ -529,6 +732,7 @@ export declare enum JobStatus {
529
732
  STARTED = "STARTED"
530
733
  }
531
734
  export declare enum JobType {
735
+ CREATE_CONVERTED_SNAPSHOT = "CREATE_CONVERTED_SNAPSHOT",
532
736
  LAUNCH = "LAUNCH",
533
737
  TERMINATE = "TERMINATE"
534
738
  }
@@ -551,9 +755,7 @@ export interface Job {
551
755
 
552
756
  participatingServers?: ParticipatingServer[];
553
757
 
554
- tags?: {
555
- [key: string]: string;
556
- };
758
+ tags?: Record<string, string>;
557
759
  }
558
760
  export declare namespace Job {
559
761
 
@@ -582,7 +784,7 @@ export declare namespace DescribeRecoveryInstancesRequestFilters {
582
784
  }
583
785
  export interface DescribeRecoveryInstancesRequest {
584
786
 
585
- filters: DescribeRecoveryInstancesRequestFilters | undefined;
787
+ filters?: DescribeRecoveryInstancesRequestFilters;
586
788
 
587
789
  maxResults?: number;
588
790
 
@@ -755,43 +957,6 @@ export declare namespace RecoveryInstanceDisk {
755
957
  const filterSensitiveLog: (obj: RecoveryInstanceDisk) => any;
756
958
  }
757
959
 
758
- export interface IdentificationHints {
759
-
760
- fqdn?: string;
761
-
762
- hostname?: string;
763
-
764
- vmWareUuid?: string;
765
-
766
- awsInstanceID?: string;
767
- }
768
- export declare namespace IdentificationHints {
769
-
770
- const filterSensitiveLog: (obj: IdentificationHints) => any;
771
- }
772
-
773
- export interface NetworkInterface {
774
-
775
- macAddress?: string;
776
-
777
- ips?: string[];
778
-
779
- isPrimary?: boolean;
780
- }
781
- export declare namespace NetworkInterface {
782
-
783
- const filterSensitiveLog: (obj: NetworkInterface) => any;
784
- }
785
-
786
- export interface OS {
787
-
788
- fullString?: string;
789
- }
790
- export declare namespace OS {
791
-
792
- const filterSensitiveLog: (obj: OS) => any;
793
- }
794
-
795
960
  export interface RecoveryInstanceProperties {
796
961
 
797
962
  lastUpdatedDateTime?: string;
@@ -827,9 +992,7 @@ export interface RecoveryInstance {
827
992
 
828
993
  arn?: string;
829
994
 
830
- tags?: {
831
- [key: string]: string;
832
- };
995
+ tags?: Record<string, string>;
833
996
 
834
997
  failback?: RecoveryInstanceFailback;
835
998
 
@@ -915,7 +1078,7 @@ export declare namespace DescribeRecoverySnapshotsResponse {
915
1078
  }
916
1079
  export interface DescribeReplicationConfigurationTemplatesRequest {
917
1080
 
918
- replicationConfigurationTemplateIDs: string[] | undefined;
1081
+ replicationConfigurationTemplateIDs?: string[];
919
1082
 
920
1083
  maxResults?: number;
921
1084
 
@@ -941,6 +1104,8 @@ export interface DescribeSourceServersRequestFilters {
941
1104
  sourceServerIDs?: string[];
942
1105
 
943
1106
  hardwareId?: string;
1107
+
1108
+ stagingAccountIDs?: string[];
944
1109
  }
945
1110
  export declare namespace DescribeSourceServersRequestFilters {
946
1111
 
@@ -948,7 +1113,7 @@ export declare namespace DescribeSourceServersRequestFilters {
948
1113
  }
949
1114
  export interface DescribeSourceServersRequest {
950
1115
 
951
- filters: DescribeSourceServersRequestFilters | undefined;
1116
+ filters?: DescribeSourceServersRequestFilters;
952
1117
 
953
1118
  maxResults?: number;
954
1119
 
@@ -958,150 +1123,98 @@ export declare namespace DescribeSourceServersRequest {
958
1123
 
959
1124
  const filterSensitiveLog: (obj: DescribeSourceServersRequest) => any;
960
1125
  }
961
- export declare enum LastLaunchResult {
962
- FAILED = "FAILED",
963
- NOT_STARTED = "NOT_STARTED",
964
- PENDING = "PENDING",
965
- SUCCEEDED = "SUCCEEDED"
966
- }
967
- export declare enum LastLaunchType {
968
- DRILL = "DRILL",
969
- RECOVERY = "RECOVERY"
970
- }
971
-
972
- export interface LifeCycleLastLaunchInitiated {
973
-
974
- apiCallDateTime?: string;
1126
+ export interface DescribeSourceServersResponse {
975
1127
 
976
- jobID?: string;
1128
+ items?: SourceServer[];
977
1129
 
978
- type?: LastLaunchType | string;
1130
+ nextToken?: string;
979
1131
  }
980
- export declare namespace LifeCycleLastLaunchInitiated {
1132
+ export declare namespace DescribeSourceServersResponse {
981
1133
 
982
- const filterSensitiveLog: (obj: LifeCycleLastLaunchInitiated) => any;
1134
+ const filterSensitiveLog: (obj: DescribeSourceServersResponse) => any;
983
1135
  }
984
-
985
- export interface LifeCycleLastLaunch {
1136
+ export interface DisconnectRecoveryInstanceRequest {
986
1137
 
987
- initiated?: LifeCycleLastLaunchInitiated;
1138
+ recoveryInstanceID: string | undefined;
988
1139
  }
989
- export declare namespace LifeCycleLastLaunch {
1140
+ export declare namespace DisconnectRecoveryInstanceRequest {
990
1141
 
991
- const filterSensitiveLog: (obj: LifeCycleLastLaunch) => any;
1142
+ const filterSensitiveLog: (obj: DisconnectRecoveryInstanceRequest) => any;
992
1143
  }
993
-
994
- export interface LifeCycle {
995
-
996
- addedToServiceDateTime?: string;
997
-
998
- firstByteDateTime?: string;
999
-
1000
- elapsedReplicationDuration?: string;
1001
-
1002
- lastSeenByServiceDateTime?: string;
1144
+ export interface DisconnectSourceServerRequest {
1003
1145
 
1004
- lastLaunch?: LifeCycleLastLaunch;
1146
+ sourceServerID: string | undefined;
1005
1147
  }
1006
- export declare namespace LifeCycle {
1148
+ export declare namespace DisconnectSourceServerRequest {
1007
1149
 
1008
- const filterSensitiveLog: (obj: LifeCycle) => any;
1150
+ const filterSensitiveLog: (obj: DisconnectSourceServerRequest) => any;
1009
1151
  }
1010
-
1011
- export interface Disk {
1012
-
1013
- deviceName?: string;
1014
-
1015
- bytes?: number;
1152
+ export interface InitializeServiceRequest {
1016
1153
  }
1017
- export declare namespace Disk {
1154
+ export declare namespace InitializeServiceRequest {
1018
1155
 
1019
- const filterSensitiveLog: (obj: Disk) => any;
1156
+ const filterSensitiveLog: (obj: InitializeServiceRequest) => any;
1020
1157
  }
1021
-
1022
- export interface SourceProperties {
1023
-
1024
- lastUpdatedDateTime?: string;
1025
-
1026
- recommendedInstanceType?: string;
1027
-
1028
- identificationHints?: IdentificationHints;
1029
-
1030
- networkInterfaces?: NetworkInterface[];
1158
+ export interface InitializeServiceResponse {
1159
+ }
1160
+ export declare namespace InitializeServiceResponse {
1031
1161
 
1032
- disks?: Disk[];
1162
+ const filterSensitiveLog: (obj: InitializeServiceResponse) => any;
1163
+ }
1164
+ export interface ListExtensibleSourceServersRequest {
1033
1165
 
1034
- cpus?: CPU[];
1166
+ stagingAccountID: string | undefined;
1035
1167
 
1036
- ramBytes?: number;
1168
+ maxResults?: number;
1037
1169
 
1038
- os?: OS;
1170
+ nextToken?: string;
1039
1171
  }
1040
- export declare namespace SourceProperties {
1172
+ export declare namespace ListExtensibleSourceServersRequest {
1041
1173
 
1042
- const filterSensitiveLog: (obj: SourceProperties) => any;
1174
+ const filterSensitiveLog: (obj: ListExtensibleSourceServersRequest) => any;
1043
1175
  }
1044
- export interface SourceServer {
1176
+
1177
+ export interface StagingSourceServer {
1045
1178
 
1046
- sourceServerID?: string;
1179
+ hostname?: string;
1047
1180
 
1048
1181
  arn?: string;
1049
1182
 
1050
- tags?: {
1051
- [key: string]: string;
1052
- };
1053
-
1054
- recoveryInstanceId?: string;
1055
-
1056
- lastLaunchResult?: LastLaunchResult | string;
1057
-
1058
- dataReplicationInfo?: DataReplicationInfo;
1059
-
1060
- lifeCycle?: LifeCycle;
1061
-
1062
- sourceProperties?: SourceProperties;
1183
+ tags?: Record<string, string>;
1063
1184
  }
1064
- export declare namespace SourceServer {
1185
+ export declare namespace StagingSourceServer {
1065
1186
 
1066
- const filterSensitiveLog: (obj: SourceServer) => any;
1187
+ const filterSensitiveLog: (obj: StagingSourceServer) => any;
1067
1188
  }
1068
- export interface DescribeSourceServersResponse {
1189
+ export interface ListExtensibleSourceServersResponse {
1069
1190
 
1070
- items?: SourceServer[];
1191
+ items?: StagingSourceServer[];
1071
1192
 
1072
1193
  nextToken?: string;
1073
1194
  }
1074
- export declare namespace DescribeSourceServersResponse {
1195
+ export declare namespace ListExtensibleSourceServersResponse {
1075
1196
 
1076
- const filterSensitiveLog: (obj: DescribeSourceServersResponse) => any;
1197
+ const filterSensitiveLog: (obj: ListExtensibleSourceServersResponse) => any;
1077
1198
  }
1078
- export interface DisconnectRecoveryInstanceRequest {
1199
+ export interface ListStagingAccountsRequest {
1079
1200
 
1080
- recoveryInstanceID: string | undefined;
1081
- }
1082
- export declare namespace DisconnectRecoveryInstanceRequest {
1201
+ maxResults?: number;
1083
1202
 
1084
- const filterSensitiveLog: (obj: DisconnectRecoveryInstanceRequest) => any;
1203
+ nextToken?: string;
1085
1204
  }
1086
- export interface DisconnectSourceServerRequest {
1205
+ export declare namespace ListStagingAccountsRequest {
1087
1206
 
1088
- sourceServerID: string | undefined;
1207
+ const filterSensitiveLog: (obj: ListStagingAccountsRequest) => any;
1089
1208
  }
1090
- export declare namespace DisconnectSourceServerRequest {
1209
+ export interface ListStagingAccountsResponse {
1091
1210
 
1092
- const filterSensitiveLog: (obj: DisconnectSourceServerRequest) => any;
1093
- }
1094
- export interface InitializeServiceRequest {
1095
- }
1096
- export declare namespace InitializeServiceRequest {
1211
+ accounts?: Account[];
1097
1212
 
1098
- const filterSensitiveLog: (obj: InitializeServiceRequest) => any;
1099
- }
1100
- export interface InitializeServiceResponse {
1213
+ nextToken?: string;
1101
1214
  }
1102
- export declare namespace InitializeServiceResponse {
1215
+ export declare namespace ListStagingAccountsResponse {
1103
1216
 
1104
- const filterSensitiveLog: (obj: InitializeServiceResponse) => any;
1217
+ const filterSensitiveLog: (obj: ListStagingAccountsResponse) => any;
1105
1218
  }
1106
1219
  export interface ListTagsForResourceRequest {
1107
1220
 
@@ -1113,9 +1226,7 @@ export declare namespace ListTagsForResourceRequest {
1113
1226
  }
1114
1227
  export interface ListTagsForResourceResponse {
1115
1228
 
1116
- tags?: {
1117
- [key: string]: string;
1118
- };
1229
+ tags?: Record<string, string>;
1119
1230
  }
1120
1231
  export declare namespace ListTagsForResourceResponse {
1121
1232
 
@@ -1147,9 +1258,7 @@ export interface StartFailbackLaunchRequest {
1147
1258
 
1148
1259
  recoveryInstanceIDs: string[] | undefined;
1149
1260
 
1150
- tags?: {
1151
- [key: string]: string;
1152
- };
1261
+ tags?: Record<string, string>;
1153
1262
  }
1154
1263
  export declare namespace StartFailbackLaunchRequest {
1155
1264
 
@@ -1229,9 +1338,7 @@ export interface UpdateReplicationConfigurationTemplateRequest {
1229
1338
 
1230
1339
  createPublicIP?: boolean;
1231
1340
 
1232
- stagingAreaTags?: {
1233
- [key: string]: string;
1234
- };
1341
+ stagingAreaTags?: Record<string, string>;
1235
1342
 
1236
1343
  pitPolicy?: PITPolicyRule[];
1237
1344
  }
@@ -1350,9 +1457,7 @@ export interface ReplicationConfiguration {
1350
1457
 
1351
1458
  createPublicIP?: boolean;
1352
1459
 
1353
- stagingAreaTags?: {
1354
- [key: string]: string;
1355
- };
1460
+ stagingAreaTags?: Record<string, string>;
1356
1461
 
1357
1462
  pitPolicy?: PITPolicyRule[];
1358
1463
  }
@@ -1385,9 +1490,7 @@ export interface StartRecoveryRequest {
1385
1490
 
1386
1491
  isDrill?: boolean;
1387
1492
 
1388
- tags?: {
1389
- [key: string]: string;
1390
- };
1493
+ tags?: Record<string, string>;
1391
1494
  }
1392
1495
  export declare namespace StartRecoveryRequest {
1393
1496
 
@@ -1451,9 +1554,7 @@ export interface UpdateReplicationConfigurationRequest {
1451
1554
 
1452
1555
  createPublicIP?: boolean;
1453
1556
 
1454
- stagingAreaTags?: {
1455
- [key: string]: string;
1456
- };
1557
+ stagingAreaTags?: Record<string, string>;
1457
1558
 
1458
1559
  pitPolicy?: PITPolicyRule[];
1459
1560
  }
@@ -1465,9 +1566,7 @@ export interface TagResourceRequest {
1465
1566
 
1466
1567
  resourceArn: string | undefined;
1467
1568
 
1468
- tags: {
1469
- [key: string]: string;
1470
- } | undefined;
1569
+ tags: Record<string, string> | undefined;
1471
1570
  }
1472
1571
  export declare namespace TagResourceRequest {
1473
1572