aws-sdk-migrationhuborchestrator 1.11.0 → 1.13.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,662 @@
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
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateTemplateResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTemplateResponse]
77
+ def template_id: () -> ::String
78
+ def template_arn: () -> ::String
79
+ def tags: () -> ::Hash[::String, ::String]
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#create_template-instance_method
82
+ def create_template: (
83
+ template_name: ::String,
84
+ ?template_description: ::String,
85
+ template_source: {
86
+ workflow_id: ::String?
87
+ },
88
+ ?client_token: ::String,
89
+ ?tags: Hash[::String, ::String]
90
+ ) -> _CreateTemplateResponseSuccess
91
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateResponseSuccess
92
+
93
+ interface _CreateWorkflowResponseSuccess
94
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMigrationWorkflowResponse]
95
+ def id: () -> ::String
96
+ def arn: () -> ::String
97
+ def name: () -> ::String
98
+ def description: () -> ::String
99
+ def template_id: () -> ::String
100
+ def ads_application_configuration_id: () -> ::String
101
+ def workflow_inputs: () -> ::Hash[::String, Types::StepInput]
102
+ def step_targets: () -> ::Array[::String]
103
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
104
+ def creation_time: () -> ::Time
105
+ def tags: () -> ::Hash[::String, ::String]
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#create_workflow-instance_method
108
+ def create_workflow: (
109
+ name: ::String,
110
+ ?description: ::String,
111
+ template_id: ::String,
112
+ ?application_configuration_id: ::String,
113
+ input_parameters: Hash[::String, {
114
+ integer_value: ::Integer?,
115
+ string_value: ::String?,
116
+ list_of_strings_value: Array[::String]?,
117
+ map_of_string_value: Hash[::String, ::String]?
118
+ }],
119
+ ?step_targets: Array[::String],
120
+ ?tags: Hash[::String, ::String]
121
+ ) -> _CreateWorkflowResponseSuccess
122
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
123
+
124
+ interface _CreateWorkflowStepResponseSuccess
125
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkflowStepResponse]
126
+ def id: () -> ::String
127
+ def step_group_id: () -> ::String
128
+ def workflow_id: () -> ::String
129
+ def name: () -> ::String
130
+ end
131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#create_workflow_step-instance_method
132
+ def create_workflow_step: (
133
+ name: ::String,
134
+ step_group_id: ::String,
135
+ workflow_id: ::String,
136
+ step_action_type: ("MANUAL" | "AUTOMATED"),
137
+ ?description: ::String,
138
+ ?workflow_step_automation_configuration: {
139
+ script_location_s3_bucket: ::String?,
140
+ script_location_s3_key: {
141
+ linux: ::String?,
142
+ windows: ::String?
143
+ }?,
144
+ command: {
145
+ linux: ::String?,
146
+ windows: ::String?
147
+ }?,
148
+ run_environment: ("AWS" | "ONPREMISE")?,
149
+ target_type: ("SINGLE" | "ALL" | "NONE")?
150
+ },
151
+ ?step_target: Array[::String],
152
+ ?outputs: Array[
153
+ {
154
+ name: ::String?,
155
+ data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")?,
156
+ required: bool?,
157
+ value: {
158
+ integer_value: ::Integer?,
159
+ string_value: ::String?,
160
+ list_of_string_value: Array[::String]?
161
+ }?
162
+ },
163
+ ],
164
+ ?previous: Array[::String],
165
+ ?next: Array[::String]
166
+ ) -> _CreateWorkflowStepResponseSuccess
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowStepResponseSuccess
168
+
169
+ interface _CreateWorkflowStepGroupResponseSuccess
170
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkflowStepGroupResponse]
171
+ def workflow_id: () -> ::String
172
+ def name: () -> ::String
173
+ def id: () -> ::String
174
+ def description: () -> ::String
175
+ def tools: () -> ::Array[Types::Tool]
176
+ def next: () -> ::Array[::String]
177
+ def previous: () -> ::Array[::String]
178
+ def creation_time: () -> ::Time
179
+ end
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#create_workflow_step_group-instance_method
181
+ def create_workflow_step_group: (
182
+ workflow_id: ::String,
183
+ name: ::String,
184
+ ?description: ::String,
185
+ ?next: Array[::String],
186
+ ?previous: Array[::String]
187
+ ) -> _CreateWorkflowStepGroupResponseSuccess
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowStepGroupResponseSuccess
189
+
190
+ interface _DeleteTemplateResponseSuccess
191
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTemplateResponse]
192
+ end
193
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#delete_template-instance_method
194
+ def delete_template: (
195
+ id: ::String
196
+ ) -> _DeleteTemplateResponseSuccess
197
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTemplateResponseSuccess
198
+
199
+ interface _DeleteWorkflowResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMigrationWorkflowResponse]
201
+ def id: () -> ::String
202
+ def arn: () -> ::String
203
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
204
+ end
205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#delete_workflow-instance_method
206
+ def delete_workflow: (
207
+ id: ::String
208
+ ) -> _DeleteWorkflowResponseSuccess
209
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkflowResponseSuccess
210
+
211
+ interface _DeleteWorkflowStepResponseSuccess
212
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkflowStepResponse]
213
+ end
214
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#delete_workflow_step-instance_method
215
+ def delete_workflow_step: (
216
+ id: ::String,
217
+ step_group_id: ::String,
218
+ workflow_id: ::String
219
+ ) -> _DeleteWorkflowStepResponseSuccess
220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkflowStepResponseSuccess
221
+
222
+ interface _DeleteWorkflowStepGroupResponseSuccess
223
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkflowStepGroupResponse]
224
+ end
225
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#delete_workflow_step_group-instance_method
226
+ def delete_workflow_step_group: (
227
+ workflow_id: ::String,
228
+ id: ::String
229
+ ) -> _DeleteWorkflowStepGroupResponseSuccess
230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkflowStepGroupResponseSuccess
231
+
232
+ interface _GetTemplateResponseSuccess
233
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMigrationWorkflowTemplateResponse]
234
+ def id: () -> ::String
235
+ def template_arn: () -> ::String
236
+ def name: () -> ::String
237
+ def description: () -> ::String
238
+ def inputs: () -> ::Array[Types::TemplateInput]
239
+ def tools: () -> ::Array[Types::Tool]
240
+ def creation_time: () -> ::Time
241
+ def owner: () -> ::String
242
+ def status: () -> ("CREATED" | "READY" | "PENDING_CREATION" | "CREATING" | "CREATION_FAILED")
243
+ def status_message: () -> ::String
244
+ def template_class: () -> ::String
245
+ def tags: () -> ::Hash[::String, ::String]
246
+ end
247
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_template-instance_method
248
+ def get_template: (
249
+ id: ::String
250
+ ) -> _GetTemplateResponseSuccess
251
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateResponseSuccess
252
+
253
+ interface _GetTemplateStepResponseSuccess
254
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateStepResponse]
255
+ def id: () -> ::String
256
+ def step_group_id: () -> ::String
257
+ def template_id: () -> ::String
258
+ def name: () -> ::String
259
+ def description: () -> ::String
260
+ def step_action_type: () -> ("MANUAL" | "AUTOMATED")
261
+ def creation_time: () -> ::String
262
+ def previous: () -> ::Array[::String]
263
+ def next: () -> ::Array[::String]
264
+ def outputs: () -> ::Array[Types::StepOutput]
265
+ def step_automation_configuration: () -> Types::StepAutomationConfiguration
266
+ end
267
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_template_step-instance_method
268
+ def get_template_step: (
269
+ id: ::String,
270
+ template_id: ::String,
271
+ step_group_id: ::String
272
+ ) -> _GetTemplateStepResponseSuccess
273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateStepResponseSuccess
274
+
275
+ interface _GetTemplateStepGroupResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTemplateStepGroupResponse]
277
+ def template_id: () -> ::String
278
+ def id: () -> ::String
279
+ def name: () -> ::String
280
+ def description: () -> ::String
281
+ def status: () -> ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "PAUSING" | "USER_ATTENTION_REQUIRED")
282
+ def creation_time: () -> ::Time
283
+ def last_modified_time: () -> ::Time
284
+ def tools: () -> ::Array[Types::Tool]
285
+ def previous: () -> ::Array[::String]
286
+ def next: () -> ::Array[::String]
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_template_step_group-instance_method
289
+ def get_template_step_group: (
290
+ template_id: ::String,
291
+ id: ::String
292
+ ) -> _GetTemplateStepGroupResponseSuccess
293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTemplateStepGroupResponseSuccess
294
+
295
+ interface _GetWorkflowResponseSuccess
296
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMigrationWorkflowResponse]
297
+ def id: () -> ::String
298
+ def arn: () -> ::String
299
+ def name: () -> ::String
300
+ def description: () -> ::String
301
+ def template_id: () -> ::String
302
+ def ads_application_configuration_id: () -> ::String
303
+ def ads_application_name: () -> ::String
304
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
305
+ def status_message: () -> ::String
306
+ def creation_time: () -> ::Time
307
+ def last_start_time: () -> ::Time
308
+ def last_stop_time: () -> ::Time
309
+ def last_modified_time: () -> ::Time
310
+ def end_time: () -> ::Time
311
+ def tools: () -> ::Array[Types::Tool]
312
+ def total_steps: () -> ::Integer
313
+ def completed_steps: () -> ::Integer
314
+ def workflow_inputs: () -> ::Hash[::String, Types::StepInput]
315
+ def tags: () -> ::Hash[::String, ::String]
316
+ def workflow_bucket: () -> ::String
317
+ end
318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_workflow-instance_method
319
+ def get_workflow: (
320
+ id: ::String
321
+ ) -> _GetWorkflowResponseSuccess
322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
323
+
324
+ interface _GetWorkflowStepResponseSuccess
325
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowStepResponse]
326
+ def name: () -> ::String
327
+ def step_group_id: () -> ::String
328
+ def workflow_id: () -> ::String
329
+ def step_id: () -> ::String
330
+ def description: () -> ::String
331
+ def step_action_type: () -> ("MANUAL" | "AUTOMATED")
332
+ def owner: () -> ("AWS_MANAGED" | "CUSTOM")
333
+ def workflow_step_automation_configuration: () -> Types::WorkflowStepAutomationConfiguration
334
+ def step_target: () -> ::Array[::String]
335
+ def outputs: () -> ::Array[Types::WorkflowStepOutput]
336
+ def previous: () -> ::Array[::String]
337
+ def next: () -> ::Array[::String]
338
+ def status: () -> ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
339
+ def status_message: () -> ::String
340
+ def script_output_location: () -> ::String
341
+ def creation_time: () -> ::Time
342
+ def last_start_time: () -> ::Time
343
+ def end_time: () -> ::Time
344
+ def no_of_srv_completed: () -> ::Integer
345
+ def no_of_srv_failed: () -> ::Integer
346
+ def total_no_of_srv: () -> ::Integer
347
+ end
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_workflow_step-instance_method
349
+ def get_workflow_step: (
350
+ workflow_id: ::String,
351
+ step_group_id: ::String,
352
+ id: ::String
353
+ ) -> _GetWorkflowStepResponseSuccess
354
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowStepResponseSuccess
355
+
356
+ interface _GetWorkflowStepGroupResponseSuccess
357
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowStepGroupResponse]
358
+ def id: () -> ::String
359
+ def workflow_id: () -> ::String
360
+ def name: () -> ::String
361
+ def description: () -> ::String
362
+ def status: () -> ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "PAUSING" | "USER_ATTENTION_REQUIRED")
363
+ def owner: () -> ("AWS_MANAGED" | "CUSTOM")
364
+ def creation_time: () -> ::Time
365
+ def last_modified_time: () -> ::Time
366
+ def end_time: () -> ::Time
367
+ def tools: () -> ::Array[Types::Tool]
368
+ def previous: () -> ::Array[::String]
369
+ def next: () -> ::Array[::String]
370
+ end
371
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_workflow_step_group-instance_method
372
+ def get_workflow_step_group: (
373
+ id: ::String,
374
+ workflow_id: ::String
375
+ ) -> _GetWorkflowStepGroupResponseSuccess
376
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowStepGroupResponseSuccess
377
+
378
+ interface _ListPluginsResponseSuccess
379
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPluginsResponse]
380
+ def next_token: () -> ::String
381
+ def plugins: () -> ::Array[Types::PluginSummary]
382
+ end
383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_plugins-instance_method
384
+ def list_plugins: (
385
+ ?max_results: ::Integer,
386
+ ?next_token: ::String
387
+ ) -> _ListPluginsResponseSuccess
388
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPluginsResponseSuccess
389
+
390
+ interface _ListTagsForResourceResponseSuccess
391
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
392
+ def tags: () -> ::Hash[::String, ::String]
393
+ end
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_tags_for_resource-instance_method
395
+ def list_tags_for_resource: (
396
+ resource_arn: ::String
397
+ ) -> _ListTagsForResourceResponseSuccess
398
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
399
+
400
+ interface _ListTemplateStepGroupsResponseSuccess
401
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplateStepGroupsResponse]
402
+ def next_token: () -> ::String
403
+ def template_step_group_summary: () -> ::Array[Types::TemplateStepGroupSummary]
404
+ end
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_template_step_groups-instance_method
406
+ def list_template_step_groups: (
407
+ ?max_results: ::Integer,
408
+ ?next_token: ::String,
409
+ template_id: ::String
410
+ ) -> _ListTemplateStepGroupsResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplateStepGroupsResponseSuccess
412
+
413
+ interface _ListTemplateStepsResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplateStepsResponse]
415
+ def next_token: () -> ::String
416
+ def template_step_summary_list: () -> ::Array[Types::TemplateStepSummary]
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_template_steps-instance_method
419
+ def list_template_steps: (
420
+ ?max_results: ::Integer,
421
+ ?next_token: ::String,
422
+ template_id: ::String,
423
+ step_group_id: ::String
424
+ ) -> _ListTemplateStepsResponseSuccess
425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplateStepsResponseSuccess
426
+
427
+ interface _ListTemplatesResponseSuccess
428
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMigrationWorkflowTemplatesResponse]
429
+ def next_token: () -> ::String
430
+ def template_summary: () -> ::Array[Types::TemplateSummary]
431
+ end
432
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_templates-instance_method
433
+ def list_templates: (
434
+ ?max_results: ::Integer,
435
+ ?next_token: ::String,
436
+ ?name: ::String
437
+ ) -> _ListTemplatesResponseSuccess
438
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplatesResponseSuccess
439
+
440
+ interface _ListWorkflowStepGroupsResponseSuccess
441
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowStepGroupsResponse]
442
+ def next_token: () -> ::String
443
+ def workflow_step_groups_summary: () -> ::Array[Types::WorkflowStepGroupSummary]
444
+ end
445
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_workflow_step_groups-instance_method
446
+ def list_workflow_step_groups: (
447
+ ?next_token: ::String,
448
+ ?max_results: ::Integer,
449
+ workflow_id: ::String
450
+ ) -> _ListWorkflowStepGroupsResponseSuccess
451
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowStepGroupsResponseSuccess
452
+
453
+ interface _ListWorkflowStepsResponseSuccess
454
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowStepsResponse]
455
+ def next_token: () -> ::String
456
+ def workflow_steps_summary: () -> ::Array[Types::WorkflowStepSummary]
457
+ end
458
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_workflow_steps-instance_method
459
+ def list_workflow_steps: (
460
+ ?next_token: ::String,
461
+ ?max_results: ::Integer,
462
+ workflow_id: ::String,
463
+ step_group_id: ::String
464
+ ) -> _ListWorkflowStepsResponseSuccess
465
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowStepsResponseSuccess
466
+
467
+ interface _ListWorkflowsResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMigrationWorkflowsResponse]
469
+ def next_token: () -> ::String
470
+ def migration_workflow_summary: () -> ::Array[Types::MigrationWorkflowSummary]
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#list_workflows-instance_method
473
+ def list_workflows: (
474
+ ?max_results: ::Integer,
475
+ ?next_token: ::String,
476
+ ?template_id: ::String,
477
+ ?ads_application_configuration_name: ::String,
478
+ ?status: ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED"),
479
+ ?name: ::String
480
+ ) -> _ListWorkflowsResponseSuccess
481
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
482
+
483
+ interface _RetryWorkflowStepResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::RetryWorkflowStepResponse]
485
+ def step_group_id: () -> ::String
486
+ def workflow_id: () -> ::String
487
+ def id: () -> ::String
488
+ def status: () -> ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
489
+ end
490
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#retry_workflow_step-instance_method
491
+ def retry_workflow_step: (
492
+ workflow_id: ::String,
493
+ step_group_id: ::String,
494
+ id: ::String
495
+ ) -> _RetryWorkflowStepResponseSuccess
496
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetryWorkflowStepResponseSuccess
497
+
498
+ interface _StartWorkflowResponseSuccess
499
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartMigrationWorkflowResponse]
500
+ def id: () -> ::String
501
+ def arn: () -> ::String
502
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
503
+ def status_message: () -> ::String
504
+ def last_start_time: () -> ::Time
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#start_workflow-instance_method
507
+ def start_workflow: (
508
+ id: ::String
509
+ ) -> _StartWorkflowResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartWorkflowResponseSuccess
511
+
512
+ interface _StopWorkflowResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopMigrationWorkflowResponse]
514
+ def id: () -> ::String
515
+ def arn: () -> ::String
516
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
517
+ def status_message: () -> ::String
518
+ def last_stop_time: () -> ::Time
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#stop_workflow-instance_method
521
+ def stop_workflow: (
522
+ id: ::String
523
+ ) -> _StopWorkflowResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopWorkflowResponseSuccess
525
+
526
+ interface _TagResourceResponseSuccess
527
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
528
+ end
529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#tag_resource-instance_method
530
+ def tag_resource: (
531
+ resource_arn: ::String,
532
+ tags: Hash[::String, ::String]
533
+ ) -> _TagResourceResponseSuccess
534
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
535
+
536
+ interface _UntagResourceResponseSuccess
537
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#untag_resource-instance_method
540
+ def untag_resource: (
541
+ resource_arn: ::String,
542
+ tag_keys: Array[::String]
543
+ ) -> _UntagResourceResponseSuccess
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
545
+
546
+ interface _UpdateTemplateResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTemplateResponse]
548
+ def template_id: () -> ::String
549
+ def template_arn: () -> ::String
550
+ def tags: () -> ::Hash[::String, ::String]
551
+ end
552
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#update_template-instance_method
553
+ def update_template: (
554
+ id: ::String,
555
+ ?template_name: ::String,
556
+ ?template_description: ::String,
557
+ ?client_token: ::String
558
+ ) -> _UpdateTemplateResponseSuccess
559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTemplateResponseSuccess
560
+
561
+ interface _UpdateWorkflowResponseSuccess
562
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMigrationWorkflowResponse]
563
+ def id: () -> ::String
564
+ def arn: () -> ::String
565
+ def name: () -> ::String
566
+ def description: () -> ::String
567
+ def template_id: () -> ::String
568
+ def ads_application_configuration_id: () -> ::String
569
+ def workflow_inputs: () -> ::Hash[::String, Types::StepInput]
570
+ def step_targets: () -> ::Array[::String]
571
+ def status: () -> ("CREATING" | "NOT_STARTED" | "CREATION_FAILED" | "STARTING" | "IN_PROGRESS" | "WORKFLOW_FAILED" | "PAUSED" | "PAUSING" | "PAUSING_FAILED" | "USER_ATTENTION_REQUIRED" | "DELETING" | "DELETION_FAILED" | "DELETED" | "COMPLETED")
572
+ def creation_time: () -> ::Time
573
+ def last_modified_time: () -> ::Time
574
+ def tags: () -> ::Hash[::String, ::String]
575
+ end
576
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#update_workflow-instance_method
577
+ def update_workflow: (
578
+ id: ::String,
579
+ ?name: ::String,
580
+ ?description: ::String,
581
+ ?input_parameters: Hash[::String, {
582
+ integer_value: ::Integer?,
583
+ string_value: ::String?,
584
+ list_of_strings_value: Array[::String]?,
585
+ map_of_string_value: Hash[::String, ::String]?
586
+ }],
587
+ ?step_targets: Array[::String]
588
+ ) -> _UpdateWorkflowResponseSuccess
589
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkflowResponseSuccess
590
+
591
+ interface _UpdateWorkflowStepResponseSuccess
592
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkflowStepResponse]
593
+ def id: () -> ::String
594
+ def step_group_id: () -> ::String
595
+ def workflow_id: () -> ::String
596
+ def name: () -> ::String
597
+ end
598
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#update_workflow_step-instance_method
599
+ def update_workflow_step: (
600
+ id: ::String,
601
+ step_group_id: ::String,
602
+ workflow_id: ::String,
603
+ ?name: ::String,
604
+ ?description: ::String,
605
+ ?step_action_type: ("MANUAL" | "AUTOMATED"),
606
+ ?workflow_step_automation_configuration: {
607
+ script_location_s3_bucket: ::String?,
608
+ script_location_s3_key: {
609
+ linux: ::String?,
610
+ windows: ::String?
611
+ }?,
612
+ command: {
613
+ linux: ::String?,
614
+ windows: ::String?
615
+ }?,
616
+ run_environment: ("AWS" | "ONPREMISE")?,
617
+ target_type: ("SINGLE" | "ALL" | "NONE")?
618
+ },
619
+ ?step_target: Array[::String],
620
+ ?outputs: Array[
621
+ {
622
+ name: ::String?,
623
+ data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")?,
624
+ required: bool?,
625
+ value: {
626
+ integer_value: ::Integer?,
627
+ string_value: ::String?,
628
+ list_of_string_value: Array[::String]?
629
+ }?
630
+ },
631
+ ],
632
+ ?previous: Array[::String],
633
+ ?next: Array[::String],
634
+ ?status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
635
+ ) -> _UpdateWorkflowStepResponseSuccess
636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkflowStepResponseSuccess
637
+
638
+ interface _UpdateWorkflowStepGroupResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkflowStepGroupResponse]
640
+ def workflow_id: () -> ::String
641
+ def name: () -> ::String
642
+ def id: () -> ::String
643
+ def description: () -> ::String
644
+ def tools: () -> ::Array[Types::Tool]
645
+ def next: () -> ::Array[::String]
646
+ def previous: () -> ::Array[::String]
647
+ def last_modified_time: () -> ::Time
648
+ end
649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#update_workflow_step_group-instance_method
650
+ def update_workflow_step_group: (
651
+ workflow_id: ::String,
652
+ id: ::String,
653
+ ?name: ::String,
654
+ ?description: ::String,
655
+ ?next: Array[::String],
656
+ ?previous: Array[::String]
657
+ ) -> _UpdateWorkflowStepGroupResponseSuccess
658
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkflowStepGroupResponseSuccess
659
+ end
660
+ end
661
+ end
662
+