aws-sdk-migrationhuborchestrator 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,689 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::MigrationHubOrchestrator
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class CreateMigrationWorkflowRequest
17
+ attr_accessor name: ::String
18
+ attr_accessor description: ::String
19
+ attr_accessor template_id: ::String
20
+ attr_accessor application_configuration_id: ::String
21
+ attr_accessor input_parameters: ::Hash[::String, Types::StepInput]
22
+ attr_accessor step_targets: ::Array[::String]
23
+ attr_accessor tags: ::Hash[::String, ::String]
24
+ SENSITIVE: [:input_parameters]
25
+ end
26
+
27
+ class CreateMigrationWorkflowResponse
28
+ attr_accessor id: ::String
29
+ attr_accessor arn: ::String
30
+ attr_accessor name: ::String
31
+ attr_accessor description: ::String
32
+ attr_accessor template_id: ::String
33
+ attr_accessor ads_application_configuration_id: ::String
34
+ attr_accessor workflow_inputs: ::Hash[::String, Types::StepInput]
35
+ attr_accessor step_targets: ::Array[::String]
36
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
37
+ attr_accessor creation_time: ::Time
38
+ attr_accessor tags: ::Hash[::String, ::String]
39
+ SENSITIVE: [:workflow_inputs]
40
+ end
41
+
42
+ class CreateWorkflowStepGroupRequest
43
+ attr_accessor workflow_id: ::String
44
+ attr_accessor name: ::String
45
+ attr_accessor description: ::String
46
+ attr_accessor next: ::Array[::String]
47
+ attr_accessor previous: ::Array[::String]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateWorkflowStepGroupResponse
52
+ attr_accessor workflow_id: ::String
53
+ attr_accessor name: ::String
54
+ attr_accessor id: ::String
55
+ attr_accessor description: ::String
56
+ attr_accessor tools: ::Array[Types::Tool]
57
+ attr_accessor next: ::Array[::String]
58
+ attr_accessor previous: ::Array[::String]
59
+ attr_accessor creation_time: ::Time
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class CreateWorkflowStepRequest
64
+ attr_accessor name: ::String
65
+ attr_accessor step_group_id: ::String
66
+ attr_accessor workflow_id: ::String
67
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
68
+ attr_accessor description: ::String
69
+ attr_accessor workflow_step_automation_configuration: Types::WorkflowStepAutomationConfiguration
70
+ attr_accessor step_target: ::Array[::String]
71
+ attr_accessor outputs: ::Array[Types::WorkflowStepOutput]
72
+ attr_accessor previous: ::Array[::String]
73
+ attr_accessor next: ::Array[::String]
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class CreateWorkflowStepResponse
78
+ attr_accessor id: ::String
79
+ attr_accessor step_group_id: ::String
80
+ attr_accessor workflow_id: ::String
81
+ attr_accessor name: ::String
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class DeleteMigrationWorkflowRequest
86
+ attr_accessor id: ::String
87
+ SENSITIVE: []
88
+ end
89
+
90
+ class DeleteMigrationWorkflowResponse
91
+ attr_accessor id: ::String
92
+ attr_accessor arn: ::String
93
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class DeleteWorkflowStepGroupRequest
98
+ attr_accessor workflow_id: ::String
99
+ attr_accessor id: ::String
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class DeleteWorkflowStepGroupResponse < Aws::EmptyStructure
104
+ end
105
+
106
+ class DeleteWorkflowStepRequest
107
+ attr_accessor id: ::String
108
+ attr_accessor step_group_id: ::String
109
+ attr_accessor workflow_id: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class DeleteWorkflowStepResponse < Aws::EmptyStructure
114
+ end
115
+
116
+ class GetMigrationWorkflowRequest
117
+ attr_accessor id: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class GetMigrationWorkflowResponse
122
+ attr_accessor id: ::String
123
+ attr_accessor arn: ::String
124
+ attr_accessor name: ::String
125
+ attr_accessor description: ::String
126
+ attr_accessor template_id: ::String
127
+ attr_accessor ads_application_configuration_id: ::String
128
+ attr_accessor ads_application_name: ::String
129
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
130
+ attr_accessor status_message: ::String
131
+ attr_accessor creation_time: ::Time
132
+ attr_accessor last_start_time: ::Time
133
+ attr_accessor last_stop_time: ::Time
134
+ attr_accessor last_modified_time: ::Time
135
+ attr_accessor end_time: ::Time
136
+ attr_accessor tools: ::Array[Types::Tool]
137
+ attr_accessor total_steps: ::Integer
138
+ attr_accessor completed_steps: ::Integer
139
+ attr_accessor workflow_inputs: ::Hash[::String, Types::StepInput]
140
+ attr_accessor tags: ::Hash[::String, ::String]
141
+ attr_accessor workflow_bucket: ::String
142
+ SENSITIVE: [:workflow_inputs]
143
+ end
144
+
145
+ class GetMigrationWorkflowTemplateRequest
146
+ attr_accessor id: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class GetMigrationWorkflowTemplateResponse
151
+ attr_accessor id: ::String
152
+ attr_accessor name: ::String
153
+ attr_accessor description: ::String
154
+ attr_accessor inputs: ::Array[Types::TemplateInput]
155
+ attr_accessor tools: ::Array[Types::Tool]
156
+ attr_accessor status: ("CREATED")
157
+ attr_accessor creation_time: ::Time
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class GetTemplateStepGroupRequest
162
+ attr_accessor template_id: ::String
163
+ attr_accessor id: ::String
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class GetTemplateStepGroupResponse
168
+ attr_accessor template_id: ::String
169
+ attr_accessor id: ::String
170
+ attr_accessor name: ::String
171
+ attr_accessor description: ::String
172
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "PAUSING" | "USER_ATTENTION_REQUIRED")
173
+ attr_accessor creation_time: ::Time
174
+ attr_accessor last_modified_time: ::Time
175
+ attr_accessor tools: ::Array[Types::Tool]
176
+ attr_accessor previous: ::Array[::String]
177
+ attr_accessor next: ::Array[::String]
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class GetTemplateStepRequest
182
+ attr_accessor id: ::String
183
+ attr_accessor template_id: ::String
184
+ attr_accessor step_group_id: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class GetTemplateStepResponse
189
+ attr_accessor id: ::String
190
+ attr_accessor step_group_id: ::String
191
+ attr_accessor template_id: ::String
192
+ attr_accessor name: ::String
193
+ attr_accessor description: ::String
194
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
195
+ attr_accessor creation_time: ::String
196
+ attr_accessor previous: ::Array[::String]
197
+ attr_accessor next: ::Array[::String]
198
+ attr_accessor outputs: ::Array[Types::StepOutput]
199
+ attr_accessor step_automation_configuration: Types::StepAutomationConfiguration
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class GetWorkflowStepGroupRequest
204
+ attr_accessor id: ::String
205
+ attr_accessor workflow_id: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class GetWorkflowStepGroupResponse
210
+ attr_accessor id: ::String
211
+ attr_accessor workflow_id: ::String
212
+ attr_accessor name: ::String
213
+ attr_accessor description: ::String
214
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "PAUSING" | "USER_ATTENTION_REQUIRED")
215
+ attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
216
+ attr_accessor creation_time: ::Time
217
+ attr_accessor last_modified_time: ::Time
218
+ attr_accessor end_time: ::Time
219
+ attr_accessor tools: ::Array[Types::Tool]
220
+ attr_accessor previous: ::Array[::String]
221
+ attr_accessor next: ::Array[::String]
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class GetWorkflowStepRequest
226
+ attr_accessor workflow_id: ::String
227
+ attr_accessor step_group_id: ::String
228
+ attr_accessor id: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class GetWorkflowStepResponse
233
+ attr_accessor name: ::String
234
+ attr_accessor step_group_id: ::String
235
+ attr_accessor workflow_id: ::String
236
+ attr_accessor step_id: ::String
237
+ attr_accessor description: ::String
238
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
239
+ attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
240
+ attr_accessor workflow_step_automation_configuration: Types::WorkflowStepAutomationConfiguration
241
+ attr_accessor step_target: ::Array[::String]
242
+ attr_accessor outputs: ::Array[Types::WorkflowStepOutput]
243
+ attr_accessor previous: ::Array[::String]
244
+ attr_accessor next: ::Array[::String]
245
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
246
+ attr_accessor status_message: ::String
247
+ attr_accessor script_output_location: ::String
248
+ attr_accessor creation_time: ::Time
249
+ attr_accessor last_start_time: ::Time
250
+ attr_accessor end_time: ::Time
251
+ attr_accessor no_of_srv_completed: ::Integer
252
+ attr_accessor no_of_srv_failed: ::Integer
253
+ attr_accessor total_no_of_srv: ::Integer
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class InternalServerException
258
+ attr_accessor message: ::String
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class ListMigrationWorkflowTemplatesRequest
263
+ attr_accessor max_results: ::Integer
264
+ attr_accessor next_token: ::String
265
+ attr_accessor name: ::String
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class ListMigrationWorkflowTemplatesResponse
270
+ attr_accessor next_token: ::String
271
+ attr_accessor template_summary: ::Array[Types::TemplateSummary]
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class ListMigrationWorkflowsRequest
276
+ attr_accessor max_results: ::Integer
277
+ attr_accessor next_token: ::String
278
+ attr_accessor template_id: ::String
279
+ attr_accessor ads_application_configuration_name: ::String
280
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
281
+ attr_accessor name: ::String
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class ListMigrationWorkflowsResponse
286
+ attr_accessor next_token: ::String
287
+ attr_accessor migration_workflow_summary: ::Array[Types::MigrationWorkflowSummary]
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class ListPluginsRequest
292
+ attr_accessor max_results: ::Integer
293
+ attr_accessor next_token: ::String
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class ListPluginsResponse
298
+ attr_accessor next_token: ::String
299
+ attr_accessor plugins: ::Array[Types::PluginSummary]
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class ListTagsForResourceRequest
304
+ attr_accessor resource_arn: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class ListTagsForResourceResponse
309
+ attr_accessor tags: ::Hash[::String, ::String]
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class ListTemplateStepGroupsRequest
314
+ attr_accessor max_results: ::Integer
315
+ attr_accessor next_token: ::String
316
+ attr_accessor template_id: ::String
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class ListTemplateStepGroupsResponse
321
+ attr_accessor next_token: ::String
322
+ attr_accessor template_step_group_summary: ::Array[Types::TemplateStepGroupSummary]
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class ListTemplateStepsRequest
327
+ attr_accessor max_results: ::Integer
328
+ attr_accessor next_token: ::String
329
+ attr_accessor template_id: ::String
330
+ attr_accessor step_group_id: ::String
331
+ SENSITIVE: []
332
+ end
333
+
334
+ class ListTemplateStepsResponse
335
+ attr_accessor next_token: ::String
336
+ attr_accessor template_step_summary_list: ::Array[Types::TemplateStepSummary]
337
+ SENSITIVE: []
338
+ end
339
+
340
+ class ListWorkflowStepGroupsRequest
341
+ attr_accessor next_token: ::String
342
+ attr_accessor max_results: ::Integer
343
+ attr_accessor workflow_id: ::String
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class ListWorkflowStepGroupsResponse
348
+ attr_accessor next_token: ::String
349
+ attr_accessor workflow_step_groups_summary: ::Array[Types::WorkflowStepGroupSummary]
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class ListWorkflowStepsRequest
354
+ attr_accessor next_token: ::String
355
+ attr_accessor max_results: ::Integer
356
+ attr_accessor workflow_id: ::String
357
+ attr_accessor step_group_id: ::String
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class ListWorkflowStepsResponse
362
+ attr_accessor next_token: ::String
363
+ attr_accessor workflow_steps_summary: ::Array[Types::WorkflowStepSummary]
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class MigrationWorkflowSummary
368
+ attr_accessor id: ::String
369
+ attr_accessor name: ::String
370
+ attr_accessor template_id: ::String
371
+ attr_accessor ads_application_configuration_name: ::String
372
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
373
+ attr_accessor creation_time: ::Time
374
+ attr_accessor end_time: ::Time
375
+ attr_accessor status_message: ::String
376
+ attr_accessor completed_steps: ::Integer
377
+ attr_accessor total_steps: ::Integer
378
+ SENSITIVE: []
379
+ end
380
+
381
+ class PlatformCommand
382
+ attr_accessor linux: ::String
383
+ attr_accessor windows: ::String
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class PlatformScriptKey
388
+ attr_accessor linux: ::String
389
+ attr_accessor windows: ::String
390
+ SENSITIVE: []
391
+ end
392
+
393
+ class PluginSummary
394
+ attr_accessor plugin_id: ::String
395
+ attr_accessor hostname: ::String
396
+ attr_accessor status: ("HEALTHY" | "UNHEALTHY")
397
+ attr_accessor ip_address: ::String
398
+ attr_accessor version: ::String
399
+ attr_accessor registered_time: ::String
400
+ SENSITIVE: []
401
+ end
402
+
403
+ class ResourceNotFoundException
404
+ attr_accessor message: ::String
405
+ SENSITIVE: []
406
+ end
407
+
408
+ class RetryWorkflowStepRequest
409
+ attr_accessor workflow_id: ::String
410
+ attr_accessor step_group_id: ::String
411
+ attr_accessor id: ::String
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class RetryWorkflowStepResponse
416
+ attr_accessor step_group_id: ::String
417
+ attr_accessor workflow_id: ::String
418
+ attr_accessor id: ::String
419
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
420
+ SENSITIVE: []
421
+ end
422
+
423
+ class StartMigrationWorkflowRequest
424
+ attr_accessor id: ::String
425
+ SENSITIVE: []
426
+ end
427
+
428
+ class StartMigrationWorkflowResponse
429
+ attr_accessor id: ::String
430
+ attr_accessor arn: ::String
431
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
432
+ attr_accessor status_message: ::String
433
+ attr_accessor last_start_time: ::Time
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class StepAutomationConfiguration
438
+ attr_accessor script_location_s3_bucket: ::String
439
+ attr_accessor script_location_s3_key: Types::PlatformScriptKey
440
+ attr_accessor command: Types::PlatformCommand
441
+ attr_accessor run_environment: ("AWS" | "ONPREMISE")
442
+ attr_accessor target_type: ("SINGLE" | "ALL" | "NONE")
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class StepInput
447
+ attr_accessor integer_value: ::Integer
448
+ attr_accessor string_value: ::String
449
+ attr_accessor list_of_strings_value: ::Array[::String]
450
+ attr_accessor map_of_string_value: ::Hash[::String, ::String]
451
+ attr_accessor unknown: untyped
452
+ SENSITIVE: []
453
+
454
+ class IntegerValue < StepInput
455
+ end
456
+ class StringValue < StepInput
457
+ end
458
+ class ListOfStringsValue < StepInput
459
+ end
460
+ class MapOfStringValue < StepInput
461
+ end
462
+ class Unknown < StepInput
463
+ end
464
+ end
465
+
466
+ class StepOutput
467
+ attr_accessor name: ::String
468
+ attr_accessor data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")
469
+ attr_accessor required: bool
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class StopMigrationWorkflowRequest
474
+ attr_accessor id: ::String
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class StopMigrationWorkflowResponse
479
+ attr_accessor id: ::String
480
+ attr_accessor arn: ::String
481
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
482
+ attr_accessor status_message: ::String
483
+ attr_accessor last_stop_time: ::Time
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class TagResourceRequest
488
+ attr_accessor resource_arn: ::String
489
+ attr_accessor tags: ::Hash[::String, ::String]
490
+ SENSITIVE: []
491
+ end
492
+
493
+ class TagResourceResponse < Aws::EmptyStructure
494
+ end
495
+
496
+ class TemplateInput
497
+ attr_accessor input_name: ::String
498
+ attr_accessor data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")
499
+ attr_accessor required: bool
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class TemplateStepGroupSummary
504
+ attr_accessor id: ::String
505
+ attr_accessor name: ::String
506
+ attr_accessor previous: ::Array[::String]
507
+ attr_accessor next: ::Array[::String]
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class TemplateStepSummary
512
+ attr_accessor id: ::String
513
+ attr_accessor step_group_id: ::String
514
+ attr_accessor template_id: ::String
515
+ attr_accessor name: ::String
516
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
517
+ attr_accessor target_type: ("SINGLE" | "ALL" | "NONE")
518
+ attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
519
+ attr_accessor previous: ::Array[::String]
520
+ attr_accessor next: ::Array[::String]
521
+ SENSITIVE: []
522
+ end
523
+
524
+ class TemplateSummary
525
+ attr_accessor id: ::String
526
+ attr_accessor name: ::String
527
+ attr_accessor arn: ::String
528
+ attr_accessor description: ::String
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class ThrottlingException
533
+ attr_accessor message: ::String
534
+ SENSITIVE: []
535
+ end
536
+
537
+ class Tool
538
+ attr_accessor name: ::String
539
+ attr_accessor url: ::String
540
+ SENSITIVE: []
541
+ end
542
+
543
+ class UntagResourceRequest
544
+ attr_accessor resource_arn: ::String
545
+ attr_accessor tag_keys: ::Array[::String]
546
+ SENSITIVE: []
547
+ end
548
+
549
+ class UntagResourceResponse < Aws::EmptyStructure
550
+ end
551
+
552
+ class UpdateMigrationWorkflowRequest
553
+ attr_accessor id: ::String
554
+ attr_accessor name: ::String
555
+ attr_accessor description: ::String
556
+ attr_accessor input_parameters: ::Hash[::String, Types::StepInput]
557
+ attr_accessor step_targets: ::Array[::String]
558
+ SENSITIVE: [:input_parameters]
559
+ end
560
+
561
+ class UpdateMigrationWorkflowResponse
562
+ attr_accessor id: ::String
563
+ attr_accessor arn: ::String
564
+ attr_accessor name: ::String
565
+ attr_accessor description: ::String
566
+ attr_accessor template_id: ::String
567
+ attr_accessor ads_application_configuration_id: ::String
568
+ attr_accessor workflow_inputs: ::Hash[::String, Types::StepInput]
569
+ attr_accessor step_targets: ::Array[::String]
570
+ attr_accessor status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
571
+ attr_accessor creation_time: ::Time
572
+ attr_accessor last_modified_time: ::Time
573
+ attr_accessor tags: ::Hash[::String, ::String]
574
+ SENSITIVE: [:workflow_inputs]
575
+ end
576
+
577
+ class UpdateWorkflowStepGroupRequest
578
+ attr_accessor workflow_id: ::String
579
+ attr_accessor id: ::String
580
+ attr_accessor name: ::String
581
+ attr_accessor description: ::String
582
+ attr_accessor next: ::Array[::String]
583
+ attr_accessor previous: ::Array[::String]
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class UpdateWorkflowStepGroupResponse
588
+ attr_accessor workflow_id: ::String
589
+ attr_accessor name: ::String
590
+ attr_accessor id: ::String
591
+ attr_accessor description: ::String
592
+ attr_accessor tools: ::Array[Types::Tool]
593
+ attr_accessor next: ::Array[::String]
594
+ attr_accessor previous: ::Array[::String]
595
+ attr_accessor last_modified_time: ::Time
596
+ SENSITIVE: []
597
+ end
598
+
599
+ class UpdateWorkflowStepRequest
600
+ attr_accessor id: ::String
601
+ attr_accessor step_group_id: ::String
602
+ attr_accessor workflow_id: ::String
603
+ attr_accessor name: ::String
604
+ attr_accessor description: ::String
605
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
606
+ attr_accessor workflow_step_automation_configuration: Types::WorkflowStepAutomationConfiguration
607
+ attr_accessor step_target: ::Array[::String]
608
+ attr_accessor outputs: ::Array[Types::WorkflowStepOutput]
609
+ attr_accessor previous: ::Array[::String]
610
+ attr_accessor next: ::Array[::String]
611
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
612
+ SENSITIVE: []
613
+ end
614
+
615
+ class UpdateWorkflowStepResponse
616
+ attr_accessor id: ::String
617
+ attr_accessor step_group_id: ::String
618
+ attr_accessor workflow_id: ::String
619
+ attr_accessor name: ::String
620
+ SENSITIVE: []
621
+ end
622
+
623
+ class ValidationException
624
+ attr_accessor message: ::String
625
+ SENSITIVE: []
626
+ end
627
+
628
+ class WorkflowStepAutomationConfiguration
629
+ attr_accessor script_location_s3_bucket: ::String
630
+ attr_accessor script_location_s3_key: Types::PlatformScriptKey
631
+ attr_accessor command: Types::PlatformCommand
632
+ attr_accessor run_environment: ("AWS" | "ONPREMISE")
633
+ attr_accessor target_type: ("SINGLE" | "ALL" | "NONE")
634
+ SENSITIVE: []
635
+ end
636
+
637
+ class WorkflowStepGroupSummary
638
+ attr_accessor id: ::String
639
+ attr_accessor name: ::String
640
+ attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
641
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "PAUSING" | "USER_ATTENTION_REQUIRED")
642
+ attr_accessor previous: ::Array[::String]
643
+ attr_accessor next: ::Array[::String]
644
+ SENSITIVE: []
645
+ end
646
+
647
+ class WorkflowStepOutput
648
+ attr_accessor name: ::String
649
+ attr_accessor data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")
650
+ attr_accessor required: bool
651
+ attr_accessor value: Types::WorkflowStepOutputUnion
652
+ SENSITIVE: []
653
+ end
654
+
655
+ class WorkflowStepOutputUnion
656
+ attr_accessor integer_value: ::Integer
657
+ attr_accessor string_value: ::String
658
+ attr_accessor list_of_string_value: ::Array[::String]
659
+ attr_accessor unknown: untyped
660
+ SENSITIVE: []
661
+
662
+ class IntegerValue < WorkflowStepOutputUnion
663
+ end
664
+ class StringValue < WorkflowStepOutputUnion
665
+ end
666
+ class ListOfStringValue < WorkflowStepOutputUnion
667
+ end
668
+ class Unknown < WorkflowStepOutputUnion
669
+ end
670
+ end
671
+
672
+ class WorkflowStepSummary
673
+ attr_accessor step_id: ::String
674
+ attr_accessor name: ::String
675
+ attr_accessor step_action_type: ("MANUAL" | "AUTOMATED")
676
+ attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
677
+ attr_accessor previous: ::Array[::String]
678
+ attr_accessor next: ::Array[::String]
679
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
680
+ attr_accessor status_message: ::String
681
+ attr_accessor no_of_srv_completed: ::Integer
682
+ attr_accessor no_of_srv_failed: ::Integer
683
+ attr_accessor total_no_of_srv: ::Integer
684
+ attr_accessor description: ::String
685
+ attr_accessor script_location: ::String
686
+ SENSITIVE: []
687
+ end
688
+ end
689
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MigrationHubOrchestrator
10
+ module Waiters
11
+ end
12
+ end
13
+ end