@aws-sdk/client-migrationhuborchestrator 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +299 -299
- package/dist-types/ts3.4/models/models_0.d.ts +305 -299
- package/package.json +7 -7
|
@@ -12,7 +12,7 @@ export interface ListTagsForResourceRequest {
|
|
|
12
12
|
resourceArn: string | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface ListTagsForResourceResponse {
|
|
15
|
-
tags?: Record<string, string
|
|
15
|
+
tags?: Record<string, string> | undefined;
|
|
16
16
|
}
|
|
17
17
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
18
|
readonly name: "ResourceNotFoundException";
|
|
@@ -82,12 +82,12 @@ export declare namespace StepInput {
|
|
|
82
82
|
}
|
|
83
83
|
export interface CreateMigrationWorkflowRequest {
|
|
84
84
|
name: string | undefined;
|
|
85
|
-
description?: string;
|
|
85
|
+
description?: string | undefined;
|
|
86
86
|
templateId: string | undefined;
|
|
87
|
-
applicationConfigurationId?: string;
|
|
87
|
+
applicationConfigurationId?: string | undefined;
|
|
88
88
|
inputParameters: Record<string, StepInput> | undefined;
|
|
89
|
-
stepTargets?: string[];
|
|
90
|
-
tags?: Record<string, string
|
|
89
|
+
stepTargets?: string[] | undefined;
|
|
90
|
+
tags?: Record<string, string> | undefined;
|
|
91
91
|
}
|
|
92
92
|
export declare const MigrationWorkflowStatusEnum: {
|
|
93
93
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -108,17 +108,17 @@ export declare const MigrationWorkflowStatusEnum: {
|
|
|
108
108
|
export type MigrationWorkflowStatusEnum =
|
|
109
109
|
(typeof MigrationWorkflowStatusEnum)[keyof typeof MigrationWorkflowStatusEnum];
|
|
110
110
|
export interface CreateMigrationWorkflowResponse {
|
|
111
|
-
id?: string;
|
|
112
|
-
arn?: string;
|
|
113
|
-
name?: string;
|
|
114
|
-
description?: string;
|
|
115
|
-
templateId?: string;
|
|
116
|
-
adsApplicationConfigurationId?: string;
|
|
117
|
-
workflowInputs?: Record<string, StepInput
|
|
118
|
-
stepTargets?: string[];
|
|
119
|
-
status?: MigrationWorkflowStatusEnum;
|
|
120
|
-
creationTime?: Date;
|
|
121
|
-
tags?: Record<string, string
|
|
111
|
+
id?: string | undefined;
|
|
112
|
+
arn?: string | undefined;
|
|
113
|
+
name?: string | undefined;
|
|
114
|
+
description?: string | undefined;
|
|
115
|
+
templateId?: string | undefined;
|
|
116
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
117
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
118
|
+
stepTargets?: string[] | undefined;
|
|
119
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
120
|
+
creationTime?: Date | undefined;
|
|
121
|
+
tags?: Record<string, string> | undefined;
|
|
122
122
|
}
|
|
123
123
|
export declare class InternalServerException extends __BaseException {
|
|
124
124
|
readonly name: "InternalServerException";
|
|
@@ -138,103 +138,103 @@ export interface DeleteMigrationWorkflowRequest {
|
|
|
138
138
|
id: string | undefined;
|
|
139
139
|
}
|
|
140
140
|
export interface DeleteMigrationWorkflowResponse {
|
|
141
|
-
id?: string;
|
|
142
|
-
arn?: string;
|
|
143
|
-
status?: MigrationWorkflowStatusEnum;
|
|
141
|
+
id?: string | undefined;
|
|
142
|
+
arn?: string | undefined;
|
|
143
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface GetMigrationWorkflowRequest {
|
|
146
146
|
id: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface Tool {
|
|
149
|
-
name?: string;
|
|
150
|
-
url?: string;
|
|
149
|
+
name?: string | undefined;
|
|
150
|
+
url?: string | undefined;
|
|
151
151
|
}
|
|
152
152
|
export interface GetMigrationWorkflowResponse {
|
|
153
|
-
id?: string;
|
|
154
|
-
arn?: string;
|
|
155
|
-
name?: string;
|
|
156
|
-
description?: string;
|
|
157
|
-
templateId?: string;
|
|
158
|
-
adsApplicationConfigurationId?: string;
|
|
159
|
-
adsApplicationName?: string;
|
|
160
|
-
status?: MigrationWorkflowStatusEnum;
|
|
161
|
-
statusMessage?: string;
|
|
162
|
-
creationTime?: Date;
|
|
163
|
-
lastStartTime?: Date;
|
|
164
|
-
lastStopTime?: Date;
|
|
165
|
-
lastModifiedTime?: Date;
|
|
166
|
-
endTime?: Date;
|
|
167
|
-
tools?: Tool[];
|
|
168
|
-
totalSteps?: number;
|
|
169
|
-
completedSteps?: number;
|
|
170
|
-
workflowInputs?: Record<string, StepInput
|
|
171
|
-
tags?: Record<string, string
|
|
172
|
-
workflowBucket?: string;
|
|
153
|
+
id?: string | undefined;
|
|
154
|
+
arn?: string | undefined;
|
|
155
|
+
name?: string | undefined;
|
|
156
|
+
description?: string | undefined;
|
|
157
|
+
templateId?: string | undefined;
|
|
158
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
159
|
+
adsApplicationName?: string | undefined;
|
|
160
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
161
|
+
statusMessage?: string | undefined;
|
|
162
|
+
creationTime?: Date | undefined;
|
|
163
|
+
lastStartTime?: Date | undefined;
|
|
164
|
+
lastStopTime?: Date | undefined;
|
|
165
|
+
lastModifiedTime?: Date | undefined;
|
|
166
|
+
endTime?: Date | undefined;
|
|
167
|
+
tools?: Tool[] | undefined;
|
|
168
|
+
totalSteps?: number | undefined;
|
|
169
|
+
completedSteps?: number | undefined;
|
|
170
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
171
|
+
tags?: Record<string, string> | undefined;
|
|
172
|
+
workflowBucket?: string | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface ListMigrationWorkflowsRequest {
|
|
175
|
-
maxResults?: number;
|
|
176
|
-
nextToken?: string;
|
|
177
|
-
templateId?: string;
|
|
178
|
-
adsApplicationConfigurationName?: string;
|
|
179
|
-
status?: MigrationWorkflowStatusEnum;
|
|
180
|
-
name?: string;
|
|
175
|
+
maxResults?: number | undefined;
|
|
176
|
+
nextToken?: string | undefined;
|
|
177
|
+
templateId?: string | undefined;
|
|
178
|
+
adsApplicationConfigurationName?: string | undefined;
|
|
179
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
180
|
+
name?: string | undefined;
|
|
181
181
|
}
|
|
182
182
|
export interface MigrationWorkflowSummary {
|
|
183
|
-
id?: string;
|
|
184
|
-
name?: string;
|
|
185
|
-
templateId?: string;
|
|
186
|
-
adsApplicationConfigurationName?: string;
|
|
187
|
-
status?: MigrationWorkflowStatusEnum;
|
|
188
|
-
creationTime?: Date;
|
|
189
|
-
endTime?: Date;
|
|
190
|
-
statusMessage?: string;
|
|
191
|
-
completedSteps?: number;
|
|
192
|
-
totalSteps?: number;
|
|
183
|
+
id?: string | undefined;
|
|
184
|
+
name?: string | undefined;
|
|
185
|
+
templateId?: string | undefined;
|
|
186
|
+
adsApplicationConfigurationName?: string | undefined;
|
|
187
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
188
|
+
creationTime?: Date | undefined;
|
|
189
|
+
endTime?: Date | undefined;
|
|
190
|
+
statusMessage?: string | undefined;
|
|
191
|
+
completedSteps?: number | undefined;
|
|
192
|
+
totalSteps?: number | undefined;
|
|
193
193
|
}
|
|
194
194
|
export interface ListMigrationWorkflowsResponse {
|
|
195
|
-
nextToken?: string;
|
|
195
|
+
nextToken?: string | undefined;
|
|
196
196
|
migrationWorkflowSummary: MigrationWorkflowSummary[] | undefined;
|
|
197
197
|
}
|
|
198
198
|
export interface StartMigrationWorkflowRequest {
|
|
199
199
|
id: string | undefined;
|
|
200
200
|
}
|
|
201
201
|
export interface StartMigrationWorkflowResponse {
|
|
202
|
-
id?: string;
|
|
203
|
-
arn?: string;
|
|
204
|
-
status?: MigrationWorkflowStatusEnum;
|
|
205
|
-
statusMessage?: string;
|
|
206
|
-
lastStartTime?: Date;
|
|
202
|
+
id?: string | undefined;
|
|
203
|
+
arn?: string | undefined;
|
|
204
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
205
|
+
statusMessage?: string | undefined;
|
|
206
|
+
lastStartTime?: Date | undefined;
|
|
207
207
|
}
|
|
208
208
|
export interface StopMigrationWorkflowRequest {
|
|
209
209
|
id: string | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface StopMigrationWorkflowResponse {
|
|
212
|
-
id?: string;
|
|
213
|
-
arn?: string;
|
|
214
|
-
status?: MigrationWorkflowStatusEnum;
|
|
215
|
-
statusMessage?: string;
|
|
216
|
-
lastStopTime?: Date;
|
|
212
|
+
id?: string | undefined;
|
|
213
|
+
arn?: string | undefined;
|
|
214
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
215
|
+
statusMessage?: string | undefined;
|
|
216
|
+
lastStopTime?: Date | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface UpdateMigrationWorkflowRequest {
|
|
219
219
|
id: string | undefined;
|
|
220
|
-
name?: string;
|
|
221
|
-
description?: string;
|
|
222
|
-
inputParameters?: Record<string, StepInput
|
|
223
|
-
stepTargets?: string[];
|
|
220
|
+
name?: string | undefined;
|
|
221
|
+
description?: string | undefined;
|
|
222
|
+
inputParameters?: Record<string, StepInput> | undefined;
|
|
223
|
+
stepTargets?: string[] | undefined;
|
|
224
224
|
}
|
|
225
225
|
export interface UpdateMigrationWorkflowResponse {
|
|
226
|
-
id?: string;
|
|
227
|
-
arn?: string;
|
|
228
|
-
name?: string;
|
|
229
|
-
description?: string;
|
|
230
|
-
templateId?: string;
|
|
231
|
-
adsApplicationConfigurationId?: string;
|
|
232
|
-
workflowInputs?: Record<string, StepInput
|
|
233
|
-
stepTargets?: string[];
|
|
234
|
-
status?: MigrationWorkflowStatusEnum;
|
|
235
|
-
creationTime?: Date;
|
|
236
|
-
lastModifiedTime?: Date;
|
|
237
|
-
tags?: Record<string, string
|
|
226
|
+
id?: string | undefined;
|
|
227
|
+
arn?: string | undefined;
|
|
228
|
+
name?: string | undefined;
|
|
229
|
+
description?: string | undefined;
|
|
230
|
+
templateId?: string | undefined;
|
|
231
|
+
adsApplicationConfigurationId?: string | undefined;
|
|
232
|
+
workflowInputs?: Record<string, StepInput> | undefined;
|
|
233
|
+
stepTargets?: string[] | undefined;
|
|
234
|
+
status?: MigrationWorkflowStatusEnum | undefined;
|
|
235
|
+
creationTime?: Date | undefined;
|
|
236
|
+
lastModifiedTime?: Date | undefined;
|
|
237
|
+
tags?: Record<string, string> | undefined;
|
|
238
238
|
}
|
|
239
239
|
export declare class ConflictException extends __BaseException {
|
|
240
240
|
readonly name: "ConflictException";
|
|
@@ -262,15 +262,15 @@ export declare namespace TemplateSource {
|
|
|
262
262
|
}
|
|
263
263
|
export interface CreateTemplateRequest {
|
|
264
264
|
templateName: string | undefined;
|
|
265
|
-
templateDescription?: string;
|
|
265
|
+
templateDescription?: string | undefined;
|
|
266
266
|
templateSource: TemplateSource | undefined;
|
|
267
|
-
clientToken?: string;
|
|
268
|
-
tags?: Record<string, string
|
|
267
|
+
clientToken?: string | undefined;
|
|
268
|
+
tags?: Record<string, string> | undefined;
|
|
269
269
|
}
|
|
270
270
|
export interface CreateTemplateResponse {
|
|
271
|
-
templateId?: string;
|
|
272
|
-
templateArn?: string;
|
|
273
|
-
tags?: Record<string, string
|
|
271
|
+
templateId?: string | undefined;
|
|
272
|
+
templateArn?: string | undefined;
|
|
273
|
+
tags?: Record<string, string> | undefined;
|
|
274
274
|
}
|
|
275
275
|
export interface DeleteTemplateRequest {
|
|
276
276
|
id: string | undefined;
|
|
@@ -287,9 +287,9 @@ export declare const DataType: {
|
|
|
287
287
|
};
|
|
288
288
|
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
289
289
|
export interface TemplateInput {
|
|
290
|
-
inputName?: string;
|
|
291
|
-
dataType?: DataType;
|
|
292
|
-
required?: boolean;
|
|
290
|
+
inputName?: string | undefined;
|
|
291
|
+
dataType?: DataType | undefined;
|
|
292
|
+
required?: boolean | undefined;
|
|
293
293
|
}
|
|
294
294
|
export declare const TemplateStatus: {
|
|
295
295
|
readonly CREATED: "CREATED";
|
|
@@ -301,48 +301,48 @@ export declare const TemplateStatus: {
|
|
|
301
301
|
export type TemplateStatus =
|
|
302
302
|
(typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
303
303
|
export interface GetMigrationWorkflowTemplateResponse {
|
|
304
|
-
id?: string;
|
|
305
|
-
templateArn?: string;
|
|
306
|
-
name?: string;
|
|
307
|
-
description?: string;
|
|
308
|
-
inputs?: TemplateInput[];
|
|
309
|
-
tools?: Tool[];
|
|
310
|
-
creationTime?: Date;
|
|
311
|
-
owner?: string;
|
|
312
|
-
status?: TemplateStatus;
|
|
313
|
-
statusMessage?: string;
|
|
314
|
-
templateClass?: string;
|
|
315
|
-
tags?: Record<string, string
|
|
304
|
+
id?: string | undefined;
|
|
305
|
+
templateArn?: string | undefined;
|
|
306
|
+
name?: string | undefined;
|
|
307
|
+
description?: string | undefined;
|
|
308
|
+
inputs?: TemplateInput[] | undefined;
|
|
309
|
+
tools?: Tool[] | undefined;
|
|
310
|
+
creationTime?: Date | undefined;
|
|
311
|
+
owner?: string | undefined;
|
|
312
|
+
status?: TemplateStatus | undefined;
|
|
313
|
+
statusMessage?: string | undefined;
|
|
314
|
+
templateClass?: string | undefined;
|
|
315
|
+
tags?: Record<string, string> | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface ListMigrationWorkflowTemplatesRequest {
|
|
318
|
-
maxResults?: number;
|
|
319
|
-
nextToken?: string;
|
|
320
|
-
name?: string;
|
|
318
|
+
maxResults?: number | undefined;
|
|
319
|
+
nextToken?: string | undefined;
|
|
320
|
+
name?: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface TemplateSummary {
|
|
323
|
-
id?: string;
|
|
324
|
-
name?: string;
|
|
325
|
-
arn?: string;
|
|
326
|
-
description?: string;
|
|
323
|
+
id?: string | undefined;
|
|
324
|
+
name?: string | undefined;
|
|
325
|
+
arn?: string | undefined;
|
|
326
|
+
description?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
export interface ListMigrationWorkflowTemplatesResponse {
|
|
329
|
-
nextToken?: string;
|
|
329
|
+
nextToken?: string | undefined;
|
|
330
330
|
templateSummary: TemplateSummary[] | undefined;
|
|
331
331
|
}
|
|
332
332
|
export interface UpdateTemplateRequest {
|
|
333
333
|
id: string | undefined;
|
|
334
|
-
templateName?: string;
|
|
335
|
-
templateDescription?: string;
|
|
336
|
-
clientToken?: string;
|
|
334
|
+
templateName?: string | undefined;
|
|
335
|
+
templateDescription?: string | undefined;
|
|
336
|
+
clientToken?: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface UpdateTemplateResponse {
|
|
339
|
-
templateId?: string;
|
|
340
|
-
templateArn?: string;
|
|
341
|
-
tags?: Record<string, string
|
|
339
|
+
templateId?: string | undefined;
|
|
340
|
+
templateArn?: string | undefined;
|
|
341
|
+
tags?: Record<string, string> | undefined;
|
|
342
342
|
}
|
|
343
343
|
export interface ListPluginsRequest {
|
|
344
|
-
maxResults?: number;
|
|
345
|
-
nextToken?: string;
|
|
344
|
+
maxResults?: number | undefined;
|
|
345
|
+
nextToken?: string | undefined;
|
|
346
346
|
}
|
|
347
347
|
export declare const PluginHealth: {
|
|
348
348
|
readonly PLUGIN_HEALTHY: "HEALTHY";
|
|
@@ -350,16 +350,16 @@ export declare const PluginHealth: {
|
|
|
350
350
|
};
|
|
351
351
|
export type PluginHealth = (typeof PluginHealth)[keyof typeof PluginHealth];
|
|
352
352
|
export interface PluginSummary {
|
|
353
|
-
pluginId?: string;
|
|
354
|
-
hostname?: string;
|
|
355
|
-
status?: PluginHealth;
|
|
356
|
-
ipAddress?: string;
|
|
357
|
-
version?: string;
|
|
358
|
-
registeredTime?: string;
|
|
353
|
+
pluginId?: string | undefined;
|
|
354
|
+
hostname?: string | undefined;
|
|
355
|
+
status?: PluginHealth | undefined;
|
|
356
|
+
ipAddress?: string | undefined;
|
|
357
|
+
version?: string | undefined;
|
|
358
|
+
registeredTime?: string | undefined;
|
|
359
359
|
}
|
|
360
360
|
export interface ListPluginsResponse {
|
|
361
|
-
nextToken?: string;
|
|
362
|
-
plugins?: PluginSummary[];
|
|
361
|
+
nextToken?: string | undefined;
|
|
362
|
+
plugins?: PluginSummary[] | undefined;
|
|
363
363
|
}
|
|
364
364
|
export interface TagResourceRequest {
|
|
365
365
|
resourceArn: string | undefined;
|
|
@@ -372,9 +372,9 @@ export interface GetTemplateStepRequest {
|
|
|
372
372
|
stepGroupId: string | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface StepOutput {
|
|
375
|
-
name?: string;
|
|
376
|
-
dataType?: DataType;
|
|
377
|
-
required?: boolean;
|
|
375
|
+
name?: string | undefined;
|
|
376
|
+
dataType?: DataType | undefined;
|
|
377
|
+
required?: boolean | undefined;
|
|
378
378
|
}
|
|
379
379
|
export declare const StepActionType: {
|
|
380
380
|
readonly AUTOMATED: "AUTOMATED";
|
|
@@ -383,8 +383,8 @@ export declare const StepActionType: {
|
|
|
383
383
|
export type StepActionType =
|
|
384
384
|
(typeof StepActionType)[keyof typeof StepActionType];
|
|
385
385
|
export interface PlatformCommand {
|
|
386
|
-
linux?: string;
|
|
387
|
-
windows?: string;
|
|
386
|
+
linux?: string | undefined;
|
|
387
|
+
windows?: string | undefined;
|
|
388
388
|
}
|
|
389
389
|
export declare const RunEnvironment: {
|
|
390
390
|
readonly AWS: "AWS";
|
|
@@ -393,8 +393,8 @@ export declare const RunEnvironment: {
|
|
|
393
393
|
export type RunEnvironment =
|
|
394
394
|
(typeof RunEnvironment)[keyof typeof RunEnvironment];
|
|
395
395
|
export interface PlatformScriptKey {
|
|
396
|
-
linux?: string;
|
|
397
|
-
windows?: string;
|
|
396
|
+
linux?: string | undefined;
|
|
397
|
+
windows?: string | undefined;
|
|
398
398
|
}
|
|
399
399
|
export declare const TargetType: {
|
|
400
400
|
readonly ALL: "ALL";
|
|
@@ -403,28 +403,28 @@ export declare const TargetType: {
|
|
|
403
403
|
};
|
|
404
404
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
405
405
|
export interface StepAutomationConfiguration {
|
|
406
|
-
scriptLocationS3Bucket?: string;
|
|
407
|
-
scriptLocationS3Key?: PlatformScriptKey;
|
|
408
|
-
command?: PlatformCommand;
|
|
409
|
-
runEnvironment?: RunEnvironment;
|
|
410
|
-
targetType?: TargetType;
|
|
406
|
+
scriptLocationS3Bucket?: string | undefined;
|
|
407
|
+
scriptLocationS3Key?: PlatformScriptKey | undefined;
|
|
408
|
+
command?: PlatformCommand | undefined;
|
|
409
|
+
runEnvironment?: RunEnvironment | undefined;
|
|
410
|
+
targetType?: TargetType | undefined;
|
|
411
411
|
}
|
|
412
412
|
export interface GetTemplateStepResponse {
|
|
413
|
-
id?: string;
|
|
414
|
-
stepGroupId?: string;
|
|
415
|
-
templateId?: string;
|
|
416
|
-
name?: string;
|
|
417
|
-
description?: string;
|
|
418
|
-
stepActionType?: StepActionType;
|
|
419
|
-
creationTime?: string;
|
|
420
|
-
previous?: string[];
|
|
421
|
-
next?: string[];
|
|
422
|
-
outputs?: StepOutput[];
|
|
423
|
-
stepAutomationConfiguration?: StepAutomationConfiguration;
|
|
413
|
+
id?: string | undefined;
|
|
414
|
+
stepGroupId?: string | undefined;
|
|
415
|
+
templateId?: string | undefined;
|
|
416
|
+
name?: string | undefined;
|
|
417
|
+
description?: string | undefined;
|
|
418
|
+
stepActionType?: StepActionType | undefined;
|
|
419
|
+
creationTime?: string | undefined;
|
|
420
|
+
previous?: string[] | undefined;
|
|
421
|
+
next?: string[] | undefined;
|
|
422
|
+
outputs?: StepOutput[] | undefined;
|
|
423
|
+
stepAutomationConfiguration?: StepAutomationConfiguration | undefined;
|
|
424
424
|
}
|
|
425
425
|
export interface ListTemplateStepsRequest {
|
|
426
|
-
maxResults?: number;
|
|
427
|
-
nextToken?: string;
|
|
426
|
+
maxResults?: number | undefined;
|
|
427
|
+
nextToken?: string | undefined;
|
|
428
428
|
templateId: string | undefined;
|
|
429
429
|
stepGroupId: string | undefined;
|
|
430
430
|
}
|
|
@@ -434,19 +434,19 @@ export declare const Owner: {
|
|
|
434
434
|
};
|
|
435
435
|
export type Owner = (typeof Owner)[keyof typeof Owner];
|
|
436
436
|
export interface TemplateStepSummary {
|
|
437
|
-
id?: string;
|
|
438
|
-
stepGroupId?: string;
|
|
439
|
-
templateId?: string;
|
|
440
|
-
name?: string;
|
|
441
|
-
stepActionType?: StepActionType;
|
|
442
|
-
targetType?: TargetType;
|
|
443
|
-
owner?: Owner;
|
|
444
|
-
previous?: string[];
|
|
445
|
-
next?: string[];
|
|
437
|
+
id?: string | undefined;
|
|
438
|
+
stepGroupId?: string | undefined;
|
|
439
|
+
templateId?: string | undefined;
|
|
440
|
+
name?: string | undefined;
|
|
441
|
+
stepActionType?: StepActionType | undefined;
|
|
442
|
+
targetType?: TargetType | undefined;
|
|
443
|
+
owner?: Owner | undefined;
|
|
444
|
+
previous?: string[] | undefined;
|
|
445
|
+
next?: string[] | undefined;
|
|
446
446
|
}
|
|
447
447
|
export interface ListTemplateStepsResponse {
|
|
448
|
-
nextToken?: string;
|
|
449
|
-
templateStepSummaryList?: TemplateStepSummary[];
|
|
448
|
+
nextToken?: string | undefined;
|
|
449
|
+
templateStepSummaryList?: TemplateStepSummary[] | undefined;
|
|
450
450
|
}
|
|
451
451
|
export interface GetTemplateStepGroupRequest {
|
|
452
452
|
templateId: string | undefined;
|
|
@@ -465,30 +465,30 @@ export declare const StepGroupStatus: {
|
|
|
465
465
|
export type StepGroupStatus =
|
|
466
466
|
(typeof StepGroupStatus)[keyof typeof StepGroupStatus];
|
|
467
467
|
export interface GetTemplateStepGroupResponse {
|
|
468
|
-
templateId?: string;
|
|
469
|
-
id?: string;
|
|
470
|
-
name?: string;
|
|
471
|
-
description?: string;
|
|
472
|
-
status?: StepGroupStatus;
|
|
473
|
-
creationTime?: Date;
|
|
474
|
-
lastModifiedTime?: Date;
|
|
475
|
-
tools?: Tool[];
|
|
476
|
-
previous?: string[];
|
|
477
|
-
next?: string[];
|
|
468
|
+
templateId?: string | undefined;
|
|
469
|
+
id?: string | undefined;
|
|
470
|
+
name?: string | undefined;
|
|
471
|
+
description?: string | undefined;
|
|
472
|
+
status?: StepGroupStatus | undefined;
|
|
473
|
+
creationTime?: Date | undefined;
|
|
474
|
+
lastModifiedTime?: Date | undefined;
|
|
475
|
+
tools?: Tool[] | undefined;
|
|
476
|
+
previous?: string[] | undefined;
|
|
477
|
+
next?: string[] | undefined;
|
|
478
478
|
}
|
|
479
479
|
export interface ListTemplateStepGroupsRequest {
|
|
480
|
-
maxResults?: number;
|
|
481
|
-
nextToken?: string;
|
|
480
|
+
maxResults?: number | undefined;
|
|
481
|
+
nextToken?: string | undefined;
|
|
482
482
|
templateId: string | undefined;
|
|
483
483
|
}
|
|
484
484
|
export interface TemplateStepGroupSummary {
|
|
485
|
-
id?: string;
|
|
486
|
-
name?: string;
|
|
487
|
-
previous?: string[];
|
|
488
|
-
next?: string[];
|
|
485
|
+
id?: string | undefined;
|
|
486
|
+
name?: string | undefined;
|
|
487
|
+
previous?: string[] | undefined;
|
|
488
|
+
next?: string[] | undefined;
|
|
489
489
|
}
|
|
490
490
|
export interface ListTemplateStepGroupsResponse {
|
|
491
|
-
nextToken?: string;
|
|
491
|
+
nextToken?: string | undefined;
|
|
492
492
|
templateStepGroupSummary: TemplateStepGroupSummary[] | undefined;
|
|
493
493
|
}
|
|
494
494
|
export interface UntagResourceRequest {
|
|
@@ -535,35 +535,37 @@ export declare namespace WorkflowStepOutputUnion {
|
|
|
535
535
|
const visit: <T>(value: WorkflowStepOutputUnion, visitor: Visitor<T>) => T;
|
|
536
536
|
}
|
|
537
537
|
export interface WorkflowStepOutput {
|
|
538
|
-
name?: string;
|
|
539
|
-
dataType?: DataType;
|
|
540
|
-
required?: boolean;
|
|
541
|
-
value?: WorkflowStepOutputUnion;
|
|
538
|
+
name?: string | undefined;
|
|
539
|
+
dataType?: DataType | undefined;
|
|
540
|
+
required?: boolean | undefined;
|
|
541
|
+
value?: WorkflowStepOutputUnion | undefined;
|
|
542
542
|
}
|
|
543
543
|
export interface WorkflowStepAutomationConfiguration {
|
|
544
|
-
scriptLocationS3Bucket?: string;
|
|
545
|
-
scriptLocationS3Key?: PlatformScriptKey;
|
|
546
|
-
command?: PlatformCommand;
|
|
547
|
-
runEnvironment?: RunEnvironment;
|
|
548
|
-
targetType?: TargetType;
|
|
544
|
+
scriptLocationS3Bucket?: string | undefined;
|
|
545
|
+
scriptLocationS3Key?: PlatformScriptKey | undefined;
|
|
546
|
+
command?: PlatformCommand | undefined;
|
|
547
|
+
runEnvironment?: RunEnvironment | undefined;
|
|
548
|
+
targetType?: TargetType | undefined;
|
|
549
549
|
}
|
|
550
550
|
export interface CreateWorkflowStepRequest {
|
|
551
551
|
name: string | undefined;
|
|
552
552
|
stepGroupId: string | undefined;
|
|
553
553
|
workflowId: string | undefined;
|
|
554
554
|
stepActionType: StepActionType | undefined;
|
|
555
|
-
description?: string;
|
|
556
|
-
workflowStepAutomationConfiguration?:
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
555
|
+
description?: string | undefined;
|
|
556
|
+
workflowStepAutomationConfiguration?:
|
|
557
|
+
| WorkflowStepAutomationConfiguration
|
|
558
|
+
| undefined;
|
|
559
|
+
stepTarget?: string[] | undefined;
|
|
560
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
561
|
+
previous?: string[] | undefined;
|
|
562
|
+
next?: string[] | undefined;
|
|
561
563
|
}
|
|
562
564
|
export interface CreateWorkflowStepResponse {
|
|
563
|
-
id?: string;
|
|
564
|
-
stepGroupId?: string;
|
|
565
|
-
workflowId?: string;
|
|
566
|
-
name?: string;
|
|
565
|
+
id?: string | undefined;
|
|
566
|
+
stepGroupId?: string | undefined;
|
|
567
|
+
workflowId?: string | undefined;
|
|
568
|
+
name?: string | undefined;
|
|
567
569
|
}
|
|
568
570
|
export interface DeleteWorkflowStepRequest {
|
|
569
571
|
id: string | undefined;
|
|
@@ -588,51 +590,53 @@ export declare const StepStatus: {
|
|
|
588
590
|
};
|
|
589
591
|
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
590
592
|
export interface GetWorkflowStepResponse {
|
|
591
|
-
name?: string;
|
|
592
|
-
stepGroupId?: string;
|
|
593
|
-
workflowId?: string;
|
|
594
|
-
stepId?: string;
|
|
595
|
-
description?: string;
|
|
596
|
-
stepActionType?: StepActionType;
|
|
597
|
-
owner?: Owner;
|
|
598
|
-
workflowStepAutomationConfiguration?:
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
593
|
+
name?: string | undefined;
|
|
594
|
+
stepGroupId?: string | undefined;
|
|
595
|
+
workflowId?: string | undefined;
|
|
596
|
+
stepId?: string | undefined;
|
|
597
|
+
description?: string | undefined;
|
|
598
|
+
stepActionType?: StepActionType | undefined;
|
|
599
|
+
owner?: Owner | undefined;
|
|
600
|
+
workflowStepAutomationConfiguration?:
|
|
601
|
+
| WorkflowStepAutomationConfiguration
|
|
602
|
+
| undefined;
|
|
603
|
+
stepTarget?: string[] | undefined;
|
|
604
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
605
|
+
previous?: string[] | undefined;
|
|
606
|
+
next?: string[] | undefined;
|
|
607
|
+
status?: StepStatus | undefined;
|
|
608
|
+
statusMessage?: string | undefined;
|
|
609
|
+
scriptOutputLocation?: string | undefined;
|
|
610
|
+
creationTime?: Date | undefined;
|
|
611
|
+
lastStartTime?: Date | undefined;
|
|
612
|
+
endTime?: Date | undefined;
|
|
613
|
+
noOfSrvCompleted?: number | undefined;
|
|
614
|
+
noOfSrvFailed?: number | undefined;
|
|
615
|
+
totalNoOfSrv?: number | undefined;
|
|
612
616
|
}
|
|
613
617
|
export interface ListWorkflowStepsRequest {
|
|
614
|
-
nextToken?: string;
|
|
615
|
-
maxResults?: number;
|
|
618
|
+
nextToken?: string | undefined;
|
|
619
|
+
maxResults?: number | undefined;
|
|
616
620
|
workflowId: string | undefined;
|
|
617
621
|
stepGroupId: string | undefined;
|
|
618
622
|
}
|
|
619
623
|
export interface WorkflowStepSummary {
|
|
620
|
-
stepId?: string;
|
|
621
|
-
name?: string;
|
|
622
|
-
stepActionType?: StepActionType;
|
|
623
|
-
owner?: Owner;
|
|
624
|
-
previous?: string[];
|
|
625
|
-
next?: string[];
|
|
626
|
-
status?: StepStatus;
|
|
627
|
-
statusMessage?: string;
|
|
628
|
-
noOfSrvCompleted?: number;
|
|
629
|
-
noOfSrvFailed?: number;
|
|
630
|
-
totalNoOfSrv?: number;
|
|
631
|
-
description?: string;
|
|
632
|
-
scriptLocation?: string;
|
|
624
|
+
stepId?: string | undefined;
|
|
625
|
+
name?: string | undefined;
|
|
626
|
+
stepActionType?: StepActionType | undefined;
|
|
627
|
+
owner?: Owner | undefined;
|
|
628
|
+
previous?: string[] | undefined;
|
|
629
|
+
next?: string[] | undefined;
|
|
630
|
+
status?: StepStatus | undefined;
|
|
631
|
+
statusMessage?: string | undefined;
|
|
632
|
+
noOfSrvCompleted?: number | undefined;
|
|
633
|
+
noOfSrvFailed?: number | undefined;
|
|
634
|
+
totalNoOfSrv?: number | undefined;
|
|
635
|
+
description?: string | undefined;
|
|
636
|
+
scriptLocation?: string | undefined;
|
|
633
637
|
}
|
|
634
638
|
export interface ListWorkflowStepsResponse {
|
|
635
|
-
nextToken?: string;
|
|
639
|
+
nextToken?: string | undefined;
|
|
636
640
|
workflowStepsSummary: WorkflowStepSummary[] | undefined;
|
|
637
641
|
}
|
|
638
642
|
export interface RetryWorkflowStepRequest {
|
|
@@ -641,47 +645,49 @@ export interface RetryWorkflowStepRequest {
|
|
|
641
645
|
id: string | undefined;
|
|
642
646
|
}
|
|
643
647
|
export interface RetryWorkflowStepResponse {
|
|
644
|
-
stepGroupId?: string;
|
|
645
|
-
workflowId?: string;
|
|
646
|
-
id?: string;
|
|
647
|
-
status?: StepStatus;
|
|
648
|
+
stepGroupId?: string | undefined;
|
|
649
|
+
workflowId?: string | undefined;
|
|
650
|
+
id?: string | undefined;
|
|
651
|
+
status?: StepStatus | undefined;
|
|
648
652
|
}
|
|
649
653
|
export interface UpdateWorkflowStepRequest {
|
|
650
654
|
id: string | undefined;
|
|
651
655
|
stepGroupId: string | undefined;
|
|
652
656
|
workflowId: string | undefined;
|
|
653
|
-
name?: string;
|
|
654
|
-
description?: string;
|
|
655
|
-
stepActionType?: StepActionType;
|
|
656
|
-
workflowStepAutomationConfiguration?:
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
657
|
+
name?: string | undefined;
|
|
658
|
+
description?: string | undefined;
|
|
659
|
+
stepActionType?: StepActionType | undefined;
|
|
660
|
+
workflowStepAutomationConfiguration?:
|
|
661
|
+
| WorkflowStepAutomationConfiguration
|
|
662
|
+
| undefined;
|
|
663
|
+
stepTarget?: string[] | undefined;
|
|
664
|
+
outputs?: WorkflowStepOutput[] | undefined;
|
|
665
|
+
previous?: string[] | undefined;
|
|
666
|
+
next?: string[] | undefined;
|
|
667
|
+
status?: StepStatus | undefined;
|
|
662
668
|
}
|
|
663
669
|
export interface UpdateWorkflowStepResponse {
|
|
664
|
-
id?: string;
|
|
665
|
-
stepGroupId?: string;
|
|
666
|
-
workflowId?: string;
|
|
667
|
-
name?: string;
|
|
670
|
+
id?: string | undefined;
|
|
671
|
+
stepGroupId?: string | undefined;
|
|
672
|
+
workflowId?: string | undefined;
|
|
673
|
+
name?: string | undefined;
|
|
668
674
|
}
|
|
669
675
|
export interface CreateWorkflowStepGroupRequest {
|
|
670
676
|
workflowId: string | undefined;
|
|
671
677
|
name: string | undefined;
|
|
672
|
-
description?: string;
|
|
673
|
-
next?: string[];
|
|
674
|
-
previous?: string[];
|
|
678
|
+
description?: string | undefined;
|
|
679
|
+
next?: string[] | undefined;
|
|
680
|
+
previous?: string[] | undefined;
|
|
675
681
|
}
|
|
676
682
|
export interface CreateWorkflowStepGroupResponse {
|
|
677
|
-
workflowId?: string;
|
|
678
|
-
name?: string;
|
|
679
|
-
id?: string;
|
|
680
|
-
description?: string;
|
|
681
|
-
tools?: Tool[];
|
|
682
|
-
next?: string[];
|
|
683
|
-
previous?: string[];
|
|
684
|
-
creationTime?: Date;
|
|
683
|
+
workflowId?: string | undefined;
|
|
684
|
+
name?: string | undefined;
|
|
685
|
+
id?: string | undefined;
|
|
686
|
+
description?: string | undefined;
|
|
687
|
+
tools?: Tool[] | undefined;
|
|
688
|
+
next?: string[] | undefined;
|
|
689
|
+
previous?: string[] | undefined;
|
|
690
|
+
creationTime?: Date | undefined;
|
|
685
691
|
}
|
|
686
692
|
export interface DeleteWorkflowStepGroupRequest {
|
|
687
693
|
workflowId: string | undefined;
|
|
@@ -693,53 +699,53 @@ export interface GetWorkflowStepGroupRequest {
|
|
|
693
699
|
workflowId: string | undefined;
|
|
694
700
|
}
|
|
695
701
|
export interface GetWorkflowStepGroupResponse {
|
|
696
|
-
id?: string;
|
|
697
|
-
workflowId?: string;
|
|
698
|
-
name?: string;
|
|
699
|
-
description?: string;
|
|
700
|
-
status?: StepGroupStatus;
|
|
701
|
-
owner?: Owner;
|
|
702
|
-
creationTime?: Date;
|
|
703
|
-
lastModifiedTime?: Date;
|
|
704
|
-
endTime?: Date;
|
|
705
|
-
tools?: Tool[];
|
|
706
|
-
previous?: string[];
|
|
707
|
-
next?: string[];
|
|
702
|
+
id?: string | undefined;
|
|
703
|
+
workflowId?: string | undefined;
|
|
704
|
+
name?: string | undefined;
|
|
705
|
+
description?: string | undefined;
|
|
706
|
+
status?: StepGroupStatus | undefined;
|
|
707
|
+
owner?: Owner | undefined;
|
|
708
|
+
creationTime?: Date | undefined;
|
|
709
|
+
lastModifiedTime?: Date | undefined;
|
|
710
|
+
endTime?: Date | undefined;
|
|
711
|
+
tools?: Tool[] | undefined;
|
|
712
|
+
previous?: string[] | undefined;
|
|
713
|
+
next?: string[] | undefined;
|
|
708
714
|
}
|
|
709
715
|
export interface ListWorkflowStepGroupsRequest {
|
|
710
|
-
nextToken?: string;
|
|
711
|
-
maxResults?: number;
|
|
716
|
+
nextToken?: string | undefined;
|
|
717
|
+
maxResults?: number | undefined;
|
|
712
718
|
workflowId: string | undefined;
|
|
713
719
|
}
|
|
714
720
|
export interface WorkflowStepGroupSummary {
|
|
715
|
-
id?: string;
|
|
716
|
-
name?: string;
|
|
717
|
-
owner?: Owner;
|
|
718
|
-
status?: StepGroupStatus;
|
|
719
|
-
previous?: string[];
|
|
720
|
-
next?: string[];
|
|
721
|
+
id?: string | undefined;
|
|
722
|
+
name?: string | undefined;
|
|
723
|
+
owner?: Owner | undefined;
|
|
724
|
+
status?: StepGroupStatus | undefined;
|
|
725
|
+
previous?: string[] | undefined;
|
|
726
|
+
next?: string[] | undefined;
|
|
721
727
|
}
|
|
722
728
|
export interface ListWorkflowStepGroupsResponse {
|
|
723
|
-
nextToken?: string;
|
|
729
|
+
nextToken?: string | undefined;
|
|
724
730
|
workflowStepGroupsSummary: WorkflowStepGroupSummary[] | undefined;
|
|
725
731
|
}
|
|
726
732
|
export interface UpdateWorkflowStepGroupRequest {
|
|
727
733
|
workflowId: string | undefined;
|
|
728
734
|
id: string | undefined;
|
|
729
|
-
name?: string;
|
|
730
|
-
description?: string;
|
|
731
|
-
next?: string[];
|
|
732
|
-
previous?: string[];
|
|
735
|
+
name?: string | undefined;
|
|
736
|
+
description?: string | undefined;
|
|
737
|
+
next?: string[] | undefined;
|
|
738
|
+
previous?: string[] | undefined;
|
|
733
739
|
}
|
|
734
740
|
export interface UpdateWorkflowStepGroupResponse {
|
|
735
|
-
workflowId?: string;
|
|
736
|
-
name?: string;
|
|
737
|
-
id?: string;
|
|
738
|
-
description?: string;
|
|
739
|
-
tools?: Tool[];
|
|
740
|
-
next?: string[];
|
|
741
|
-
previous?: string[];
|
|
742
|
-
lastModifiedTime?: Date;
|
|
741
|
+
workflowId?: string | undefined;
|
|
742
|
+
name?: string | undefined;
|
|
743
|
+
id?: string | undefined;
|
|
744
|
+
description?: string | undefined;
|
|
745
|
+
tools?: Tool[] | undefined;
|
|
746
|
+
next?: string[] | undefined;
|
|
747
|
+
previous?: string[] | undefined;
|
|
748
|
+
lastModifiedTime?: Date | undefined;
|
|
743
749
|
}
|
|
744
750
|
export declare const CreateMigrationWorkflowRequestFilterSensitiveLog: (
|
|
745
751
|
obj: CreateMigrationWorkflowRequest
|