@aws-sdk/client-migrationhuborchestrator 3.296.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.
Files changed (41) hide show
  1. package/dist-types/MigrationHubOrchestrator.d.ts +29 -0
  2. package/dist-types/MigrationHubOrchestratorClient.d.ts +24 -4
  3. package/dist-types/commands/CreateWorkflowCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateWorkflowStepCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteWorkflowCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +16 -0
  9. package/dist-types/commands/GetTemplateCommand.d.ts +16 -0
  10. package/dist-types/commands/GetTemplateStepCommand.d.ts +16 -0
  11. package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +16 -0
  12. package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
  13. package/dist-types/commands/GetWorkflowStepCommand.d.ts +16 -0
  14. package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +16 -0
  15. package/dist-types/commands/ListPluginsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  17. package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListTemplateStepsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListTemplatesCommand.d.ts +16 -0
  20. package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListWorkflowStepsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListWorkflowsCommand.d.ts +16 -0
  23. package/dist-types/commands/RetryWorkflowStepCommand.d.ts +16 -0
  24. package/dist-types/commands/StartWorkflowCommand.d.ts +16 -0
  25. package/dist-types/commands/StopWorkflowCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateWorkflowCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +16 -0
  31. package/dist-types/models/MigrationHubOrchestratorServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +226 -0
  33. package/dist-types/pagination/Interfaces.d.ts +3 -0
  34. package/dist-types/pagination/ListPluginsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListTemplateStepGroupsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListTemplateStepsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListTemplatesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListWorkflowStepGroupsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListWorkflowStepsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListWorkflowsPaginator.d.ts +3 -0
  41. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
5
5
  import { GetTemplateStepRequest, GetTemplateStepResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetTemplateStepCommand}.
8
10
  */
9
11
  export interface GetTemplateStepCommandInput extends GetTemplateStepRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetTemplateStepCommand}.
13
17
  */
14
18
  export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Get a specific step in a template.</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 GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetTemplateStepCommandInput - {@link GetTemplateStepCommandInput}
34
+ * @returns {@link GetTemplateStepCommandOutput}
28
35
  * @see {@link GetTemplateStepCommandInput} for command's `input` shape.
29
36
  * @see {@link GetTemplateStepCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
49
56
  export declare class GetTemplateStepCommand extends $Command<GetTemplateStepCommandInput, GetTemplateStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: GetTemplateStepCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetTemplateStepCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemplateStepCommandInput, GetTemplateStepCommandOutput>;
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 { GetTemplateStepGroupRequest, GetTemplateStepGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetTemplateStepGroupCommand}.
8
10
  */
9
11
  export interface GetTemplateStepGroupCommandInput extends GetTemplateStepGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetTemplateStepGroupCommand}.
13
17
  */
14
18
  export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Get a step group in a template.</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 GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetTemplateStepGroupCommandInput - {@link GetTemplateStepGroupCommandInput}
34
+ * @returns {@link GetTemplateStepGroupCommandOutput}
28
35
  * @see {@link GetTemplateStepGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link GetTemplateStepGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
49
56
  export declare class GetTemplateStepGroupCommand extends $Command<GetTemplateStepGroupCommandInput, GetTemplateStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: GetTemplateStepGroupCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetTemplateStepGroupCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemplateStepGroupCommandInput, GetTemplateStepGroupCommandOutput>;
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 { GetMigrationWorkflowRequest, GetMigrationWorkflowResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkflowCommand}.
8
10
  */
9
11
  export interface GetWorkflowCommandInput extends GetMigrationWorkflowRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkflowCommand}.
13
17
  */
14
18
  export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Get 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 GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWorkflowCommandInput - {@link GetWorkflowCommandInput}
34
+ * @returns {@link GetWorkflowCommandOutput}
28
35
  * @see {@link GetWorkflowCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWorkflowCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
49
56
  export declare class GetWorkflowCommand extends $Command<GetWorkflowCommandInput, GetWorkflowCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: GetWorkflowCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetWorkflowCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkflowCommandInput, GetWorkflowCommandOutput>;
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 { GetWorkflowStepRequest, GetWorkflowStepResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkflowStepCommand}.
8
10
  */
9
11
  export interface GetWorkflowStepCommandInput extends GetWorkflowStepRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkflowStepCommand}.
13
17
  */
14
18
  export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Get a step in the 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 GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWorkflowStepCommandInput - {@link GetWorkflowStepCommandInput}
34
+ * @returns {@link GetWorkflowStepCommandOutput}
28
35
  * @see {@link GetWorkflowStepCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWorkflowStepCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
46
53
  export declare class GetWorkflowStepCommand extends $Command<GetWorkflowStepCommandInput, GetWorkflowStepCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
47
54
  readonly input: GetWorkflowStepCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetWorkflowStepCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkflowStepCommandInput, GetWorkflowStepCommandOutput>;
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 { GetWorkflowStepGroupRequest, GetWorkflowStepGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkflowStepGroupCommand}.
8
10
  */
9
11
  export interface GetWorkflowStepGroupCommandInput extends GetWorkflowStepGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkflowStepGroupCommand}.
13
17
  */
14
18
  export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Get the step group of 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 GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWorkflowStepGroupCommandInput - {@link GetWorkflowStepGroupCommandInput}
34
+ * @returns {@link GetWorkflowStepGroupCommandOutput}
28
35
  * @see {@link GetWorkflowStepGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWorkflowStepGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
49
56
  export declare class GetWorkflowStepGroupCommand extends $Command<GetWorkflowStepGroupCommandInput, GetWorkflowStepGroupCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: GetWorkflowStepGroupCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetWorkflowStepGroupCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkflowStepGroupCommandInput, GetWorkflowStepGroupCommandOutput>;
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 { ListPluginsRequest, ListPluginsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPluginsCommand}.
8
10
  */
9
11
  export interface ListPluginsCommandInput extends ListPluginsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPluginsCommand}.
13
17
  */
14
18
  export interface ListPluginsCommandOutput extends ListPluginsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List AWS Migration Hub Orchestrator plugins.</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 ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPluginsCommandInput - {@link ListPluginsCommandInput}
34
+ * @returns {@link ListPluginsCommandOutput}
28
35
  * @see {@link ListPluginsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPluginsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
43
50
  export declare class ListPluginsCommand extends $Command<ListPluginsCommandInput, ListPluginsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
44
51
  readonly input: ListPluginsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListPluginsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPluginsCommandInput, ListPluginsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the tags added to 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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
40
47
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
41
48
  readonly input: ListTagsForResourceCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListTagsForResourceCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListTemplateStepGroupsRequest, ListTemplateStepGroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTemplateStepGroupsCommand}.
8
10
  */
9
11
  export interface ListTemplateStepGroupsCommandInput extends ListTemplateStepGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTemplateStepGroupsCommand}.
13
17
  */
14
18
  export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the step groups in a template.</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 ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTemplateStepGroupsCommandInput - {@link ListTemplateStepGroupsCommandInput}
34
+ * @returns {@link ListTemplateStepGroupsCommandOutput}
28
35
  * @see {@link ListTemplateStepGroupsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTemplateStepGroupsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
46
53
  export declare class ListTemplateStepGroupsCommand extends $Command<ListTemplateStepGroupsCommandInput, ListTemplateStepGroupsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
47
54
  readonly input: ListTemplateStepGroupsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListTemplateStepGroupsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTemplateStepGroupsCommandInput, ListTemplateStepGroupsCommandOutput>;
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 { ListTemplateStepsRequest, ListTemplateStepsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTemplateStepsCommand}.
8
10
  */
9
11
  export interface ListTemplateStepsCommandInput extends ListTemplateStepsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTemplateStepsCommand}.
13
17
  */
14
18
  export interface ListTemplateStepsCommandOutput extends ListTemplateStepsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the steps in a template.</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 ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTemplateStepsCommandInput - {@link ListTemplateStepsCommandInput}
34
+ * @returns {@link ListTemplateStepsCommandOutput}
28
35
  * @see {@link ListTemplateStepsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTemplateStepsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
49
56
  export declare class ListTemplateStepsCommand extends $Command<ListTemplateStepsCommandInput, ListTemplateStepsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: ListTemplateStepsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListTemplateStepsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTemplateStepsCommandInput, ListTemplateStepsCommandOutput>;
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 { ListMigrationWorkflowTemplatesRequest, ListMigrationWorkflowTemplatesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTemplatesCommand}.
8
10
  */
9
11
  export interface ListTemplatesCommandInput extends ListMigrationWorkflowTemplatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTemplatesCommand}.
13
17
  */
14
18
  export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the templates available in Migration Hub Orchestrator to create 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 ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTemplatesCommandInput - {@link ListTemplatesCommandInput}
34
+ * @returns {@link ListTemplatesCommandOutput}
28
35
  * @see {@link ListTemplatesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTemplatesCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
43
50
  export declare class ListTemplatesCommand extends $Command<ListTemplatesCommandInput, ListTemplatesCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
44
51
  readonly input: ListTemplatesCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListTemplatesCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTemplatesCommandInput, ListTemplatesCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubOrchestratorClient";
5
5
  import { ListWorkflowStepGroupsRequest, ListWorkflowStepGroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkflowStepGroupsCommand}.
8
10
  */
9
11
  export interface ListWorkflowStepGroupsCommandInput extends ListWorkflowStepGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkflowStepGroupsCommand}.
13
17
  */
14
18
  export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the step groups 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 ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkflowStepGroupsCommandInput - {@link ListWorkflowStepGroupsCommandInput}
34
+ * @returns {@link ListWorkflowStepGroupsCommandOutput}
28
35
  * @see {@link ListWorkflowStepGroupsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkflowStepGroupsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
49
56
  export declare class ListWorkflowStepGroupsCommand extends $Command<ListWorkflowStepGroupsCommandInput, ListWorkflowStepGroupsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: ListWorkflowStepGroupsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListWorkflowStepGroupsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkflowStepGroupsCommandInput, ListWorkflowStepGroupsCommandOutput>;
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 { ListWorkflowStepsRequest, ListWorkflowStepsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkflowStepsCommand}.
8
10
  */
9
11
  export interface ListWorkflowStepsCommandInput extends ListWorkflowStepsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkflowStepsCommand}.
13
17
  */
14
18
  export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the steps in a 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 ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkflowStepsCommandInput - {@link ListWorkflowStepsCommandInput}
34
+ * @returns {@link ListWorkflowStepsCommandOutput}
28
35
  * @see {@link ListWorkflowStepsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkflowStepsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
46
53
  export declare class ListWorkflowStepsCommand extends $Command<ListWorkflowStepsCommandInput, ListWorkflowStepsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
47
54
  readonly input: ListWorkflowStepsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListWorkflowStepsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkflowStepsCommandInput, ListWorkflowStepsCommandOutput>;
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 { ListMigrationWorkflowsRequest, ListMigrationWorkflowsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkflowsCommand}.
8
10
  */
9
11
  export interface ListWorkflowsCommandInput extends ListMigrationWorkflowsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkflowsCommand}.
13
17
  */
14
18
  export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the migration workflows.</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 ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkflowsCommandInput - {@link ListWorkflowsCommandInput}
34
+ * @returns {@link ListWorkflowsCommandOutput}
28
35
  * @see {@link ListWorkflowsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkflowsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MigrationHubOrchestratorClientResolvedConfig | config} for MigrationHubOrchestratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
49
56
  export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, MigrationHubOrchestratorClientResolvedConfig> {
50
57
  readonly input: ListWorkflowsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListWorkflowsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MigrationHubOrchestratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkflowsCommandInput, ListWorkflowsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }