cdk-docker-image-deployment 0.0.86 → 0.0.88

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 (60) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +23 -1
  6. package/node_modules/aws-sdk/README.md +29 -1
  7. package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +441 -110
  8. package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +12 -0
  9. package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +124 -45
  10. package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +331 -215
  11. package/node_modules/aws-sdk/apis/ecs-2014-11-13.paginators.json +6 -0
  12. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +252 -214
  13. package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +26 -0
  14. package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +686 -105
  15. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +43 -8
  16. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +97 -16
  17. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  18. package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +931 -118
  19. package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
  20. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +23 -14
  21. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +4 -1
  22. package/node_modules/aws-sdk/apis/oam-2022-06-10.examples.json +5 -0
  23. package/node_modules/aws-sdk/apis/oam-2022-06-10.min.json +482 -0
  24. package/node_modules/aws-sdk/apis/oam-2022-06-10.paginators.json +22 -0
  25. package/node_modules/aws-sdk/apis/organizations-2016-11-28.min.json +62 -16
  26. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +379 -236
  27. package/node_modules/aws-sdk/apis/rds-2014-10-31.paginators.json +6 -0
  28. package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +310 -62
  29. package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +98 -95
  30. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  31. package/node_modules/aws-sdk/clients/all.js +2 -1
  32. package/node_modules/aws-sdk/clients/backup.d.ts +405 -15
  33. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +30 -16
  34. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +196 -65
  35. package/node_modules/aws-sdk/clients/drs.d.ts +104 -5
  36. package/node_modules/aws-sdk/clients/ecs.d.ts +159 -17
  37. package/node_modules/aws-sdk/clients/efs.d.ts +5 -5
  38. package/node_modules/aws-sdk/clients/iot.d.ts +76 -4
  39. package/node_modules/aws-sdk/clients/iotdata.d.ts +31 -1
  40. package/node_modules/aws-sdk/clients/iotwireless.d.ts +599 -14
  41. package/node_modules/aws-sdk/clients/kendra.d.ts +84 -39
  42. package/node_modules/aws-sdk/clients/mgn.d.ts +1046 -68
  43. package/node_modules/aws-sdk/clients/oam.d.ts +559 -0
  44. package/node_modules/aws-sdk/clients/oam.js +18 -0
  45. package/node_modules/aws-sdk/clients/organizations.d.ts +69 -8
  46. package/node_modules/aws-sdk/clients/rds.d.ts +199 -2
  47. package/node_modules/aws-sdk/clients/textract.d.ts +264 -0
  48. package/node_modules/aws-sdk/clients/transcribeservice.d.ts +210 -191
  49. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +29 -10
  50. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +91 -33
  51. package/node_modules/aws-sdk/dist/aws-sdk.js +1167 -707
  52. package/node_modules/aws-sdk/dist/aws-sdk.min.js +59 -59
  53. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  54. package/node_modules/aws-sdk/lib/core.js +1 -1
  55. package/node_modules/aws-sdk/lib/event_listeners.js +22 -5
  56. package/node_modules/aws-sdk/lib/region_config.js +3 -1
  57. package/node_modules/aws-sdk/lib/region_config_data.json +11 -1
  58. package/node_modules/aws-sdk/lib/signers/bearer.js +1 -1
  59. package/node_modules/aws-sdk/package.json +1 -1
  60. package/package.json +7 -6
@@ -11,6 +11,38 @@ declare class Mgn extends Service {
11
11
  */
12
12
  constructor(options?: Mgn.Types.ClientConfiguration)
13
13
  config: Config & Mgn.Types.ClientConfiguration;
14
+ /**
15
+ * Archive application.
16
+ */
17
+ archiveApplication(params: Mgn.Types.ArchiveApplicationRequest, callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
18
+ /**
19
+ * Archive application.
20
+ */
21
+ archiveApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
22
+ /**
23
+ * Archive wave.
24
+ */
25
+ archiveWave(params: Mgn.Types.ArchiveWaveRequest, callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
26
+ /**
27
+ * Archive wave.
28
+ */
29
+ archiveWave(callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
30
+ /**
31
+ * Associate applications to wave.
32
+ */
33
+ associateApplications(params: Mgn.Types.AssociateApplicationsRequest, callback?: (err: AWSError, data: Mgn.Types.AssociateApplicationsResponse) => void): Request<Mgn.Types.AssociateApplicationsResponse, AWSError>;
34
+ /**
35
+ * Associate applications to wave.
36
+ */
37
+ associateApplications(callback?: (err: AWSError, data: Mgn.Types.AssociateApplicationsResponse) => void): Request<Mgn.Types.AssociateApplicationsResponse, AWSError>;
38
+ /**
39
+ * Associate source servers to application.
40
+ */
41
+ associateSourceServers(params: Mgn.Types.AssociateSourceServersRequest, callback?: (err: AWSError, data: Mgn.Types.AssociateSourceServersResponse) => void): Request<Mgn.Types.AssociateSourceServersResponse, AWSError>;
42
+ /**
43
+ * Associate source servers to application.
44
+ */
45
+ associateSourceServers(callback?: (err: AWSError, data: Mgn.Types.AssociateSourceServersResponse) => void): Request<Mgn.Types.AssociateSourceServersResponse, AWSError>;
14
46
  /**
15
47
  * Allows the user to set the SourceServer.LifeCycle.state property for specific Source Server IDs to one of the following: READY_FOR_TEST or READY_FOR_CUTOVER. This command only works if the Source Server is already launchable (dataReplicationInfo.lagDuration is not null.)
16
48
  */
@@ -20,11 +52,19 @@ declare class Mgn extends Service {
20
52
  */
21
53
  changeServerLifeCycleState(callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
22
54
  /**
23
- * Creates a new ReplicationConfigurationTemplate.
55
+ * Create application.
56
+ */
57
+ createApplication(params: Mgn.Types.CreateApplicationRequest, callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
58
+ /**
59
+ * Create application.
60
+ */
61
+ createApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
62
+ /**
63
+ * Creates a new Launch Configuration Template.
24
64
  */
25
65
  createLaunchConfigurationTemplate(params: Mgn.Types.CreateLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
26
66
  /**
27
- * Creates a new ReplicationConfigurationTemplate.
67
+ * Creates a new Launch Configuration Template.
28
68
  */
29
69
  createLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
30
70
  /**
@@ -35,6 +75,22 @@ declare class Mgn extends Service {
35
75
  * Creates a new ReplicationConfigurationTemplate.
36
76
  */
37
77
  createReplicationConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.ReplicationConfigurationTemplate) => void): Request<Mgn.Types.ReplicationConfigurationTemplate, AWSError>;
78
+ /**
79
+ * Create wave.
80
+ */
81
+ createWave(params: Mgn.Types.CreateWaveRequest, callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
82
+ /**
83
+ * Create wave.
84
+ */
85
+ createWave(callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
86
+ /**
87
+ * Delete application.
88
+ */
89
+ deleteApplication(params: Mgn.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: Mgn.Types.DeleteApplicationResponse) => void): Request<Mgn.Types.DeleteApplicationResponse, AWSError>;
90
+ /**
91
+ * Delete application.
92
+ */
93
+ deleteApplication(callback?: (err: AWSError, data: Mgn.Types.DeleteApplicationResponse) => void): Request<Mgn.Types.DeleteApplicationResponse, AWSError>;
38
94
  /**
39
95
  * Deletes a single Job by ID.
40
96
  */
@@ -44,11 +100,11 @@ declare class Mgn extends Service {
44
100
  */
45
101
  deleteJob(callback?: (err: AWSError, data: Mgn.Types.DeleteJobResponse) => void): Request<Mgn.Types.DeleteJobResponse, AWSError>;
46
102
  /**
47
- * Creates a new ReplicationConfigurationTemplate.
103
+ * Deletes a single Launch Configuration Template by ID.
48
104
  */
49
105
  deleteLaunchConfigurationTemplate(params: Mgn.Types.DeleteLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.DeleteLaunchConfigurationTemplateResponse) => void): Request<Mgn.Types.DeleteLaunchConfigurationTemplateResponse, AWSError>;
50
106
  /**
51
- * Creates a new ReplicationConfigurationTemplate.
107
+ * Deletes a single Launch Configuration Template by ID.
52
108
  */
53
109
  deleteLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.DeleteLaunchConfigurationTemplateResponse) => void): Request<Mgn.Types.DeleteLaunchConfigurationTemplateResponse, AWSError>;
54
110
  /**
@@ -75,6 +131,14 @@ declare class Mgn extends Service {
75
131
  * Deletes a given vCenter client by ID.
76
132
  */
77
133
  deleteVcenterClient(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
134
+ /**
135
+ * Delete wave.
136
+ */
137
+ deleteWave(params: Mgn.Types.DeleteWaveRequest, callback?: (err: AWSError, data: Mgn.Types.DeleteWaveResponse) => void): Request<Mgn.Types.DeleteWaveResponse, AWSError>;
138
+ /**
139
+ * Delete wave.
140
+ */
141
+ deleteWave(callback?: (err: AWSError, data: Mgn.Types.DeleteWaveResponse) => void): Request<Mgn.Types.DeleteWaveResponse, AWSError>;
78
142
  /**
79
143
  * Retrieves detailed job log items with paging.
80
144
  */
@@ -92,11 +156,11 @@ declare class Mgn extends Service {
92
156
  */
93
157
  describeJobs(callback?: (err: AWSError, data: Mgn.Types.DescribeJobsResponse) => void): Request<Mgn.Types.DescribeJobsResponse, AWSError>;
94
158
  /**
95
- * Creates a new ReplicationConfigurationTemplate.
159
+ * Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs
96
160
  */
97
161
  describeLaunchConfigurationTemplates(params: Mgn.Types.DescribeLaunchConfigurationTemplatesRequest, callback?: (err: AWSError, data: Mgn.Types.DescribeLaunchConfigurationTemplatesResponse) => void): Request<Mgn.Types.DescribeLaunchConfigurationTemplatesResponse, AWSError>;
98
162
  /**
99
- * Creates a new ReplicationConfigurationTemplate.
163
+ * Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs
100
164
  */
101
165
  describeLaunchConfigurationTemplates(callback?: (err: AWSError, data: Mgn.Types.DescribeLaunchConfigurationTemplatesResponse) => void): Request<Mgn.Types.DescribeLaunchConfigurationTemplatesResponse, AWSError>;
102
166
  /**
@@ -123,6 +187,22 @@ declare class Mgn extends Service {
123
187
  * Returns a list of the installed vCenter clients.
124
188
  */
125
189
  describeVcenterClients(callback?: (err: AWSError, data: Mgn.Types.DescribeVcenterClientsResponse) => void): Request<Mgn.Types.DescribeVcenterClientsResponse, AWSError>;
190
+ /**
191
+ * Disassociate applications from wave.
192
+ */
193
+ disassociateApplications(params: Mgn.Types.DisassociateApplicationsRequest, callback?: (err: AWSError, data: Mgn.Types.DisassociateApplicationsResponse) => void): Request<Mgn.Types.DisassociateApplicationsResponse, AWSError>;
194
+ /**
195
+ * Disassociate applications from wave.
196
+ */
197
+ disassociateApplications(callback?: (err: AWSError, data: Mgn.Types.DisassociateApplicationsResponse) => void): Request<Mgn.Types.DisassociateApplicationsResponse, AWSError>;
198
+ /**
199
+ * Disassociate source servers from application.
200
+ */
201
+ disassociateSourceServers(params: Mgn.Types.DisassociateSourceServersRequest, callback?: (err: AWSError, data: Mgn.Types.DisassociateSourceServersResponse) => void): Request<Mgn.Types.DisassociateSourceServersResponse, AWSError>;
202
+ /**
203
+ * Disassociate source servers from application.
204
+ */
205
+ disassociateSourceServers(callback?: (err: AWSError, data: Mgn.Types.DisassociateSourceServersResponse) => void): Request<Mgn.Types.DisassociateSourceServersResponse, AWSError>;
126
206
  /**
127
207
  * Disconnects specific Source Servers from Application Migration Service. Data replication is stopped immediately. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. If the agent on the source server has not been prevented from communicating with the Application Migration Service service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.
128
208
  */
@@ -163,6 +243,22 @@ declare class Mgn extends Service {
163
243
  * Initialize Application Migration Service.
164
244
  */
165
245
  initializeService(callback?: (err: AWSError, data: Mgn.Types.InitializeServiceResponse) => void): Request<Mgn.Types.InitializeServiceResponse, AWSError>;
246
+ /**
247
+ * Retrieves all applications or multiple applications by ID.
248
+ */
249
+ listApplications(params: Mgn.Types.ListApplicationsRequest, callback?: (err: AWSError, data: Mgn.Types.ListApplicationsResponse) => void): Request<Mgn.Types.ListApplicationsResponse, AWSError>;
250
+ /**
251
+ * Retrieves all applications or multiple applications by ID.
252
+ */
253
+ listApplications(callback?: (err: AWSError, data: Mgn.Types.ListApplicationsResponse) => void): Request<Mgn.Types.ListApplicationsResponse, AWSError>;
254
+ /**
255
+ * List source server post migration custom actions.
256
+ */
257
+ listSourceServerActions(params: Mgn.Types.ListSourceServerActionsRequest, callback?: (err: AWSError, data: Mgn.Types.ListSourceServerActionsResponse) => void): Request<Mgn.Types.ListSourceServerActionsResponse, AWSError>;
258
+ /**
259
+ * List source server post migration custom actions.
260
+ */
261
+ listSourceServerActions(callback?: (err: AWSError, data: Mgn.Types.ListSourceServerActionsResponse) => void): Request<Mgn.Types.ListSourceServerActionsResponse, AWSError>;
166
262
  /**
167
263
  * List all tags for your Application Migration Service resources.
168
264
  */
@@ -171,6 +267,22 @@ declare class Mgn extends Service {
171
267
  * List all tags for your Application Migration Service resources.
172
268
  */
173
269
  listTagsForResource(callback?: (err: AWSError, data: Mgn.Types.ListTagsForResourceResponse) => void): Request<Mgn.Types.ListTagsForResourceResponse, AWSError>;
270
+ /**
271
+ * List template post migration custom actions.
272
+ */
273
+ listTemplateActions(params: Mgn.Types.ListTemplateActionsRequest, callback?: (err: AWSError, data: Mgn.Types.ListTemplateActionsResponse) => void): Request<Mgn.Types.ListTemplateActionsResponse, AWSError>;
274
+ /**
275
+ * List template post migration custom actions.
276
+ */
277
+ listTemplateActions(callback?: (err: AWSError, data: Mgn.Types.ListTemplateActionsResponse) => void): Request<Mgn.Types.ListTemplateActionsResponse, AWSError>;
278
+ /**
279
+ * Retrieves all waves or multiple waves by ID.
280
+ */
281
+ listWaves(params: Mgn.Types.ListWavesRequest, callback?: (err: AWSError, data: Mgn.Types.ListWavesResponse) => void): Request<Mgn.Types.ListWavesResponse, AWSError>;
282
+ /**
283
+ * Retrieves all waves or multiple waves by ID.
284
+ */
285
+ listWaves(callback?: (err: AWSError, data: Mgn.Types.ListWavesResponse) => void): Request<Mgn.Types.ListWavesResponse, AWSError>;
174
286
  /**
175
287
  * Archives specific Source Servers by setting the SourceServer.isArchived property to true for specified SourceServers by ID. This command only works for SourceServers with a lifecycle. state which equals DISCONNECTED or CUTOVER.
176
288
  */
@@ -179,6 +291,38 @@ declare class Mgn extends Service {
179
291
  * Archives specific Source Servers by setting the SourceServer.isArchived property to true for specified SourceServers by ID. This command only works for SourceServers with a lifecycle. state which equals DISCONNECTED or CUTOVER.
180
292
  */
181
293
  markAsArchived(callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
294
+ /**
295
+ * Put source server post migration custom action.
296
+ */
297
+ putSourceServerAction(params: Mgn.Types.PutSourceServerActionRequest, callback?: (err: AWSError, data: Mgn.Types.SourceServerActionDocument) => void): Request<Mgn.Types.SourceServerActionDocument, AWSError>;
298
+ /**
299
+ * Put source server post migration custom action.
300
+ */
301
+ putSourceServerAction(callback?: (err: AWSError, data: Mgn.Types.SourceServerActionDocument) => void): Request<Mgn.Types.SourceServerActionDocument, AWSError>;
302
+ /**
303
+ * Put template post migration custom action.
304
+ */
305
+ putTemplateAction(params: Mgn.Types.PutTemplateActionRequest, callback?: (err: AWSError, data: Mgn.Types.TemplateActionDocument) => void): Request<Mgn.Types.TemplateActionDocument, AWSError>;
306
+ /**
307
+ * Put template post migration custom action.
308
+ */
309
+ putTemplateAction(callback?: (err: AWSError, data: Mgn.Types.TemplateActionDocument) => void): Request<Mgn.Types.TemplateActionDocument, AWSError>;
310
+ /**
311
+ * Remove source server post migration custom action.
312
+ */
313
+ removeSourceServerAction(params: Mgn.Types.RemoveSourceServerActionRequest, callback?: (err: AWSError, data: Mgn.Types.RemoveSourceServerActionResponse) => void): Request<Mgn.Types.RemoveSourceServerActionResponse, AWSError>;
314
+ /**
315
+ * Remove source server post migration custom action.
316
+ */
317
+ removeSourceServerAction(callback?: (err: AWSError, data: Mgn.Types.RemoveSourceServerActionResponse) => void): Request<Mgn.Types.RemoveSourceServerActionResponse, AWSError>;
318
+ /**
319
+ * Remove template post migration custom action.
320
+ */
321
+ removeTemplateAction(params: Mgn.Types.RemoveTemplateActionRequest, callback?: (err: AWSError, data: Mgn.Types.RemoveTemplateActionResponse) => void): Request<Mgn.Types.RemoveTemplateActionResponse, AWSError>;
322
+ /**
323
+ * Remove template post migration custom action.
324
+ */
325
+ removeTemplateAction(callback?: (err: AWSError, data: Mgn.Types.RemoveTemplateActionResponse) => void): Request<Mgn.Types.RemoveTemplateActionResponse, AWSError>;
182
326
  /**
183
327
  * Causes the data replication initiation sequence to begin immediately upon next Handshake for specified SourceServer IDs, regardless of when the previous initiation started. This command will not work if the SourceServer is not stalled or is in a DISCONNECTED or STOPPED state.
184
328
  */
@@ -227,6 +371,22 @@ declare class Mgn extends Service {
227
371
  * Starts a job that terminates specific launched EC2 Test and Cutover instances. This command will not work for any Source Server with a lifecycle.state of TESTING, CUTTING_OVER, or CUTOVER.
228
372
  */
229
373
  terminateTargetInstances(callback?: (err: AWSError, data: Mgn.Types.TerminateTargetInstancesResponse) => void): Request<Mgn.Types.TerminateTargetInstancesResponse, AWSError>;
374
+ /**
375
+ * Unarchive application.
376
+ */
377
+ unarchiveApplication(params: Mgn.Types.UnarchiveApplicationRequest, callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
378
+ /**
379
+ * Unarchive application.
380
+ */
381
+ unarchiveApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
382
+ /**
383
+ * Unarchive wave.
384
+ */
385
+ unarchiveWave(params: Mgn.Types.UnarchiveWaveRequest, callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
386
+ /**
387
+ * Unarchive wave.
388
+ */
389
+ unarchiveWave(callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
230
390
  /**
231
391
  * Deletes the specified set of tags from the specified set of Application Migration Service resources.
232
392
  */
@@ -235,6 +395,14 @@ declare class Mgn extends Service {
235
395
  * Deletes the specified set of tags from the specified set of Application Migration Service resources.
236
396
  */
237
397
  untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
398
+ /**
399
+ * Update application.
400
+ */
401
+ updateApplication(params: Mgn.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
402
+ /**
403
+ * Update application.
404
+ */
405
+ updateApplication(callback?: (err: AWSError, data: Mgn.Types.Application) => void): Request<Mgn.Types.Application, AWSError>;
238
406
  /**
239
407
  * Updates multiple LaunchConfigurations by Source Server ID.
240
408
  */
@@ -244,11 +412,11 @@ declare class Mgn extends Service {
244
412
  */
245
413
  updateLaunchConfiguration(callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
246
414
  /**
247
- * Creates a new ReplicationConfigurationTemplate.
415
+ * Updates an existing Launch Configuration Template by ID.
248
416
  */
249
417
  updateLaunchConfigurationTemplate(params: Mgn.Types.UpdateLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
250
418
  /**
251
- * Creates a new ReplicationConfigurationTemplate.
419
+ * Updates an existing Launch Configuration Template by ID.
252
420
  */
253
421
  updateLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
254
422
  /**
@@ -275,9 +443,125 @@ declare class Mgn extends Service {
275
443
  * Allows you to change between the AGENT_BASED replication type and the SNAPSHOT_SHIPPING replication type.
276
444
  */
277
445
  updateSourceServerReplicationType(callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
446
+ /**
447
+ * Update wave.
448
+ */
449
+ updateWave(params: Mgn.Types.UpdateWaveRequest, callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
450
+ /**
451
+ * Update wave.
452
+ */
453
+ updateWave(callback?: (err: AWSError, data: Mgn.Types.Wave) => void): Request<Mgn.Types.Wave, AWSError>;
278
454
  }
279
455
  declare namespace Mgn {
280
456
  export type ARN = string;
457
+ export type ActionID = string;
458
+ export type ActionIDs = ActionID[];
459
+ export type ActionName = string;
460
+ export interface Application {
461
+ /**
462
+ * Application aggregated status.
463
+ */
464
+ applicationAggregatedStatus?: ApplicationAggregatedStatus;
465
+ /**
466
+ * Application ID.
467
+ */
468
+ applicationID?: ApplicationID;
469
+ /**
470
+ * Application ARN.
471
+ */
472
+ arn?: ARN;
473
+ /**
474
+ * Application creation dateTime.
475
+ */
476
+ creationDateTime?: ISO8601DatetimeString;
477
+ /**
478
+ * Application description.
479
+ */
480
+ description?: ApplicationDescription;
481
+ /**
482
+ * Application archival status.
483
+ */
484
+ isArchived?: Boolean;
485
+ /**
486
+ * Application last modified dateTime.
487
+ */
488
+ lastModifiedDateTime?: ISO8601DatetimeString;
489
+ /**
490
+ * Application name.
491
+ */
492
+ name?: ApplicationName;
493
+ /**
494
+ * Application tags.
495
+ */
496
+ tags?: TagsMap;
497
+ /**
498
+ * Application wave ID.
499
+ */
500
+ waveID?: WaveID;
501
+ }
502
+ export interface ApplicationAggregatedStatus {
503
+ /**
504
+ * Application aggregated status health status.
505
+ */
506
+ healthStatus?: ApplicationHealthStatus;
507
+ /**
508
+ * Application aggregated status last update dateTime.
509
+ */
510
+ lastUpdateDateTime?: ISO8601DatetimeString;
511
+ /**
512
+ * Application aggregated status progress status.
513
+ */
514
+ progressStatus?: ApplicationProgressStatus;
515
+ /**
516
+ * Application aggregated status total source servers amount.
517
+ */
518
+ totalSourceServers?: PositiveInteger;
519
+ }
520
+ export type ApplicationDescription = string;
521
+ export type ApplicationHealthStatus = "HEALTHY"|"LAGGING"|"ERROR"|string;
522
+ export type ApplicationID = string;
523
+ export type ApplicationIDs = ApplicationID[];
524
+ export type ApplicationIDsFilter = ApplicationID[];
525
+ export type ApplicationName = string;
526
+ export type ApplicationProgressStatus = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETED"|string;
527
+ export type ApplicationsList = Application[];
528
+ export interface ArchiveApplicationRequest {
529
+ /**
530
+ * Application ID.
531
+ */
532
+ applicationID: ApplicationID;
533
+ }
534
+ export interface ArchiveWaveRequest {
535
+ /**
536
+ * Wave ID.
537
+ */
538
+ waveID: WaveID;
539
+ }
540
+ export interface AssociateApplicationsRequest {
541
+ /**
542
+ * Application IDs list.
543
+ */
544
+ applicationIDs: ApplicationIDs;
545
+ /**
546
+ * Wave ID.
547
+ */
548
+ waveID: WaveID;
549
+ }
550
+ export interface AssociateApplicationsResponse {
551
+ }
552
+ export interface AssociateSourceServersRequest {
553
+ /**
554
+ * Application ID.
555
+ */
556
+ applicationID: ApplicationID;
557
+ /**
558
+ * Source server IDs list.
559
+ */
560
+ sourceServerIDs: AssociateSourceServersRequestSourceServerIDs;
561
+ }
562
+ export type AssociateSourceServersRequestSourceServerIDs = SourceServerID[];
563
+ export interface AssociateSourceServersResponse {
564
+ }
281
565
  export type Boolean = boolean;
282
566
  export type BootMode = "LEGACY_BIOS"|"UEFI"|string;
283
567
  export type BoundedString = string;
@@ -310,15 +594,74 @@ declare namespace Mgn {
310
594
  export type ChangeServerLifeCycleStateSourceServerLifecycleState = "READY_FOR_TEST"|"READY_FOR_CUTOVER"|"CUTOVER"|string;
311
595
  export type CloudWatchLogGroupName = string;
312
596
  export type Cpus = CPU[];
597
+ export interface CreateApplicationRequest {
598
+ /**
599
+ * Application description.
600
+ */
601
+ description?: ApplicationDescription;
602
+ /**
603
+ * Application name.
604
+ */
605
+ name: ApplicationName;
606
+ /**
607
+ * Application tags.
608
+ */
609
+ tags?: TagsMap;
610
+ }
313
611
  export interface CreateLaunchConfigurationTemplateRequest {
314
612
  /**
315
- * Request to associate the default Application Migration Service Security group with the Replication Settings template.
613
+ * Associate public Ip address.
614
+ */
615
+ associatePublicIpAddress?: Boolean;
616
+ /**
617
+ * Launch configuration template boot mode.
618
+ */
619
+ bootMode?: BootMode;
620
+ /**
621
+ * Copy private Ip.
622
+ */
623
+ copyPrivateIp?: Boolean;
624
+ /**
625
+ * Copy tags.
626
+ */
627
+ copyTags?: Boolean;
628
+ /**
629
+ * Enable map auto tagging.
630
+ */
631
+ enableMapAutoTagging?: Boolean;
632
+ /**
633
+ * Large volume config.
634
+ */
635
+ largeVolumeConf?: LaunchTemplateDiskConf;
636
+ /**
637
+ * Launch disposition.
638
+ */
639
+ launchDisposition?: LaunchDisposition;
640
+ licensing?: Licensing;
641
+ /**
642
+ * Launch configuration template map auto tagging MPE ID.
643
+ */
644
+ mapAutoTaggingMpeID?: TagValue;
645
+ /**
646
+ * Launch configuration template post launch actions.
316
647
  */
317
648
  postLaunchActions?: PostLaunchActions;
318
649
  /**
319
- * Request to associate the default Application Migration Service Security group with the Replication Settings template.
650
+ * Small volume config.
651
+ */
652
+ smallVolumeConf?: LaunchTemplateDiskConf;
653
+ /**
654
+ * Small volume maximum size.
655
+ */
656
+ smallVolumeMaxSize?: PositiveInteger;
657
+ /**
658
+ * Request to associate tags during creation of a Launch Configuration Template.
320
659
  */
321
660
  tags?: TagsMap;
661
+ /**
662
+ * Target instance type right-sizing method.
663
+ */
664
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
322
665
  }
323
666
  export interface CreateReplicationConfigurationTemplateRequest {
324
667
  /**
@@ -374,6 +717,20 @@ declare namespace Mgn {
374
717
  */
375
718
  useDedicatedReplicationServer: Boolean;
376
719
  }
720
+ export interface CreateWaveRequest {
721
+ /**
722
+ * Wave description.
723
+ */
724
+ description?: WaveDescription;
725
+ /**
726
+ * Wave name.
727
+ */
728
+ name: WaveName;
729
+ /**
730
+ * Wave tags.
731
+ */
732
+ tags?: TagsMap;
733
+ }
377
734
  export interface DataReplicationError {
378
735
  /**
379
736
  * Error in data replication.
@@ -466,6 +823,14 @@ declare namespace Mgn {
466
823
  export type DataReplicationInitiationStepStatus = "NOT_STARTED"|"IN_PROGRESS"|"SUCCEEDED"|"FAILED"|"SKIPPED"|string;
467
824
  export type DataReplicationInitiationSteps = DataReplicationInitiationStep[];
468
825
  export type DataReplicationState = "STOPPED"|"INITIATING"|"INITIAL_SYNC"|"BACKLOG"|"CREATING_SNAPSHOT"|"CONTINUOUS"|"PAUSED"|"RESCAN"|"STALLED"|"DISCONNECTED"|"PENDING_SNAPSHOT_SHIPPING"|"SHIPPING_SNAPSHOT"|string;
826
+ export interface DeleteApplicationRequest {
827
+ /**
828
+ * Application ID.
829
+ */
830
+ applicationID: ApplicationID;
831
+ }
832
+ export interface DeleteApplicationResponse {
833
+ }
469
834
  export interface DeleteJobRequest {
470
835
  /**
471
836
  * Request to delete Job from service by Job ID.
@@ -504,6 +869,14 @@ declare namespace Mgn {
504
869
  */
505
870
  vcenterClientID: VcenterClientID;
506
871
  }
872
+ export interface DeleteWaveRequest {
873
+ /**
874
+ * Wave ID.
875
+ */
876
+ waveID: WaveID;
877
+ }
878
+ export interface DeleteWaveResponse {
879
+ }
507
880
  export interface DescribeJobLogItemsRequest {
508
881
  /**
509
882
  * Request to describe Job log job ID.
@@ -512,7 +885,7 @@ declare namespace Mgn {
512
885
  /**
513
886
  * Request to describe Job log item maximum results.
514
887
  */
515
- maxResults?: StrictlyPositiveInteger;
888
+ maxResults?: MaxResultsType;
516
889
  /**
517
890
  * Request to describe Job log next token.
518
891
  */
@@ -536,7 +909,7 @@ declare namespace Mgn {
536
909
  /**
537
910
  * Request to describe job log items by max results.
538
911
  */
539
- maxResults?: StrictlyPositiveInteger;
912
+ maxResults?: MaxResultsType;
540
913
  /**
541
914
  * Request to describe job log items by next token.
542
915
  */
@@ -569,25 +942,25 @@ declare namespace Mgn {
569
942
  }
570
943
  export interface DescribeLaunchConfigurationTemplatesRequest {
571
944
  /**
572
- * Request to disconnect Source Server from service by Server ID.
945
+ * Request to filter Launch Configuration Templates list by Launch Configuration Template ID.
573
946
  */
574
947
  launchConfigurationTemplateIDs?: LaunchConfigurationTemplateIDs;
575
948
  /**
576
- * Request to disconnect Source Server from service by Server ID.
949
+ * Maximum results to be returned in DescribeLaunchConfigurationTemplates.
577
950
  */
578
- maxResults?: StrictlyPositiveInteger;
951
+ maxResults?: MaxResultsType;
579
952
  /**
580
- * Request to disconnect Source Server from service by Server ID.
953
+ * Next pagination token returned from DescribeLaunchConfigurationTemplates.
581
954
  */
582
955
  nextToken?: PaginationToken;
583
956
  }
584
957
  export interface DescribeLaunchConfigurationTemplatesResponse {
585
958
  /**
586
- * Request to disconnect Source Server from service by Server ID.
959
+ * List of items returned by DescribeLaunchConfigurationTemplates.
587
960
  */
588
961
  items?: LaunchConfigurationTemplates;
589
962
  /**
590
- * Request to disconnect Source Server from service by Server ID.
963
+ * Next pagination token returned from DescribeLaunchConfigurationTemplates.
591
964
  */
592
965
  nextToken?: PaginationToken;
593
966
  }
@@ -595,7 +968,7 @@ declare namespace Mgn {
595
968
  /**
596
969
  * Request to describe Replication Configuration template by max results.
597
970
  */
598
- maxResults?: StrictlyPositiveInteger;
971
+ maxResults?: MaxResultsType;
599
972
  /**
600
973
  * Request to describe Replication Configuration template by next token.
601
974
  */
@@ -623,13 +996,18 @@ declare namespace Mgn {
623
996
  /**
624
997
  * Request to filter Source Servers list by maximum results.
625
998
  */
626
- maxResults?: StrictlyPositiveInteger;
999
+ maxResults?: MaxResultsType;
627
1000
  /**
628
1001
  * Request to filter Source Servers list by next token.
629
1002
  */
630
1003
  nextToken?: PaginationToken;
631
1004
  }
1005
+ export type DescribeSourceServersRequestApplicationIDs = ApplicationID[];
632
1006
  export interface DescribeSourceServersRequestFilters {
1007
+ /**
1008
+ * Request to filter Source Servers list by application IDs.
1009
+ */
1010
+ applicationIDs?: DescribeSourceServersRequestApplicationIDs;
633
1011
  /**
634
1012
  * Request to filter Source Servers list by archived.
635
1013
  */
@@ -662,7 +1040,7 @@ declare namespace Mgn {
662
1040
  /**
663
1041
  * Maximum results to be returned in DescribeVcenterClients.
664
1042
  */
665
- maxResults?: StrictlyPositiveInteger;
1043
+ maxResults?: MaxResultsType;
666
1044
  /**
667
1045
  * Next pagination token to be provided for DescribeVcenterClients.
668
1046
  */
@@ -678,6 +1056,31 @@ declare namespace Mgn {
678
1056
  */
679
1057
  nextToken?: PaginationToken;
680
1058
  }
1059
+ export interface DisassociateApplicationsRequest {
1060
+ /**
1061
+ * Application IDs list.
1062
+ */
1063
+ applicationIDs: ApplicationIDs;
1064
+ /**
1065
+ * Wave ID.
1066
+ */
1067
+ waveID: WaveID;
1068
+ }
1069
+ export interface DisassociateApplicationsResponse {
1070
+ }
1071
+ export interface DisassociateSourceServersRequest {
1072
+ /**
1073
+ * Application ID.
1074
+ */
1075
+ applicationID: ApplicationID;
1076
+ /**
1077
+ * Source server IDs list.
1078
+ */
1079
+ sourceServerIDs: DisassociateSourceServersRequestSourceServerIDs;
1080
+ }
1081
+ export type DisassociateSourceServersRequestSourceServerIDs = SourceServerID[];
1082
+ export interface DisassociateSourceServersResponse {
1083
+ }
681
1084
  export interface DisconnectFromServiceRequest {
682
1085
  /**
683
1086
  * Request to disconnect Source Server from service by Server ID.
@@ -695,8 +1098,10 @@ declare namespace Mgn {
695
1098
  deviceName?: BoundedString;
696
1099
  }
697
1100
  export type Disks = Disk[];
1101
+ export type DocumentVersion = string;
698
1102
  export type EC2InstanceID = string;
699
1103
  export type EC2InstanceType = string;
1104
+ export type EC2LaunchConfigurationTemplateID = string;
700
1105
  export interface FinalizeCutoverRequest {
701
1106
  /**
702
1107
  * Request to finalize Cutover by Source Server ID.
@@ -821,23 +1226,23 @@ declare namespace Mgn {
821
1226
  export type JobLogs = JobLog[];
822
1227
  export interface JobPostLaunchActionsLaunchStatus {
823
1228
  /**
824
- * Job type.
1229
+ * AWS Systems Manager Document's execution ID of the of the Job Post Launch Actions.
825
1230
  */
826
1231
  executionID?: BoundedString;
827
1232
  /**
828
- * Job type.
1233
+ * AWS Systems Manager Document's execution status.
829
1234
  */
830
1235
  executionStatus?: PostLaunchActionExecutionStatus;
831
1236
  /**
832
- * Job type.
1237
+ * AWS Systems Manager Document's failure reason.
833
1238
  */
834
1239
  failureReason?: BoundedString;
835
1240
  /**
836
- * Job type.
1241
+ * AWS Systems Manager's Document of the of the Job Post Launch Actions.
837
1242
  */
838
1243
  ssmDocument?: SsmDocument;
839
1244
  /**
840
- * Job type.
1245
+ * AWS Systems Manager Document type.
841
1246
  */
842
1247
  ssmDocumentType?: SsmDocumentType;
843
1248
  }
@@ -862,6 +1267,10 @@ declare namespace Mgn {
862
1267
  * Launch configuration EC2 Launch template ID.
863
1268
  */
864
1269
  ec2LaunchTemplateID?: BoundedString;
1270
+ /**
1271
+ * Enable map auto tagging.
1272
+ */
1273
+ enableMapAutoTagging?: Boolean;
865
1274
  /**
866
1275
  * Launch disposition for launch configuration.
867
1276
  */
@@ -870,6 +1279,10 @@ declare namespace Mgn {
870
1279
  * Launch configuration OS licensing.
871
1280
  */
872
1281
  licensing?: Licensing;
1282
+ /**
1283
+ * Map auto tagging MPE ID.
1284
+ */
1285
+ mapAutoTaggingMpeID?: TagValue;
873
1286
  /**
874
1287
  * Launch configuration name.
875
1288
  */
@@ -886,44 +1299,107 @@ declare namespace Mgn {
886
1299
  }
887
1300
  export interface LaunchConfigurationTemplate {
888
1301
  /**
889
- * Copy Private IP during Launch Configuration.
1302
+ * ARN of the Launch Configuration Template.
890
1303
  */
891
1304
  arn?: ARN;
892
1305
  /**
893
- * Copy Private IP during Launch Configuration.
1306
+ * Associate public Ip address.
894
1307
  */
895
- launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1308
+ associatePublicIpAddress?: Boolean;
896
1309
  /**
897
- * Copy Private IP during Launch Configuration.
1310
+ * Launch configuration template boot mode.
898
1311
  */
899
- postLaunchActions?: PostLaunchActions;
1312
+ bootMode?: BootMode;
900
1313
  /**
901
- * Copy Private IP during Launch Configuration.
1314
+ * Copy private Ip.
902
1315
  */
903
- tags?: TagsMap;
904
- }
905
- export type LaunchConfigurationTemplateID = string;
906
- export type LaunchConfigurationTemplateIDs = LaunchConfigurationTemplateID[];
907
- export type LaunchConfigurationTemplates = LaunchConfigurationTemplate[];
908
- export type LaunchDisposition = "STOPPED"|"STARTED"|string;
909
- export type LaunchStatus = "PENDING"|"IN_PROGRESS"|"LAUNCHED"|"FAILED"|"TERMINATED"|string;
910
- export interface LaunchedInstance {
1316
+ copyPrivateIp?: Boolean;
911
1317
  /**
912
- * Launched instance EC2 ID.
1318
+ * Copy tags.
913
1319
  */
914
- ec2InstanceID?: EC2InstanceID;
1320
+ copyTags?: Boolean;
915
1321
  /**
916
- * Launched instance first boot.
1322
+ * EC2 launch template ID.
917
1323
  */
918
- firstBoot?: FirstBoot;
1324
+ ec2LaunchTemplateID?: EC2LaunchConfigurationTemplateID;
919
1325
  /**
920
- * Launched instance Job ID.
1326
+ * Enable map auto tagging.
921
1327
  */
922
- jobID?: JobID;
923
- }
924
- export interface Licensing {
1328
+ enableMapAutoTagging?: Boolean;
925
1329
  /**
926
- * Configure BYOL OS licensing.
1330
+ * Large volume config.
1331
+ */
1332
+ largeVolumeConf?: LaunchTemplateDiskConf;
1333
+ /**
1334
+ * ID of the Launch Configuration Template.
1335
+ */
1336
+ launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1337
+ /**
1338
+ * Launch disposition.
1339
+ */
1340
+ launchDisposition?: LaunchDisposition;
1341
+ licensing?: Licensing;
1342
+ /**
1343
+ * Launch configuration template map auto tagging MPE ID.
1344
+ */
1345
+ mapAutoTaggingMpeID?: TagValue;
1346
+ /**
1347
+ * Post Launch Actions of the Launch Configuration Template.
1348
+ */
1349
+ postLaunchActions?: PostLaunchActions;
1350
+ /**
1351
+ * Small volume config.
1352
+ */
1353
+ smallVolumeConf?: LaunchTemplateDiskConf;
1354
+ /**
1355
+ * Small volume maximum size.
1356
+ */
1357
+ smallVolumeMaxSize?: PositiveInteger;
1358
+ /**
1359
+ * Tags of the Launch Configuration Template.
1360
+ */
1361
+ tags?: TagsMap;
1362
+ /**
1363
+ * Target instance type right-sizing method.
1364
+ */
1365
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1366
+ }
1367
+ export type LaunchConfigurationTemplateID = string;
1368
+ export type LaunchConfigurationTemplateIDs = LaunchConfigurationTemplateID[];
1369
+ export type LaunchConfigurationTemplates = LaunchConfigurationTemplate[];
1370
+ export type LaunchDisposition = "STOPPED"|"STARTED"|string;
1371
+ export type LaunchStatus = "PENDING"|"IN_PROGRESS"|"LAUNCHED"|"FAILED"|"TERMINATED"|string;
1372
+ export interface LaunchTemplateDiskConf {
1373
+ /**
1374
+ * Launch template disk iops configuration.
1375
+ */
1376
+ iops?: PositiveInteger;
1377
+ /**
1378
+ * Launch template disk throughput configuration.
1379
+ */
1380
+ throughput?: PositiveInteger;
1381
+ /**
1382
+ * Launch template disk volume type configuration.
1383
+ */
1384
+ volumeType?: VolumeType;
1385
+ }
1386
+ export interface LaunchedInstance {
1387
+ /**
1388
+ * Launched instance EC2 ID.
1389
+ */
1390
+ ec2InstanceID?: EC2InstanceID;
1391
+ /**
1392
+ * Launched instance first boot.
1393
+ */
1394
+ firstBoot?: FirstBoot;
1395
+ /**
1396
+ * Launched instance Job ID.
1397
+ */
1398
+ jobID?: JobID;
1399
+ }
1400
+ export interface Licensing {
1401
+ /**
1402
+ * Configure BYOL OS licensing.
927
1403
  */
928
1404
  osByol?: Boolean;
929
1405
  }
@@ -1031,6 +1507,72 @@ declare namespace Mgn {
1031
1507
  }
1032
1508
  export type LifeCycleState = "STOPPED"|"NOT_READY"|"READY_FOR_TEST"|"TESTING"|"READY_FOR_CUTOVER"|"CUTTING_OVER"|"CUTOVER"|"DISCONNECTED"|"DISCOVERED"|string;
1033
1509
  export type LifeCycleStates = LifeCycleState[];
1510
+ export interface ListApplicationsRequest {
1511
+ /**
1512
+ * Applications list filters.
1513
+ */
1514
+ filters?: ListApplicationsRequestFilters;
1515
+ /**
1516
+ * Maximum results to return when listing applications.
1517
+ */
1518
+ maxResults?: MaxResultsType;
1519
+ /**
1520
+ * Request next token.
1521
+ */
1522
+ nextToken?: PaginationToken;
1523
+ }
1524
+ export interface ListApplicationsRequestFilters {
1525
+ /**
1526
+ * Filter applications list by application ID.
1527
+ */
1528
+ applicationIDs?: ApplicationIDsFilter;
1529
+ /**
1530
+ * Filter applications list by archival status.
1531
+ */
1532
+ isArchived?: Boolean;
1533
+ /**
1534
+ * Filter applications list by wave ID.
1535
+ */
1536
+ waveIDs?: WaveIDsFilter;
1537
+ }
1538
+ export interface ListApplicationsResponse {
1539
+ /**
1540
+ * Applications list.
1541
+ */
1542
+ items?: ApplicationsList;
1543
+ /**
1544
+ * Response next token.
1545
+ */
1546
+ nextToken?: PaginationToken;
1547
+ }
1548
+ export interface ListSourceServerActionsRequest {
1549
+ /**
1550
+ * Filters to apply when listing source server post migration custom actions.
1551
+ */
1552
+ filters?: SourceServerActionsRequestFilters;
1553
+ /**
1554
+ * Maximum amount of items to return when listing source server post migration custom actions.
1555
+ */
1556
+ maxResults?: MaxResultsType;
1557
+ /**
1558
+ * Next token to use when listing source server post migration custom actions.
1559
+ */
1560
+ nextToken?: PaginationToken;
1561
+ /**
1562
+ * Source server ID.
1563
+ */
1564
+ sourceServerID: SourceServerID;
1565
+ }
1566
+ export interface ListSourceServerActionsResponse {
1567
+ /**
1568
+ * List of source server post migration custom actions.
1569
+ */
1570
+ items?: SourceServerActionDocuments;
1571
+ /**
1572
+ * Next token returned when listing source server post migration custom actions.
1573
+ */
1574
+ nextToken?: PaginationToken;
1575
+ }
1034
1576
  export interface ListTagsForResourceRequest {
1035
1577
  /**
1036
1578
  * List tags for resource request by ARN.
@@ -1043,12 +1585,75 @@ declare namespace Mgn {
1043
1585
  */
1044
1586
  tags?: TagsMap;
1045
1587
  }
1588
+ export interface ListTemplateActionsRequest {
1589
+ /**
1590
+ * Filters to apply when listing template post migration custom actions.
1591
+ */
1592
+ filters?: TemplateActionsRequestFilters;
1593
+ /**
1594
+ * Launch configuration template ID.
1595
+ */
1596
+ launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1597
+ /**
1598
+ * Maximum amount of items to return when listing template post migration custom actions.
1599
+ */
1600
+ maxResults?: MaxResultsType;
1601
+ /**
1602
+ * Next token to use when listing template post migration custom actions.
1603
+ */
1604
+ nextToken?: PaginationToken;
1605
+ }
1606
+ export interface ListTemplateActionsResponse {
1607
+ /**
1608
+ * List of template post migration custom actions.
1609
+ */
1610
+ items?: TemplateActionDocuments;
1611
+ /**
1612
+ * Next token returned when listing template post migration custom actions.
1613
+ */
1614
+ nextToken?: PaginationToken;
1615
+ }
1616
+ export interface ListWavesRequest {
1617
+ /**
1618
+ * Waves list filters.
1619
+ */
1620
+ filters?: ListWavesRequestFilters;
1621
+ /**
1622
+ * Maximum results to return when listing waves.
1623
+ */
1624
+ maxResults?: MaxResultsType;
1625
+ /**
1626
+ * Request next token.
1627
+ */
1628
+ nextToken?: PaginationToken;
1629
+ }
1630
+ export interface ListWavesRequestFilters {
1631
+ /**
1632
+ * Filter waves list by archival status.
1633
+ */
1634
+ isArchived?: Boolean;
1635
+ /**
1636
+ * Filter waves list by wave ID.
1637
+ */
1638
+ waveIDs?: WaveIDsFilter;
1639
+ }
1640
+ export interface ListWavesResponse {
1641
+ /**
1642
+ * Waves list.
1643
+ */
1644
+ items?: WavesList;
1645
+ /**
1646
+ * Response next token.
1647
+ */
1648
+ nextToken?: PaginationToken;
1649
+ }
1046
1650
  export interface MarkAsArchivedRequest {
1047
1651
  /**
1048
1652
  * Mark as archived by Source Server ID.
1049
1653
  */
1050
1654
  sourceServerID: SourceServerID;
1051
1655
  }
1656
+ export type MaxResultsType = number;
1052
1657
  export interface NetworkInterface {
1053
1658
  /**
1054
1659
  * Network interface IPs.
@@ -1070,6 +1675,8 @@ declare namespace Mgn {
1070
1675
  */
1071
1676
  fullString?: BoundedString;
1072
1677
  }
1678
+ export type OperatingSystemString = string;
1679
+ export type OrderType = number;
1073
1680
  export type PaginationToken = string;
1074
1681
  export interface ParticipatingServer {
1075
1682
  /**
@@ -1077,11 +1684,11 @@ declare namespace Mgn {
1077
1684
  */
1078
1685
  launchStatus?: LaunchStatus;
1079
1686
  /**
1080
- * Participating server Source Server ID.
1687
+ * Participating server's launched ec2 instance ID.
1081
1688
  */
1082
1689
  launchedEc2InstanceID?: EC2InstanceID;
1083
1690
  /**
1084
- * Participating server Source Server ID.
1691
+ * Participating server's Post Launch Actions Status.
1085
1692
  */
1086
1693
  postLaunchActionsStatus?: PostLaunchActionsStatus;
1087
1694
  /**
@@ -1094,38 +1701,150 @@ declare namespace Mgn {
1094
1701
  export type PostLaunchActionExecutionStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|string;
1095
1702
  export interface PostLaunchActions {
1096
1703
  /**
1097
- * Server participating in Job.
1704
+ * AWS Systems Manager Command's CloudWatch log group name.
1098
1705
  */
1099
1706
  cloudWatchLogGroupName?: CloudWatchLogGroupName;
1100
1707
  /**
1101
- * Server participating in Job.
1708
+ * Deployment type in which AWS Systems Manager Documents will be executed.
1102
1709
  */
1103
1710
  deployment?: PostLaunchActionsDeploymentType;
1104
1711
  /**
1105
- * Server participating in Job.
1712
+ * AWS Systems Manager Command's logs S3 log bucket.
1106
1713
  */
1107
1714
  s3LogBucket?: S3LogBucketName;
1108
1715
  /**
1109
- * Server participating in Job.
1716
+ * AWS Systems Manager Command's logs S3 output key prefix.
1110
1717
  */
1111
1718
  s3OutputKeyPrefix?: BoundedString;
1112
1719
  /**
1113
- * Server participating in Job.
1720
+ * AWS Systems Manager Documents.
1114
1721
  */
1115
1722
  ssmDocuments?: SsmDocuments;
1116
1723
  }
1117
- export type PostLaunchActionsDeploymentType = "TEST_AND_CUTOVER"|"CUTOVER_ONLY"|string;
1724
+ export type PostLaunchActionsDeploymentType = "TEST_AND_CUTOVER"|"CUTOVER_ONLY"|"TEST_ONLY"|string;
1118
1725
  export type PostLaunchActionsLaunchStatusList = JobPostLaunchActionsLaunchStatus[];
1119
1726
  export interface PostLaunchActionsStatus {
1120
1727
  /**
1121
- * Server participating in Job.
1728
+ * List of Post Launch Action status.
1122
1729
  */
1123
1730
  postLaunchActionsLaunchStatusList?: PostLaunchActionsLaunchStatusList;
1124
1731
  /**
1125
- * Server participating in Job.
1732
+ * Time where the AWS Systems Manager was detected as running on the Test or Cutover instance.
1126
1733
  */
1127
1734
  ssmAgentDiscoveryDatetime?: ISO8601DatetimeString;
1128
1735
  }
1736
+ export interface PutSourceServerActionRequest {
1737
+ /**
1738
+ * Source server post migration custom action ID.
1739
+ */
1740
+ actionID: ActionID;
1741
+ /**
1742
+ * Source server post migration custom action name.
1743
+ */
1744
+ actionName: ActionName;
1745
+ /**
1746
+ * Source server post migration custom action active status.
1747
+ */
1748
+ active?: Boolean;
1749
+ /**
1750
+ * Source server post migration custom action document identifier.
1751
+ */
1752
+ documentIdentifier: BoundedString;
1753
+ /**
1754
+ * Source server post migration custom action document version.
1755
+ */
1756
+ documentVersion?: DocumentVersion;
1757
+ /**
1758
+ * Source server post migration custom action must succeed for cutover.
1759
+ */
1760
+ mustSucceedForCutover?: Boolean;
1761
+ /**
1762
+ * Source server post migration custom action order.
1763
+ */
1764
+ order: OrderType;
1765
+ /**
1766
+ * Source server post migration custom action parameters.
1767
+ */
1768
+ parameters?: SsmDocumentParameters;
1769
+ /**
1770
+ * Source server ID.
1771
+ */
1772
+ sourceServerID: SourceServerID;
1773
+ /**
1774
+ * Source server post migration custom action timeout in seconds.
1775
+ */
1776
+ timeoutSeconds?: StrictlyPositiveInteger;
1777
+ }
1778
+ export interface PutTemplateActionRequest {
1779
+ /**
1780
+ * Template post migration custom action ID.
1781
+ */
1782
+ actionID: ActionID;
1783
+ /**
1784
+ * Template post migration custom action name.
1785
+ */
1786
+ actionName: BoundedString;
1787
+ /**
1788
+ * Template post migration custom action active status.
1789
+ */
1790
+ active?: Boolean;
1791
+ /**
1792
+ * Template post migration custom action document identifier.
1793
+ */
1794
+ documentIdentifier: BoundedString;
1795
+ /**
1796
+ * Template post migration custom action document version.
1797
+ */
1798
+ documentVersion?: DocumentVersion;
1799
+ /**
1800
+ * Launch configuration template ID.
1801
+ */
1802
+ launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1803
+ /**
1804
+ * Template post migration custom action must succeed for cutover.
1805
+ */
1806
+ mustSucceedForCutover?: Boolean;
1807
+ /**
1808
+ * Operating system eligible for this template post migration custom action.
1809
+ */
1810
+ operatingSystem?: OperatingSystemString;
1811
+ /**
1812
+ * Template post migration custom action order.
1813
+ */
1814
+ order: OrderType;
1815
+ /**
1816
+ * Template post migration custom action parameters.
1817
+ */
1818
+ parameters?: SsmDocumentParameters;
1819
+ /**
1820
+ * Template post migration custom action timeout in seconds.
1821
+ */
1822
+ timeoutSeconds?: StrictlyPositiveInteger;
1823
+ }
1824
+ export interface RemoveSourceServerActionRequest {
1825
+ /**
1826
+ * Source server post migration custom action ID to remove.
1827
+ */
1828
+ actionID: ActionID;
1829
+ /**
1830
+ * Source server ID of the post migration custom action to remove.
1831
+ */
1832
+ sourceServerID: SourceServerID;
1833
+ }
1834
+ export interface RemoveSourceServerActionResponse {
1835
+ }
1836
+ export interface RemoveTemplateActionRequest {
1837
+ /**
1838
+ * Template post migration custom action ID to remove.
1839
+ */
1840
+ actionID: ActionID;
1841
+ /**
1842
+ * Launch configuration template ID of the post migration custom action to remove.
1843
+ */
1844
+ launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1845
+ }
1846
+ export interface RemoveTemplateActionResponse {
1847
+ }
1129
1848
  export interface ReplicationConfiguration {
1130
1849
  /**
1131
1850
  * Replication Configuration associate default Application Migration Service Security Group.
@@ -1327,6 +2046,10 @@ declare namespace Mgn {
1327
2046
  recommendedInstanceType?: EC2InstanceType;
1328
2047
  }
1329
2048
  export interface SourceServer {
2049
+ /**
2050
+ * Source server application ID.
2051
+ */
2052
+ applicationID?: ApplicationID;
1330
2053
  /**
1331
2054
  * Source server ARN.
1332
2055
  */
@@ -1368,27 +2091,72 @@ declare namespace Mgn {
1368
2091
  */
1369
2092
  vcenterClientID?: VcenterClientID;
1370
2093
  }
2094
+ export interface SourceServerActionDocument {
2095
+ /**
2096
+ * Source server post migration custom action ID.
2097
+ */
2098
+ actionID?: ActionID;
2099
+ /**
2100
+ * Source server post migration custom action name.
2101
+ */
2102
+ actionName?: ActionName;
2103
+ /**
2104
+ * Source server post migration custom action active status.
2105
+ */
2106
+ active?: Boolean;
2107
+ /**
2108
+ * Source server post migration custom action document identifier.
2109
+ */
2110
+ documentIdentifier?: BoundedString;
2111
+ /**
2112
+ * Source server post migration custom action document version.
2113
+ */
2114
+ documentVersion?: DocumentVersion;
2115
+ /**
2116
+ * Source server post migration custom action must succeed for cutover.
2117
+ */
2118
+ mustSucceedForCutover?: Boolean;
2119
+ /**
2120
+ * Source server post migration custom action order.
2121
+ */
2122
+ order?: OrderType;
2123
+ /**
2124
+ * Source server post migration custom action parameters.
2125
+ */
2126
+ parameters?: SsmDocumentParameters;
2127
+ /**
2128
+ * Source server post migration custom action timeout in seconds.
2129
+ */
2130
+ timeoutSeconds?: StrictlyPositiveInteger;
2131
+ }
2132
+ export type SourceServerActionDocuments = SourceServerActionDocument[];
2133
+ export interface SourceServerActionsRequestFilters {
2134
+ /**
2135
+ * Action IDs to filter source server post migration custom actions by.
2136
+ */
2137
+ actionIDs?: ActionIDs;
2138
+ }
1371
2139
  export type SourceServerID = string;
1372
2140
  export type SourceServersList = SourceServer[];
1373
2141
  export interface SsmDocument {
1374
2142
  /**
1375
- * Source server replication type.
2143
+ * User-friendly name for the AWS Systems Manager Document.
1376
2144
  */
1377
2145
  actionName: BoundedString;
1378
2146
  /**
1379
- * Source server replication type.
2147
+ * If true, Cutover will not be enabled if the document has failed.
1380
2148
  */
1381
2149
  mustSucceedForCutover?: Boolean;
1382
2150
  /**
1383
- * Source server replication type.
2151
+ * AWS Systems Manager Document parameters.
1384
2152
  */
1385
2153
  parameters?: SsmDocumentParameters;
1386
2154
  /**
1387
- * Source server replication type.
2155
+ * AWS Systems Manager Document name or full ARN.
1388
2156
  */
1389
2157
  ssmDocumentName: SsmDocumentName;
1390
2158
  /**
1391
- * Source server replication type.
2159
+ * AWS Systems Manager Document timeout seconds.
1392
2160
  */
1393
2161
  timeoutSeconds?: StrictlyPositiveInteger;
1394
2162
  }
@@ -1399,11 +2167,11 @@ declare namespace Mgn {
1399
2167
  export type SsmDocuments = SsmDocument[];
1400
2168
  export interface SsmParameterStoreParameter {
1401
2169
  /**
1402
- * Source server replication type.
2170
+ * AWS Systems Manager Parameter Store parameter name.
1403
2171
  */
1404
2172
  parameterName: SsmParameterStoreParameterName;
1405
2173
  /**
1406
- * Source server replication type.
2174
+ * AWS Systems Manager Parameter Store parameter type.
1407
2175
  */
1408
2176
  parameterType: SsmParameterStoreParameterType;
1409
2177
  }
@@ -1467,6 +2235,55 @@ declare namespace Mgn {
1467
2235
  export type TagValue = string;
1468
2236
  export type TagsMap = {[key: string]: TagValue};
1469
2237
  export type TargetInstanceTypeRightSizingMethod = "NONE"|"BASIC"|string;
2238
+ export interface TemplateActionDocument {
2239
+ /**
2240
+ * Template post migration custom action ID.
2241
+ */
2242
+ actionID?: ActionID;
2243
+ /**
2244
+ * Template post migration custom action name.
2245
+ */
2246
+ actionName?: BoundedString;
2247
+ /**
2248
+ * Template post migration custom action active status.
2249
+ */
2250
+ active?: Boolean;
2251
+ /**
2252
+ * Template post migration custom action document identifier.
2253
+ */
2254
+ documentIdentifier?: BoundedString;
2255
+ /**
2256
+ * Template post migration custom action document version.
2257
+ */
2258
+ documentVersion?: DocumentVersion;
2259
+ /**
2260
+ * Template post migration custom action must succeed for cutover.
2261
+ */
2262
+ mustSucceedForCutover?: Boolean;
2263
+ /**
2264
+ * Operating system eligible for this template post migration custom action.
2265
+ */
2266
+ operatingSystem?: OperatingSystemString;
2267
+ /**
2268
+ * Template post migration custom action order.
2269
+ */
2270
+ order?: OrderType;
2271
+ /**
2272
+ * Template post migration custom action parameters.
2273
+ */
2274
+ parameters?: SsmDocumentParameters;
2275
+ /**
2276
+ * Template post migration custom action timeout in seconds.
2277
+ */
2278
+ timeoutSeconds?: StrictlyPositiveInteger;
2279
+ }
2280
+ export type TemplateActionDocuments = TemplateActionDocument[];
2281
+ export interface TemplateActionsRequestFilters {
2282
+ /**
2283
+ * Action IDs to filter template post migration custom actions by.
2284
+ */
2285
+ actionIDs?: ActionIDs;
2286
+ }
1470
2287
  export interface TerminateTargetInstancesRequest {
1471
2288
  /**
1472
2289
  * Terminate Target instance by Source Server IDs.
@@ -1484,6 +2301,18 @@ declare namespace Mgn {
1484
2301
  */
1485
2302
  job?: Job;
1486
2303
  }
2304
+ export interface UnarchiveApplicationRequest {
2305
+ /**
2306
+ * Application ID.
2307
+ */
2308
+ applicationID: ApplicationID;
2309
+ }
2310
+ export interface UnarchiveWaveRequest {
2311
+ /**
2312
+ * Wave ID.
2313
+ */
2314
+ waveID: WaveID;
2315
+ }
1487
2316
  export interface UntagResourceRequest {
1488
2317
  /**
1489
2318
  * Untag resource by ARN.
@@ -1494,6 +2323,20 @@ declare namespace Mgn {
1494
2323
  */
1495
2324
  tagKeys: TagKeys;
1496
2325
  }
2326
+ export interface UpdateApplicationRequest {
2327
+ /**
2328
+ * Application ID.
2329
+ */
2330
+ applicationID: ApplicationID;
2331
+ /**
2332
+ * Application description.
2333
+ */
2334
+ description?: ApplicationDescription;
2335
+ /**
2336
+ * Application name.
2337
+ */
2338
+ name?: ApplicationName;
2339
+ }
1497
2340
  export interface UpdateLaunchConfigurationRequest {
1498
2341
  /**
1499
2342
  * Update Launch configuration boot mode request.
@@ -1507,6 +2350,10 @@ declare namespace Mgn {
1507
2350
  * Update Launch configuration copy Tags request.
1508
2351
  */
1509
2352
  copyTags?: Boolean;
2353
+ /**
2354
+ * Enable map auto tagging.
2355
+ */
2356
+ enableMapAutoTagging?: Boolean;
1510
2357
  /**
1511
2358
  * Update Launch configuration launch disposition request.
1512
2359
  */
@@ -1515,6 +2362,10 @@ declare namespace Mgn {
1515
2362
  * Update Launch configuration licensing request.
1516
2363
  */
1517
2364
  licensing?: Licensing;
2365
+ /**
2366
+ * Launch configuration map auto tagging MPE ID.
2367
+ */
2368
+ mapAutoTaggingMpeID?: TagValue;
1518
2369
  /**
1519
2370
  * Update Launch configuration name request.
1520
2371
  */
@@ -1531,13 +2382,58 @@ declare namespace Mgn {
1531
2382
  }
1532
2383
  export interface UpdateLaunchConfigurationTemplateRequest {
1533
2384
  /**
1534
- * Update Launch configuration Target instance right sizing request.
2385
+ * Associate public Ip address.
2386
+ */
2387
+ associatePublicIpAddress?: Boolean;
2388
+ /**
2389
+ * Launch configuration template boot mode.
2390
+ */
2391
+ bootMode?: BootMode;
2392
+ /**
2393
+ * Copy private Ip.
2394
+ */
2395
+ copyPrivateIp?: Boolean;
2396
+ /**
2397
+ * Copy tags.
2398
+ */
2399
+ copyTags?: Boolean;
2400
+ /**
2401
+ * Enable map auto tagging.
2402
+ */
2403
+ enableMapAutoTagging?: Boolean;
2404
+ /**
2405
+ * Large volume config.
2406
+ */
2407
+ largeVolumeConf?: LaunchTemplateDiskConf;
2408
+ /**
2409
+ * Launch Configuration Template ID.
1535
2410
  */
1536
2411
  launchConfigurationTemplateID: LaunchConfigurationTemplateID;
1537
2412
  /**
1538
- * Update Launch configuration Target instance right sizing request.
2413
+ * Launch disposition.
2414
+ */
2415
+ launchDisposition?: LaunchDisposition;
2416
+ licensing?: Licensing;
2417
+ /**
2418
+ * Launch configuration template map auto tagging MPE ID.
2419
+ */
2420
+ mapAutoTaggingMpeID?: TagValue;
2421
+ /**
2422
+ * Post Launch Action to execute on the Test or Cutover instance.
1539
2423
  */
1540
2424
  postLaunchActions?: PostLaunchActions;
2425
+ /**
2426
+ * Small volume config.
2427
+ */
2428
+ smallVolumeConf?: LaunchTemplateDiskConf;
2429
+ /**
2430
+ * Small volume maximum size.
2431
+ */
2432
+ smallVolumeMaxSize?: PositiveInteger;
2433
+ /**
2434
+ * Target instance type right-sizing method.
2435
+ */
2436
+ targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
1541
2437
  }
1542
2438
  export interface UpdateReplicationConfigurationRequest {
1543
2439
  /**
@@ -1669,6 +2565,20 @@ declare namespace Mgn {
1669
2565
  */
1670
2566
  sourceServerID: SourceServerID;
1671
2567
  }
2568
+ export interface UpdateWaveRequest {
2569
+ /**
2570
+ * Wave description.
2571
+ */
2572
+ description?: WaveDescription;
2573
+ /**
2574
+ * Wave name.
2575
+ */
2576
+ name?: WaveName;
2577
+ /**
2578
+ * Wave ID.
2579
+ */
2580
+ waveID: WaveID;
2581
+ }
1672
2582
  export interface VcenterClient {
1673
2583
  /**
1674
2584
  * Arn of vCenter client.
@@ -1705,6 +2615,74 @@ declare namespace Mgn {
1705
2615
  }
1706
2616
  export type VcenterClientID = string;
1707
2617
  export type VcenterClientList = VcenterClient[];
2618
+ export type VolumeType = "io1"|"io2"|"gp3"|"gp2"|"st1"|"sc1"|"standard"|string;
2619
+ export interface Wave {
2620
+ /**
2621
+ * Wave ARN.
2622
+ */
2623
+ arn?: ARN;
2624
+ /**
2625
+ * Wave creation dateTime.
2626
+ */
2627
+ creationDateTime?: ISO8601DatetimeString;
2628
+ /**
2629
+ * Wave description.
2630
+ */
2631
+ description?: WaveDescription;
2632
+ /**
2633
+ * Wave archival status.
2634
+ */
2635
+ isArchived?: Boolean;
2636
+ /**
2637
+ * Wave last modified dateTime.
2638
+ */
2639
+ lastModifiedDateTime?: ISO8601DatetimeString;
2640
+ /**
2641
+ * Wave name.
2642
+ */
2643
+ name?: WaveName;
2644
+ /**
2645
+ * Wave tags.
2646
+ */
2647
+ tags?: TagsMap;
2648
+ /**
2649
+ * Wave aggregated status.
2650
+ */
2651
+ waveAggregatedStatus?: WaveAggregatedStatus;
2652
+ /**
2653
+ * Wave ID.
2654
+ */
2655
+ waveID?: WaveID;
2656
+ }
2657
+ export interface WaveAggregatedStatus {
2658
+ /**
2659
+ * Wave aggregated status health status.
2660
+ */
2661
+ healthStatus?: WaveHealthStatus;
2662
+ /**
2663
+ * Wave aggregated status last update dateTime.
2664
+ */
2665
+ lastUpdateDateTime?: ISO8601DatetimeString;
2666
+ /**
2667
+ * Wave aggregated status progress status.
2668
+ */
2669
+ progressStatus?: WaveProgressStatus;
2670
+ /**
2671
+ * DateTime marking when the first source server in the wave started replication.
2672
+ */
2673
+ replicationStartedDateTime?: ISO8601DatetimeString;
2674
+ /**
2675
+ * Wave aggregated status total applications amount.
2676
+ */
2677
+ totalApplications?: PositiveInteger;
2678
+ }
2679
+ export type WaveDescription = string;
2680
+ export type WaveHealthStatus = "HEALTHY"|"LAGGING"|"ERROR"|string;
2681
+ export type WaveID = string;
2682
+ export type WaveIDsFilter = WaveID[];
2683
+ export type WaveName = string;
2684
+ export type WaveProgressStatus = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETED"|string;
2685
+ export type WavesList = Wave[];
1708
2686
  /**
1709
2687
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1710
2688
  */