@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { RetryWorkflowStepRequest, RetryWorkflowStepResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RetryWorkflowStepCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RetryWorkflowStepCommandInput extends RetryWorkflowStepRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RetryWorkflowStepCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retry a failed step in a migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RetryWorkflowStepCommandInput - {@link RetryWorkflowStepCommandInput}
|
|
34
|
+
* @returns {@link RetryWorkflowStepCommandOutput}
|
|
28
35
|
* @see {@link RetryWorkflowStepCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RetryWorkflowStepCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
|
|
|
46
53
|
export declare class RetryWorkflowStepCommand extends $Command<RetryWorkflowStepCommandInput, RetryWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
47
54
|
readonly input: RetryWorkflowStepCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: RetryWorkflowStepCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryWorkflowStepCommandInput, RetryWorkflowStepCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { StartMigrationWorkflowRequest, StartMigrationWorkflowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartWorkflowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartWorkflowCommandInput extends StartMigrationWorkflowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartWorkflowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartWorkflowCommandOutput extends StartMigrationWorkflowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Start a migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartWorkflowCommandInput - {@link StartWorkflowCommandInput}
|
|
34
|
+
* @returns {@link StartWorkflowCommandOutput}
|
|
28
35
|
* @see {@link StartWorkflowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartWorkflowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
|
|
|
49
56
|
export declare class StartWorkflowCommand extends $Command<StartWorkflowCommandInput, StartWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
50
57
|
readonly input: StartWorkflowCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: StartWorkflowCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartWorkflowCommandInput, StartWorkflowCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { StopMigrationWorkflowRequest, StopMigrationWorkflowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopWorkflowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopWorkflowCommandInput extends StopMigrationWorkflowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopWorkflowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stop an ongoing migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopWorkflowCommandInput - {@link StopWorkflowCommandInput}
|
|
34
|
+
* @returns {@link StopWorkflowCommandOutput}
|
|
28
35
|
* @see {@link StopWorkflowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopWorkflowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
|
|
|
49
56
|
export declare class StopWorkflowCommand extends $Command<StopWorkflowCommandInput, StopWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
50
57
|
readonly input: StopWorkflowCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: StopWorkflowCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopWorkflowCommandInput, StopWorkflowCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Tag a resource by specifying its Amazon Resource Name (ARN).</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
40
47
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
41
48
|
readonly input: TagResourceCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: TagResourceCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the tags for a resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
40
47
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
41
48
|
readonly input: UntagResourceCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UntagResourceCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { UpdateMigrationWorkflowRequest, UpdateMigrationWorkflowResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateWorkflowCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateWorkflowCommandInput extends UpdateMigrationWorkflowRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateWorkflowCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update a migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateWorkflowCommandInput - {@link UpdateWorkflowCommandInput}
|
|
34
|
+
* @returns {@link UpdateWorkflowCommandOutput}
|
|
28
35
|
* @see {@link UpdateWorkflowCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateWorkflowCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
|
|
|
49
56
|
export declare class UpdateWorkflowCommand extends $Command<UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateWorkflowCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateWorkflowCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { UpdateWorkflowStepRequest, UpdateWorkflowStepResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateWorkflowStepCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateWorkflowStepCommandInput extends UpdateWorkflowStepRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateWorkflowStepCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update a step in a migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateWorkflowStepCommandInput - {@link UpdateWorkflowStepCommandInput}
|
|
34
|
+
* @returns {@link UpdateWorkflowStepCommandOutput}
|
|
28
35
|
* @see {@link UpdateWorkflowStepCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateWorkflowStepCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
|
|
|
46
53
|
export declare class UpdateWorkflowStepCommand extends $Command<UpdateWorkflowStepCommandInput, UpdateWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateWorkflowStepCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateWorkflowStepCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkflowStepCommandInput, UpdateWorkflowStepCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
|
|
5
5
|
import { UpdateWorkflowStepGroupRequest, UpdateWorkflowStepGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateWorkflowStepGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateWorkflowStepGroupCommandInput extends UpdateWorkflowStepGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateWorkflowStepGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStepGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update the step group in a migration workflow.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateWorkflowStepGroupCommandInput - {@link UpdateWorkflowStepGroupCommandInput}
|
|
34
|
+
* @returns {@link UpdateWorkflowStepGroupCommandOutput}
|
|
28
35
|
* @see {@link UpdateWorkflowStepGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateWorkflowStepGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
|
|
|
49
56
|
export declare class UpdateWorkflowStepGroupCommand extends $Command<UpdateWorkflowStepGroupCommandInput, UpdateWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateWorkflowStepGroupCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateWorkflowStepGroupCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkflowStepGroupCommandInput, UpdateWorkflowStepGroupCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from MigrationHubOrchestrator service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class MigrationHubOrchestratorServiceException extends __ServiceException {
|