@aws-sdk/client-migrationhuborchestrator 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +299 -299
- package/dist-types/ts3.4/models/models_0.d.ts +305 -299
- package/package.json +7 -7
|
@@ -31,7 +31,7 @@ export interface ListTagsForResourceResponse {
|
|
|
31
31
|
* <p>The tags added to a resource.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
tags?: Record<string, string
|
|
34
|
+
tags?: Record<string, string> | undefined;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* <p>The resource is not available.</p>
|
|
@@ -144,7 +144,7 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
144
144
|
* <p>The description of the migration workflow.</p>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
description?: string;
|
|
147
|
+
description?: string | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* <p>The ID of the template.</p>
|
|
150
150
|
* @public
|
|
@@ -154,7 +154,7 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
154
154
|
* <p>The configuration ID of the application configured in Application Discovery Service.</p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
applicationConfigurationId?: string;
|
|
157
|
+
applicationConfigurationId?: string | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>The input parameters required to create a migration workflow.</p>
|
|
160
160
|
* @public
|
|
@@ -164,12 +164,12 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
164
164
|
* <p>The servers on which a step will be run.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
stepTargets?: string[];
|
|
167
|
+
stepTargets?: string[] | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>The tags to add on a migration workflow.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
tags?: Record<string, string
|
|
172
|
+
tags?: Record<string, string> | undefined;
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
175
|
* @public
|
|
@@ -203,57 +203,57 @@ export interface CreateMigrationWorkflowResponse {
|
|
|
203
203
|
* <p>The ID of the migration workflow.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
id?: string;
|
|
206
|
+
id?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
arn?: string;
|
|
211
|
+
arn?: string | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* <p>The name of the migration workflow.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
name?: string;
|
|
216
|
+
name?: string | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* <p>The description of the migration workflow.</p>
|
|
219
219
|
* @public
|
|
220
220
|
*/
|
|
221
|
-
description?: string;
|
|
221
|
+
description?: string | undefined;
|
|
222
222
|
/**
|
|
223
223
|
* <p>The ID of the template.</p>
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
226
|
-
templateId?: string;
|
|
226
|
+
templateId?: string | undefined;
|
|
227
227
|
/**
|
|
228
228
|
* <p>The configuration ID of the application configured in Application Discovery Service.</p>
|
|
229
229
|
* @public
|
|
230
230
|
*/
|
|
231
|
-
adsApplicationConfigurationId?: string;
|
|
231
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
232
232
|
/**
|
|
233
233
|
* <p>The inputs for creating a migration workflow.</p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
workflowInputs?: Record<string, StepInput
|
|
236
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* <p>The servers on which a step will be run.</p>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
stepTargets?: string[];
|
|
241
|
+
stepTargets?: string[] | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* <p>The status of the migration workflow.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
status?: MigrationWorkflowStatusEnum;
|
|
246
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
247
247
|
/**
|
|
248
248
|
* <p>The time at which the migration workflow was created.</p>
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
creationTime?: Date;
|
|
251
|
+
creationTime?: Date | undefined;
|
|
252
252
|
/**
|
|
253
253
|
* <p>The tags to add on a migration workflow.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
tags?: Record<string, string
|
|
256
|
+
tags?: Record<string, string> | undefined;
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
259
|
* <p>An internal error has occurred.</p>
|
|
@@ -297,17 +297,17 @@ export interface DeleteMigrationWorkflowResponse {
|
|
|
297
297
|
* <p>The ID of the migration workflow.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
id?: string;
|
|
300
|
+
id?: string | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
arn?: string;
|
|
305
|
+
arn?: string | undefined;
|
|
306
306
|
/**
|
|
307
307
|
* <p>The status of the migration workflow.</p>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
status?: MigrationWorkflowStatusEnum;
|
|
310
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
311
311
|
}
|
|
312
312
|
/**
|
|
313
313
|
* @public
|
|
@@ -328,12 +328,12 @@ export interface Tool {
|
|
|
328
328
|
* <p>The name of an AWS service. </p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
name?: string;
|
|
331
|
+
name?: string | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>The URL of an AWS service.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
url?: string;
|
|
336
|
+
url?: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
/**
|
|
339
339
|
* @public
|
|
@@ -343,102 +343,102 @@ export interface GetMigrationWorkflowResponse {
|
|
|
343
343
|
* <p>The ID of the migration workflow.</p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
|
-
id?: string;
|
|
346
|
+
id?: string | undefined;
|
|
347
347
|
/**
|
|
348
348
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
349
349
|
* @public
|
|
350
350
|
*/
|
|
351
|
-
arn?: string;
|
|
351
|
+
arn?: string | undefined;
|
|
352
352
|
/**
|
|
353
353
|
* <p>The name of the migration workflow.</p>
|
|
354
354
|
* @public
|
|
355
355
|
*/
|
|
356
|
-
name?: string;
|
|
356
|
+
name?: string | undefined;
|
|
357
357
|
/**
|
|
358
358
|
* <p>The description of the migration workflow.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
description?: string;
|
|
361
|
+
description?: string | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* <p>The ID of the template.</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
templateId?: string;
|
|
366
|
+
templateId?: string | undefined;
|
|
367
367
|
/**
|
|
368
368
|
* <p>The configuration ID of the application configured in Application Discovery Service.</p>
|
|
369
369
|
* @public
|
|
370
370
|
*/
|
|
371
|
-
adsApplicationConfigurationId?: string;
|
|
371
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
372
372
|
/**
|
|
373
373
|
* <p>The name of the application configured in Application Discovery Service.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
adsApplicationName?: string;
|
|
376
|
+
adsApplicationName?: string | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>The status of the migration workflow.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
status?: MigrationWorkflowStatusEnum;
|
|
381
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
382
382
|
/**
|
|
383
383
|
* <p>The status message of the migration workflow.</p>
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
statusMessage?: string;
|
|
386
|
+
statusMessage?: string | undefined;
|
|
387
387
|
/**
|
|
388
388
|
* <p>The time at which the migration workflow was created.</p>
|
|
389
389
|
* @public
|
|
390
390
|
*/
|
|
391
|
-
creationTime?: Date;
|
|
391
|
+
creationTime?: Date | undefined;
|
|
392
392
|
/**
|
|
393
393
|
* <p>The time at which the migration workflow was last started.</p>
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
lastStartTime?: Date;
|
|
396
|
+
lastStartTime?: Date | undefined;
|
|
397
397
|
/**
|
|
398
398
|
* <p>The time at which the migration workflow was last stopped.</p>
|
|
399
399
|
* @public
|
|
400
400
|
*/
|
|
401
|
-
lastStopTime?: Date;
|
|
401
|
+
lastStopTime?: Date | undefined;
|
|
402
402
|
/**
|
|
403
403
|
* <p>The time at which the migration workflow was last modified.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
lastModifiedTime?: Date;
|
|
406
|
+
lastModifiedTime?: Date | undefined;
|
|
407
407
|
/**
|
|
408
408
|
* <p>The time at which the migration workflow ended.</p>
|
|
409
409
|
* @public
|
|
410
410
|
*/
|
|
411
|
-
endTime?: Date;
|
|
411
|
+
endTime?: Date | undefined;
|
|
412
412
|
/**
|
|
413
413
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
414
414
|
* @public
|
|
415
415
|
*/
|
|
416
|
-
tools?: Tool[];
|
|
416
|
+
tools?: Tool[] | undefined;
|
|
417
417
|
/**
|
|
418
418
|
* <p>The total number of steps in the migration workflow.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
totalSteps?: number;
|
|
421
|
+
totalSteps?: number | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>Get a list of completed steps in the migration workflow.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
completedSteps?: number;
|
|
426
|
+
completedSteps?: number | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>The inputs required for creating the migration workflow.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
workflowInputs?: Record<string, StepInput
|
|
431
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
432
432
|
/**
|
|
433
433
|
* <p>The tags added to the migration workflow.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
tags?: Record<string, string
|
|
436
|
+
tags?: Record<string, string> | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The Amazon S3 bucket where the migration logs are stored.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
workflowBucket?: string;
|
|
441
|
+
workflowBucket?: string | undefined;
|
|
442
442
|
}
|
|
443
443
|
/**
|
|
444
444
|
* @public
|
|
@@ -448,32 +448,32 @@ export interface ListMigrationWorkflowsRequest {
|
|
|
448
448
|
* <p>The maximum number of results that can be returned.</p>
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
maxResults?: number;
|
|
451
|
+
maxResults?: number | undefined;
|
|
452
452
|
/**
|
|
453
453
|
* <p>The pagination token.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
nextToken?: string;
|
|
456
|
+
nextToken?: string | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* <p>The ID of the template.</p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
templateId?: string;
|
|
461
|
+
templateId?: string | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* <p>The name of the application configured in Application Discovery Service.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
adsApplicationConfigurationName?: string;
|
|
466
|
+
adsApplicationConfigurationName?: string | undefined;
|
|
467
467
|
/**
|
|
468
468
|
* <p>The status of the migration workflow.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
status?: MigrationWorkflowStatusEnum;
|
|
471
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>The name of the migration workflow.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
name?: string;
|
|
476
|
+
name?: string | undefined;
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* <p>The summary of a migration workflow.</p>
|
|
@@ -484,52 +484,52 @@ export interface MigrationWorkflowSummary {
|
|
|
484
484
|
* <p>The ID of the migration workflow.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
id?: string;
|
|
487
|
+
id?: string | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>The name of the migration workflow.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
name?: string;
|
|
492
|
+
name?: string | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The ID of the template.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
templateId?: string;
|
|
497
|
+
templateId?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>The name of the application configured in Application Discovery Service.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
adsApplicationConfigurationName?: string;
|
|
502
|
+
adsApplicationConfigurationName?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The status of the migration workflow.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
status?: MigrationWorkflowStatusEnum;
|
|
507
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The time at which the migration workflow was created.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
creationTime?: Date;
|
|
512
|
+
creationTime?: Date | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The time at which the migration workflow ended.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
endTime?: Date;
|
|
517
|
+
endTime?: Date | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The status message of the migration workflow.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
statusMessage?: string;
|
|
522
|
+
statusMessage?: string | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>The steps completed in the migration workflow.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
completedSteps?: number;
|
|
527
|
+
completedSteps?: number | undefined;
|
|
528
528
|
/**
|
|
529
529
|
* <p>All the steps in a migration workflow.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
totalSteps?: number;
|
|
532
|
+
totalSteps?: number | undefined;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* @public
|
|
@@ -539,7 +539,7 @@ export interface ListMigrationWorkflowsResponse {
|
|
|
539
539
|
* <p>The pagination token.</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
nextToken?: string;
|
|
542
|
+
nextToken?: string | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>The summary of the migration workflow.</p>
|
|
545
545
|
* @public
|
|
@@ -564,27 +564,27 @@ export interface StartMigrationWorkflowResponse {
|
|
|
564
564
|
* <p>The ID of the migration workflow.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
id?: string;
|
|
567
|
+
id?: string | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
arn?: string;
|
|
572
|
+
arn?: string | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The status of the migration workflow.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
status?: MigrationWorkflowStatusEnum;
|
|
577
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>The status message of the migration workflow.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
statusMessage?: string;
|
|
582
|
+
statusMessage?: string | undefined;
|
|
583
583
|
/**
|
|
584
584
|
* <p>The time at which the migration workflow was last started.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
lastStartTime?: Date;
|
|
587
|
+
lastStartTime?: Date | undefined;
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
590
590
|
* @public
|
|
@@ -604,27 +604,27 @@ export interface StopMigrationWorkflowResponse {
|
|
|
604
604
|
* <p>The ID of the migration workflow.</p>
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
id?: string;
|
|
607
|
+
id?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
arn?: string;
|
|
612
|
+
arn?: string | undefined;
|
|
613
613
|
/**
|
|
614
614
|
* <p>The status of the migration workflow.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
status?: MigrationWorkflowStatusEnum;
|
|
617
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>The status message of the migration workflow.</p>
|
|
620
620
|
* @public
|
|
621
621
|
*/
|
|
622
|
-
statusMessage?: string;
|
|
622
|
+
statusMessage?: string | undefined;
|
|
623
623
|
/**
|
|
624
624
|
* <p>The time at which the migration workflow was stopped.</p>
|
|
625
625
|
* @public
|
|
626
626
|
*/
|
|
627
|
-
lastStopTime?: Date;
|
|
627
|
+
lastStopTime?: Date | undefined;
|
|
628
628
|
}
|
|
629
629
|
/**
|
|
630
630
|
* @public
|
|
@@ -639,22 +639,22 @@ export interface UpdateMigrationWorkflowRequest {
|
|
|
639
639
|
* <p>The name of the migration workflow.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
name?: string;
|
|
642
|
+
name?: string | undefined;
|
|
643
643
|
/**
|
|
644
644
|
* <p>The description of the migration workflow.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
description?: string;
|
|
647
|
+
description?: string | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* <p>The input parameters required to update a migration workflow.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
inputParameters?: Record<string, StepInput
|
|
652
|
+
inputParameters?: Record<string, StepInput> | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* <p>The servers on which a step will be run.</p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
stepTargets?: string[];
|
|
657
|
+
stepTargets?: string[] | undefined;
|
|
658
658
|
}
|
|
659
659
|
/**
|
|
660
660
|
* @public
|
|
@@ -664,62 +664,62 @@ export interface UpdateMigrationWorkflowResponse {
|
|
|
664
664
|
* <p>The ID of the migration workflow.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
id?: string;
|
|
667
|
+
id?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The Amazon Resource Name (ARN) of the migration workflow.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
arn?: string;
|
|
672
|
+
arn?: string | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>The name of the migration workflow.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
name?: string;
|
|
677
|
+
name?: string | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>The description of the migration workflow.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
description?: string;
|
|
682
|
+
description?: string | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>The ID of the template.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
templateId?: string;
|
|
687
|
+
templateId?: string | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>The ID of the application configured in Application Discovery Service.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
adsApplicationConfigurationId?: string;
|
|
692
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The inputs required to update a migration workflow.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
workflowInputs?: Record<string, StepInput
|
|
697
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The servers on which a step will be run.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
stepTargets?: string[];
|
|
702
|
+
stepTargets?: string[] | undefined;
|
|
703
703
|
/**
|
|
704
704
|
* <p>The status of the migration workflow.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
status?: MigrationWorkflowStatusEnum;
|
|
707
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
708
708
|
/**
|
|
709
709
|
* <p>The time at which the migration workflow was created.</p>
|
|
710
710
|
* @public
|
|
711
711
|
*/
|
|
712
|
-
creationTime?: Date;
|
|
712
|
+
creationTime?: Date | undefined;
|
|
713
713
|
/**
|
|
714
714
|
* <p>The time at which the migration workflow was last modified.</p>
|
|
715
715
|
* @public
|
|
716
716
|
*/
|
|
717
|
-
lastModifiedTime?: Date;
|
|
717
|
+
lastModifiedTime?: Date | undefined;
|
|
718
718
|
/**
|
|
719
719
|
* <p>The tags added to the migration workflow.</p>
|
|
720
720
|
* @public
|
|
721
721
|
*/
|
|
722
|
-
tags?: Record<string, string
|
|
722
|
+
tags?: Record<string, string> | undefined;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
725
|
* <p>This exception is thrown when an attempt to update or delete
|
|
@@ -778,7 +778,7 @@ export interface CreateTemplateRequest {
|
|
|
778
778
|
* <p>A description of the migration workflow template.</p>
|
|
779
779
|
* @public
|
|
780
780
|
*/
|
|
781
|
-
templateDescription?: string;
|
|
781
|
+
templateDescription?: string | undefined;
|
|
782
782
|
/**
|
|
783
783
|
* <p>The source of the migration workflow template.</p>
|
|
784
784
|
* @public
|
|
@@ -789,12 +789,12 @@ export interface CreateTemplateRequest {
|
|
|
789
789
|
* request. For more information, see <a href="https://smithy.io/2.0/spec/behavior-traits.html#idempotencytoken-trait">Idempotency</a> in the Smithy documentation.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
clientToken?: string;
|
|
792
|
+
clientToken?: string | undefined;
|
|
793
793
|
/**
|
|
794
794
|
* <p>The tags to add to the migration workflow template.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
tags?: Record<string, string
|
|
797
|
+
tags?: Record<string, string> | undefined;
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* @public
|
|
@@ -804,7 +804,7 @@ export interface CreateTemplateResponse {
|
|
|
804
804
|
* <p>The ID of the migration workflow template.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
templateId?: string;
|
|
807
|
+
templateId?: string | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The Amazon Resource Name (ARN) of the migration workflow template. The format for an
|
|
810
810
|
* Migration Hub Orchestrator template ARN is
|
|
@@ -813,12 +813,12 @@ export interface CreateTemplateResponse {
|
|
|
813
813
|
* in the <i>AWS General Reference</i>.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
templateArn?: string;
|
|
816
|
+
templateArn?: string | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>The tags added to the migration workflow template.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
tags?: Record<string, string
|
|
821
|
+
tags?: Record<string, string> | undefined;
|
|
822
822
|
}
|
|
823
823
|
/**
|
|
824
824
|
* @public
|
|
@@ -868,17 +868,17 @@ export interface TemplateInput {
|
|
|
868
868
|
* <p>The name of the template.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
inputName?: string;
|
|
871
|
+
inputName?: string | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p>The data type of the template input.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
dataType?: DataType;
|
|
876
|
+
dataType?: DataType | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>Determine if an input is required from the template.</p>
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
required?: boolean;
|
|
881
|
+
required?: boolean | undefined;
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
* @public
|
|
@@ -903,7 +903,7 @@ export interface GetMigrationWorkflowTemplateResponse {
|
|
|
903
903
|
* <p>The ID of the template.</p>
|
|
904
904
|
* @public
|
|
905
905
|
*/
|
|
906
|
-
id?: string;
|
|
906
|
+
id?: string | undefined;
|
|
907
907
|
/**
|
|
908
908
|
* <p>>The Amazon Resource Name (ARN) of the migration workflow template. The format for an
|
|
909
909
|
* Migration Hub Orchestrator template ARN is
|
|
@@ -912,47 +912,47 @@ export interface GetMigrationWorkflowTemplateResponse {
|
|
|
912
912
|
* in the <i>AWS General Reference</i>.</p>
|
|
913
913
|
* @public
|
|
914
914
|
*/
|
|
915
|
-
templateArn?: string;
|
|
915
|
+
templateArn?: string | undefined;
|
|
916
916
|
/**
|
|
917
917
|
* <p>The name of the template.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
name?: string;
|
|
920
|
+
name?: string | undefined;
|
|
921
921
|
/**
|
|
922
922
|
* <p>The time at which the template was last created.</p>
|
|
923
923
|
* @public
|
|
924
924
|
*/
|
|
925
|
-
description?: string;
|
|
925
|
+
description?: string | undefined;
|
|
926
926
|
/**
|
|
927
927
|
* <p>The inputs provided for the creation of the migration workflow.</p>
|
|
928
928
|
* @public
|
|
929
929
|
*/
|
|
930
|
-
inputs?: TemplateInput[];
|
|
930
|
+
inputs?: TemplateInput[] | undefined;
|
|
931
931
|
/**
|
|
932
932
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
|
-
tools?: Tool[];
|
|
935
|
+
tools?: Tool[] | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* <p>The time at which the template was last created.</p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
creationTime?: Date;
|
|
940
|
+
creationTime?: Date | undefined;
|
|
941
941
|
/**
|
|
942
942
|
* <p>The owner of the migration workflow template.</p>
|
|
943
943
|
* @public
|
|
944
944
|
*/
|
|
945
|
-
owner?: string;
|
|
945
|
+
owner?: string | undefined;
|
|
946
946
|
/**
|
|
947
947
|
* <p>The status of the template.</p>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
status?: TemplateStatus;
|
|
950
|
+
status?: TemplateStatus | undefined;
|
|
951
951
|
/**
|
|
952
952
|
* <p>The status message of retrieving migration workflow templates.</p>
|
|
953
953
|
* @public
|
|
954
954
|
*/
|
|
955
|
-
statusMessage?: string;
|
|
955
|
+
statusMessage?: string | undefined;
|
|
956
956
|
/**
|
|
957
957
|
* <p>The class of the migration workflow template. The available template classes
|
|
958
958
|
* are:</p>
|
|
@@ -978,12 +978,12 @@ export interface GetMigrationWorkflowTemplateResponse {
|
|
|
978
978
|
* </ul>
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
templateClass?: string;
|
|
981
|
+
templateClass?: string | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* <p>The tags added to the migration workflow template.</p>
|
|
984
984
|
* @public
|
|
985
985
|
*/
|
|
986
|
-
tags?: Record<string, string
|
|
986
|
+
tags?: Record<string, string> | undefined;
|
|
987
987
|
}
|
|
988
988
|
/**
|
|
989
989
|
* @public
|
|
@@ -993,17 +993,17 @@ export interface ListMigrationWorkflowTemplatesRequest {
|
|
|
993
993
|
* <p>The maximum number of results that can be returned.</p>
|
|
994
994
|
* @public
|
|
995
995
|
*/
|
|
996
|
-
maxResults?: number;
|
|
996
|
+
maxResults?: number | undefined;
|
|
997
997
|
/**
|
|
998
998
|
* <p>The pagination token.</p>
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
nextToken?: string;
|
|
1001
|
+
nextToken?: string | undefined;
|
|
1002
1002
|
/**
|
|
1003
1003
|
* <p>The name of the template.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
name?: string;
|
|
1006
|
+
name?: string | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The summary of the template.</p>
|
|
@@ -1014,22 +1014,22 @@ export interface TemplateSummary {
|
|
|
1014
1014
|
* <p>The ID of the template.</p>
|
|
1015
1015
|
* @public
|
|
1016
1016
|
*/
|
|
1017
|
-
id?: string;
|
|
1017
|
+
id?: string | undefined;
|
|
1018
1018
|
/**
|
|
1019
1019
|
* <p>The name of the template.</p>
|
|
1020
1020
|
* @public
|
|
1021
1021
|
*/
|
|
1022
|
-
name?: string;
|
|
1022
|
+
name?: string | undefined;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>The Amazon Resource Name (ARN) of the template.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
arn?: string;
|
|
1027
|
+
arn?: string | undefined;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* <p>The description of the template.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
description?: string;
|
|
1032
|
+
description?: string | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
/**
|
|
1035
1035
|
* @public
|
|
@@ -1039,7 +1039,7 @@ export interface ListMigrationWorkflowTemplatesResponse {
|
|
|
1039
1039
|
* <p>The pagination token.</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
nextToken?: string;
|
|
1042
|
+
nextToken?: string | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>The summary of the template.</p>
|
|
1045
1045
|
* @public
|
|
@@ -1059,18 +1059,18 @@ export interface UpdateTemplateRequest {
|
|
|
1059
1059
|
* <p>The name of the migration workflow template to update.</p>
|
|
1060
1060
|
* @public
|
|
1061
1061
|
*/
|
|
1062
|
-
templateName?: string;
|
|
1062
|
+
templateName?: string | undefined;
|
|
1063
1063
|
/**
|
|
1064
1064
|
* <p>The description of the migration workflow template to update.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
templateDescription?: string;
|
|
1067
|
+
templateDescription?: string | undefined;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
1070
1070
|
* idempotency of the request.</p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
clientToken?: string;
|
|
1073
|
+
clientToken?: string | undefined;
|
|
1074
1074
|
}
|
|
1075
1075
|
/**
|
|
1076
1076
|
* @public
|
|
@@ -1080,7 +1080,7 @@ export interface UpdateTemplateResponse {
|
|
|
1080
1080
|
* <p>The ID of the migration workflow template being updated.</p>
|
|
1081
1081
|
* @public
|
|
1082
1082
|
*/
|
|
1083
|
-
templateId?: string;
|
|
1083
|
+
templateId?: string | undefined;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* <p>The ARN of the migration workflow template being updated. The format for an Migration Hub Orchestrator
|
|
1086
1086
|
* template ARN is
|
|
@@ -1089,12 +1089,12 @@ export interface UpdateTemplateResponse {
|
|
|
1089
1089
|
* in the <i>AWS General Reference</i>.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
templateArn?: string;
|
|
1092
|
+
templateArn?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>The tags added to the migration workflow template.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
tags?: Record<string, string
|
|
1097
|
+
tags?: Record<string, string> | undefined;
|
|
1098
1098
|
}
|
|
1099
1099
|
/**
|
|
1100
1100
|
* @public
|
|
@@ -1104,12 +1104,12 @@ export interface ListPluginsRequest {
|
|
|
1104
1104
|
* <p>The maximum number of plugins that can be returned.</p>
|
|
1105
1105
|
* @public
|
|
1106
1106
|
*/
|
|
1107
|
-
maxResults?: number;
|
|
1107
|
+
maxResults?: number | undefined;
|
|
1108
1108
|
/**
|
|
1109
1109
|
* <p>The pagination token.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
nextToken?: string;
|
|
1112
|
+
nextToken?: string | undefined;
|
|
1113
1113
|
}
|
|
1114
1114
|
/**
|
|
1115
1115
|
* @public
|
|
@@ -1132,32 +1132,32 @@ export interface PluginSummary {
|
|
|
1132
1132
|
* <p>The ID of the plugin.</p>
|
|
1133
1133
|
* @public
|
|
1134
1134
|
*/
|
|
1135
|
-
pluginId?: string;
|
|
1135
|
+
pluginId?: string | undefined;
|
|
1136
1136
|
/**
|
|
1137
1137
|
* <p>The name of the host.</p>
|
|
1138
1138
|
* @public
|
|
1139
1139
|
*/
|
|
1140
|
-
hostname?: string;
|
|
1140
|
+
hostname?: string | undefined;
|
|
1141
1141
|
/**
|
|
1142
1142
|
* <p>The status of the plugin.</p>
|
|
1143
1143
|
* @public
|
|
1144
1144
|
*/
|
|
1145
|
-
status?: PluginHealth;
|
|
1145
|
+
status?: PluginHealth | undefined;
|
|
1146
1146
|
/**
|
|
1147
1147
|
* <p>The IP address at which the plugin is located.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
ipAddress?: string;
|
|
1150
|
+
ipAddress?: string | undefined;
|
|
1151
1151
|
/**
|
|
1152
1152
|
* <p>The version of the plugin.</p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
version?: string;
|
|
1155
|
+
version?: string | undefined;
|
|
1156
1156
|
/**
|
|
1157
1157
|
* <p>The time at which the plugin was registered.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
registeredTime?: string;
|
|
1160
|
+
registeredTime?: string | undefined;
|
|
1161
1161
|
}
|
|
1162
1162
|
/**
|
|
1163
1163
|
* @public
|
|
@@ -1167,12 +1167,12 @@ export interface ListPluginsResponse {
|
|
|
1167
1167
|
* <p>The pagination token.</p>
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
nextToken?: string;
|
|
1170
|
+
nextToken?: string | undefined;
|
|
1171
1171
|
/**
|
|
1172
1172
|
* <p>Migration Hub Orchestrator plugins.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
plugins?: PluginSummary[];
|
|
1175
|
+
plugins?: PluginSummary[] | undefined;
|
|
1176
1176
|
}
|
|
1177
1177
|
/**
|
|
1178
1178
|
* @public
|
|
@@ -1224,17 +1224,17 @@ export interface StepOutput {
|
|
|
1224
1224
|
* <p>The name of the step.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
name?: string;
|
|
1227
|
+
name?: string | undefined;
|
|
1228
1228
|
/**
|
|
1229
1229
|
* <p>The data type of the step output.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
dataType?: DataType;
|
|
1232
|
+
dataType?: DataType | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>Determine if an output is required from a step.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
required?: boolean;
|
|
1237
|
+
required?: boolean | undefined;
|
|
1238
1238
|
}
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @public
|
|
@@ -1257,12 +1257,12 @@ export interface PlatformCommand {
|
|
|
1257
1257
|
* <p>Command for Linux.</p>
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
linux?: string;
|
|
1260
|
+
linux?: string | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* <p>Command for Windows.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
windows?: string;
|
|
1265
|
+
windows?: string | undefined;
|
|
1266
1266
|
}
|
|
1267
1267
|
/**
|
|
1268
1268
|
* @public
|
|
@@ -1285,12 +1285,12 @@ export interface PlatformScriptKey {
|
|
|
1285
1285
|
* <p>The script location for Linux.</p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
linux?: string;
|
|
1288
|
+
linux?: string | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>The script location for Windows.</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
windows?: string;
|
|
1293
|
+
windows?: string | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
/**
|
|
1296
1296
|
* @public
|
|
@@ -1314,27 +1314,27 @@ export interface StepAutomationConfiguration {
|
|
|
1314
1314
|
* <p>The Amazon S3 bucket where the script is located.</p>
|
|
1315
1315
|
* @public
|
|
1316
1316
|
*/
|
|
1317
|
-
scriptLocationS3Bucket?: string;
|
|
1317
|
+
scriptLocationS3Bucket?: string | undefined;
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>The Amazon S3 key for the script location.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
scriptLocationS3Key?: PlatformScriptKey;
|
|
1322
|
+
scriptLocationS3Key?: PlatformScriptKey | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>The command to run the script.</p>
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
command?: PlatformCommand;
|
|
1327
|
+
command?: PlatformCommand | undefined;
|
|
1328
1328
|
/**
|
|
1329
1329
|
* <p>The source or target environment.</p>
|
|
1330
1330
|
* @public
|
|
1331
1331
|
*/
|
|
1332
|
-
runEnvironment?: RunEnvironment;
|
|
1332
|
+
runEnvironment?: RunEnvironment | undefined;
|
|
1333
1333
|
/**
|
|
1334
1334
|
* <p>The servers on which to run the script.</p>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
targetType?: TargetType;
|
|
1337
|
+
targetType?: TargetType | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
/**
|
|
1340
1340
|
* @public
|
|
@@ -1344,58 +1344,58 @@ export interface GetTemplateStepResponse {
|
|
|
1344
1344
|
* <p>The ID of the step.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
id?: string;
|
|
1347
|
+
id?: string | undefined;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* <p>The ID of the step group.</p>
|
|
1350
1350
|
* @public
|
|
1351
1351
|
*/
|
|
1352
|
-
stepGroupId?: string;
|
|
1352
|
+
stepGroupId?: string | undefined;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* <p>The ID of the template.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
|
-
templateId?: string;
|
|
1357
|
+
templateId?: string | undefined;
|
|
1358
1358
|
/**
|
|
1359
1359
|
* <p>The name of the step.</p>
|
|
1360
1360
|
* @public
|
|
1361
1361
|
*/
|
|
1362
|
-
name?: string;
|
|
1362
|
+
name?: string | undefined;
|
|
1363
1363
|
/**
|
|
1364
1364
|
* <p>The description of the step.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
description?: string;
|
|
1367
|
+
description?: string | undefined;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p>The action type of the step. You must run and update the status of a manual step for
|
|
1370
1370
|
* the workflow to continue after the completion of the step.</p>
|
|
1371
1371
|
* @public
|
|
1372
1372
|
*/
|
|
1373
|
-
stepActionType?: StepActionType;
|
|
1373
|
+
stepActionType?: StepActionType | undefined;
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p>The time at which the step was created.</p>
|
|
1376
1376
|
* @public
|
|
1377
1377
|
*/
|
|
1378
|
-
creationTime?: string;
|
|
1378
|
+
creationTime?: string | undefined;
|
|
1379
1379
|
/**
|
|
1380
1380
|
* <p>The previous step.</p>
|
|
1381
1381
|
* @public
|
|
1382
1382
|
*/
|
|
1383
|
-
previous?: string[];
|
|
1383
|
+
previous?: string[] | undefined;
|
|
1384
1384
|
/**
|
|
1385
1385
|
* <p>The next step.</p>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
next?: string[];
|
|
1388
|
+
next?: string[] | undefined;
|
|
1389
1389
|
/**
|
|
1390
1390
|
* <p>The outputs of the step.</p>
|
|
1391
1391
|
* @public
|
|
1392
1392
|
*/
|
|
1393
|
-
outputs?: StepOutput[];
|
|
1393
|
+
outputs?: StepOutput[] | undefined;
|
|
1394
1394
|
/**
|
|
1395
1395
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
stepAutomationConfiguration?: StepAutomationConfiguration;
|
|
1398
|
+
stepAutomationConfiguration?: StepAutomationConfiguration | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
/**
|
|
1401
1401
|
* @public
|
|
@@ -1405,12 +1405,12 @@ export interface ListTemplateStepsRequest {
|
|
|
1405
1405
|
* <p>The maximum number of results that can be returned.</p>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
maxResults?: number;
|
|
1408
|
+
maxResults?: number | undefined;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* <p>The pagination token.</p>
|
|
1411
1411
|
* @public
|
|
1412
1412
|
*/
|
|
1413
|
-
nextToken?: string;
|
|
1413
|
+
nextToken?: string | undefined;
|
|
1414
1414
|
/**
|
|
1415
1415
|
* <p>The ID of the template.</p>
|
|
1416
1416
|
* @public
|
|
@@ -1443,48 +1443,48 @@ export interface TemplateStepSummary {
|
|
|
1443
1443
|
* <p>The ID of the step.</p>
|
|
1444
1444
|
* @public
|
|
1445
1445
|
*/
|
|
1446
|
-
id?: string;
|
|
1446
|
+
id?: string | undefined;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* <p>The ID of the step group.</p>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
stepGroupId?: string;
|
|
1451
|
+
stepGroupId?: string | undefined;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>The ID of the template.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
templateId?: string;
|
|
1456
|
+
templateId?: string | undefined;
|
|
1457
1457
|
/**
|
|
1458
1458
|
* <p>The name of the step.</p>
|
|
1459
1459
|
* @public
|
|
1460
1460
|
*/
|
|
1461
|
-
name?: string;
|
|
1461
|
+
name?: string | undefined;
|
|
1462
1462
|
/**
|
|
1463
1463
|
* <p>The action type of the step. You must run and update the status of a manual step for
|
|
1464
1464
|
* the workflow to continue after the completion of the step.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
stepActionType?: StepActionType;
|
|
1467
|
+
stepActionType?: StepActionType | undefined;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* <p>The servers on which to run the script.</p>
|
|
1470
1470
|
* @public
|
|
1471
1471
|
*/
|
|
1472
|
-
targetType?: TargetType;
|
|
1472
|
+
targetType?: TargetType | undefined;
|
|
1473
1473
|
/**
|
|
1474
1474
|
* <p>The owner of the step.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
owner?: Owner;
|
|
1477
|
+
owner?: Owner | undefined;
|
|
1478
1478
|
/**
|
|
1479
1479
|
* <p>The previous step.</p>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
previous?: string[];
|
|
1482
|
+
previous?: string[] | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The next step.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
next?: string[];
|
|
1487
|
+
next?: string[] | undefined;
|
|
1488
1488
|
}
|
|
1489
1489
|
/**
|
|
1490
1490
|
* @public
|
|
@@ -1494,12 +1494,12 @@ export interface ListTemplateStepsResponse {
|
|
|
1494
1494
|
* <p>The pagination token.</p>
|
|
1495
1495
|
* @public
|
|
1496
1496
|
*/
|
|
1497
|
-
nextToken?: string;
|
|
1497
|
+
nextToken?: string | undefined;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* <p>The list of summaries of steps in a template.</p>
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
templateStepSummaryList?: TemplateStepSummary[];
|
|
1502
|
+
templateStepSummaryList?: TemplateStepSummary[] | undefined;
|
|
1503
1503
|
}
|
|
1504
1504
|
/**
|
|
1505
1505
|
* @public
|
|
@@ -1542,52 +1542,52 @@ export interface GetTemplateStepGroupResponse {
|
|
|
1542
1542
|
* <p>The ID of the template.</p>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
templateId?: string;
|
|
1545
|
+
templateId?: string | undefined;
|
|
1546
1546
|
/**
|
|
1547
1547
|
* <p>The ID of the step group.</p>
|
|
1548
1548
|
* @public
|
|
1549
1549
|
*/
|
|
1550
|
-
id?: string;
|
|
1550
|
+
id?: string | undefined;
|
|
1551
1551
|
/**
|
|
1552
1552
|
* <p>The name of the step group.</p>
|
|
1553
1553
|
* @public
|
|
1554
1554
|
*/
|
|
1555
|
-
name?: string;
|
|
1555
|
+
name?: string | undefined;
|
|
1556
1556
|
/**
|
|
1557
1557
|
* <p>The description of the step group.</p>
|
|
1558
1558
|
* @public
|
|
1559
1559
|
*/
|
|
1560
|
-
description?: string;
|
|
1560
|
+
description?: string | undefined;
|
|
1561
1561
|
/**
|
|
1562
1562
|
* <p>The status of the step group.</p>
|
|
1563
1563
|
* @public
|
|
1564
1564
|
*/
|
|
1565
|
-
status?: StepGroupStatus;
|
|
1565
|
+
status?: StepGroupStatus | undefined;
|
|
1566
1566
|
/**
|
|
1567
1567
|
* <p>The time at which the step group was created.</p>
|
|
1568
1568
|
* @public
|
|
1569
1569
|
*/
|
|
1570
|
-
creationTime?: Date;
|
|
1570
|
+
creationTime?: Date | undefined;
|
|
1571
1571
|
/**
|
|
1572
1572
|
* <p>The time at which the step group was last modified.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
lastModifiedTime?: Date;
|
|
1575
|
+
lastModifiedTime?: Date | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
tools?: Tool[];
|
|
1580
|
+
tools?: Tool[] | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The previous step group.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
previous?: string[];
|
|
1585
|
+
previous?: string[] | undefined;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* <p>The next step group.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
next?: string[];
|
|
1590
|
+
next?: string[] | undefined;
|
|
1591
1591
|
}
|
|
1592
1592
|
/**
|
|
1593
1593
|
* @public
|
|
@@ -1597,12 +1597,12 @@ export interface ListTemplateStepGroupsRequest {
|
|
|
1597
1597
|
* <p>The maximum number of results that can be returned.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
maxResults?: number;
|
|
1600
|
+
maxResults?: number | undefined;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* <p>The pagination token.</p>
|
|
1603
1603
|
* @public
|
|
1604
1604
|
*/
|
|
1605
|
-
nextToken?: string;
|
|
1605
|
+
nextToken?: string | undefined;
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>The ID of the template.</p>
|
|
1608
1608
|
* @public
|
|
@@ -1618,22 +1618,22 @@ export interface TemplateStepGroupSummary {
|
|
|
1618
1618
|
* <p>The ID of the step group.</p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
id?: string;
|
|
1621
|
+
id?: string | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* <p>The name of the step group.</p>
|
|
1624
1624
|
* @public
|
|
1625
1625
|
*/
|
|
1626
|
-
name?: string;
|
|
1626
|
+
name?: string | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p>The previous step group.</p>
|
|
1629
1629
|
* @public
|
|
1630
1630
|
*/
|
|
1631
|
-
previous?: string[];
|
|
1631
|
+
previous?: string[] | undefined;
|
|
1632
1632
|
/**
|
|
1633
1633
|
* <p>The next step group.</p>
|
|
1634
1634
|
* @public
|
|
1635
1635
|
*/
|
|
1636
|
-
next?: string[];
|
|
1636
|
+
next?: string[] | undefined;
|
|
1637
1637
|
}
|
|
1638
1638
|
/**
|
|
1639
1639
|
* @public
|
|
@@ -1643,7 +1643,7 @@ export interface ListTemplateStepGroupsResponse {
|
|
|
1643
1643
|
* <p>The pagination token.</p>
|
|
1644
1644
|
* @public
|
|
1645
1645
|
*/
|
|
1646
|
-
nextToken?: string;
|
|
1646
|
+
nextToken?: string | undefined;
|
|
1647
1647
|
/**
|
|
1648
1648
|
* <p>The summary of the step group in the template.</p>
|
|
1649
1649
|
* @public
|
|
@@ -1736,22 +1736,22 @@ export interface WorkflowStepOutput {
|
|
|
1736
1736
|
* <p>The name of the step.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
name?: string;
|
|
1739
|
+
name?: string | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The data type of the output.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
dataType?: DataType;
|
|
1744
|
+
dataType?: DataType | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>Determine if an output is required from a step.</p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
required?: boolean;
|
|
1749
|
+
required?: boolean | undefined;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>The value of the output.</p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
value?: WorkflowStepOutputUnion;
|
|
1754
|
+
value?: WorkflowStepOutputUnion | undefined;
|
|
1755
1755
|
}
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
@@ -1762,27 +1762,27 @@ export interface WorkflowStepAutomationConfiguration {
|
|
|
1762
1762
|
* <p>The Amazon S3 bucket where the script is located.</p>
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
scriptLocationS3Bucket?: string;
|
|
1765
|
+
scriptLocationS3Bucket?: string | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* <p>The Amazon S3 key for the script location.</p>
|
|
1768
1768
|
* @public
|
|
1769
1769
|
*/
|
|
1770
|
-
scriptLocationS3Key?: PlatformScriptKey;
|
|
1770
|
+
scriptLocationS3Key?: PlatformScriptKey | undefined;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* <p>The command required to run the script.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
command?: PlatformCommand;
|
|
1775
|
+
command?: PlatformCommand | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* <p>The source or target environment.</p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
runEnvironment?: RunEnvironment;
|
|
1780
|
+
runEnvironment?: RunEnvironment | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* <p>The servers on which to run the script.</p>
|
|
1783
1783
|
* @public
|
|
1784
1784
|
*/
|
|
1785
|
-
targetType?: TargetType;
|
|
1785
|
+
targetType?: TargetType | undefined;
|
|
1786
1786
|
}
|
|
1787
1787
|
/**
|
|
1788
1788
|
* @public
|
|
@@ -1813,32 +1813,32 @@ export interface CreateWorkflowStepRequest {
|
|
|
1813
1813
|
* <p>The description of the step.</p>
|
|
1814
1814
|
* @public
|
|
1815
1815
|
*/
|
|
1816
|
-
description?: string;
|
|
1816
|
+
description?: string | undefined;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
|
|
1821
|
+
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>The servers on which a step will be run.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
stepTarget?: string[];
|
|
1826
|
+
stepTarget?: string[] | undefined;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>The key value pairs added for the expected output.</p>
|
|
1829
1829
|
* @public
|
|
1830
1830
|
*/
|
|
1831
|
-
outputs?: WorkflowStepOutput[];
|
|
1831
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* <p>The previous step.</p>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
previous?: string[];
|
|
1836
|
+
previous?: string[] | undefined;
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>The next step.</p>
|
|
1839
1839
|
* @public
|
|
1840
1840
|
*/
|
|
1841
|
-
next?: string[];
|
|
1841
|
+
next?: string[] | undefined;
|
|
1842
1842
|
}
|
|
1843
1843
|
/**
|
|
1844
1844
|
* @public
|
|
@@ -1848,22 +1848,22 @@ export interface CreateWorkflowStepResponse {
|
|
|
1848
1848
|
* <p>The ID of the step.</p>
|
|
1849
1849
|
* @public
|
|
1850
1850
|
*/
|
|
1851
|
-
id?: string;
|
|
1851
|
+
id?: string | undefined;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* <p>The ID of the step group.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
stepGroupId?: string;
|
|
1856
|
+
stepGroupId?: string | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>The ID of the migration workflow.</p>
|
|
1859
1859
|
* @public
|
|
1860
1860
|
*/
|
|
1861
|
-
workflowId?: string;
|
|
1861
|
+
workflowId?: string | undefined;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* <p>The name of the step.</p>
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
name?: string;
|
|
1866
|
+
name?: string | undefined;
|
|
1867
1867
|
}
|
|
1868
1868
|
/**
|
|
1869
1869
|
* @public
|
|
@@ -1936,108 +1936,108 @@ export interface GetWorkflowStepResponse {
|
|
|
1936
1936
|
* <p>The name of the step.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
name?: string;
|
|
1939
|
+
name?: string | undefined;
|
|
1940
1940
|
/**
|
|
1941
1941
|
* <p>The ID of the step group.</p>
|
|
1942
1942
|
* @public
|
|
1943
1943
|
*/
|
|
1944
|
-
stepGroupId?: string;
|
|
1944
|
+
stepGroupId?: string | undefined;
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>The ID of the migration workflow.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
workflowId?: string;
|
|
1949
|
+
workflowId?: string | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>The ID of the step.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
stepId?: string;
|
|
1954
|
+
stepId?: string | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>The description of the step.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
description?: string;
|
|
1959
|
+
description?: string | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>The action type of the step. You must run and update the status of a manual step for
|
|
1962
1962
|
* the workflow to continue after the completion of the step.</p>
|
|
1963
1963
|
* @public
|
|
1964
1964
|
*/
|
|
1965
|
-
stepActionType?: StepActionType;
|
|
1965
|
+
stepActionType?: StepActionType | undefined;
|
|
1966
1966
|
/**
|
|
1967
1967
|
* <p>The owner of the step.</p>
|
|
1968
1968
|
* @public
|
|
1969
1969
|
*/
|
|
1970
|
-
owner?: Owner;
|
|
1970
|
+
owner?: Owner | undefined;
|
|
1971
1971
|
/**
|
|
1972
1972
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
|
|
1975
|
+
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The servers on which a step will be run.</p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
stepTarget?: string[];
|
|
1980
|
+
stepTarget?: string[] | undefined;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* <p>The outputs of the step.</p>
|
|
1983
1983
|
* @public
|
|
1984
1984
|
*/
|
|
1985
|
-
outputs?: WorkflowStepOutput[];
|
|
1985
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>The previous step.</p>
|
|
1988
1988
|
* @public
|
|
1989
1989
|
*/
|
|
1990
|
-
previous?: string[];
|
|
1990
|
+
previous?: string[] | undefined;
|
|
1991
1991
|
/**
|
|
1992
1992
|
* <p>The next step.</p>
|
|
1993
1993
|
* @public
|
|
1994
1994
|
*/
|
|
1995
|
-
next?: string[];
|
|
1995
|
+
next?: string[] | undefined;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* <p>The status of the step.</p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
status?: StepStatus;
|
|
2000
|
+
status?: StepStatus | undefined;
|
|
2001
2001
|
/**
|
|
2002
2002
|
* <p>The status message of the migration workflow.</p>
|
|
2003
2003
|
* @public
|
|
2004
2004
|
*/
|
|
2005
|
-
statusMessage?: string;
|
|
2005
|
+
statusMessage?: string | undefined;
|
|
2006
2006
|
/**
|
|
2007
2007
|
* <p>The output location of the script.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
scriptOutputLocation?: string;
|
|
2010
|
+
scriptOutputLocation?: string | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>The time at which the step was created.</p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
creationTime?: Date;
|
|
2015
|
+
creationTime?: Date | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* <p>The time at which the workflow was last started.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
lastStartTime?: Date;
|
|
2020
|
+
lastStartTime?: Date | undefined;
|
|
2021
2021
|
/**
|
|
2022
2022
|
* <p>The time at which the step ended.</p>
|
|
2023
2023
|
* @public
|
|
2024
2024
|
*/
|
|
2025
|
-
endTime?: Date;
|
|
2025
|
+
endTime?: Date | undefined;
|
|
2026
2026
|
/**
|
|
2027
2027
|
* <p>The number of servers that have been migrated.</p>
|
|
2028
2028
|
* @public
|
|
2029
2029
|
*/
|
|
2030
|
-
noOfSrvCompleted?: number;
|
|
2030
|
+
noOfSrvCompleted?: number | undefined;
|
|
2031
2031
|
/**
|
|
2032
2032
|
* <p>The number of servers that have failed to migrate.</p>
|
|
2033
2033
|
* @public
|
|
2034
2034
|
*/
|
|
2035
|
-
noOfSrvFailed?: number;
|
|
2035
|
+
noOfSrvFailed?: number | undefined;
|
|
2036
2036
|
/**
|
|
2037
2037
|
* <p>The total number of servers that have been migrated.</p>
|
|
2038
2038
|
* @public
|
|
2039
2039
|
*/
|
|
2040
|
-
totalNoOfSrv?: number;
|
|
2040
|
+
totalNoOfSrv?: number | undefined;
|
|
2041
2041
|
}
|
|
2042
2042
|
/**
|
|
2043
2043
|
* @public
|
|
@@ -2047,12 +2047,12 @@ export interface ListWorkflowStepsRequest {
|
|
|
2047
2047
|
* <p>The pagination token.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
nextToken?: string;
|
|
2050
|
+
nextToken?: string | undefined;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* <p>The maximum number of results that can be returned.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
maxResults?: number;
|
|
2055
|
+
maxResults?: number | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>The ID of the migration workflow.</p>
|
|
2058
2058
|
* @public
|
|
@@ -2073,68 +2073,68 @@ export interface WorkflowStepSummary {
|
|
|
2073
2073
|
* <p>The ID of the step.</p>
|
|
2074
2074
|
* @public
|
|
2075
2075
|
*/
|
|
2076
|
-
stepId?: string;
|
|
2076
|
+
stepId?: string | undefined;
|
|
2077
2077
|
/**
|
|
2078
2078
|
* <p>The name of the step.</p>
|
|
2079
2079
|
* @public
|
|
2080
2080
|
*/
|
|
2081
|
-
name?: string;
|
|
2081
|
+
name?: string | undefined;
|
|
2082
2082
|
/**
|
|
2083
2083
|
* <p>The action type of the step. You must run and update the status of a manual step for
|
|
2084
2084
|
* the workflow to continue after the completion of the step.</p>
|
|
2085
2085
|
* @public
|
|
2086
2086
|
*/
|
|
2087
|
-
stepActionType?: StepActionType;
|
|
2087
|
+
stepActionType?: StepActionType | undefined;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* <p>The owner of the step.</p>
|
|
2090
2090
|
* @public
|
|
2091
2091
|
*/
|
|
2092
|
-
owner?: Owner;
|
|
2092
|
+
owner?: Owner | undefined;
|
|
2093
2093
|
/**
|
|
2094
2094
|
* <p>The previous step.</p>
|
|
2095
2095
|
* @public
|
|
2096
2096
|
*/
|
|
2097
|
-
previous?: string[];
|
|
2097
|
+
previous?: string[] | undefined;
|
|
2098
2098
|
/**
|
|
2099
2099
|
* <p>The next step.</p>
|
|
2100
2100
|
* @public
|
|
2101
2101
|
*/
|
|
2102
|
-
next?: string[];
|
|
2102
|
+
next?: string[] | undefined;
|
|
2103
2103
|
/**
|
|
2104
2104
|
* <p>The status of the step.</p>
|
|
2105
2105
|
* @public
|
|
2106
2106
|
*/
|
|
2107
|
-
status?: StepStatus;
|
|
2107
|
+
status?: StepStatus | undefined;
|
|
2108
2108
|
/**
|
|
2109
2109
|
* <p>The status message of the migration workflow.</p>
|
|
2110
2110
|
* @public
|
|
2111
2111
|
*/
|
|
2112
|
-
statusMessage?: string;
|
|
2112
|
+
statusMessage?: string | undefined;
|
|
2113
2113
|
/**
|
|
2114
2114
|
* <p>The number of servers that have been migrated.</p>
|
|
2115
2115
|
* @public
|
|
2116
2116
|
*/
|
|
2117
|
-
noOfSrvCompleted?: number;
|
|
2117
|
+
noOfSrvCompleted?: number | undefined;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>The number of servers that have failed to migrate.</p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
noOfSrvFailed?: number;
|
|
2122
|
+
noOfSrvFailed?: number | undefined;
|
|
2123
2123
|
/**
|
|
2124
2124
|
* <p>The total number of servers that have been migrated.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
totalNoOfSrv?: number;
|
|
2127
|
+
totalNoOfSrv?: number | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* <p>The description of the step.</p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
description?: string;
|
|
2132
|
+
description?: string | undefined;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* <p>The location of the script.</p>
|
|
2135
2135
|
* @public
|
|
2136
2136
|
*/
|
|
2137
|
-
scriptLocation?: string;
|
|
2137
|
+
scriptLocation?: string | undefined;
|
|
2138
2138
|
}
|
|
2139
2139
|
/**
|
|
2140
2140
|
* @public
|
|
@@ -2144,7 +2144,7 @@ export interface ListWorkflowStepsResponse {
|
|
|
2144
2144
|
* <p>The pagination token.</p>
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
nextToken?: string;
|
|
2147
|
+
nextToken?: string | undefined;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* <p>The summary of steps in a migration workflow.</p>
|
|
2150
2150
|
* @public
|
|
@@ -2179,22 +2179,22 @@ export interface RetryWorkflowStepResponse {
|
|
|
2179
2179
|
* <p>The ID of the step group.</p>
|
|
2180
2180
|
* @public
|
|
2181
2181
|
*/
|
|
2182
|
-
stepGroupId?: string;
|
|
2182
|
+
stepGroupId?: string | undefined;
|
|
2183
2183
|
/**
|
|
2184
2184
|
* <p>The ID of the migration workflow.</p>
|
|
2185
2185
|
* @public
|
|
2186
2186
|
*/
|
|
2187
|
-
workflowId?: string;
|
|
2187
|
+
workflowId?: string | undefined;
|
|
2188
2188
|
/**
|
|
2189
2189
|
* <p>The ID of the step.</p>
|
|
2190
2190
|
* @public
|
|
2191
2191
|
*/
|
|
2192
|
-
id?: string;
|
|
2192
|
+
id?: string | undefined;
|
|
2193
2193
|
/**
|
|
2194
2194
|
* <p>The status of the step.</p>
|
|
2195
2195
|
* @public
|
|
2196
2196
|
*/
|
|
2197
|
-
status?: StepStatus;
|
|
2197
|
+
status?: StepStatus | undefined;
|
|
2198
2198
|
}
|
|
2199
2199
|
/**
|
|
2200
2200
|
* @public
|
|
@@ -2219,48 +2219,48 @@ export interface UpdateWorkflowStepRequest {
|
|
|
2219
2219
|
* <p>The name of the step.</p>
|
|
2220
2220
|
* @public
|
|
2221
2221
|
*/
|
|
2222
|
-
name?: string;
|
|
2222
|
+
name?: string | undefined;
|
|
2223
2223
|
/**
|
|
2224
2224
|
* <p>The description of the step.</p>
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
description?: string;
|
|
2227
|
+
description?: string | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* <p>The action type of the step. You must run and update the status of a manual step for
|
|
2230
2230
|
* the workflow to continue after the completion of the step.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
stepActionType?: StepActionType;
|
|
2233
|
+
stepActionType?: StepActionType | undefined;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>The custom script to run tests on the source and target environments.</p>
|
|
2236
2236
|
* @public
|
|
2237
2237
|
*/
|
|
2238
|
-
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
|
|
2238
|
+
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | undefined;
|
|
2239
2239
|
/**
|
|
2240
2240
|
* <p>The servers on which a step will be run.</p>
|
|
2241
2241
|
* @public
|
|
2242
2242
|
*/
|
|
2243
|
-
stepTarget?: string[];
|
|
2243
|
+
stepTarget?: string[] | undefined;
|
|
2244
2244
|
/**
|
|
2245
2245
|
* <p>The outputs of a step.</p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
outputs?: WorkflowStepOutput[];
|
|
2248
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>The previous step.</p>
|
|
2251
2251
|
* @public
|
|
2252
2252
|
*/
|
|
2253
|
-
previous?: string[];
|
|
2253
|
+
previous?: string[] | undefined;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* <p>The next step.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
next?: string[];
|
|
2258
|
+
next?: string[] | undefined;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* <p>The status of the step.</p>
|
|
2261
2261
|
* @public
|
|
2262
2262
|
*/
|
|
2263
|
-
status?: StepStatus;
|
|
2263
|
+
status?: StepStatus | undefined;
|
|
2264
2264
|
}
|
|
2265
2265
|
/**
|
|
2266
2266
|
* @public
|
|
@@ -2270,22 +2270,22 @@ export interface UpdateWorkflowStepResponse {
|
|
|
2270
2270
|
* <p>The ID of the step.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
id?: string;
|
|
2273
|
+
id?: string | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>The ID of the step group.</p>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
stepGroupId?: string;
|
|
2278
|
+
stepGroupId?: string | undefined;
|
|
2279
2279
|
/**
|
|
2280
2280
|
* <p>The ID of the migration workflow.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
workflowId?: string;
|
|
2283
|
+
workflowId?: string | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The name of the step.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
name?: string;
|
|
2288
|
+
name?: string | undefined;
|
|
2289
2289
|
}
|
|
2290
2290
|
/**
|
|
2291
2291
|
* @public
|
|
@@ -2305,17 +2305,17 @@ export interface CreateWorkflowStepGroupRequest {
|
|
|
2305
2305
|
* <p>The description of the step group.</p>
|
|
2306
2306
|
* @public
|
|
2307
2307
|
*/
|
|
2308
|
-
description?: string;
|
|
2308
|
+
description?: string | undefined;
|
|
2309
2309
|
/**
|
|
2310
2310
|
* <p>The next step group.</p>
|
|
2311
2311
|
* @public
|
|
2312
2312
|
*/
|
|
2313
|
-
next?: string[];
|
|
2313
|
+
next?: string[] | undefined;
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>The previous step group.</p>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
previous?: string[];
|
|
2318
|
+
previous?: string[] | undefined;
|
|
2319
2319
|
}
|
|
2320
2320
|
/**
|
|
2321
2321
|
* @public
|
|
@@ -2325,42 +2325,42 @@ export interface CreateWorkflowStepGroupResponse {
|
|
|
2325
2325
|
* <p>The ID of the migration workflow that contains the step group.</p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
workflowId?: string;
|
|
2328
|
+
workflowId?: string | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>The name of the step group.</p>
|
|
2331
2331
|
* @public
|
|
2332
2332
|
*/
|
|
2333
|
-
name?: string;
|
|
2333
|
+
name?: string | undefined;
|
|
2334
2334
|
/**
|
|
2335
2335
|
* <p>The ID of the step group.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
id?: string;
|
|
2338
|
+
id?: string | undefined;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* <p>The description of the step group.</p>
|
|
2341
2341
|
* @public
|
|
2342
2342
|
*/
|
|
2343
|
-
description?: string;
|
|
2343
|
+
description?: string | undefined;
|
|
2344
2344
|
/**
|
|
2345
2345
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
2346
2346
|
* @public
|
|
2347
2347
|
*/
|
|
2348
|
-
tools?: Tool[];
|
|
2348
|
+
tools?: Tool[] | undefined;
|
|
2349
2349
|
/**
|
|
2350
2350
|
* <p>The next step group.</p>
|
|
2351
2351
|
* @public
|
|
2352
2352
|
*/
|
|
2353
|
-
next?: string[];
|
|
2353
|
+
next?: string[] | undefined;
|
|
2354
2354
|
/**
|
|
2355
2355
|
* <p>The previous step group.</p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
previous?: string[];
|
|
2358
|
+
previous?: string[] | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The time at which the step group is created.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
creationTime?: Date;
|
|
2363
|
+
creationTime?: Date | undefined;
|
|
2364
2364
|
}
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @public
|
|
@@ -2405,62 +2405,62 @@ export interface GetWorkflowStepGroupResponse {
|
|
|
2405
2405
|
* <p>The ID of the step group.</p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
id?: string;
|
|
2408
|
+
id?: string | undefined;
|
|
2409
2409
|
/**
|
|
2410
2410
|
* <p>The ID of the migration workflow.</p>
|
|
2411
2411
|
* @public
|
|
2412
2412
|
*/
|
|
2413
|
-
workflowId?: string;
|
|
2413
|
+
workflowId?: string | undefined;
|
|
2414
2414
|
/**
|
|
2415
2415
|
* <p>The name of the step group.</p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
name?: string;
|
|
2418
|
+
name?: string | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* <p>The description of the step group.</p>
|
|
2421
2421
|
* @public
|
|
2422
2422
|
*/
|
|
2423
|
-
description?: string;
|
|
2423
|
+
description?: string | undefined;
|
|
2424
2424
|
/**
|
|
2425
2425
|
* <p>The status of the step group.</p>
|
|
2426
2426
|
* @public
|
|
2427
2427
|
*/
|
|
2428
|
-
status?: StepGroupStatus;
|
|
2428
|
+
status?: StepGroupStatus | undefined;
|
|
2429
2429
|
/**
|
|
2430
2430
|
* <p>The owner of the step group.</p>
|
|
2431
2431
|
* @public
|
|
2432
2432
|
*/
|
|
2433
|
-
owner?: Owner;
|
|
2433
|
+
owner?: Owner | undefined;
|
|
2434
2434
|
/**
|
|
2435
2435
|
* <p>The time at which the step group was created.</p>
|
|
2436
2436
|
* @public
|
|
2437
2437
|
*/
|
|
2438
|
-
creationTime?: Date;
|
|
2438
|
+
creationTime?: Date | undefined;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* <p>The time at which the step group was last modified.</p>
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
lastModifiedTime?: Date;
|
|
2443
|
+
lastModifiedTime?: Date | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* <p>The time at which the step group ended.</p>
|
|
2446
2446
|
* @public
|
|
2447
2447
|
*/
|
|
2448
|
-
endTime?: Date;
|
|
2448
|
+
endTime?: Date | undefined;
|
|
2449
2449
|
/**
|
|
2450
2450
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
2451
2451
|
* @public
|
|
2452
2452
|
*/
|
|
2453
|
-
tools?: Tool[];
|
|
2453
|
+
tools?: Tool[] | undefined;
|
|
2454
2454
|
/**
|
|
2455
2455
|
* <p>The previous step group.</p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
previous?: string[];
|
|
2458
|
+
previous?: string[] | undefined;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* <p>The next step group.</p>
|
|
2461
2461
|
* @public
|
|
2462
2462
|
*/
|
|
2463
|
-
next?: string[];
|
|
2463
|
+
next?: string[] | undefined;
|
|
2464
2464
|
}
|
|
2465
2465
|
/**
|
|
2466
2466
|
* @public
|
|
@@ -2470,12 +2470,12 @@ export interface ListWorkflowStepGroupsRequest {
|
|
|
2470
2470
|
* <p>The pagination token.</p>
|
|
2471
2471
|
* @public
|
|
2472
2472
|
*/
|
|
2473
|
-
nextToken?: string;
|
|
2473
|
+
nextToken?: string | undefined;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* <p>The maximum number of results that can be returned.</p>
|
|
2476
2476
|
* @public
|
|
2477
2477
|
*/
|
|
2478
|
-
maxResults?: number;
|
|
2478
|
+
maxResults?: number | undefined;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* <p>The ID of the migration workflow.</p>
|
|
2481
2481
|
* @public
|
|
@@ -2491,32 +2491,32 @@ export interface WorkflowStepGroupSummary {
|
|
|
2491
2491
|
* <p>The ID of the step group.</p>
|
|
2492
2492
|
* @public
|
|
2493
2493
|
*/
|
|
2494
|
-
id?: string;
|
|
2494
|
+
id?: string | undefined;
|
|
2495
2495
|
/**
|
|
2496
2496
|
* <p>The name of the step group.</p>
|
|
2497
2497
|
* @public
|
|
2498
2498
|
*/
|
|
2499
|
-
name?: string;
|
|
2499
|
+
name?: string | undefined;
|
|
2500
2500
|
/**
|
|
2501
2501
|
* <p>The owner of the step group.</p>
|
|
2502
2502
|
* @public
|
|
2503
2503
|
*/
|
|
2504
|
-
owner?: Owner;
|
|
2504
|
+
owner?: Owner | undefined;
|
|
2505
2505
|
/**
|
|
2506
2506
|
* <p>The status of the step group.</p>
|
|
2507
2507
|
* @public
|
|
2508
2508
|
*/
|
|
2509
|
-
status?: StepGroupStatus;
|
|
2509
|
+
status?: StepGroupStatus | undefined;
|
|
2510
2510
|
/**
|
|
2511
2511
|
* <p>The previous step group.</p>
|
|
2512
2512
|
* @public
|
|
2513
2513
|
*/
|
|
2514
|
-
previous?: string[];
|
|
2514
|
+
previous?: string[] | undefined;
|
|
2515
2515
|
/**
|
|
2516
2516
|
* <p>The next step group.</p>
|
|
2517
2517
|
* @public
|
|
2518
2518
|
*/
|
|
2519
|
-
next?: string[];
|
|
2519
|
+
next?: string[] | undefined;
|
|
2520
2520
|
}
|
|
2521
2521
|
/**
|
|
2522
2522
|
* @public
|
|
@@ -2526,7 +2526,7 @@ export interface ListWorkflowStepGroupsResponse {
|
|
|
2526
2526
|
* <p>The pagination token.</p>
|
|
2527
2527
|
* @public
|
|
2528
2528
|
*/
|
|
2529
|
-
nextToken?: string;
|
|
2529
|
+
nextToken?: string | undefined;
|
|
2530
2530
|
/**
|
|
2531
2531
|
* <p>The summary of step groups in a migration workflow.</p>
|
|
2532
2532
|
* @public
|
|
@@ -2551,22 +2551,22 @@ export interface UpdateWorkflowStepGroupRequest {
|
|
|
2551
2551
|
* <p>The name of the step group.</p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
name?: string;
|
|
2554
|
+
name?: string | undefined;
|
|
2555
2555
|
/**
|
|
2556
2556
|
* <p>The description of the step group.</p>
|
|
2557
2557
|
* @public
|
|
2558
2558
|
*/
|
|
2559
|
-
description?: string;
|
|
2559
|
+
description?: string | undefined;
|
|
2560
2560
|
/**
|
|
2561
2561
|
* <p>The next step group.</p>
|
|
2562
2562
|
* @public
|
|
2563
2563
|
*/
|
|
2564
|
-
next?: string[];
|
|
2564
|
+
next?: string[] | undefined;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* <p>The previous step group.</p>
|
|
2567
2567
|
* @public
|
|
2568
2568
|
*/
|
|
2569
|
-
previous?: string[];
|
|
2569
|
+
previous?: string[] | undefined;
|
|
2570
2570
|
}
|
|
2571
2571
|
/**
|
|
2572
2572
|
* @public
|
|
@@ -2576,42 +2576,42 @@ export interface UpdateWorkflowStepGroupResponse {
|
|
|
2576
2576
|
* <p>The ID of the migration workflow.</p>
|
|
2577
2577
|
* @public
|
|
2578
2578
|
*/
|
|
2579
|
-
workflowId?: string;
|
|
2579
|
+
workflowId?: string | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* <p>The name of the step group.</p>
|
|
2582
2582
|
* @public
|
|
2583
2583
|
*/
|
|
2584
|
-
name?: string;
|
|
2584
|
+
name?: string | undefined;
|
|
2585
2585
|
/**
|
|
2586
2586
|
* <p>The ID of the step group.</p>
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
id?: string;
|
|
2589
|
+
id?: string | undefined;
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>The description of the step group.</p>
|
|
2592
2592
|
* @public
|
|
2593
2593
|
*/
|
|
2594
|
-
description?: string;
|
|
2594
|
+
description?: string | undefined;
|
|
2595
2595
|
/**
|
|
2596
2596
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
tools?: Tool[];
|
|
2599
|
+
tools?: Tool[] | undefined;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* <p>The next step group.</p>
|
|
2602
2602
|
* @public
|
|
2603
2603
|
*/
|
|
2604
|
-
next?: string[];
|
|
2604
|
+
next?: string[] | undefined;
|
|
2605
2605
|
/**
|
|
2606
2606
|
* <p>The previous step group.</p>
|
|
2607
2607
|
* @public
|
|
2608
2608
|
*/
|
|
2609
|
-
previous?: string[];
|
|
2609
|
+
previous?: string[] | undefined;
|
|
2610
2610
|
/**
|
|
2611
2611
|
* <p>The time at which the step group was last modified.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
lastModifiedTime?: Date;
|
|
2614
|
+
lastModifiedTime?: Date | undefined;
|
|
2615
2615
|
}
|
|
2616
2616
|
/**
|
|
2617
2617
|
* @internal
|