@aws-sdk/client-migrationhuborchestrator 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/MigrationHubOrchestrator.d.ts +29 -0
- package/dist-types/MigrationHubOrchestratorClient.d.ts +24 -4
- package/dist-types/commands/CreateWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkflowStepCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetTemplateStepCommand.d.ts +16 -0
- package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowStepCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +16 -0
- package/dist-types/commands/ListPluginsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTemplateStepsCommand.d.ts +16 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowStepsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +16 -0
- package/dist-types/commands/RetryWorkflowStepCommand.d.ts +16 -0
- package/dist-types/commands/StartWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/StopWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +16 -0
- package/dist-types/models/MigrationHubOrchestratorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +226 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPluginsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTemplateStepGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTemplateStepsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowStepGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowStepsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MigrationHubOrchestratorServiceException as __BaseException } from "./MigrationHubOrchestratorServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,12 +13,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
*/
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
15
19
|
export interface ListTagsForResourceRequest {
|
|
16
20
|
/**
|
|
17
21
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
18
22
|
*/
|
|
19
23
|
resourceArn: string | undefined;
|
|
20
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
21
28
|
export interface ListTagsForResourceResponse {
|
|
22
29
|
/**
|
|
23
30
|
* <p>The tags added to a resource.</p>
|
|
@@ -25,6 +32,7 @@ export interface ListTagsForResourceResponse {
|
|
|
25
32
|
tags?: Record<string, string>;
|
|
26
33
|
}
|
|
27
34
|
/**
|
|
35
|
+
* @public
|
|
28
36
|
* <p>The resource is not available.</p>
|
|
29
37
|
*/
|
|
30
38
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -36,6 +44,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
36
44
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
37
45
|
}
|
|
38
46
|
/**
|
|
47
|
+
* @public
|
|
39
48
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
40
49
|
*/
|
|
41
50
|
export declare class ValidationException extends __BaseException {
|
|
@@ -48,10 +57,14 @@ export declare class ValidationException extends __BaseException {
|
|
|
48
57
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
49
58
|
}
|
|
50
59
|
/**
|
|
60
|
+
* @public
|
|
51
61
|
* <p>A map of key value pairs that is generated when you create a migration workflow. The
|
|
52
62
|
* key value pairs will differ based on your selection of the template.</p>
|
|
53
63
|
*/
|
|
54
64
|
export type StepInput = StepInput.IntegerValueMember | StepInput.ListOfStringsValueMember | StepInput.MapOfStringValueMember | StepInput.StringValueMember | StepInput.$UnknownMember;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
55
68
|
export declare namespace StepInput {
|
|
56
69
|
/**
|
|
57
70
|
* <p>The value of the integer.</p>
|
|
@@ -109,6 +122,9 @@ export declare namespace StepInput {
|
|
|
109
122
|
}
|
|
110
123
|
const visit: <T>(value: StepInput, visitor: Visitor<T>) => T;
|
|
111
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
112
128
|
export interface CreateMigrationWorkflowRequest {
|
|
113
129
|
/**
|
|
114
130
|
* <p>The name of the migration workflow.</p>
|
|
@@ -139,6 +155,9 @@ export interface CreateMigrationWorkflowRequest {
|
|
|
139
155
|
*/
|
|
140
156
|
tags?: Record<string, string>;
|
|
141
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
142
161
|
export declare enum MigrationWorkflowStatusEnum {
|
|
143
162
|
COMPLETED = "COMPLETED",
|
|
144
163
|
CREATING = "CREATING",
|
|
@@ -155,6 +174,9 @@ export declare enum MigrationWorkflowStatusEnum {
|
|
|
155
174
|
USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED",
|
|
156
175
|
WORKFLOW_FAILED = "WORKFLOW_FAILED"
|
|
157
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
158
180
|
export interface CreateMigrationWorkflowResponse {
|
|
159
181
|
/**
|
|
160
182
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -202,6 +224,7 @@ export interface CreateMigrationWorkflowResponse {
|
|
|
202
224
|
tags?: Record<string, string>;
|
|
203
225
|
}
|
|
204
226
|
/**
|
|
227
|
+
* @public
|
|
205
228
|
* <p>An internal error has occurred.</p>
|
|
206
229
|
*/
|
|
207
230
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -213,6 +236,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
213
236
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
214
237
|
}
|
|
215
238
|
/**
|
|
239
|
+
* @public
|
|
216
240
|
* <p>The request was denied due to request throttling.</p>
|
|
217
241
|
*/
|
|
218
242
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -223,12 +247,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
223
247
|
*/
|
|
224
248
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
225
249
|
}
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
226
253
|
export interface DeleteMigrationWorkflowRequest {
|
|
227
254
|
/**
|
|
228
255
|
* <p>The ID of the migration workflow you want to delete.</p>
|
|
229
256
|
*/
|
|
230
257
|
id: string | undefined;
|
|
231
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
232
262
|
export interface DeleteMigrationWorkflowResponse {
|
|
233
263
|
/**
|
|
234
264
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -243,6 +273,9 @@ export interface DeleteMigrationWorkflowResponse {
|
|
|
243
273
|
*/
|
|
244
274
|
status?: MigrationWorkflowStatusEnum | string;
|
|
245
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
*/
|
|
246
279
|
export interface GetMigrationWorkflowRequest {
|
|
247
280
|
/**
|
|
248
281
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -250,6 +283,7 @@ export interface GetMigrationWorkflowRequest {
|
|
|
250
283
|
id: string | undefined;
|
|
251
284
|
}
|
|
252
285
|
/**
|
|
286
|
+
* @public
|
|
253
287
|
* <p>List of AWS services utilized in a migration workflow.</p>
|
|
254
288
|
*/
|
|
255
289
|
export interface Tool {
|
|
@@ -262,6 +296,9 @@ export interface Tool {
|
|
|
262
296
|
*/
|
|
263
297
|
url?: string;
|
|
264
298
|
}
|
|
299
|
+
/**
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
265
302
|
export interface GetMigrationWorkflowResponse {
|
|
266
303
|
/**
|
|
267
304
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -344,6 +381,9 @@ export interface GetMigrationWorkflowResponse {
|
|
|
344
381
|
*/
|
|
345
382
|
workflowBucket?: string;
|
|
346
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
347
387
|
export interface ListMigrationWorkflowsRequest {
|
|
348
388
|
/**
|
|
349
389
|
* <p>The maximum number of results that can be returned.</p>
|
|
@@ -371,6 +411,7 @@ export interface ListMigrationWorkflowsRequest {
|
|
|
371
411
|
name?: string;
|
|
372
412
|
}
|
|
373
413
|
/**
|
|
414
|
+
* @public
|
|
374
415
|
* <p>The summary of a migration workflow.</p>
|
|
375
416
|
*/
|
|
376
417
|
export interface MigrationWorkflowSummary {
|
|
@@ -415,6 +456,9 @@ export interface MigrationWorkflowSummary {
|
|
|
415
456
|
*/
|
|
416
457
|
totalSteps?: number;
|
|
417
458
|
}
|
|
459
|
+
/**
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
418
462
|
export interface ListMigrationWorkflowsResponse {
|
|
419
463
|
/**
|
|
420
464
|
* <p>The pagination token.</p>
|
|
@@ -425,12 +469,18 @@ export interface ListMigrationWorkflowsResponse {
|
|
|
425
469
|
*/
|
|
426
470
|
migrationWorkflowSummary: MigrationWorkflowSummary[] | undefined;
|
|
427
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
428
475
|
export interface StartMigrationWorkflowRequest {
|
|
429
476
|
/**
|
|
430
477
|
* <p>The ID of the migration workflow.</p>
|
|
431
478
|
*/
|
|
432
479
|
id: string | undefined;
|
|
433
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
434
484
|
export interface StartMigrationWorkflowResponse {
|
|
435
485
|
/**
|
|
436
486
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -453,12 +503,18 @@ export interface StartMigrationWorkflowResponse {
|
|
|
453
503
|
*/
|
|
454
504
|
lastStartTime?: Date;
|
|
455
505
|
}
|
|
506
|
+
/**
|
|
507
|
+
* @public
|
|
508
|
+
*/
|
|
456
509
|
export interface StopMigrationWorkflowRequest {
|
|
457
510
|
/**
|
|
458
511
|
* <p>The ID of the migration workflow.</p>
|
|
459
512
|
*/
|
|
460
513
|
id: string | undefined;
|
|
461
514
|
}
|
|
515
|
+
/**
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
462
518
|
export interface StopMigrationWorkflowResponse {
|
|
463
519
|
/**
|
|
464
520
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -481,6 +537,9 @@ export interface StopMigrationWorkflowResponse {
|
|
|
481
537
|
*/
|
|
482
538
|
lastStopTime?: Date;
|
|
483
539
|
}
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
484
543
|
export interface UpdateMigrationWorkflowRequest {
|
|
485
544
|
/**
|
|
486
545
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -503,6 +562,9 @@ export interface UpdateMigrationWorkflowRequest {
|
|
|
503
562
|
*/
|
|
504
563
|
stepTargets?: string[];
|
|
505
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
506
568
|
export interface UpdateMigrationWorkflowResponse {
|
|
507
569
|
/**
|
|
508
570
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -553,12 +615,18 @@ export interface UpdateMigrationWorkflowResponse {
|
|
|
553
615
|
*/
|
|
554
616
|
tags?: Record<string, string>;
|
|
555
617
|
}
|
|
618
|
+
/**
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
556
621
|
export interface GetMigrationWorkflowTemplateRequest {
|
|
557
622
|
/**
|
|
558
623
|
* <p>The ID of the template.</p>
|
|
559
624
|
*/
|
|
560
625
|
id: string | undefined;
|
|
561
626
|
}
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
562
630
|
export declare enum DataType {
|
|
563
631
|
INTEGER = "INTEGER",
|
|
564
632
|
STRING = "STRING",
|
|
@@ -566,6 +634,7 @@ export declare enum DataType {
|
|
|
566
634
|
STRINGMAP = "STRINGMAP"
|
|
567
635
|
}
|
|
568
636
|
/**
|
|
637
|
+
* @public
|
|
569
638
|
* <p>The input parameters of a template.</p>
|
|
570
639
|
*/
|
|
571
640
|
export interface TemplateInput {
|
|
@@ -582,9 +651,15 @@ export interface TemplateInput {
|
|
|
582
651
|
*/
|
|
583
652
|
required?: boolean;
|
|
584
653
|
}
|
|
654
|
+
/**
|
|
655
|
+
* @public
|
|
656
|
+
*/
|
|
585
657
|
export declare enum TemplateStatus {
|
|
586
658
|
CREATED = "CREATED"
|
|
587
659
|
}
|
|
660
|
+
/**
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
588
663
|
export interface GetMigrationWorkflowTemplateResponse {
|
|
589
664
|
/**
|
|
590
665
|
* <p>The ID of the template.</p>
|
|
@@ -615,6 +690,9 @@ export interface GetMigrationWorkflowTemplateResponse {
|
|
|
615
690
|
*/
|
|
616
691
|
creationTime?: Date;
|
|
617
692
|
}
|
|
693
|
+
/**
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
618
696
|
export interface ListMigrationWorkflowTemplatesRequest {
|
|
619
697
|
/**
|
|
620
698
|
* <p>The maximum number of results that can be returned.</p>
|
|
@@ -630,6 +708,7 @@ export interface ListMigrationWorkflowTemplatesRequest {
|
|
|
630
708
|
name?: string;
|
|
631
709
|
}
|
|
632
710
|
/**
|
|
711
|
+
* @public
|
|
633
712
|
* <p>The summary of the template.</p>
|
|
634
713
|
*/
|
|
635
714
|
export interface TemplateSummary {
|
|
@@ -650,6 +729,9 @@ export interface TemplateSummary {
|
|
|
650
729
|
*/
|
|
651
730
|
description?: string;
|
|
652
731
|
}
|
|
732
|
+
/**
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
653
735
|
export interface ListMigrationWorkflowTemplatesResponse {
|
|
654
736
|
/**
|
|
655
737
|
* <p>The pagination token.</p>
|
|
@@ -660,6 +742,9 @@ export interface ListMigrationWorkflowTemplatesResponse {
|
|
|
660
742
|
*/
|
|
661
743
|
templateSummary: TemplateSummary[] | undefined;
|
|
662
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
663
748
|
export interface ListPluginsRequest {
|
|
664
749
|
/**
|
|
665
750
|
* <p>The maximum number of plugins that can be returned.</p>
|
|
@@ -670,11 +755,15 @@ export interface ListPluginsRequest {
|
|
|
670
755
|
*/
|
|
671
756
|
nextToken?: string;
|
|
672
757
|
}
|
|
758
|
+
/**
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
673
761
|
export declare enum PluginHealth {
|
|
674
762
|
PLUGIN_HEALTHY = "HEALTHY",
|
|
675
763
|
PLUGIN_UNHEALTHY = "UNHEALTHY"
|
|
676
764
|
}
|
|
677
765
|
/**
|
|
766
|
+
* @public
|
|
678
767
|
* <p>The summary of the Migration Hub Orchestrator plugin.</p>
|
|
679
768
|
*/
|
|
680
769
|
export interface PluginSummary {
|
|
@@ -703,6 +792,9 @@ export interface PluginSummary {
|
|
|
703
792
|
*/
|
|
704
793
|
registeredTime?: string;
|
|
705
794
|
}
|
|
795
|
+
/**
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
706
798
|
export interface ListPluginsResponse {
|
|
707
799
|
/**
|
|
708
800
|
* <p>The pagination token.</p>
|
|
@@ -713,6 +805,9 @@ export interface ListPluginsResponse {
|
|
|
713
805
|
*/
|
|
714
806
|
plugins?: PluginSummary[];
|
|
715
807
|
}
|
|
808
|
+
/**
|
|
809
|
+
* @public
|
|
810
|
+
*/
|
|
716
811
|
export interface TagResourceRequest {
|
|
717
812
|
/**
|
|
718
813
|
* <p>The Amazon Resource Name (ARN) of the resource to which you want to add tags.</p>
|
|
@@ -724,8 +819,14 @@ export interface TagResourceRequest {
|
|
|
724
819
|
*/
|
|
725
820
|
tags: Record<string, string> | undefined;
|
|
726
821
|
}
|
|
822
|
+
/**
|
|
823
|
+
* @public
|
|
824
|
+
*/
|
|
727
825
|
export interface TagResourceResponse {
|
|
728
826
|
}
|
|
827
|
+
/**
|
|
828
|
+
* @public
|
|
829
|
+
*/
|
|
729
830
|
export interface GetTemplateStepRequest {
|
|
730
831
|
/**
|
|
731
832
|
* <p>The ID of the step.</p>
|
|
@@ -741,6 +842,7 @@ export interface GetTemplateStepRequest {
|
|
|
741
842
|
stepGroupId: string | undefined;
|
|
742
843
|
}
|
|
743
844
|
/**
|
|
845
|
+
* @public
|
|
744
846
|
* <p>The output of the step.</p>
|
|
745
847
|
*/
|
|
746
848
|
export interface StepOutput {
|
|
@@ -757,11 +859,15 @@ export interface StepOutput {
|
|
|
757
859
|
*/
|
|
758
860
|
required?: boolean;
|
|
759
861
|
}
|
|
862
|
+
/**
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
760
865
|
export declare enum StepActionType {
|
|
761
866
|
AUTOMATED = "AUTOMATED",
|
|
762
867
|
MANUAL = "MANUAL"
|
|
763
868
|
}
|
|
764
869
|
/**
|
|
870
|
+
* @public
|
|
765
871
|
* <p>Command to be run on a particular operating system.</p>
|
|
766
872
|
*/
|
|
767
873
|
export interface PlatformCommand {
|
|
@@ -774,11 +880,15 @@ export interface PlatformCommand {
|
|
|
774
880
|
*/
|
|
775
881
|
windows?: string;
|
|
776
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
777
886
|
export declare enum RunEnvironment {
|
|
778
887
|
AWS = "AWS",
|
|
779
888
|
ONPREMISE = "ONPREMISE"
|
|
780
889
|
}
|
|
781
890
|
/**
|
|
891
|
+
* @public
|
|
782
892
|
* <p>The script location for a particular operating system.</p>
|
|
783
893
|
*/
|
|
784
894
|
export interface PlatformScriptKey {
|
|
@@ -791,12 +901,16 @@ export interface PlatformScriptKey {
|
|
|
791
901
|
*/
|
|
792
902
|
windows?: string;
|
|
793
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* @public
|
|
906
|
+
*/
|
|
794
907
|
export declare enum TargetType {
|
|
795
908
|
ALL = "ALL",
|
|
796
909
|
NONE = "NONE",
|
|
797
910
|
SINGLE = "SINGLE"
|
|
798
911
|
}
|
|
799
912
|
/**
|
|
913
|
+
* @public
|
|
800
914
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
801
915
|
*/
|
|
802
916
|
export interface StepAutomationConfiguration {
|
|
@@ -821,6 +935,9 @@ export interface StepAutomationConfiguration {
|
|
|
821
935
|
*/
|
|
822
936
|
targetType?: TargetType | string;
|
|
823
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
824
941
|
export interface GetTemplateStepResponse {
|
|
825
942
|
/**
|
|
826
943
|
* <p>The ID of the step.</p>
|
|
@@ -868,6 +985,9 @@ export interface GetTemplateStepResponse {
|
|
|
868
985
|
*/
|
|
869
986
|
stepAutomationConfiguration?: StepAutomationConfiguration;
|
|
870
987
|
}
|
|
988
|
+
/**
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
871
991
|
export interface ListTemplateStepsRequest {
|
|
872
992
|
/**
|
|
873
993
|
* <p>The maximum number of results that can be returned.</p>
|
|
@@ -886,11 +1006,15 @@ export interface ListTemplateStepsRequest {
|
|
|
886
1006
|
*/
|
|
887
1007
|
stepGroupId: string | undefined;
|
|
888
1008
|
}
|
|
1009
|
+
/**
|
|
1010
|
+
* @public
|
|
1011
|
+
*/
|
|
889
1012
|
export declare enum Owner {
|
|
890
1013
|
AWSManaged = "AWS_MANAGED",
|
|
891
1014
|
CUSTOM = "CUSTOM"
|
|
892
1015
|
}
|
|
893
1016
|
/**
|
|
1017
|
+
* @public
|
|
894
1018
|
* <p>The summary of the step.</p>
|
|
895
1019
|
*/
|
|
896
1020
|
export interface TemplateStepSummary {
|
|
@@ -932,6 +1056,9 @@ export interface TemplateStepSummary {
|
|
|
932
1056
|
*/
|
|
933
1057
|
next?: string[];
|
|
934
1058
|
}
|
|
1059
|
+
/**
|
|
1060
|
+
* @public
|
|
1061
|
+
*/
|
|
935
1062
|
export interface ListTemplateStepsResponse {
|
|
936
1063
|
/**
|
|
937
1064
|
* <p>The pagination token.</p>
|
|
@@ -942,6 +1069,9 @@ export interface ListTemplateStepsResponse {
|
|
|
942
1069
|
*/
|
|
943
1070
|
templateStepSummaryList?: TemplateStepSummary[];
|
|
944
1071
|
}
|
|
1072
|
+
/**
|
|
1073
|
+
* @public
|
|
1074
|
+
*/
|
|
945
1075
|
export interface GetTemplateStepGroupRequest {
|
|
946
1076
|
/**
|
|
947
1077
|
* <p>The ID of the template.</p>
|
|
@@ -952,6 +1082,9 @@ export interface GetTemplateStepGroupRequest {
|
|
|
952
1082
|
*/
|
|
953
1083
|
id: string | undefined;
|
|
954
1084
|
}
|
|
1085
|
+
/**
|
|
1086
|
+
* @public
|
|
1087
|
+
*/
|
|
955
1088
|
export declare enum StepGroupStatus {
|
|
956
1089
|
AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
|
|
957
1090
|
COMPLETED = "COMPLETED",
|
|
@@ -962,6 +1095,9 @@ export declare enum StepGroupStatus {
|
|
|
962
1095
|
READY = "READY",
|
|
963
1096
|
USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED"
|
|
964
1097
|
}
|
|
1098
|
+
/**
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
965
1101
|
export interface GetTemplateStepGroupResponse {
|
|
966
1102
|
/**
|
|
967
1103
|
* <p>The ID of the template.</p>
|
|
@@ -1004,6 +1140,9 @@ export interface GetTemplateStepGroupResponse {
|
|
|
1004
1140
|
*/
|
|
1005
1141
|
next?: string[];
|
|
1006
1142
|
}
|
|
1143
|
+
/**
|
|
1144
|
+
* @public
|
|
1145
|
+
*/
|
|
1007
1146
|
export interface ListTemplateStepGroupsRequest {
|
|
1008
1147
|
/**
|
|
1009
1148
|
* <p>The maximum number of results that can be returned.</p>
|
|
@@ -1019,6 +1158,7 @@ export interface ListTemplateStepGroupsRequest {
|
|
|
1019
1158
|
templateId: string | undefined;
|
|
1020
1159
|
}
|
|
1021
1160
|
/**
|
|
1161
|
+
* @public
|
|
1022
1162
|
* <p>The summary of the step group in the template.</p>
|
|
1023
1163
|
*/
|
|
1024
1164
|
export interface TemplateStepGroupSummary {
|
|
@@ -1039,6 +1179,9 @@ export interface TemplateStepGroupSummary {
|
|
|
1039
1179
|
*/
|
|
1040
1180
|
next?: string[];
|
|
1041
1181
|
}
|
|
1182
|
+
/**
|
|
1183
|
+
* @public
|
|
1184
|
+
*/
|
|
1042
1185
|
export interface ListTemplateStepGroupsResponse {
|
|
1043
1186
|
/**
|
|
1044
1187
|
* <p>The pagination token.</p>
|
|
@@ -1049,6 +1192,9 @@ export interface ListTemplateStepGroupsResponse {
|
|
|
1049
1192
|
*/
|
|
1050
1193
|
templateStepGroupSummary: TemplateStepGroupSummary[] | undefined;
|
|
1051
1194
|
}
|
|
1195
|
+
/**
|
|
1196
|
+
* @public
|
|
1197
|
+
*/
|
|
1052
1198
|
export interface UntagResourceRequest {
|
|
1053
1199
|
/**
|
|
1054
1200
|
* <p>The Amazon Resource Name (ARN) of the resource from which you want to remove
|
|
@@ -1060,12 +1206,19 @@ export interface UntagResourceRequest {
|
|
|
1060
1206
|
*/
|
|
1061
1207
|
tagKeys: string[] | undefined;
|
|
1062
1208
|
}
|
|
1209
|
+
/**
|
|
1210
|
+
* @public
|
|
1211
|
+
*/
|
|
1063
1212
|
export interface UntagResourceResponse {
|
|
1064
1213
|
}
|
|
1065
1214
|
/**
|
|
1215
|
+
* @public
|
|
1066
1216
|
* <p>A structure to hold multiple values of an output.</p>
|
|
1067
1217
|
*/
|
|
1068
1218
|
export type WorkflowStepOutputUnion = WorkflowStepOutputUnion.IntegerValueMember | WorkflowStepOutputUnion.ListOfStringValueMember | WorkflowStepOutputUnion.StringValueMember | WorkflowStepOutputUnion.$UnknownMember;
|
|
1219
|
+
/**
|
|
1220
|
+
* @public
|
|
1221
|
+
*/
|
|
1069
1222
|
export declare namespace WorkflowStepOutputUnion {
|
|
1070
1223
|
/**
|
|
1071
1224
|
* <p>The integer value. </p>
|
|
@@ -1109,6 +1262,7 @@ export declare namespace WorkflowStepOutputUnion {
|
|
|
1109
1262
|
const visit: <T>(value: WorkflowStepOutputUnion, visitor: Visitor<T>) => T;
|
|
1110
1263
|
}
|
|
1111
1264
|
/**
|
|
1265
|
+
* @public
|
|
1112
1266
|
* <p>The output of a step.</p>
|
|
1113
1267
|
*/
|
|
1114
1268
|
export interface WorkflowStepOutput {
|
|
@@ -1130,6 +1284,7 @@ export interface WorkflowStepOutput {
|
|
|
1130
1284
|
value?: WorkflowStepOutputUnion;
|
|
1131
1285
|
}
|
|
1132
1286
|
/**
|
|
1287
|
+
* @public
|
|
1133
1288
|
* <p>The custom script to run tests on source or target environments.</p>
|
|
1134
1289
|
*/
|
|
1135
1290
|
export interface WorkflowStepAutomationConfiguration {
|
|
@@ -1154,6 +1309,9 @@ export interface WorkflowStepAutomationConfiguration {
|
|
|
1154
1309
|
*/
|
|
1155
1310
|
targetType?: TargetType | string;
|
|
1156
1311
|
}
|
|
1312
|
+
/**
|
|
1313
|
+
* @public
|
|
1314
|
+
*/
|
|
1157
1315
|
export interface CreateWorkflowStepRequest {
|
|
1158
1316
|
/**
|
|
1159
1317
|
* <p>The name of the step.</p>
|
|
@@ -1197,6 +1355,9 @@ export interface CreateWorkflowStepRequest {
|
|
|
1197
1355
|
*/
|
|
1198
1356
|
next?: string[];
|
|
1199
1357
|
}
|
|
1358
|
+
/**
|
|
1359
|
+
* @public
|
|
1360
|
+
*/
|
|
1200
1361
|
export interface CreateWorkflowStepResponse {
|
|
1201
1362
|
/**
|
|
1202
1363
|
* <p>The ID of the step.</p>
|
|
@@ -1215,6 +1376,9 @@ export interface CreateWorkflowStepResponse {
|
|
|
1215
1376
|
*/
|
|
1216
1377
|
name?: string;
|
|
1217
1378
|
}
|
|
1379
|
+
/**
|
|
1380
|
+
* @public
|
|
1381
|
+
*/
|
|
1218
1382
|
export interface DeleteWorkflowStepRequest {
|
|
1219
1383
|
/**
|
|
1220
1384
|
* <p>The ID of the step you want to delete.</p>
|
|
@@ -1229,8 +1393,14 @@ export interface DeleteWorkflowStepRequest {
|
|
|
1229
1393
|
*/
|
|
1230
1394
|
workflowId: string | undefined;
|
|
1231
1395
|
}
|
|
1396
|
+
/**
|
|
1397
|
+
* @public
|
|
1398
|
+
*/
|
|
1232
1399
|
export interface DeleteWorkflowStepResponse {
|
|
1233
1400
|
}
|
|
1401
|
+
/**
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1234
1404
|
export interface GetWorkflowStepRequest {
|
|
1235
1405
|
/**
|
|
1236
1406
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -1245,6 +1415,9 @@ export interface GetWorkflowStepRequest {
|
|
|
1245
1415
|
*/
|
|
1246
1416
|
id: string | undefined;
|
|
1247
1417
|
}
|
|
1418
|
+
/**
|
|
1419
|
+
* @public
|
|
1420
|
+
*/
|
|
1248
1421
|
export declare enum StepStatus {
|
|
1249
1422
|
AWAITING_DEPENDENCIES = "AWAITING_DEPENDENCIES",
|
|
1250
1423
|
COMPLETED = "COMPLETED",
|
|
@@ -1254,6 +1427,9 @@ export declare enum StepStatus {
|
|
|
1254
1427
|
READY = "READY",
|
|
1255
1428
|
USER_ATTENTION_REQUIRED = "USER_ATTENTION_REQUIRED"
|
|
1256
1429
|
}
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1257
1433
|
export interface GetWorkflowStepResponse {
|
|
1258
1434
|
/**
|
|
1259
1435
|
* <p>The name of the step.</p>
|
|
@@ -1341,6 +1517,9 @@ export interface GetWorkflowStepResponse {
|
|
|
1341
1517
|
*/
|
|
1342
1518
|
totalNoOfSrv?: number;
|
|
1343
1519
|
}
|
|
1520
|
+
/**
|
|
1521
|
+
* @public
|
|
1522
|
+
*/
|
|
1344
1523
|
export interface ListWorkflowStepsRequest {
|
|
1345
1524
|
/**
|
|
1346
1525
|
* <p>The pagination token.</p>
|
|
@@ -1360,6 +1539,7 @@ export interface ListWorkflowStepsRequest {
|
|
|
1360
1539
|
stepGroupId: string | undefined;
|
|
1361
1540
|
}
|
|
1362
1541
|
/**
|
|
1542
|
+
* @public
|
|
1363
1543
|
* <p>The summary of the step in a migration workflow.</p>
|
|
1364
1544
|
*/
|
|
1365
1545
|
export interface WorkflowStepSummary {
|
|
@@ -1417,6 +1597,9 @@ export interface WorkflowStepSummary {
|
|
|
1417
1597
|
*/
|
|
1418
1598
|
scriptLocation?: string;
|
|
1419
1599
|
}
|
|
1600
|
+
/**
|
|
1601
|
+
* @public
|
|
1602
|
+
*/
|
|
1420
1603
|
export interface ListWorkflowStepsResponse {
|
|
1421
1604
|
/**
|
|
1422
1605
|
* <p>The pagination token.</p>
|
|
@@ -1427,6 +1610,9 @@ export interface ListWorkflowStepsResponse {
|
|
|
1427
1610
|
*/
|
|
1428
1611
|
workflowStepsSummary: WorkflowStepSummary[] | undefined;
|
|
1429
1612
|
}
|
|
1613
|
+
/**
|
|
1614
|
+
* @public
|
|
1615
|
+
*/
|
|
1430
1616
|
export interface RetryWorkflowStepRequest {
|
|
1431
1617
|
/**
|
|
1432
1618
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -1441,6 +1627,9 @@ export interface RetryWorkflowStepRequest {
|
|
|
1441
1627
|
*/
|
|
1442
1628
|
id: string | undefined;
|
|
1443
1629
|
}
|
|
1630
|
+
/**
|
|
1631
|
+
* @public
|
|
1632
|
+
*/
|
|
1444
1633
|
export interface RetryWorkflowStepResponse {
|
|
1445
1634
|
/**
|
|
1446
1635
|
* <p>The ID of the step group.</p>
|
|
@@ -1459,6 +1648,9 @@ export interface RetryWorkflowStepResponse {
|
|
|
1459
1648
|
*/
|
|
1460
1649
|
status?: StepStatus | string;
|
|
1461
1650
|
}
|
|
1651
|
+
/**
|
|
1652
|
+
* @public
|
|
1653
|
+
*/
|
|
1462
1654
|
export interface UpdateWorkflowStepRequest {
|
|
1463
1655
|
/**
|
|
1464
1656
|
* <p>The ID of the step.</p>
|
|
@@ -1510,6 +1702,9 @@ export interface UpdateWorkflowStepRequest {
|
|
|
1510
1702
|
*/
|
|
1511
1703
|
status?: StepStatus | string;
|
|
1512
1704
|
}
|
|
1705
|
+
/**
|
|
1706
|
+
* @public
|
|
1707
|
+
*/
|
|
1513
1708
|
export interface UpdateWorkflowStepResponse {
|
|
1514
1709
|
/**
|
|
1515
1710
|
* <p>The ID of the step.</p>
|
|
@@ -1528,6 +1723,9 @@ export interface UpdateWorkflowStepResponse {
|
|
|
1528
1723
|
*/
|
|
1529
1724
|
name?: string;
|
|
1530
1725
|
}
|
|
1726
|
+
/**
|
|
1727
|
+
* @public
|
|
1728
|
+
*/
|
|
1531
1729
|
export interface CreateWorkflowStepGroupRequest {
|
|
1532
1730
|
/**
|
|
1533
1731
|
* <p>The ID of the migration workflow that will contain the step group.</p>
|
|
@@ -1550,6 +1748,9 @@ export interface CreateWorkflowStepGroupRequest {
|
|
|
1550
1748
|
*/
|
|
1551
1749
|
previous?: string[];
|
|
1552
1750
|
}
|
|
1751
|
+
/**
|
|
1752
|
+
* @public
|
|
1753
|
+
*/
|
|
1553
1754
|
export interface CreateWorkflowStepGroupResponse {
|
|
1554
1755
|
/**
|
|
1555
1756
|
* <p>The ID of the migration workflow that contains the step group.</p>
|
|
@@ -1584,6 +1785,9 @@ export interface CreateWorkflowStepGroupResponse {
|
|
|
1584
1785
|
*/
|
|
1585
1786
|
creationTime?: Date;
|
|
1586
1787
|
}
|
|
1788
|
+
/**
|
|
1789
|
+
* @public
|
|
1790
|
+
*/
|
|
1587
1791
|
export interface DeleteWorkflowStepGroupRequest {
|
|
1588
1792
|
/**
|
|
1589
1793
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -1594,8 +1798,14 @@ export interface DeleteWorkflowStepGroupRequest {
|
|
|
1594
1798
|
*/
|
|
1595
1799
|
id: string | undefined;
|
|
1596
1800
|
}
|
|
1801
|
+
/**
|
|
1802
|
+
* @public
|
|
1803
|
+
*/
|
|
1597
1804
|
export interface DeleteWorkflowStepGroupResponse {
|
|
1598
1805
|
}
|
|
1806
|
+
/**
|
|
1807
|
+
* @public
|
|
1808
|
+
*/
|
|
1599
1809
|
export interface GetWorkflowStepGroupRequest {
|
|
1600
1810
|
/**
|
|
1601
1811
|
* <p>The ID of the step group.</p>
|
|
@@ -1606,6 +1816,9 @@ export interface GetWorkflowStepGroupRequest {
|
|
|
1606
1816
|
*/
|
|
1607
1817
|
workflowId: string | undefined;
|
|
1608
1818
|
}
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1609
1822
|
export interface GetWorkflowStepGroupResponse {
|
|
1610
1823
|
/**
|
|
1611
1824
|
* <p>The ID of the step group.</p>
|
|
@@ -1656,6 +1869,9 @@ export interface GetWorkflowStepGroupResponse {
|
|
|
1656
1869
|
*/
|
|
1657
1870
|
next?: string[];
|
|
1658
1871
|
}
|
|
1872
|
+
/**
|
|
1873
|
+
* @public
|
|
1874
|
+
*/
|
|
1659
1875
|
export interface ListWorkflowStepGroupsRequest {
|
|
1660
1876
|
/**
|
|
1661
1877
|
* <p>The pagination token.</p>
|
|
@@ -1671,6 +1887,7 @@ export interface ListWorkflowStepGroupsRequest {
|
|
|
1671
1887
|
workflowId: string | undefined;
|
|
1672
1888
|
}
|
|
1673
1889
|
/**
|
|
1890
|
+
* @public
|
|
1674
1891
|
* <p>The summary of a step group in a workflow.</p>
|
|
1675
1892
|
*/
|
|
1676
1893
|
export interface WorkflowStepGroupSummary {
|
|
@@ -1699,6 +1916,9 @@ export interface WorkflowStepGroupSummary {
|
|
|
1699
1916
|
*/
|
|
1700
1917
|
next?: string[];
|
|
1701
1918
|
}
|
|
1919
|
+
/**
|
|
1920
|
+
* @public
|
|
1921
|
+
*/
|
|
1702
1922
|
export interface ListWorkflowStepGroupsResponse {
|
|
1703
1923
|
/**
|
|
1704
1924
|
* <p>The pagination token.</p>
|
|
@@ -1709,6 +1929,9 @@ export interface ListWorkflowStepGroupsResponse {
|
|
|
1709
1929
|
*/
|
|
1710
1930
|
workflowStepGroupsSummary: WorkflowStepGroupSummary[] | undefined;
|
|
1711
1931
|
}
|
|
1932
|
+
/**
|
|
1933
|
+
* @public
|
|
1934
|
+
*/
|
|
1712
1935
|
export interface UpdateWorkflowStepGroupRequest {
|
|
1713
1936
|
/**
|
|
1714
1937
|
* <p>The ID of the migration workflow.</p>
|
|
@@ -1735,6 +1958,9 @@ export interface UpdateWorkflowStepGroupRequest {
|
|
|
1735
1958
|
*/
|
|
1736
1959
|
previous?: string[];
|
|
1737
1960
|
}
|
|
1961
|
+
/**
|
|
1962
|
+
* @public
|
|
1963
|
+
*/
|
|
1738
1964
|
export interface UpdateWorkflowStepGroupResponse {
|
|
1739
1965
|
/**
|
|
1740
1966
|
* <p>The ID of the migration workflow.</p>
|