@aws-sdk/client-migrationhuborchestrator 3.321.1 → 3.326.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/commands/CreateWorkflowCommand.d.ts +31 -0
- package/dist-types/commands/CreateWorkflowStepCommand.d.ts +9 -0
- package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +22 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +8 -0
- package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +4 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +23 -0
- package/dist-types/commands/GetTemplateStepCommand.d.ts +38 -0
- package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +24 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +43 -0
- package/dist-types/commands/GetWorkflowStepCommand.d.ts +57 -0
- package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +26 -0
- package/dist-types/commands/ListPluginsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +18 -0
- package/dist-types/commands/ListTemplateStepsCommand.d.ts +23 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +14 -0
- package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +20 -0
- package/dist-types/commands/ListWorkflowStepsCommand.d.ts +27 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +20 -0
- package/dist-types/commands/RetryWorkflowStepCommand.d.ts +9 -0
- package/dist-types/commands/StartWorkflowCommand.d.ts +10 -0
- package/dist-types/commands/StopWorkflowCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +32 -0
- package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +9 -0
- package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +22 -0
- package/package.json +16 -16
|
@@ -52,6 +52,35 @@ export interface CreateWorkflowCommandOutput extends CreateMigrationWorkflowResp
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new CreateWorkflowCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // CreateMigrationWorkflowResponse
|
|
56
|
+
* // id: "STRING_VALUE",
|
|
57
|
+
* // arn: "STRING_VALUE",
|
|
58
|
+
* // name: "STRING_VALUE",
|
|
59
|
+
* // description: "STRING_VALUE",
|
|
60
|
+
* // templateId: "STRING_VALUE",
|
|
61
|
+
* // adsApplicationConfigurationId: "STRING_VALUE",
|
|
62
|
+
* // workflowInputs: { // StepInputParameters
|
|
63
|
+
* // "<keys>": { // StepInput Union: only one key present
|
|
64
|
+
* // integerValue: Number("int"),
|
|
65
|
+
* // stringValue: "STRING_VALUE",
|
|
66
|
+
* // listOfStringsValue: [ // StringList
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // mapOfStringValue: { // StringMap
|
|
70
|
+
* // "<keys>": "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // stepTargets: [
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
77
|
+
* // status: "STRING_VALUE",
|
|
78
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
79
|
+
* // tags: {
|
|
80
|
+
* // "<keys>": "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
55
84
|
* ```
|
|
56
85
|
*
|
|
57
86
|
* @param CreateWorkflowCommandInput - {@link CreateWorkflowCommandInput}
|
|
@@ -72,6 +101,8 @@ export interface CreateWorkflowCommandOutput extends CreateMigrationWorkflowResp
|
|
|
72
101
|
* @throws {@link ValidationException} (client fault)
|
|
73
102
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
74
103
|
*
|
|
104
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
75
106
|
*
|
|
76
107
|
*/
|
|
77
108
|
export declare class CreateWorkflowCommand extends $Command<CreateWorkflowCommandInput, CreateWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -71,6 +71,13 @@ export interface CreateWorkflowStepCommandOutput extends CreateWorkflowStepRespo
|
|
|
71
71
|
* };
|
|
72
72
|
* const command = new CreateWorkflowStepCommand(input);
|
|
73
73
|
* const response = await client.send(command);
|
|
74
|
+
* // { // CreateWorkflowStepResponse
|
|
75
|
+
* // id: "STRING_VALUE",
|
|
76
|
+
* // stepGroupId: "STRING_VALUE",
|
|
77
|
+
* // workflowId: "STRING_VALUE",
|
|
78
|
+
* // name: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
74
81
|
* ```
|
|
75
82
|
*
|
|
76
83
|
* @param CreateWorkflowStepCommandInput - {@link CreateWorkflowStepCommandInput}
|
|
@@ -91,6 +98,8 @@ export interface CreateWorkflowStepCommandOutput extends CreateWorkflowStepRespo
|
|
|
91
98
|
* @throws {@link ValidationException} (client fault)
|
|
92
99
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
93
100
|
*
|
|
101
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
94
103
|
*
|
|
95
104
|
*/
|
|
96
105
|
export declare class CreateWorkflowStepCommand extends $Command<CreateWorkflowStepCommandInput, CreateWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -39,6 +39,26 @@ export interface CreateWorkflowStepGroupCommandOutput extends CreateWorkflowStep
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateWorkflowStepGroupCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateWorkflowStepGroupResponse
|
|
43
|
+
* // workflowId: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // id: "STRING_VALUE",
|
|
46
|
+
* // description: "STRING_VALUE",
|
|
47
|
+
* // tools: [ // ToolsList
|
|
48
|
+
* // { // Tool
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // url: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // next: [ // StringList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // previous: [
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
42
62
|
* ```
|
|
43
63
|
*
|
|
44
64
|
* @param CreateWorkflowStepGroupCommandInput - {@link CreateWorkflowStepGroupCommandInput}
|
|
@@ -59,6 +79,8 @@ export interface CreateWorkflowStepGroupCommandOutput extends CreateWorkflowStep
|
|
|
59
79
|
* @throws {@link ValidationException} (client fault)
|
|
60
80
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
61
81
|
*
|
|
82
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
62
84
|
*
|
|
63
85
|
*/
|
|
64
86
|
export declare class CreateWorkflowStepGroupCommand extends $Command<CreateWorkflowStepGroupCommandInput, CreateWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface DeleteWorkflowCommandOutput extends DeleteMigrationWorkflowResp
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteWorkflowCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteMigrationWorkflowResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // status: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param DeleteWorkflowCommandInput - {@link DeleteWorkflowCommandInput}
|
|
@@ -55,6 +61,8 @@ export interface DeleteWorkflowCommandOutput extends DeleteMigrationWorkflowResp
|
|
|
55
61
|
* @throws {@link ValidationException} (client fault)
|
|
56
62
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
63
|
*
|
|
64
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
58
66
|
*
|
|
59
67
|
*/
|
|
60
68
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface DeleteWorkflowStepCommandOutput extends DeleteWorkflowStepRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteWorkflowStepCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param DeleteWorkflowStepCommandInput - {@link DeleteWorkflowStepCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteWorkflowStepCommandOutput extends DeleteWorkflowStepRespo
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteWorkflowStepCommand extends $Command<DeleteWorkflowStepCommandInput, DeleteWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteWorkflowStepGroupCommandOutput extends DeleteWorkflowStep
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteWorkflowStepGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteWorkflowStepGroupCommandInput - {@link DeleteWorkflowStepGroupCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteWorkflowStepGroupCommandOutput extends DeleteWorkflowStep
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteWorkflowStepGroupCommand extends $Command<DeleteWorkflowStepGroupCommandInput, DeleteWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -31,6 +31,27 @@ export interface GetTemplateCommandOutput extends GetMigrationWorkflowTemplateRe
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTemplateCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetMigrationWorkflowTemplateResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // name: "STRING_VALUE",
|
|
37
|
+
* // description: "STRING_VALUE",
|
|
38
|
+
* // inputs: [ // TemplateInputList
|
|
39
|
+
* // { // TemplateInput
|
|
40
|
+
* // inputName: "STRING_VALUE",
|
|
41
|
+
* // dataType: "STRING_VALUE",
|
|
42
|
+
* // required: true || false,
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // tools: [ // ToolsList
|
|
46
|
+
* // { // Tool
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // url: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
34
55
|
* ```
|
|
35
56
|
*
|
|
36
57
|
* @param GetTemplateCommandInput - {@link GetTemplateCommandInput}
|
|
@@ -51,6 +72,8 @@ export interface GetTemplateCommandOutput extends GetMigrationWorkflowTemplateRe
|
|
|
51
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
52
73
|
* <p>The request was denied due to request throttling.</p>
|
|
53
74
|
*
|
|
75
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
54
77
|
*
|
|
55
78
|
*/
|
|
56
79
|
export declare class GetTemplateCommand extends $Command<GetTemplateCommandInput, GetTemplateCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,42 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetTemplateStepCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetTemplateStepResponse
|
|
37
|
+
* // id: "STRING_VALUE",
|
|
38
|
+
* // stepGroupId: "STRING_VALUE",
|
|
39
|
+
* // templateId: "STRING_VALUE",
|
|
40
|
+
* // name: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // stepActionType: "STRING_VALUE",
|
|
43
|
+
* // creationTime: "STRING_VALUE",
|
|
44
|
+
* // previous: [ // StringList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // next: [
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // outputs: [ // StepOutputList
|
|
51
|
+
* // { // StepOutput
|
|
52
|
+
* // name: "STRING_VALUE",
|
|
53
|
+
* // dataType: "STRING_VALUE",
|
|
54
|
+
* // required: true || false,
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // stepAutomationConfiguration: { // StepAutomationConfiguration
|
|
58
|
+
* // scriptLocationS3Bucket: "STRING_VALUE",
|
|
59
|
+
* // scriptLocationS3Key: { // PlatformScriptKey
|
|
60
|
+
* // linux: "STRING_VALUE",
|
|
61
|
+
* // windows: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // command: { // PlatformCommand
|
|
64
|
+
* // linux: "STRING_VALUE",
|
|
65
|
+
* // windows: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // runEnvironment: "STRING_VALUE",
|
|
68
|
+
* // targetType: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
36
72
|
* ```
|
|
37
73
|
*
|
|
38
74
|
* @param GetTemplateStepCommandInput - {@link GetTemplateStepCommandInput}
|
|
@@ -56,6 +92,8 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
|
|
|
56
92
|
* @throws {@link ValidationException} (client fault)
|
|
57
93
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
58
94
|
*
|
|
95
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
59
97
|
*
|
|
60
98
|
*/
|
|
61
99
|
export declare class GetTemplateStepCommand extends $Command<GetTemplateStepCommandInput, GetTemplateStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -32,6 +32,28 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetTemplateStepGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetTemplateStepGroupResponse
|
|
36
|
+
* // templateId: "STRING_VALUE",
|
|
37
|
+
* // id: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // tools: [ // ToolsList
|
|
44
|
+
* // { // Tool
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // url: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // previous: [ // StringList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // next: [
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
35
57
|
* ```
|
|
36
58
|
*
|
|
37
59
|
* @param GetTemplateStepGroupCommandInput - {@link GetTemplateStepGroupCommandInput}
|
|
@@ -55,6 +77,8 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
|
|
|
55
77
|
* @throws {@link ValidationException} (client fault)
|
|
56
78
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
79
|
*
|
|
80
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
58
82
|
*
|
|
59
83
|
*/
|
|
60
84
|
export declare class GetTemplateStepGroupCommand extends $Command<GetTemplateStepGroupCommandInput, GetTemplateStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -31,6 +31,47 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetWorkflowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetMigrationWorkflowResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // description: "STRING_VALUE",
|
|
39
|
+
* // templateId: "STRING_VALUE",
|
|
40
|
+
* // adsApplicationConfigurationId: "STRING_VALUE",
|
|
41
|
+
* // adsApplicationName: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // statusMessage: "STRING_VALUE",
|
|
44
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // lastStartTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // lastStopTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // tools: [ // ToolsList
|
|
50
|
+
* // { // Tool
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // url: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // totalSteps: Number("int"),
|
|
56
|
+
* // completedSteps: Number("int"),
|
|
57
|
+
* // workflowInputs: { // StepInputParameters
|
|
58
|
+
* // "<keys>": { // StepInput Union: only one key present
|
|
59
|
+
* // integerValue: Number("int"),
|
|
60
|
+
* // stringValue: "STRING_VALUE",
|
|
61
|
+
* // listOfStringsValue: [ // StringList
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // mapOfStringValue: { // StringMap
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // tags: {
|
|
70
|
+
* // "<keys>": "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // workflowBucket: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
34
75
|
* ```
|
|
35
76
|
*
|
|
36
77
|
* @param GetWorkflowCommandInput - {@link GetWorkflowCommandInput}
|
|
@@ -54,6 +95,8 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
|
|
|
54
95
|
* @throws {@link ValidationException} (client fault)
|
|
55
96
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
97
|
*
|
|
98
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
57
100
|
*
|
|
58
101
|
*/
|
|
59
102
|
export declare class GetWorkflowCommand extends $Command<GetWorkflowCommandInput, GetWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,61 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetWorkflowStepCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetWorkflowStepResponse
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // stepGroupId: "STRING_VALUE",
|
|
39
|
+
* // workflowId: "STRING_VALUE",
|
|
40
|
+
* // stepId: "STRING_VALUE",
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // stepActionType: "STRING_VALUE",
|
|
43
|
+
* // owner: "STRING_VALUE",
|
|
44
|
+
* // workflowStepAutomationConfiguration: { // WorkflowStepAutomationConfiguration
|
|
45
|
+
* // scriptLocationS3Bucket: "STRING_VALUE",
|
|
46
|
+
* // scriptLocationS3Key: { // PlatformScriptKey
|
|
47
|
+
* // linux: "STRING_VALUE",
|
|
48
|
+
* // windows: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // command: { // PlatformCommand
|
|
51
|
+
* // linux: "STRING_VALUE",
|
|
52
|
+
* // windows: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // runEnvironment: "STRING_VALUE",
|
|
55
|
+
* // targetType: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // stepTarget: [ // StringList
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // outputs: [ // WorkflowStepOutputList
|
|
61
|
+
* // { // WorkflowStepOutput
|
|
62
|
+
* // name: "STRING_VALUE",
|
|
63
|
+
* // dataType: "STRING_VALUE",
|
|
64
|
+
* // required: true || false,
|
|
65
|
+
* // value: { // WorkflowStepOutputUnion Union: only one key present
|
|
66
|
+
* // integerValue: Number("int"),
|
|
67
|
+
* // stringValue: "STRING_VALUE",
|
|
68
|
+
* // listOfStringValue: [
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // previous: [
|
|
75
|
+
* // "STRING_VALUE",
|
|
76
|
+
* // ],
|
|
77
|
+
* // next: [
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // status: "STRING_VALUE",
|
|
81
|
+
* // statusMessage: "STRING_VALUE",
|
|
82
|
+
* // scriptOutputLocation: "STRING_VALUE",
|
|
83
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
84
|
+
* // lastStartTime: new Date("TIMESTAMP"),
|
|
85
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
86
|
+
* // noOfSrvCompleted: Number("int"),
|
|
87
|
+
* // noOfSrvFailed: Number("int"),
|
|
88
|
+
* // totalNoOfSrv: Number("int"),
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
36
91
|
* ```
|
|
37
92
|
*
|
|
38
93
|
* @param GetWorkflowStepCommandInput - {@link GetWorkflowStepCommandInput}
|
|
@@ -53,6 +108,8 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
|
|
|
53
108
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
109
|
* <p>The request was denied due to request throttling.</p>
|
|
55
110
|
*
|
|
111
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
56
113
|
*
|
|
57
114
|
*/
|
|
58
115
|
export declare class GetWorkflowStepCommand extends $Command<GetWorkflowStepCommandInput, GetWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -32,6 +32,30 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetWorkflowStepGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetWorkflowStepGroupResponse
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // workflowId: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // owner: "STRING_VALUE",
|
|
42
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // tools: [ // ToolsList
|
|
46
|
+
* // { // Tool
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // url: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // previous: [ // StringList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // next: [
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
35
59
|
* ```
|
|
36
60
|
*
|
|
37
61
|
* @param GetWorkflowStepGroupCommandInput - {@link GetWorkflowStepGroupCommandInput}
|
|
@@ -55,6 +79,8 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
|
|
|
55
79
|
* @throws {@link ValidationException} (client fault)
|
|
56
80
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
81
|
*
|
|
82
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
58
84
|
*
|
|
59
85
|
*/
|
|
60
86
|
export declare class GetWorkflowStepGroupCommand extends $Command<GetWorkflowStepGroupCommandInput, GetWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListPluginsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListPluginsResponse
|
|
36
|
+
* // nextToken: "STRING_VALUE",
|
|
37
|
+
* // plugins: [ // PluginSummaries
|
|
38
|
+
* // { // PluginSummary
|
|
39
|
+
* // pluginId: "STRING_VALUE",
|
|
40
|
+
* // hostname: "STRING_VALUE",
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // ipAddress: "STRING_VALUE",
|
|
43
|
+
* // version: "STRING_VALUE",
|
|
44
|
+
* // registeredTime: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListPluginsCommandInput - {@link ListPluginsCommandInput}
|
|
@@ -49,6 +63,8 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
|
|
|
49
63
|
* @throws {@link ValidationException} (client fault)
|
|
50
64
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
51
65
|
*
|
|
66
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
52
68
|
*
|
|
53
69
|
*/
|
|
54
70
|
export declare class ListPluginsCommand extends $Command<ListPluginsCommandInput, ListPluginsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -45,6 +51,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
45
51
|
* @throws {@link ValidationException} (client fault)
|
|
46
52
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
47
53
|
*
|
|
54
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
48
56
|
*
|
|
49
57
|
*/
|
|
50
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,22 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTemplateStepGroupsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTemplateStepGroupsResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // templateStepGroupSummary: [ // TemplateStepGroupSummaryList // required
|
|
39
|
+
* // { // TemplateStepGroupSummary
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // previous: [ // StringList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // next: [
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
36
52
|
* ```
|
|
37
53
|
*
|
|
38
54
|
* @param ListTemplateStepGroupsCommandInput - {@link ListTemplateStepGroupsCommandInput}
|
|
@@ -53,6 +69,8 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
|
|
|
53
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
70
|
* <p>The request was denied due to request throttling.</p>
|
|
55
71
|
*
|
|
72
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
56
74
|
*
|
|
57
75
|
*/
|
|
58
76
|
export declare class ListTemplateStepGroupsCommand extends $Command<ListTemplateStepGroupsCommandInput, ListTemplateStepGroupsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListTemplateStepsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListTemplateStepsResponse
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // templateStepSummaryList: [ // TemplateStepSummaryList
|
|
40
|
+
* // { // TemplateStepSummary
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // stepGroupId: "STRING_VALUE",
|
|
43
|
+
* // templateId: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // stepActionType: "STRING_VALUE",
|
|
46
|
+
* // targetType: "STRING_VALUE",
|
|
47
|
+
* // owner: "STRING_VALUE",
|
|
48
|
+
* // previous: [ // StringList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // next: [
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param ListTemplateStepsCommandInput - {@link ListTemplateStepsCommandInput}
|
|
@@ -57,6 +78,8 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
|
|
|
57
78
|
* @throws {@link ValidationException} (client fault)
|
|
58
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
59
80
|
*
|
|
81
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
60
83
|
*
|
|
61
84
|
*/
|
|
62
85
|
export declare class ListTemplateStepsCommand extends $Command<ListTemplateStepsCommandInput, ListTemplateStepsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTemplatesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListMigrationWorkflowTemplatesResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // templateSummary: [ // TemplateSummaryList // required
|
|
39
|
+
* // { // TemplateSummary
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // description: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListTemplatesCommandInput - {@link ListTemplatesCommandInput}
|
|
@@ -50,6 +62,8 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
|
|
|
50
62
|
* @throws {@link ThrottlingException} (client fault)
|
|
51
63
|
* <p>The request was denied due to request throttling.</p>
|
|
52
64
|
*
|
|
65
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
53
67
|
*
|
|
54
68
|
*/
|
|
55
69
|
export declare class ListTemplatesCommand extends $Command<ListTemplatesCommandInput, ListTemplatesCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,24 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListWorkflowStepGroupsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListWorkflowStepGroupsResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // workflowStepGroupsSummary: [ // WorkflowStepGroupsSummaryList // required
|
|
39
|
+
* // { // WorkflowStepGroupSummary
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // owner: "STRING_VALUE",
|
|
43
|
+
* // status: "STRING_VALUE",
|
|
44
|
+
* // previous: [ // StringList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // next: [
|
|
48
|
+
* // "STRING_VALUE",
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
36
54
|
* ```
|
|
37
55
|
*
|
|
38
56
|
* @param ListWorkflowStepGroupsCommandInput - {@link ListWorkflowStepGroupsCommandInput}
|
|
@@ -56,6 +74,8 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
|
|
|
56
74
|
* @throws {@link ValidationException} (client fault)
|
|
57
75
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
58
76
|
*
|
|
77
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
59
79
|
*
|
|
60
80
|
*/
|
|
61
81
|
export declare class ListWorkflowStepGroupsCommand extends $Command<ListWorkflowStepGroupsCommandInput, ListWorkflowStepGroupsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -34,6 +34,31 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListWorkflowStepsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListWorkflowStepsResponse
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // workflowStepsSummary: [ // WorkflowStepsSummaryList // required
|
|
40
|
+
* // { // WorkflowStepSummary
|
|
41
|
+
* // stepId: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // stepActionType: "STRING_VALUE",
|
|
44
|
+
* // owner: "STRING_VALUE",
|
|
45
|
+
* // previous: [ // StringList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // next: [
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // statusMessage: "STRING_VALUE",
|
|
53
|
+
* // noOfSrvCompleted: Number("int"),
|
|
54
|
+
* // noOfSrvFailed: Number("int"),
|
|
55
|
+
* // totalNoOfSrv: Number("int"),
|
|
56
|
+
* // description: "STRING_VALUE",
|
|
57
|
+
* // scriptLocation: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
37
62
|
* ```
|
|
38
63
|
*
|
|
39
64
|
* @param ListWorkflowStepsCommandInput - {@link ListWorkflowStepsCommandInput}
|
|
@@ -54,6 +79,8 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
|
|
|
54
79
|
* @throws {@link ValidationException} (client fault)
|
|
55
80
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
81
|
*
|
|
82
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
57
84
|
*
|
|
58
85
|
*/
|
|
59
86
|
export declare class ListWorkflowStepsCommand extends $Command<ListWorkflowStepsCommandInput, ListWorkflowStepsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -36,6 +36,24 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListWorkflowsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListMigrationWorkflowsResponse
|
|
40
|
+
* // nextToken: "STRING_VALUE",
|
|
41
|
+
* // migrationWorkflowSummary: [ // MigrationWorkflowSummaryList // required
|
|
42
|
+
* // { // MigrationWorkflowSummary
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // templateId: "STRING_VALUE",
|
|
46
|
+
* // adsApplicationConfigurationName: "STRING_VALUE",
|
|
47
|
+
* // status: "STRING_VALUE",
|
|
48
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // statusMessage: "STRING_VALUE",
|
|
51
|
+
* // completedSteps: Number("int"),
|
|
52
|
+
* // totalSteps: Number("int"),
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
39
57
|
* ```
|
|
40
58
|
*
|
|
41
59
|
* @param ListWorkflowsCommandInput - {@link ListWorkflowsCommandInput}
|
|
@@ -59,6 +77,8 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
|
|
|
59
77
|
* @throws {@link ValidationException} (client fault)
|
|
60
78
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
61
79
|
*
|
|
80
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
62
82
|
*
|
|
63
83
|
*/
|
|
64
84
|
export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RetryWorkflowStepCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // RetryWorkflowStepResponse
|
|
37
|
+
* // stepGroupId: "STRING_VALUE",
|
|
38
|
+
* // workflowId: "STRING_VALUE",
|
|
39
|
+
* // id: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param RetryWorkflowStepCommandInput - {@link RetryWorkflowStepCommandInput}
|
|
@@ -53,6 +60,8 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
|
|
|
53
60
|
* @throws {@link ThrottlingException} (client fault)
|
|
54
61
|
* <p>The request was denied due to request throttling.</p>
|
|
55
62
|
*
|
|
63
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
56
65
|
*
|
|
57
66
|
*/
|
|
58
67
|
export declare class RetryWorkflowStepCommand extends $Command<RetryWorkflowStepCommandInput, RetryWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -31,6 +31,14 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartWorkflowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartMigrationWorkflowResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // statusMessage: "STRING_VALUE",
|
|
39
|
+
* // lastStartTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
34
42
|
* ```
|
|
35
43
|
*
|
|
36
44
|
* @param StartWorkflowCommandInput - {@link StartWorkflowCommandInput}
|
|
@@ -54,6 +62,8 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
|
|
|
54
62
|
* @throws {@link ValidationException} (client fault)
|
|
55
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
64
|
*
|
|
65
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
57
67
|
*
|
|
58
68
|
*/
|
|
59
69
|
export declare class StartWorkflowCommand extends $Command<StartWorkflowCommandInput, StartWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -31,6 +31,14 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopWorkflowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopMigrationWorkflowResponse
|
|
35
|
+
* // id: "STRING_VALUE",
|
|
36
|
+
* // arn: "STRING_VALUE",
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // statusMessage: "STRING_VALUE",
|
|
39
|
+
* // lastStopTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
34
42
|
* ```
|
|
35
43
|
*
|
|
36
44
|
* @param StopWorkflowCommandInput - {@link StopWorkflowCommandInput}
|
|
@@ -54,6 +62,8 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
|
|
|
54
62
|
* @throws {@link ValidationException} (client fault)
|
|
55
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
64
|
*
|
|
65
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
57
67
|
*
|
|
58
68
|
*/
|
|
59
69
|
export declare class StopWorkflowCommand extends $Command<StopWorkflowCommandInput, StopWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -48,6 +48,36 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new UpdateWorkflowCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // UpdateMigrationWorkflowResponse
|
|
52
|
+
* // id: "STRING_VALUE",
|
|
53
|
+
* // arn: "STRING_VALUE",
|
|
54
|
+
* // name: "STRING_VALUE",
|
|
55
|
+
* // description: "STRING_VALUE",
|
|
56
|
+
* // templateId: "STRING_VALUE",
|
|
57
|
+
* // adsApplicationConfigurationId: "STRING_VALUE",
|
|
58
|
+
* // workflowInputs: { // StepInputParameters
|
|
59
|
+
* // "<keys>": { // StepInput Union: only one key present
|
|
60
|
+
* // integerValue: Number("int"),
|
|
61
|
+
* // stringValue: "STRING_VALUE",
|
|
62
|
+
* // listOfStringsValue: [ // StringList
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // mapOfStringValue: { // StringMap
|
|
66
|
+
* // "<keys>": "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // stepTargets: [
|
|
71
|
+
* // "STRING_VALUE",
|
|
72
|
+
* // ],
|
|
73
|
+
* // status: "STRING_VALUE",
|
|
74
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
75
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
76
|
+
* // tags: {
|
|
77
|
+
* // "<keys>": "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
51
81
|
* ```
|
|
52
82
|
*
|
|
53
83
|
* @param UpdateWorkflowCommandInput - {@link UpdateWorkflowCommandInput}
|
|
@@ -71,6 +101,8 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
|
|
|
71
101
|
* @throws {@link ValidationException} (client fault)
|
|
72
102
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
73
103
|
*
|
|
104
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
105
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
74
106
|
*
|
|
75
107
|
*/
|
|
76
108
|
export declare class UpdateWorkflowCommand extends $Command<UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -73,6 +73,13 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
|
|
|
73
73
|
* };
|
|
74
74
|
* const command = new UpdateWorkflowStepCommand(input);
|
|
75
75
|
* const response = await client.send(command);
|
|
76
|
+
* // { // UpdateWorkflowStepResponse
|
|
77
|
+
* // id: "STRING_VALUE",
|
|
78
|
+
* // stepGroupId: "STRING_VALUE",
|
|
79
|
+
* // workflowId: "STRING_VALUE",
|
|
80
|
+
* // name: "STRING_VALUE",
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
76
83
|
* ```
|
|
77
84
|
*
|
|
78
85
|
* @param UpdateWorkflowStepCommandInput - {@link UpdateWorkflowStepCommandInput}
|
|
@@ -93,6 +100,8 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
|
|
|
93
100
|
* @throws {@link ValidationException} (client fault)
|
|
94
101
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
95
102
|
*
|
|
103
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
96
105
|
*
|
|
97
106
|
*/
|
|
98
107
|
export declare class UpdateWorkflowStepCommand extends $Command<UpdateWorkflowStepCommandInput, UpdateWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
@@ -40,6 +40,26 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new UpdateWorkflowStepGroupCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // UpdateWorkflowStepGroupResponse
|
|
44
|
+
* // workflowId: "STRING_VALUE",
|
|
45
|
+
* // name: "STRING_VALUE",
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // tools: [ // ToolsList
|
|
49
|
+
* // { // Tool
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // url: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // next: [ // StringList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // previous: [
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
43
63
|
* ```
|
|
44
64
|
*
|
|
45
65
|
* @param UpdateWorkflowStepGroupCommandInput - {@link UpdateWorkflowStepGroupCommandInput}
|
|
@@ -63,6 +83,8 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
|
|
|
63
83
|
* @throws {@link ValidationException} (client fault)
|
|
64
84
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
85
|
*
|
|
86
|
+
* @throws {@link MigrationHubOrchestratorServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from MigrationHubOrchestrator service.</p>
|
|
66
88
|
*
|
|
67
89
|
*/
|
|
68
90
|
export declare class UpdateWorkflowStepGroupCommand extends $Command<UpdateWorkflowStepGroupCommandInput, UpdateWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhuborchestrator",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|