cdk-comprehend-s3olap 2.0.109 → 2.0.111

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 (50) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +46 -2
  8. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +39 -9
  9. package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +404 -78
  10. package/node_modules/aws-sdk/apis/fsx-2018-03-01.paginators.json +5 -0
  11. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  12. package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.examples.json +5 -0
  13. package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.min.json +1461 -0
  14. package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.paginators.json +46 -0
  15. package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.waiters2.json +5 -0
  16. package/node_modules/aws-sdk/apis/proton-2020-07-20.min.json +3 -0
  17. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +811 -777
  18. package/node_modules/aws-sdk/apis/translate-2017-07-01.min.json +119 -41
  19. package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +35 -34
  20. package/node_modules/aws-sdk/clients/acm.d.ts +94 -17
  21. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  22. package/node_modules/aws-sdk/clients/all.js +2 -1
  23. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  24. package/node_modules/aws-sdk/clients/emrserverless.d.ts +25 -0
  25. package/node_modules/aws-sdk/clients/fsx.d.ts +406 -30
  26. package/node_modules/aws-sdk/clients/migrationhuborchestrator.d.ts +1840 -0
  27. package/node_modules/aws-sdk/clients/migrationhuborchestrator.js +19 -0
  28. package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
  29. package/node_modules/aws-sdk/clients/proton.d.ts +132 -127
  30. package/node_modules/aws-sdk/clients/sagemaker.d.ts +45 -2
  31. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +44 -44
  32. package/node_modules/aws-sdk/clients/translate.d.ts +53 -0
  33. package/node_modules/aws-sdk/clients/workspaces.d.ts +6 -1
  34. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +6 -9
  35. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +60 -19
  36. package/node_modules/aws-sdk/dist/aws-sdk.js +175 -53
  37. package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
  38. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/lib/event_listeners.js +4 -6
  41. package/node_modules/aws-sdk/lib/model/api.js +0 -1
  42. package/node_modules/aws-sdk/package.json +1 -1
  43. package/node_modules/esbuild/bin/esbuild +1 -1
  44. package/node_modules/esbuild/install.js +4 -4
  45. package/node_modules/esbuild/lib/main.d.ts +7 -2
  46. package/node_modules/esbuild/lib/main.js +8 -8
  47. package/node_modules/esbuild/package.json +23 -23
  48. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  49. package/node_modules/esbuild-linux-64/package.json +1 -1
  50. package/package.json +7 -7
@@ -0,0 +1,1840 @@
1
+ import {Request} from '../lib/request';
2
+ import {Response} from '../lib/response';
3
+ import {AWSError} from '../lib/error';
4
+ import {Service} from '../lib/service';
5
+ import {ServiceConfigurationOptions} from '../lib/service';
6
+ import {ConfigBase as Config} from '../lib/config-base';
7
+ interface Blob {}
8
+ declare class MigrationHubOrchestrator extends Service {
9
+ /**
10
+ * Constructs a service object. This object has one method for each API operation.
11
+ */
12
+ constructor(options?: MigrationHubOrchestrator.Types.ClientConfiguration)
13
+ config: Config & MigrationHubOrchestrator.Types.ClientConfiguration;
14
+ /**
15
+ * Create a workflow to orchestrate your migrations.
16
+ */
17
+ createWorkflow(params: MigrationHubOrchestrator.Types.CreateMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.CreateMigrationWorkflowResponse, AWSError>;
18
+ /**
19
+ * Create a workflow to orchestrate your migrations.
20
+ */
21
+ createWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.CreateMigrationWorkflowResponse, AWSError>;
22
+ /**
23
+ * Create a step in the migration workflow.
24
+ */
25
+ createWorkflowStep(params: MigrationHubOrchestrator.Types.CreateWorkflowStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.CreateWorkflowStepResponse, AWSError>;
26
+ /**
27
+ * Create a step in the migration workflow.
28
+ */
29
+ createWorkflowStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.CreateWorkflowStepResponse, AWSError>;
30
+ /**
31
+ * Create a step group in a migration workflow.
32
+ */
33
+ createWorkflowStepGroup(params: MigrationHubOrchestrator.Types.CreateWorkflowStepGroupRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.CreateWorkflowStepGroupResponse, AWSError>;
34
+ /**
35
+ * Create a step group in a migration workflow.
36
+ */
37
+ createWorkflowStepGroup(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.CreateWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.CreateWorkflowStepGroupResponse, AWSError>;
38
+ /**
39
+ * Delete a migration workflow. You must pause a running workflow in Migration Hub Orchestrator console to delete it.
40
+ */
41
+ deleteWorkflow(params: MigrationHubOrchestrator.Types.DeleteMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteMigrationWorkflowResponse, AWSError>;
42
+ /**
43
+ * Delete a migration workflow. You must pause a running workflow in Migration Hub Orchestrator console to delete it.
44
+ */
45
+ deleteWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteMigrationWorkflowResponse, AWSError>;
46
+ /**
47
+ * Delete a step in a migration workflow. Pause the workflow to delete a running step.
48
+ */
49
+ deleteWorkflowStep(params: MigrationHubOrchestrator.Types.DeleteWorkflowStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteWorkflowStepResponse, AWSError>;
50
+ /**
51
+ * Delete a step in a migration workflow. Pause the workflow to delete a running step.
52
+ */
53
+ deleteWorkflowStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteWorkflowStepResponse, AWSError>;
54
+ /**
55
+ * Delete a step group in a migration workflow.
56
+ */
57
+ deleteWorkflowStepGroup(params: MigrationHubOrchestrator.Types.DeleteWorkflowStepGroupRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteWorkflowStepGroupResponse, AWSError>;
58
+ /**
59
+ * Delete a step group in a migration workflow.
60
+ */
61
+ deleteWorkflowStepGroup(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.DeleteWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.DeleteWorkflowStepGroupResponse, AWSError>;
62
+ /**
63
+ * Get the template you want to use for creating a migration workflow.
64
+ */
65
+ getTemplate(params: MigrationHubOrchestrator.Types.GetMigrationWorkflowTemplateRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetMigrationWorkflowTemplateResponse) => void): Request<MigrationHubOrchestrator.Types.GetMigrationWorkflowTemplateResponse, AWSError>;
66
+ /**
67
+ * Get the template you want to use for creating a migration workflow.
68
+ */
69
+ getTemplate(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetMigrationWorkflowTemplateResponse) => void): Request<MigrationHubOrchestrator.Types.GetMigrationWorkflowTemplateResponse, AWSError>;
70
+ /**
71
+ * Get a specific step in a template.
72
+ */
73
+ getTemplateStep(params: MigrationHubOrchestrator.Types.GetTemplateStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetTemplateStepResponse) => void): Request<MigrationHubOrchestrator.Types.GetTemplateStepResponse, AWSError>;
74
+ /**
75
+ * Get a specific step in a template.
76
+ */
77
+ getTemplateStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetTemplateStepResponse) => void): Request<MigrationHubOrchestrator.Types.GetTemplateStepResponse, AWSError>;
78
+ /**
79
+ * Get a step group in a template.
80
+ */
81
+ getTemplateStepGroup(params: MigrationHubOrchestrator.Types.GetTemplateStepGroupRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetTemplateStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.GetTemplateStepGroupResponse, AWSError>;
82
+ /**
83
+ * Get a step group in a template.
84
+ */
85
+ getTemplateStepGroup(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetTemplateStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.GetTemplateStepGroupResponse, AWSError>;
86
+ /**
87
+ * Get migration workflow.
88
+ */
89
+ getWorkflow(params: MigrationHubOrchestrator.Types.GetMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.GetMigrationWorkflowResponse, AWSError>;
90
+ /**
91
+ * Get migration workflow.
92
+ */
93
+ getWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.GetMigrationWorkflowResponse, AWSError>;
94
+ /**
95
+ * Get a step in the migration workflow.
96
+ */
97
+ getWorkflowStep(params: MigrationHubOrchestrator.Types.GetWorkflowStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.GetWorkflowStepResponse, AWSError>;
98
+ /**
99
+ * Get a step in the migration workflow.
100
+ */
101
+ getWorkflowStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.GetWorkflowStepResponse, AWSError>;
102
+ /**
103
+ * Get the step group of a migration workflow.
104
+ */
105
+ getWorkflowStepGroup(params: MigrationHubOrchestrator.Types.GetWorkflowStepGroupRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.GetWorkflowStepGroupResponse, AWSError>;
106
+ /**
107
+ * Get the step group of a migration workflow.
108
+ */
109
+ getWorkflowStepGroup(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.GetWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.GetWorkflowStepGroupResponse, AWSError>;
110
+ /**
111
+ * List AWS Migration Hub Orchestrator plugins.
112
+ */
113
+ listPlugins(params: MigrationHubOrchestrator.Types.ListPluginsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListPluginsResponse) => void): Request<MigrationHubOrchestrator.Types.ListPluginsResponse, AWSError>;
114
+ /**
115
+ * List AWS Migration Hub Orchestrator plugins.
116
+ */
117
+ listPlugins(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListPluginsResponse) => void): Request<MigrationHubOrchestrator.Types.ListPluginsResponse, AWSError>;
118
+ /**
119
+ * List the tags added to a resource.
120
+ */
121
+ listTagsForResource(params: MigrationHubOrchestrator.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTagsForResourceResponse) => void): Request<MigrationHubOrchestrator.Types.ListTagsForResourceResponse, AWSError>;
122
+ /**
123
+ * List the tags added to a resource.
124
+ */
125
+ listTagsForResource(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTagsForResourceResponse) => void): Request<MigrationHubOrchestrator.Types.ListTagsForResourceResponse, AWSError>;
126
+ /**
127
+ * List the step groups in a template.
128
+ */
129
+ listTemplateStepGroups(params: MigrationHubOrchestrator.Types.ListTemplateStepGroupsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTemplateStepGroupsResponse) => void): Request<MigrationHubOrchestrator.Types.ListTemplateStepGroupsResponse, AWSError>;
130
+ /**
131
+ * List the step groups in a template.
132
+ */
133
+ listTemplateStepGroups(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTemplateStepGroupsResponse) => void): Request<MigrationHubOrchestrator.Types.ListTemplateStepGroupsResponse, AWSError>;
134
+ /**
135
+ * List the steps in a template.
136
+ */
137
+ listTemplateSteps(params: MigrationHubOrchestrator.Types.ListTemplateStepsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTemplateStepsResponse) => void): Request<MigrationHubOrchestrator.Types.ListTemplateStepsResponse, AWSError>;
138
+ /**
139
+ * List the steps in a template.
140
+ */
141
+ listTemplateSteps(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListTemplateStepsResponse) => void): Request<MigrationHubOrchestrator.Types.ListTemplateStepsResponse, AWSError>;
142
+ /**
143
+ * List the templates available in Migration Hub Orchestrator to create a migration workflow.
144
+ */
145
+ listTemplates(params: MigrationHubOrchestrator.Types.ListMigrationWorkflowTemplatesRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListMigrationWorkflowTemplatesResponse) => void): Request<MigrationHubOrchestrator.Types.ListMigrationWorkflowTemplatesResponse, AWSError>;
146
+ /**
147
+ * List the templates available in Migration Hub Orchestrator to create a migration workflow.
148
+ */
149
+ listTemplates(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListMigrationWorkflowTemplatesResponse) => void): Request<MigrationHubOrchestrator.Types.ListMigrationWorkflowTemplatesResponse, AWSError>;
150
+ /**
151
+ * List the step groups in a migration workflow.
152
+ */
153
+ listWorkflowStepGroups(params: MigrationHubOrchestrator.Types.ListWorkflowStepGroupsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListWorkflowStepGroupsResponse) => void): Request<MigrationHubOrchestrator.Types.ListWorkflowStepGroupsResponse, AWSError>;
154
+ /**
155
+ * List the step groups in a migration workflow.
156
+ */
157
+ listWorkflowStepGroups(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListWorkflowStepGroupsResponse) => void): Request<MigrationHubOrchestrator.Types.ListWorkflowStepGroupsResponse, AWSError>;
158
+ /**
159
+ * List the steps in a workflow.
160
+ */
161
+ listWorkflowSteps(params: MigrationHubOrchestrator.Types.ListWorkflowStepsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListWorkflowStepsResponse) => void): Request<MigrationHubOrchestrator.Types.ListWorkflowStepsResponse, AWSError>;
162
+ /**
163
+ * List the steps in a workflow.
164
+ */
165
+ listWorkflowSteps(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListWorkflowStepsResponse) => void): Request<MigrationHubOrchestrator.Types.ListWorkflowStepsResponse, AWSError>;
166
+ /**
167
+ * List the migration workflows.
168
+ */
169
+ listWorkflows(params: MigrationHubOrchestrator.Types.ListMigrationWorkflowsRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListMigrationWorkflowsResponse) => void): Request<MigrationHubOrchestrator.Types.ListMigrationWorkflowsResponse, AWSError>;
170
+ /**
171
+ * List the migration workflows.
172
+ */
173
+ listWorkflows(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.ListMigrationWorkflowsResponse) => void): Request<MigrationHubOrchestrator.Types.ListMigrationWorkflowsResponse, AWSError>;
174
+ /**
175
+ * Retry a failed step in a migration workflow.
176
+ */
177
+ retryWorkflowStep(params: MigrationHubOrchestrator.Types.RetryWorkflowStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.RetryWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.RetryWorkflowStepResponse, AWSError>;
178
+ /**
179
+ * Retry a failed step in a migration workflow.
180
+ */
181
+ retryWorkflowStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.RetryWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.RetryWorkflowStepResponse, AWSError>;
182
+ /**
183
+ * Start a migration workflow.
184
+ */
185
+ startWorkflow(params: MigrationHubOrchestrator.Types.StartMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.StartMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.StartMigrationWorkflowResponse, AWSError>;
186
+ /**
187
+ * Start a migration workflow.
188
+ */
189
+ startWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.StartMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.StartMigrationWorkflowResponse, AWSError>;
190
+ /**
191
+ * Stop an ongoing migration workflow.
192
+ */
193
+ stopWorkflow(params: MigrationHubOrchestrator.Types.StopMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.StopMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.StopMigrationWorkflowResponse, AWSError>;
194
+ /**
195
+ * Stop an ongoing migration workflow.
196
+ */
197
+ stopWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.StopMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.StopMigrationWorkflowResponse, AWSError>;
198
+ /**
199
+ * Tag a resource by specifying its Amazon Resource Name (ARN).
200
+ */
201
+ tagResource(params: MigrationHubOrchestrator.Types.TagResourceRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.TagResourceResponse) => void): Request<MigrationHubOrchestrator.Types.TagResourceResponse, AWSError>;
202
+ /**
203
+ * Tag a resource by specifying its Amazon Resource Name (ARN).
204
+ */
205
+ tagResource(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.TagResourceResponse) => void): Request<MigrationHubOrchestrator.Types.TagResourceResponse, AWSError>;
206
+ /**
207
+ * Deletes the tags for a resource.
208
+ */
209
+ untagResource(params: MigrationHubOrchestrator.Types.UntagResourceRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UntagResourceResponse) => void): Request<MigrationHubOrchestrator.Types.UntagResourceResponse, AWSError>;
210
+ /**
211
+ * Deletes the tags for a resource.
212
+ */
213
+ untagResource(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UntagResourceResponse) => void): Request<MigrationHubOrchestrator.Types.UntagResourceResponse, AWSError>;
214
+ /**
215
+ * Update a migration workflow.
216
+ */
217
+ updateWorkflow(params: MigrationHubOrchestrator.Types.UpdateMigrationWorkflowRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateMigrationWorkflowResponse, AWSError>;
218
+ /**
219
+ * Update a migration workflow.
220
+ */
221
+ updateWorkflow(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateMigrationWorkflowResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateMigrationWorkflowResponse, AWSError>;
222
+ /**
223
+ * Update a step in a migration workflow.
224
+ */
225
+ updateWorkflowStep(params: MigrationHubOrchestrator.Types.UpdateWorkflowStepRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateWorkflowStepResponse, AWSError>;
226
+ /**
227
+ * Update a step in a migration workflow.
228
+ */
229
+ updateWorkflowStep(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateWorkflowStepResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateWorkflowStepResponse, AWSError>;
230
+ /**
231
+ * Update the step group in a migration workflow.
232
+ */
233
+ updateWorkflowStepGroup(params: MigrationHubOrchestrator.Types.UpdateWorkflowStepGroupRequest, callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateWorkflowStepGroupResponse, AWSError>;
234
+ /**
235
+ * Update the step group in a migration workflow.
236
+ */
237
+ updateWorkflowStepGroup(callback?: (err: AWSError, data: MigrationHubOrchestrator.Types.UpdateWorkflowStepGroupResponse) => void): Request<MigrationHubOrchestrator.Types.UpdateWorkflowStepGroupResponse, AWSError>;
238
+ }
239
+ declare namespace MigrationHubOrchestrator {
240
+ export type ApplicationConfigurationName = string;
241
+ export type Boolean = boolean;
242
+ export interface CreateMigrationWorkflowRequest {
243
+ /**
244
+ * The name of the migration workflow.
245
+ */
246
+ name: CreateMigrationWorkflowRequestNameString;
247
+ /**
248
+ * The description of the migration workflow.
249
+ */
250
+ description?: CreateMigrationWorkflowRequestDescriptionString;
251
+ /**
252
+ * The ID of the template.
253
+ */
254
+ templateId: CreateMigrationWorkflowRequestTemplateIdString;
255
+ /**
256
+ * The configuration ID of the application configured in Application Discovery Service.
257
+ */
258
+ applicationConfigurationId: CreateMigrationWorkflowRequestApplicationConfigurationIdString;
259
+ /**
260
+ * The input parameters required to create a migration workflow.
261
+ */
262
+ inputParameters: StepInputParameters;
263
+ /**
264
+ * The servers on which a step will be run.
265
+ */
266
+ stepTargets?: StringList;
267
+ /**
268
+ * The tags to add on a migration workflow.
269
+ */
270
+ tags?: StringMap;
271
+ }
272
+ export type CreateMigrationWorkflowRequestApplicationConfigurationIdString = string;
273
+ export type CreateMigrationWorkflowRequestDescriptionString = string;
274
+ export type CreateMigrationWorkflowRequestNameString = string;
275
+ export type CreateMigrationWorkflowRequestTemplateIdString = string;
276
+ export interface CreateMigrationWorkflowResponse {
277
+ /**
278
+ * The ID of the migration workflow.
279
+ */
280
+ id?: MigrationWorkflowId;
281
+ /**
282
+ * The Amazon Resource Name (ARN) of the migration workflow.
283
+ */
284
+ arn?: String;
285
+ /**
286
+ * The name of the migration workflow.
287
+ */
288
+ name?: String;
289
+ /**
290
+ * The description of the migration workflow.
291
+ */
292
+ description?: String;
293
+ /**
294
+ * The ID of the template.
295
+ */
296
+ templateId?: String;
297
+ /**
298
+ * The configuration ID of the application configured in Application Discovery Service.
299
+ */
300
+ adsApplicationConfigurationId?: String;
301
+ /**
302
+ * The inputs for creating a migration workflow.
303
+ */
304
+ workflowInputs?: StepInputParameters;
305
+ /**
306
+ * The servers on which a step will be run.
307
+ */
308
+ stepTargets?: StringList;
309
+ /**
310
+ * The status of the migration workflow.
311
+ */
312
+ status?: MigrationWorkflowStatusEnum;
313
+ /**
314
+ * The time at which the migration workflow was created.
315
+ */
316
+ creationTime?: Timestamp;
317
+ /**
318
+ * The tags to add on a migration workflow.
319
+ */
320
+ tags?: StringMap;
321
+ }
322
+ export interface CreateWorkflowStepGroupRequest {
323
+ /**
324
+ * The ID of the migration workflow that will contain the step group.
325
+ */
326
+ workflowId: MigrationWorkflowId;
327
+ /**
328
+ * The name of the step group.
329
+ */
330
+ name: StepGroupName;
331
+ /**
332
+ * The description of the step group.
333
+ */
334
+ description?: StepGroupDescription;
335
+ /**
336
+ * The next step group.
337
+ */
338
+ next?: StringList;
339
+ /**
340
+ * The previous step group.
341
+ */
342
+ previous?: StringList;
343
+ }
344
+ export interface CreateWorkflowStepGroupResponse {
345
+ /**
346
+ * The ID of the migration workflow that contains the step group.
347
+ */
348
+ workflowId?: String;
349
+ /**
350
+ * The name of the step group.
351
+ */
352
+ name?: String;
353
+ /**
354
+ * The ID of the step group.
355
+ */
356
+ id?: String;
357
+ /**
358
+ * The description of the step group.
359
+ */
360
+ description?: String;
361
+ /**
362
+ * List of AWS services utilized in a migration workflow.
363
+ */
364
+ tools?: ToolsList;
365
+ /**
366
+ * The next step group.
367
+ */
368
+ next?: StringList;
369
+ /**
370
+ * The previous step group.
371
+ */
372
+ previous?: StringList;
373
+ /**
374
+ * The time at which the step group is created.
375
+ */
376
+ creationTime?: Timestamp;
377
+ }
378
+ export interface CreateWorkflowStepRequest {
379
+ /**
380
+ * The name of the step.
381
+ */
382
+ name: MigrationWorkflowName;
383
+ /**
384
+ * The ID of the step group.
385
+ */
386
+ stepGroupId: StepGroupId;
387
+ /**
388
+ * The ID of the migration workflow.
389
+ */
390
+ workflowId: MigrationWorkflowId;
391
+ /**
392
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
393
+ */
394
+ stepActionType: StepActionType;
395
+ /**
396
+ * The description of the step.
397
+ */
398
+ description?: MigrationWorkflowDescription;
399
+ /**
400
+ * The custom script to run tests on source or target environments.
401
+ */
402
+ workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
403
+ /**
404
+ * The servers on which a step will be run.
405
+ */
406
+ stepTarget?: StringList;
407
+ /**
408
+ * The key value pairs added for the expected output.
409
+ */
410
+ outputs?: WorkflowStepOutputList;
411
+ /**
412
+ * The previous step.
413
+ */
414
+ previous?: StringList;
415
+ /**
416
+ * The next step.
417
+ */
418
+ next?: StringList;
419
+ }
420
+ export interface CreateWorkflowStepResponse {
421
+ /**
422
+ * The ID of the step.
423
+ */
424
+ id?: String;
425
+ /**
426
+ * The ID of the step group.
427
+ */
428
+ stepGroupId?: String;
429
+ /**
430
+ * The ID of the migration workflow.
431
+ */
432
+ workflowId?: String;
433
+ /**
434
+ * The name of the step.
435
+ */
436
+ name?: String;
437
+ }
438
+ export type DataType = "STRING"|"INTEGER"|"STRINGLIST"|"STRINGMAP"|string;
439
+ export interface DeleteMigrationWorkflowRequest {
440
+ /**
441
+ * The ID of the migration workflow you want to delete.
442
+ */
443
+ id: MigrationWorkflowId;
444
+ }
445
+ export interface DeleteMigrationWorkflowResponse {
446
+ /**
447
+ * The ID of the migration workflow.
448
+ */
449
+ id?: MigrationWorkflowId;
450
+ /**
451
+ * The Amazon Resource Name (ARN) of the migration workflow.
452
+ */
453
+ arn?: String;
454
+ /**
455
+ * The status of the migration workflow.
456
+ */
457
+ status?: MigrationWorkflowStatusEnum;
458
+ }
459
+ export interface DeleteWorkflowStepGroupRequest {
460
+ /**
461
+ * The ID of the migration workflow.
462
+ */
463
+ workflowId: MigrationWorkflowId;
464
+ /**
465
+ * The ID of the step group you want to delete.
466
+ */
467
+ id: StepGroupId;
468
+ }
469
+ export interface DeleteWorkflowStepGroupResponse {
470
+ }
471
+ export interface DeleteWorkflowStepRequest {
472
+ /**
473
+ * The ID of the step you want to delete.
474
+ */
475
+ id: StepId;
476
+ /**
477
+ * The ID of the step group that contains the step you want to delete.
478
+ */
479
+ stepGroupId: StepGroupId;
480
+ /**
481
+ * The ID of the migration workflow.
482
+ */
483
+ workflowId: MigrationWorkflowId;
484
+ }
485
+ export interface DeleteWorkflowStepResponse {
486
+ }
487
+ export interface GetMigrationWorkflowRequest {
488
+ /**
489
+ * The ID of the migration workflow.
490
+ */
491
+ id: MigrationWorkflowId;
492
+ }
493
+ export interface GetMigrationWorkflowResponse {
494
+ /**
495
+ * The ID of the migration workflow.
496
+ */
497
+ id?: MigrationWorkflowId;
498
+ /**
499
+ * The Amazon Resource Name (ARN) of the migration workflow.
500
+ */
501
+ arn?: String;
502
+ /**
503
+ * The name of the migration workflow.
504
+ */
505
+ name?: String;
506
+ /**
507
+ * The description of the migration workflow.
508
+ */
509
+ description?: String;
510
+ /**
511
+ * The ID of the template.
512
+ */
513
+ templateId?: String;
514
+ /**
515
+ * The configuration ID of the application configured in Application Discovery Service.
516
+ */
517
+ adsApplicationConfigurationId?: String;
518
+ /**
519
+ * The name of the application configured in Application Discovery Service.
520
+ */
521
+ adsApplicationName?: String;
522
+ /**
523
+ * The status of the migration workflow.
524
+ */
525
+ status?: MigrationWorkflowStatusEnum;
526
+ /**
527
+ * The status message of the migration workflow.
528
+ */
529
+ statusMessage?: String;
530
+ /**
531
+ * The time at which the migration workflow was created.
532
+ */
533
+ creationTime?: Timestamp;
534
+ /**
535
+ * The time at which the migration workflow was last started.
536
+ */
537
+ lastStartTime?: Timestamp;
538
+ /**
539
+ * The time at which the migration workflow was last stopped.
540
+ */
541
+ lastStopTime?: Timestamp;
542
+ /**
543
+ * The time at which the migration workflow was last modified.
544
+ */
545
+ lastModifiedTime?: Timestamp;
546
+ /**
547
+ * The time at which the migration workflow ended.
548
+ */
549
+ endTime?: Timestamp;
550
+ /**
551
+ * List of AWS services utilized in a migration workflow.
552
+ */
553
+ tools?: ToolsList;
554
+ /**
555
+ * The total number of steps in the migration workflow.
556
+ */
557
+ totalSteps?: Integer;
558
+ /**
559
+ * Get a list of completed steps in the migration workflow.
560
+ */
561
+ completedSteps?: Integer;
562
+ /**
563
+ * The inputs required for creating the migration workflow.
564
+ */
565
+ workflowInputs?: StepInputParameters;
566
+ /**
567
+ * The tags added to the migration workflow.
568
+ */
569
+ tags?: StringMap;
570
+ /**
571
+ * The Amazon S3 bucket where the migration logs are stored.
572
+ */
573
+ workflowBucket?: String;
574
+ }
575
+ export interface GetMigrationWorkflowTemplateRequest {
576
+ /**
577
+ * The ID of the template.
578
+ */
579
+ id: TemplateId;
580
+ }
581
+ export interface GetMigrationWorkflowTemplateResponse {
582
+ /**
583
+ * The ID of the template.
584
+ */
585
+ id?: String;
586
+ /**
587
+ * The name of the template.
588
+ */
589
+ name?: String;
590
+ /**
591
+ * The time at which the template was last created.
592
+ */
593
+ description?: String;
594
+ /**
595
+ * The inputs provided for the creation of the migration workflow.
596
+ */
597
+ inputs?: TemplateInputList;
598
+ /**
599
+ * List of AWS services utilized in a migration workflow.
600
+ */
601
+ tools?: ToolsList;
602
+ /**
603
+ * The status of the template.
604
+ */
605
+ status?: TemplateStatus;
606
+ /**
607
+ * The time at which the template was last created.
608
+ */
609
+ creationTime?: Timestamp;
610
+ }
611
+ export interface GetTemplateStepGroupRequest {
612
+ /**
613
+ * The ID of the template.
614
+ */
615
+ templateId: TemplateId;
616
+ /**
617
+ * The ID of the step group.
618
+ */
619
+ id: StepGroupId;
620
+ }
621
+ export interface GetTemplateStepGroupResponse {
622
+ /**
623
+ * The ID of the template.
624
+ */
625
+ templateId?: String;
626
+ /**
627
+ * The ID of the step group.
628
+ */
629
+ id?: String;
630
+ /**
631
+ * The name of the step group.
632
+ */
633
+ name?: String;
634
+ /**
635
+ * The description of the step group.
636
+ */
637
+ description?: String;
638
+ /**
639
+ * The status of the step group.
640
+ */
641
+ status?: StepGroupStatus;
642
+ /**
643
+ * The time at which the step group was created.
644
+ */
645
+ creationTime?: Timestamp;
646
+ /**
647
+ * The time at which the step group was last modified.
648
+ */
649
+ lastModifiedTime?: Timestamp;
650
+ /**
651
+ * List of AWS services utilized in a migration workflow.
652
+ */
653
+ tools?: ToolsList;
654
+ /**
655
+ * The previous step group.
656
+ */
657
+ previous?: StringList;
658
+ /**
659
+ * The next step group.
660
+ */
661
+ next?: StringList;
662
+ }
663
+ export interface GetTemplateStepRequest {
664
+ /**
665
+ * The ID of the step.
666
+ */
667
+ id: StepId;
668
+ /**
669
+ * The ID of the template.
670
+ */
671
+ templateId: TemplateId;
672
+ /**
673
+ * The ID of the step group.
674
+ */
675
+ stepGroupId: StepGroupId;
676
+ }
677
+ export interface GetTemplateStepResponse {
678
+ /**
679
+ * The ID of the step.
680
+ */
681
+ id?: StepId;
682
+ /**
683
+ * The ID of the step group.
684
+ */
685
+ stepGroupId?: StepGroupId;
686
+ /**
687
+ * The ID of the template.
688
+ */
689
+ templateId?: TemplateId;
690
+ /**
691
+ * The name of the step.
692
+ */
693
+ name?: String;
694
+ /**
695
+ * The description of the step.
696
+ */
697
+ description?: String;
698
+ /**
699
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
700
+ */
701
+ stepActionType?: StepActionType;
702
+ /**
703
+ * The time at which the step was created.
704
+ */
705
+ creationTime?: String;
706
+ /**
707
+ * The previous step.
708
+ */
709
+ previous?: StringList;
710
+ /**
711
+ * The next step.
712
+ */
713
+ next?: StringList;
714
+ /**
715
+ * The outputs of the step.
716
+ */
717
+ outputs?: StepOutputList;
718
+ /**
719
+ * The custom script to run tests on source or target environments.
720
+ */
721
+ stepAutomationConfiguration?: StepAutomationConfiguration;
722
+ }
723
+ export interface GetWorkflowStepGroupRequest {
724
+ /**
725
+ * The ID of the step group.
726
+ */
727
+ id: StepGroupId;
728
+ /**
729
+ * The ID of the migration workflow.
730
+ */
731
+ workflowId: MigrationWorkflowId;
732
+ }
733
+ export interface GetWorkflowStepGroupResponse {
734
+ /**
735
+ * The ID of the step group.
736
+ */
737
+ id?: StepGroupId;
738
+ /**
739
+ * The ID of the migration workflow.
740
+ */
741
+ workflowId?: String;
742
+ /**
743
+ * The name of the step group.
744
+ */
745
+ name?: String;
746
+ /**
747
+ * The description of the step group.
748
+ */
749
+ description?: String;
750
+ /**
751
+ * The status of the step group.
752
+ */
753
+ status?: StepGroupStatus;
754
+ /**
755
+ * The owner of the step group.
756
+ */
757
+ owner?: Owner;
758
+ /**
759
+ * The time at which the step group was created.
760
+ */
761
+ creationTime?: Timestamp;
762
+ /**
763
+ * The time at which the step group was last modified.
764
+ */
765
+ lastModifiedTime?: Timestamp;
766
+ /**
767
+ * The time at which the step group ended.
768
+ */
769
+ endTime?: Timestamp;
770
+ /**
771
+ * List of AWS services utilized in a migration workflow.
772
+ */
773
+ tools?: ToolsList;
774
+ /**
775
+ * The previous step group.
776
+ */
777
+ previous?: StringList;
778
+ /**
779
+ * The next step group.
780
+ */
781
+ next?: StringList;
782
+ }
783
+ export interface GetWorkflowStepRequest {
784
+ /**
785
+ * The ID of the migration workflow.
786
+ */
787
+ workflowId: MigrationWorkflowId;
788
+ /**
789
+ * desThe ID of the step group.
790
+ */
791
+ stepGroupId: StepGroupId;
792
+ /**
793
+ * The ID of the step.
794
+ */
795
+ id: StepId;
796
+ }
797
+ export interface GetWorkflowStepResponse {
798
+ /**
799
+ * The name of the step.
800
+ */
801
+ name?: String;
802
+ /**
803
+ * The ID of the step group.
804
+ */
805
+ stepGroupId?: String;
806
+ /**
807
+ * The ID of the migration workflow.
808
+ */
809
+ workflowId?: String;
810
+ /**
811
+ * The ID of the step.
812
+ */
813
+ stepId?: String;
814
+ /**
815
+ * The description of the step.
816
+ */
817
+ description?: String;
818
+ /**
819
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
820
+ */
821
+ stepActionType?: StepActionType;
822
+ /**
823
+ * The owner of the step.
824
+ */
825
+ owner?: Owner;
826
+ /**
827
+ * The custom script to run tests on source or target environments.
828
+ */
829
+ workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
830
+ /**
831
+ * The servers on which a step will be run.
832
+ */
833
+ stepTarget?: StringList;
834
+ /**
835
+ * The outputs of the step.
836
+ */
837
+ outputs?: GetWorkflowStepResponseOutputsList;
838
+ /**
839
+ * The previous step.
840
+ */
841
+ previous?: StringList;
842
+ /**
843
+ * The next step.
844
+ */
845
+ next?: StringList;
846
+ /**
847
+ * The status of the step.
848
+ */
849
+ status?: StepStatus;
850
+ /**
851
+ * The status message of the migration workflow.
852
+ */
853
+ statusMessage?: String;
854
+ /**
855
+ * The output location of the script.
856
+ */
857
+ scriptOutputLocation?: String;
858
+ /**
859
+ * The time at which the step was created.
860
+ */
861
+ creationTime?: Timestamp;
862
+ /**
863
+ * The time at which the workflow was last started.
864
+ */
865
+ lastStartTime?: Timestamp;
866
+ /**
867
+ * The time at which the step ended.
868
+ */
869
+ endTime?: Timestamp;
870
+ /**
871
+ * The number of servers that have been migrated.
872
+ */
873
+ noOfSrvCompleted?: Integer;
874
+ /**
875
+ * The number of servers that have failed to migrate.
876
+ */
877
+ noOfSrvFailed?: Integer;
878
+ /**
879
+ * The total number of servers that have been migrated.
880
+ */
881
+ totalNoOfSrv?: Integer;
882
+ }
883
+ export type GetWorkflowStepResponseOutputsList = WorkflowStepOutput[];
884
+ export type IPAddress = string;
885
+ export type Integer = number;
886
+ export interface ListMigrationWorkflowTemplatesRequest {
887
+ /**
888
+ * The maximum number of results that can be returned.
889
+ */
890
+ maxResults?: MaxResults;
891
+ /**
892
+ * The pagination token.
893
+ */
894
+ nextToken?: NextToken;
895
+ /**
896
+ * The name of the template.
897
+ */
898
+ name?: TemplateName;
899
+ }
900
+ export interface ListMigrationWorkflowTemplatesResponse {
901
+ /**
902
+ * The pagination token.
903
+ */
904
+ nextToken?: NextToken;
905
+ /**
906
+ * The summary of the template.
907
+ */
908
+ templateSummary: TemplateSummaryList;
909
+ }
910
+ export interface ListMigrationWorkflowsRequest {
911
+ /**
912
+ * The maximum number of results that can be returned.
913
+ */
914
+ maxResults?: MaxResults;
915
+ /**
916
+ * The pagination token.
917
+ */
918
+ nextToken?: NextToken;
919
+ /**
920
+ * The ID of the template.
921
+ */
922
+ templateId?: TemplateId;
923
+ /**
924
+ * The name of the application configured in Application Discovery Service.
925
+ */
926
+ adsApplicationConfigurationName?: ApplicationConfigurationName;
927
+ /**
928
+ * The status of the migration workflow.
929
+ */
930
+ status?: MigrationWorkflowStatusEnum;
931
+ /**
932
+ * The name of the migration workflow.
933
+ */
934
+ name?: String;
935
+ }
936
+ export interface ListMigrationWorkflowsResponse {
937
+ /**
938
+ * The pagination token.
939
+ */
940
+ nextToken?: NextToken;
941
+ /**
942
+ * The summary of the migration workflow.
943
+ */
944
+ migrationWorkflowSummary: MigrationWorkflowSummaryList;
945
+ }
946
+ export interface ListPluginsRequest {
947
+ /**
948
+ * The maximum number of plugins that can be returned.
949
+ */
950
+ maxResults?: MaxResults;
951
+ /**
952
+ * The pagination token.
953
+ */
954
+ nextToken?: NextToken;
955
+ }
956
+ export interface ListPluginsResponse {
957
+ /**
958
+ * The pagination token.
959
+ */
960
+ nextToken?: NextToken;
961
+ /**
962
+ * Migration Hub Orchestrator plugins.
963
+ */
964
+ plugins?: PluginSummaries;
965
+ }
966
+ export interface ListTagsForResourceRequest {
967
+ /**
968
+ * The Amazon Resource Name (ARN) of the resource.
969
+ */
970
+ resourceArn: ResourceArn;
971
+ }
972
+ export interface ListTagsForResourceResponse {
973
+ /**
974
+ * The tags added to a resource.
975
+ */
976
+ tags?: TagMap;
977
+ }
978
+ export interface ListTemplateStepGroupsRequest {
979
+ /**
980
+ * The maximum number of results that can be returned.
981
+ */
982
+ maxResults?: MaxResults;
983
+ /**
984
+ * The pagination token.
985
+ */
986
+ nextToken?: NextToken;
987
+ /**
988
+ * The ID of the template.
989
+ */
990
+ templateId: TemplateId;
991
+ }
992
+ export interface ListTemplateStepGroupsResponse {
993
+ /**
994
+ * The pagination token.
995
+ */
996
+ nextToken?: NextToken;
997
+ /**
998
+ * The summary of the step group in the template.
999
+ */
1000
+ templateStepGroupSummary: TemplateStepGroupSummaryList;
1001
+ }
1002
+ export interface ListTemplateStepsRequest {
1003
+ /**
1004
+ * The maximum number of results that can be returned.
1005
+ */
1006
+ maxResults?: MaxResults;
1007
+ /**
1008
+ * The pagination token.
1009
+ */
1010
+ nextToken?: NextToken;
1011
+ /**
1012
+ * The ID of the template.
1013
+ */
1014
+ templateId: TemplateId;
1015
+ /**
1016
+ * The ID of the step group.
1017
+ */
1018
+ stepGroupId: StepGroupId;
1019
+ }
1020
+ export interface ListTemplateStepsResponse {
1021
+ /**
1022
+ * The pagination token.
1023
+ */
1024
+ nextToken?: NextToken;
1025
+ /**
1026
+ * The list of summaries of steps in a template.
1027
+ */
1028
+ templateStepSummaryList?: TemplateStepSummaryList;
1029
+ }
1030
+ export interface ListWorkflowStepGroupsRequest {
1031
+ /**
1032
+ * The pagination token.
1033
+ */
1034
+ nextToken?: NextToken;
1035
+ /**
1036
+ * The maximum number of results that can be returned.
1037
+ */
1038
+ maxResults?: MaxResults;
1039
+ /**
1040
+ * The ID of the migration workflow.
1041
+ */
1042
+ workflowId: MigrationWorkflowId;
1043
+ }
1044
+ export interface ListWorkflowStepGroupsResponse {
1045
+ /**
1046
+ * The pagination token.
1047
+ */
1048
+ nextToken?: NextToken;
1049
+ /**
1050
+ * The summary of step groups in a migration workflow.
1051
+ */
1052
+ workflowStepGroupsSummary: WorkflowStepGroupsSummaryList;
1053
+ }
1054
+ export interface ListWorkflowStepsRequest {
1055
+ /**
1056
+ * The pagination token.
1057
+ */
1058
+ nextToken?: NextToken;
1059
+ /**
1060
+ * The maximum number of results that can be returned.
1061
+ */
1062
+ maxResults?: MaxResults;
1063
+ /**
1064
+ * The ID of the migration workflow.
1065
+ */
1066
+ workflowId: MigrationWorkflowId;
1067
+ /**
1068
+ * The ID of the step group.
1069
+ */
1070
+ stepGroupId: StepGroupId;
1071
+ }
1072
+ export interface ListWorkflowStepsResponse {
1073
+ /**
1074
+ * The pagination token.
1075
+ */
1076
+ nextToken?: NextToken;
1077
+ /**
1078
+ * The summary of steps in a migration workflow.
1079
+ */
1080
+ workflowStepsSummary: WorkflowStepsSummaryList;
1081
+ }
1082
+ export type MaxResults = number;
1083
+ export type MigrationWorkflowDescription = string;
1084
+ export type MigrationWorkflowId = string;
1085
+ export type MigrationWorkflowName = string;
1086
+ export type MigrationWorkflowStatusEnum = "CREATING"|"NOT_STARTED"|"CREATION_FAILED"|"STARTING"|"IN_PROGRESS"|"WORKFLOW_FAILED"|"PAUSED"|"PAUSING"|"PAUSING_FAILED"|"USER_ATTENTION_REQUIRED"|"DELETING"|"DELETION_FAILED"|"DELETED"|"COMPLETED"|string;
1087
+ export interface MigrationWorkflowSummary {
1088
+ /**
1089
+ * The ID of the migration workflow.
1090
+ */
1091
+ id?: MigrationWorkflowId;
1092
+ /**
1093
+ * The name of the migration workflow.
1094
+ */
1095
+ name?: String;
1096
+ /**
1097
+ * The ID of the template.
1098
+ */
1099
+ templateId?: String;
1100
+ /**
1101
+ * The name of the application configured in Application Discovery Service.
1102
+ */
1103
+ adsApplicationConfigurationName?: String;
1104
+ /**
1105
+ * The status of the migration workflow.
1106
+ */
1107
+ status?: MigrationWorkflowStatusEnum;
1108
+ /**
1109
+ * The time at which the migration workflow was created.
1110
+ */
1111
+ creationTime?: Timestamp;
1112
+ /**
1113
+ * The time at which the migration workflow ended.
1114
+ */
1115
+ endTime?: Timestamp;
1116
+ /**
1117
+ * The status message of the migration workflow.
1118
+ */
1119
+ statusMessage?: String;
1120
+ /**
1121
+ * The steps completed in the migration workflow.
1122
+ */
1123
+ completedSteps?: Integer;
1124
+ /**
1125
+ * All the steps in a migration workflow.
1126
+ */
1127
+ totalSteps?: Integer;
1128
+ }
1129
+ export type MigrationWorkflowSummaryList = MigrationWorkflowSummary[];
1130
+ export type NextToken = string;
1131
+ export type Owner = "AWS_MANAGED"|"CUSTOM"|string;
1132
+ export interface PlatformCommand {
1133
+ /**
1134
+ * Command for Linux.
1135
+ */
1136
+ linux?: String;
1137
+ /**
1138
+ * Command for Windows.
1139
+ */
1140
+ windows?: String;
1141
+ }
1142
+ export interface PlatformScriptKey {
1143
+ /**
1144
+ * The script location for Linux.
1145
+ */
1146
+ linux?: S3Key;
1147
+ /**
1148
+ * The script location for Windows.
1149
+ */
1150
+ windows?: S3Key;
1151
+ }
1152
+ export type PluginHealth = "HEALTHY"|"UNHEALTHY"|string;
1153
+ export type PluginId = string;
1154
+ export type PluginSummaries = PluginSummary[];
1155
+ export interface PluginSummary {
1156
+ /**
1157
+ * The ID of the plugin.
1158
+ */
1159
+ pluginId?: PluginId;
1160
+ /**
1161
+ * The name of the host.
1162
+ */
1163
+ hostname?: String;
1164
+ /**
1165
+ * The status of the plugin.
1166
+ */
1167
+ status?: PluginHealth;
1168
+ /**
1169
+ * The IP address at which the plugin is located.
1170
+ */
1171
+ ipAddress?: IPAddress;
1172
+ /**
1173
+ * The version of the plugin.
1174
+ */
1175
+ version?: PluginVersion;
1176
+ /**
1177
+ * The time at which the plugin was registered.
1178
+ */
1179
+ registeredTime?: String;
1180
+ }
1181
+ export type PluginVersion = string;
1182
+ export type ResourceArn = string;
1183
+ export interface RetryWorkflowStepRequest {
1184
+ /**
1185
+ * The ID of the migration workflow.
1186
+ */
1187
+ workflowId: MigrationWorkflowId;
1188
+ /**
1189
+ * The ID of the step group.
1190
+ */
1191
+ stepGroupId: StepGroupId;
1192
+ /**
1193
+ * The ID of the step.
1194
+ */
1195
+ id: StepId;
1196
+ }
1197
+ export interface RetryWorkflowStepResponse {
1198
+ /**
1199
+ * The ID of the step group.
1200
+ */
1201
+ stepGroupId?: String;
1202
+ /**
1203
+ * The ID of the migration workflow.
1204
+ */
1205
+ workflowId?: String;
1206
+ /**
1207
+ * The ID of the step.
1208
+ */
1209
+ id?: String;
1210
+ /**
1211
+ * The status of the step.
1212
+ */
1213
+ status?: StepStatus;
1214
+ }
1215
+ export type RunEnvironment = "AWS"|"ONPREMISE"|string;
1216
+ export type S3Bucket = string;
1217
+ export type S3Key = string;
1218
+ export interface StartMigrationWorkflowRequest {
1219
+ /**
1220
+ * The ID of the migration workflow.
1221
+ */
1222
+ id: MigrationWorkflowId;
1223
+ }
1224
+ export interface StartMigrationWorkflowResponse {
1225
+ /**
1226
+ * The ID of the migration workflow.
1227
+ */
1228
+ id?: MigrationWorkflowId;
1229
+ /**
1230
+ * The Amazon Resource Name (ARN) of the migration workflow.
1231
+ */
1232
+ arn?: String;
1233
+ /**
1234
+ * The status of the migration workflow.
1235
+ */
1236
+ status?: MigrationWorkflowStatusEnum;
1237
+ /**
1238
+ * The status message of the migration workflow.
1239
+ */
1240
+ statusMessage?: String;
1241
+ /**
1242
+ * The time at which the migration workflow was last started.
1243
+ */
1244
+ lastStartTime?: Timestamp;
1245
+ }
1246
+ export type StepActionType = "MANUAL"|"AUTOMATED"|string;
1247
+ export interface StepAutomationConfiguration {
1248
+ /**
1249
+ * The Amazon S3 bucket where the script is located.
1250
+ */
1251
+ scriptLocationS3Bucket?: String;
1252
+ /**
1253
+ * The Amazon S3 key for the script location.
1254
+ */
1255
+ scriptLocationS3Key?: PlatformScriptKey;
1256
+ /**
1257
+ * The command to run the script.
1258
+ */
1259
+ command?: PlatformCommand;
1260
+ /**
1261
+ * The source or target environment.
1262
+ */
1263
+ runEnvironment?: RunEnvironment;
1264
+ /**
1265
+ * The servers on which to run the script.
1266
+ */
1267
+ targetType?: TargetType;
1268
+ }
1269
+ export type StepDescription = string;
1270
+ export type StepGroupDescription = string;
1271
+ export type StepGroupId = string;
1272
+ export type StepGroupName = string;
1273
+ export type StepGroupStatus = "AWAITING_DEPENDENCIES"|"READY"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"PAUSED"|"PAUSING"|"USER_ATTENTION_REQUIRED"|string;
1274
+ export type StepId = string;
1275
+ export interface StepInput {
1276
+ /**
1277
+ * The value of the integer.
1278
+ */
1279
+ integerValue?: Integer;
1280
+ /**
1281
+ * String value.
1282
+ */
1283
+ stringValue?: StringValue;
1284
+ /**
1285
+ * List of string values.
1286
+ */
1287
+ listOfStringsValue?: StringList;
1288
+ /**
1289
+ * Map of string values.
1290
+ */
1291
+ mapOfStringValue?: StringMap;
1292
+ }
1293
+ export type StepInputParameters = {[key: string]: StepInput};
1294
+ export type StepInputParametersKey = string;
1295
+ export type StepName = string;
1296
+ export interface StepOutput {
1297
+ /**
1298
+ * The name of the step.
1299
+ */
1300
+ name?: String;
1301
+ /**
1302
+ * The data type of the step output.
1303
+ */
1304
+ dataType?: DataType;
1305
+ /**
1306
+ * Determine if an output is required from a step.
1307
+ */
1308
+ required?: Boolean;
1309
+ }
1310
+ export type StepOutputList = StepOutput[];
1311
+ export type StepStatus = "AWAITING_DEPENDENCIES"|"READY"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"PAUSED"|"USER_ATTENTION_REQUIRED"|string;
1312
+ export interface StopMigrationWorkflowRequest {
1313
+ /**
1314
+ * The ID of the migration workflow.
1315
+ */
1316
+ id: MigrationWorkflowId;
1317
+ }
1318
+ export interface StopMigrationWorkflowResponse {
1319
+ /**
1320
+ * The ID of the migration workflow.
1321
+ */
1322
+ id?: MigrationWorkflowId;
1323
+ /**
1324
+ * The Amazon Resource Name (ARN) of the migration workflow.
1325
+ */
1326
+ arn?: String;
1327
+ /**
1328
+ * The status of the migration workflow.
1329
+ */
1330
+ status?: MigrationWorkflowStatusEnum;
1331
+ /**
1332
+ * The status message of the migration workflow.
1333
+ */
1334
+ statusMessage?: String;
1335
+ /**
1336
+ * The time at which the migration workflow was stopped.
1337
+ */
1338
+ lastStopTime?: Timestamp;
1339
+ }
1340
+ export type String = string;
1341
+ export type StringList = StringListMember[];
1342
+ export type StringListMember = string;
1343
+ export type StringMap = {[key: string]: StringMapValue};
1344
+ export type StringMapKey = string;
1345
+ export type StringMapValue = string;
1346
+ export type StringValue = string;
1347
+ export type TagKey = string;
1348
+ export type TagKeyList = TagKey[];
1349
+ export type TagMap = {[key: string]: TagValue};
1350
+ export interface TagResourceRequest {
1351
+ /**
1352
+ * The Amazon Resource Name (ARN) of the resource to which you want to add tags.
1353
+ */
1354
+ resourceArn: ResourceArn;
1355
+ /**
1356
+ * A collection of labels, in the form of key:value pairs, that apply to this resource.
1357
+ */
1358
+ tags: TagMap;
1359
+ }
1360
+ export interface TagResourceResponse {
1361
+ }
1362
+ export type TagValue = string;
1363
+ export type TargetType = "SINGLE"|"ALL"|"NONE"|string;
1364
+ export type TemplateId = string;
1365
+ export interface TemplateInput {
1366
+ /**
1367
+ * The name of the template.
1368
+ */
1369
+ inputName?: TemplateInputName;
1370
+ /**
1371
+ * The data type of the template input.
1372
+ */
1373
+ dataType?: DataType;
1374
+ /**
1375
+ * Determine if an input is required from the template.
1376
+ */
1377
+ required?: Boolean;
1378
+ }
1379
+ export type TemplateInputList = TemplateInput[];
1380
+ export type TemplateInputName = string;
1381
+ export type TemplateName = string;
1382
+ export type TemplateStatus = "CREATED"|string;
1383
+ export interface TemplateStepGroupSummary {
1384
+ /**
1385
+ * The ID of the step group.
1386
+ */
1387
+ id?: String;
1388
+ /**
1389
+ * The name of the step group.
1390
+ */
1391
+ name?: String;
1392
+ /**
1393
+ * The previous step group.
1394
+ */
1395
+ previous?: StringList;
1396
+ /**
1397
+ * The next step group.
1398
+ */
1399
+ next?: StringList;
1400
+ }
1401
+ export type TemplateStepGroupSummaryList = TemplateStepGroupSummary[];
1402
+ export interface TemplateStepSummary {
1403
+ /**
1404
+ * The ID of the step.
1405
+ */
1406
+ id?: String;
1407
+ /**
1408
+ * The ID of the step group.
1409
+ */
1410
+ stepGroupId?: String;
1411
+ /**
1412
+ * The ID of the template.
1413
+ */
1414
+ templateId?: String;
1415
+ /**
1416
+ * The name of the step.
1417
+ */
1418
+ name?: String;
1419
+ /**
1420
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
1421
+ */
1422
+ stepActionType?: StepActionType;
1423
+ /**
1424
+ * The servers on which to run the script.
1425
+ */
1426
+ targetType?: TargetType;
1427
+ /**
1428
+ * The owner of the step.
1429
+ */
1430
+ owner?: Owner;
1431
+ /**
1432
+ * The previous step.
1433
+ */
1434
+ previous?: StringList;
1435
+ /**
1436
+ * The next step.
1437
+ */
1438
+ next?: StringList;
1439
+ }
1440
+ export type TemplateStepSummaryList = TemplateStepSummary[];
1441
+ export interface TemplateSummary {
1442
+ /**
1443
+ * The ID of the template.
1444
+ */
1445
+ id?: String;
1446
+ /**
1447
+ * The name of the template.
1448
+ */
1449
+ name?: String;
1450
+ /**
1451
+ * The Amazon Resource Name (ARN) of the template.
1452
+ */
1453
+ arn?: String;
1454
+ /**
1455
+ * The description of the template.
1456
+ */
1457
+ description?: String;
1458
+ }
1459
+ export type TemplateSummaryList = TemplateSummary[];
1460
+ export type Timestamp = Date;
1461
+ export interface Tool {
1462
+ /**
1463
+ * The name of an AWS service.
1464
+ */
1465
+ name?: String;
1466
+ /**
1467
+ * The URL of an AWS service.
1468
+ */
1469
+ url?: String;
1470
+ }
1471
+ export type ToolsList = Tool[];
1472
+ export interface UntagResourceRequest {
1473
+ /**
1474
+ * The Amazon Resource Name (ARN) of the resource from which you want to remove tags.
1475
+ */
1476
+ resourceArn: ResourceArn;
1477
+ /**
1478
+ * One or more tag keys. Specify only the tag keys, not the tag values.
1479
+ */
1480
+ tagKeys: TagKeyList;
1481
+ }
1482
+ export interface UntagResourceResponse {
1483
+ }
1484
+ export interface UpdateMigrationWorkflowRequest {
1485
+ /**
1486
+ * The ID of the migration workflow.
1487
+ */
1488
+ id: MigrationWorkflowId;
1489
+ /**
1490
+ * The name of the migration workflow.
1491
+ */
1492
+ name?: UpdateMigrationWorkflowRequestNameString;
1493
+ /**
1494
+ * The description of the migration workflow.
1495
+ */
1496
+ description?: UpdateMigrationWorkflowRequestDescriptionString;
1497
+ /**
1498
+ * The input parameters required to update a migration workflow.
1499
+ */
1500
+ inputParameters?: StepInputParameters;
1501
+ /**
1502
+ * The servers on which a step will be run.
1503
+ */
1504
+ stepTargets?: StringList;
1505
+ }
1506
+ export type UpdateMigrationWorkflowRequestDescriptionString = string;
1507
+ export type UpdateMigrationWorkflowRequestNameString = string;
1508
+ export interface UpdateMigrationWorkflowResponse {
1509
+ /**
1510
+ * The ID of the migration workflow.
1511
+ */
1512
+ id?: MigrationWorkflowId;
1513
+ /**
1514
+ * The Amazon Resource Name (ARN) of the migration workflow.
1515
+ */
1516
+ arn?: String;
1517
+ /**
1518
+ * The name of the migration workflow.
1519
+ */
1520
+ name?: String;
1521
+ /**
1522
+ * The description of the migration workflow.
1523
+ */
1524
+ description?: String;
1525
+ /**
1526
+ * The ID of the template.
1527
+ */
1528
+ templateId?: String;
1529
+ /**
1530
+ * The ID of the application configured in Application Discovery Service.
1531
+ */
1532
+ adsApplicationConfigurationId?: String;
1533
+ /**
1534
+ * The inputs required to update a migration workflow.
1535
+ */
1536
+ workflowInputs?: StepInputParameters;
1537
+ /**
1538
+ * The servers on which a step will be run.
1539
+ */
1540
+ stepTargets?: StringList;
1541
+ /**
1542
+ * The status of the migration workflow.
1543
+ */
1544
+ status?: MigrationWorkflowStatusEnum;
1545
+ /**
1546
+ * The time at which the migration workflow was created.
1547
+ */
1548
+ creationTime?: Timestamp;
1549
+ /**
1550
+ * The time at which the migration workflow was last modified.
1551
+ */
1552
+ lastModifiedTime?: Timestamp;
1553
+ /**
1554
+ * The tags added to the migration workflow.
1555
+ */
1556
+ tags?: StringMap;
1557
+ }
1558
+ export interface UpdateWorkflowStepGroupRequest {
1559
+ /**
1560
+ * The ID of the migration workflow.
1561
+ */
1562
+ workflowId: MigrationWorkflowId;
1563
+ /**
1564
+ * The ID of the step group.
1565
+ */
1566
+ id: StepGroupId;
1567
+ /**
1568
+ * The name of the step group.
1569
+ */
1570
+ name?: StepGroupName;
1571
+ /**
1572
+ * The description of the step group.
1573
+ */
1574
+ description?: StepGroupDescription;
1575
+ /**
1576
+ * The next step group.
1577
+ */
1578
+ next?: StringList;
1579
+ /**
1580
+ * The previous step group.
1581
+ */
1582
+ previous?: StringList;
1583
+ }
1584
+ export interface UpdateWorkflowStepGroupResponse {
1585
+ /**
1586
+ * The ID of the migration workflow.
1587
+ */
1588
+ workflowId?: String;
1589
+ /**
1590
+ * The name of the step group.
1591
+ */
1592
+ name?: String;
1593
+ /**
1594
+ * The ID of the step group.
1595
+ */
1596
+ id?: String;
1597
+ /**
1598
+ * The description of the step group.
1599
+ */
1600
+ description?: String;
1601
+ /**
1602
+ * List of AWS services utilized in a migration workflow.
1603
+ */
1604
+ tools?: ToolsList;
1605
+ /**
1606
+ * The next step group.
1607
+ */
1608
+ next?: StringList;
1609
+ /**
1610
+ * The previous step group.
1611
+ */
1612
+ previous?: StringList;
1613
+ /**
1614
+ * The time at which the step group was last modified.
1615
+ */
1616
+ lastModifiedTime?: Timestamp;
1617
+ }
1618
+ export interface UpdateWorkflowStepRequest {
1619
+ /**
1620
+ * The ID of the step.
1621
+ */
1622
+ id: StepId;
1623
+ /**
1624
+ * The ID of the step group.
1625
+ */
1626
+ stepGroupId: StepGroupId;
1627
+ /**
1628
+ * The ID of the migration workflow.
1629
+ */
1630
+ workflowId: MigrationWorkflowId;
1631
+ /**
1632
+ * The name of the step.
1633
+ */
1634
+ name?: StepName;
1635
+ /**
1636
+ * The description of the step.
1637
+ */
1638
+ description?: StepDescription;
1639
+ /**
1640
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
1641
+ */
1642
+ stepActionType?: StepActionType;
1643
+ /**
1644
+ * The custom script to run tests on the source and target environments.
1645
+ */
1646
+ workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration;
1647
+ /**
1648
+ * The servers on which a step will be run.
1649
+ */
1650
+ stepTarget?: StringList;
1651
+ /**
1652
+ * The outputs of a step.
1653
+ */
1654
+ outputs?: WorkflowStepOutputList;
1655
+ /**
1656
+ * The previous step.
1657
+ */
1658
+ previous?: StringList;
1659
+ /**
1660
+ * The next step.
1661
+ */
1662
+ next?: StringList;
1663
+ /**
1664
+ * The status of the step.
1665
+ */
1666
+ status?: StepStatus;
1667
+ }
1668
+ export interface UpdateWorkflowStepResponse {
1669
+ /**
1670
+ * The ID of the step.
1671
+ */
1672
+ id?: StepId;
1673
+ /**
1674
+ * The ID of the step group.
1675
+ */
1676
+ stepGroupId?: String;
1677
+ /**
1678
+ * The ID of the migration workflow.
1679
+ */
1680
+ workflowId?: String;
1681
+ /**
1682
+ * The name of the step.
1683
+ */
1684
+ name?: String;
1685
+ }
1686
+ export interface WorkflowStepAutomationConfiguration {
1687
+ /**
1688
+ * The Amazon S3 bucket where the script is located.
1689
+ */
1690
+ scriptLocationS3Bucket?: S3Bucket;
1691
+ /**
1692
+ * The Amazon S3 key for the script location.
1693
+ */
1694
+ scriptLocationS3Key?: PlatformScriptKey;
1695
+ /**
1696
+ * The command required to run the script.
1697
+ */
1698
+ command?: PlatformCommand;
1699
+ /**
1700
+ * The source or target environment.
1701
+ */
1702
+ runEnvironment?: RunEnvironment;
1703
+ /**
1704
+ * The servers on which to run the script.
1705
+ */
1706
+ targetType?: TargetType;
1707
+ }
1708
+ export interface WorkflowStepGroupSummary {
1709
+ /**
1710
+ * The ID of the step group.
1711
+ */
1712
+ id?: String;
1713
+ /**
1714
+ * The name of the step group.
1715
+ */
1716
+ name?: String;
1717
+ /**
1718
+ * The owner of the step group.
1719
+ */
1720
+ owner?: Owner;
1721
+ /**
1722
+ * The status of the step group.
1723
+ */
1724
+ status?: StepGroupStatus;
1725
+ /**
1726
+ * The previous step group.
1727
+ */
1728
+ previous?: StringList;
1729
+ /**
1730
+ * The next step group.
1731
+ */
1732
+ next?: StringList;
1733
+ }
1734
+ export type WorkflowStepGroupsSummaryList = WorkflowStepGroupSummary[];
1735
+ export interface WorkflowStepOutput {
1736
+ /**
1737
+ * The name of the step.
1738
+ */
1739
+ name?: WorkflowStepOutputName;
1740
+ /**
1741
+ * The data type of the output.
1742
+ */
1743
+ dataType?: DataType;
1744
+ /**
1745
+ * Determine if an output is required from a step.
1746
+ */
1747
+ required?: Boolean;
1748
+ /**
1749
+ * The value of the output.
1750
+ */
1751
+ value?: WorkflowStepOutputUnion;
1752
+ }
1753
+ export type WorkflowStepOutputList = WorkflowStepOutput[];
1754
+ export type WorkflowStepOutputName = string;
1755
+ export interface WorkflowStepOutputUnion {
1756
+ /**
1757
+ * The integer value.
1758
+ */
1759
+ integerValue?: Integer;
1760
+ /**
1761
+ * The string value.
1762
+ */
1763
+ stringValue?: StringValue;
1764
+ /**
1765
+ * The list of string value.
1766
+ */
1767
+ listOfStringValue?: StringList;
1768
+ }
1769
+ export interface WorkflowStepSummary {
1770
+ /**
1771
+ * The ID of the step.
1772
+ */
1773
+ stepId?: String;
1774
+ /**
1775
+ * The name of the step.
1776
+ */
1777
+ name?: String;
1778
+ /**
1779
+ * The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
1780
+ */
1781
+ stepActionType?: StepActionType;
1782
+ /**
1783
+ * The owner of the step.
1784
+ */
1785
+ owner?: Owner;
1786
+ /**
1787
+ * The previous step.
1788
+ */
1789
+ previous?: StringList;
1790
+ /**
1791
+ * The next step.
1792
+ */
1793
+ next?: StringList;
1794
+ /**
1795
+ * The status of the step.
1796
+ */
1797
+ status?: StepStatus;
1798
+ /**
1799
+ * The status message of the migration workflow.
1800
+ */
1801
+ statusMessage?: String;
1802
+ /**
1803
+ * The number of servers that have been migrated.
1804
+ */
1805
+ noOfSrvCompleted?: Integer;
1806
+ /**
1807
+ * The number of servers that have failed to migrate.
1808
+ */
1809
+ noOfSrvFailed?: Integer;
1810
+ /**
1811
+ * The total number of servers that have been migrated.
1812
+ */
1813
+ totalNoOfSrv?: Integer;
1814
+ /**
1815
+ * The description of the step.
1816
+ */
1817
+ description?: String;
1818
+ /**
1819
+ * The location of the script.
1820
+ */
1821
+ scriptLocation?: String;
1822
+ }
1823
+ export type WorkflowStepsSummaryList = WorkflowStepSummary[];
1824
+ /**
1825
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1826
+ */
1827
+ export type apiVersion = "2021-08-28"|"latest"|string;
1828
+ export interface ClientApiVersions {
1829
+ /**
1830
+ * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1831
+ */
1832
+ apiVersion?: apiVersion;
1833
+ }
1834
+ export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
1835
+ /**
1836
+ * Contains interfaces for use with the MigrationHubOrchestrator client.
1837
+ */
1838
+ export import Types = MigrationHubOrchestrator;
1839
+ }
1840
+ export = MigrationHubOrchestrator;