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