aws-sdk-migrationhuborchestrator 1.12.0 → 1.14.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.
@@ -23,6 +23,20 @@ module Aws::MigrationHubOrchestrator
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
+ # This exception is thrown when an attempt to update or delete a
27
+ # resource would cause an inconsistent state.
28
+ #
29
+ # @!attribute [rw] message
30
+ # @return [String]
31
+ #
32
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/ConflictException AWS API Documentation
33
+ #
34
+ class ConflictException < Struct.new(
35
+ :message)
36
+ SENSITIVE = []
37
+ include Aws::Structure
38
+ end
39
+
26
40
  # @!attribute [rw] name
27
41
  # The name of the migration workflow.
28
42
  # @return [String]
@@ -129,6 +143,77 @@ module Aws::MigrationHubOrchestrator
129
143
  include Aws::Structure
130
144
  end
131
145
 
146
+ # @!attribute [rw] template_name
147
+ # The name of the migration workflow template.
148
+ # @return [String]
149
+ #
150
+ # @!attribute [rw] template_description
151
+ # A description of the migration workflow template.
152
+ # @return [String]
153
+ #
154
+ # @!attribute [rw] template_source
155
+ # The source of the migration workflow template.
156
+ # @return [Types::TemplateSource]
157
+ #
158
+ # @!attribute [rw] client_token
159
+ # A unique, case-sensitive identifier that you provide to ensure the
160
+ # idempotency of the request. For more information, see
161
+ # [Idempotency][1] in the Smithy documentation.
162
+ #
163
+ # **A suitable default value is auto-generated.** You should normally
164
+ # not need to pass this option.
165
+ #
166
+ #
167
+ #
168
+ # [1]: https://smithy.io/2.0/spec/behavior-traits.html#idempotencytoken-trait
169
+ # @return [String]
170
+ #
171
+ # @!attribute [rw] tags
172
+ # The tags to add to the migration workflow template.
173
+ # @return [Hash<String,String>]
174
+ #
175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateTemplateRequest AWS API Documentation
176
+ #
177
+ class CreateTemplateRequest < Struct.new(
178
+ :template_name,
179
+ :template_description,
180
+ :template_source,
181
+ :client_token,
182
+ :tags)
183
+ SENSITIVE = []
184
+ include Aws::Structure
185
+ end
186
+
187
+ # @!attribute [rw] template_id
188
+ # The ID of the migration workflow template.
189
+ # @return [String]
190
+ #
191
+ # @!attribute [rw] template_arn
192
+ # The Amazon Resource Name (ARN) of the migration workflow template.
193
+ # The format for an Migration Hub Orchestrator template ARN is
194
+ # `arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234`.
195
+ # For more information about ARNs, see [Amazon Resource Names
196
+ # (ARNs)][1] in the *AWS General Reference*.
197
+ #
198
+ #
199
+ #
200
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
201
+ # @return [String]
202
+ #
203
+ # @!attribute [rw] tags
204
+ # The tags added to the migration workflow template.
205
+ # @return [Hash<String,String>]
206
+ #
207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/CreateTemplateResponse AWS API Documentation
208
+ #
209
+ class CreateTemplateResponse < Struct.new(
210
+ :template_id,
211
+ :template_arn,
212
+ :tags)
213
+ SENSITIVE = []
214
+ include Aws::Structure
215
+ end
216
+
132
217
  # @!attribute [rw] workflow_id
133
218
  # The ID of the migration workflow that will contain the step group.
134
219
  # @return [String]
@@ -328,6 +413,22 @@ module Aws::MigrationHubOrchestrator
328
413
  include Aws::Structure
329
414
  end
330
415
 
416
+ # @!attribute [rw] id
417
+ # The ID of the request to delete a migration workflow template.
418
+ # @return [String]
419
+ #
420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteTemplateRequest AWS API Documentation
421
+ #
422
+ class DeleteTemplateRequest < Struct.new(
423
+ :id)
424
+ SENSITIVE = []
425
+ include Aws::Structure
426
+ end
427
+
428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/DeleteTemplateResponse AWS API Documentation
429
+ #
430
+ class DeleteTemplateResponse < Aws::EmptyStructure; end
431
+
331
432
  # @!attribute [rw] workflow_id
332
433
  # The ID of the migration workflow.
333
434
  # @return [String]
@@ -512,6 +613,19 @@ module Aws::MigrationHubOrchestrator
512
613
  # The ID of the template.
513
614
  # @return [String]
514
615
  #
616
+ # @!attribute [rw] template_arn
617
+ # &gt;The Amazon Resource Name (ARN) of the migration workflow
618
+ # template. The format for an Migration Hub Orchestrator template ARN
619
+ # is
620
+ # `arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234`.
621
+ # For more information about ARNs, see [Amazon Resource Names
622
+ # (ARNs)][1] in the *AWS General Reference*.
623
+ #
624
+ #
625
+ #
626
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
627
+ # @return [String]
628
+ #
515
629
  # @!attribute [rw] name
516
630
  # The name of the template.
517
631
  # @return [String]
@@ -528,24 +642,58 @@ module Aws::MigrationHubOrchestrator
528
642
  # List of AWS services utilized in a migration workflow.
529
643
  # @return [Array<Types::Tool>]
530
644
  #
645
+ # @!attribute [rw] creation_time
646
+ # The time at which the template was last created.
647
+ # @return [Time]
648
+ #
649
+ # @!attribute [rw] owner
650
+ # The owner of the migration workflow template.
651
+ # @return [String]
652
+ #
531
653
  # @!attribute [rw] status
532
654
  # The status of the template.
533
655
  # @return [String]
534
656
  #
535
- # @!attribute [rw] creation_time
536
- # The time at which the template was last created.
537
- # @return [Time]
657
+ # @!attribute [rw] status_message
658
+ # The status message of retrieving migration workflow templates.
659
+ # @return [String]
660
+ #
661
+ # @!attribute [rw] template_class
662
+ # The class of the migration workflow template. The available template
663
+ # classes are:
664
+ #
665
+ # * A2C
666
+ #
667
+ # * MGN
668
+ #
669
+ # * SAP\_MULTI
670
+ #
671
+ # * SQL\_EC2
672
+ #
673
+ # * SQL\_RDS
674
+ #
675
+ # * VMIE
676
+ # @return [String]
677
+ #
678
+ # @!attribute [rw] tags
679
+ # The tags added to the migration workflow template.
680
+ # @return [Hash<String,String>]
538
681
  #
539
682
  # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetMigrationWorkflowTemplateResponse AWS API Documentation
540
683
  #
541
684
  class GetMigrationWorkflowTemplateResponse < Struct.new(
542
685
  :id,
686
+ :template_arn,
543
687
  :name,
544
688
  :description,
545
689
  :inputs,
546
690
  :tools,
691
+ :creation_time,
692
+ :owner,
547
693
  :status,
548
- :creation_time)
694
+ :status_message,
695
+ :template_class,
696
+ :tags)
549
697
  SENSITIVE = []
550
698
  include Aws::Structure
551
699
  end
@@ -799,7 +947,7 @@ module Aws::MigrationHubOrchestrator
799
947
  # @return [String]
800
948
  #
801
949
  # @!attribute [rw] step_group_id
802
- # desThe ID of the step group.
950
+ # The ID of the step group.
803
951
  # @return [String]
804
952
  #
805
953
  # @!attribute [rw] id
@@ -1696,6 +1844,28 @@ module Aws::MigrationHubOrchestrator
1696
1844
  include Aws::Structure
1697
1845
  end
1698
1846
 
1847
+ # The migration workflow template used as the source for the new
1848
+ # template.
1849
+ #
1850
+ # @note TemplateSource is a union - when making an API calls you must set exactly one of the members.
1851
+ #
1852
+ # @!attribute [rw] workflow_id
1853
+ # The ID of the workflow from the source migration workflow template.
1854
+ # @return [String]
1855
+ #
1856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/TemplateSource AWS API Documentation
1857
+ #
1858
+ class TemplateSource < Struct.new(
1859
+ :workflow_id,
1860
+ :unknown)
1861
+ SENSITIVE = []
1862
+ include Aws::Structure
1863
+ include Aws::Structure::Union
1864
+
1865
+ class WorkflowId < TemplateSource; end
1866
+ class Unknown < TemplateSource; end
1867
+ end
1868
+
1699
1869
  # The summary of the step group in the template.
1700
1870
  #
1701
1871
  # @!attribute [rw] id
@@ -1964,6 +2134,67 @@ module Aws::MigrationHubOrchestrator
1964
2134
  include Aws::Structure
1965
2135
  end
1966
2136
 
2137
+ # @!attribute [rw] id
2138
+ # The ID of the request to update a migration workflow template.
2139
+ # @return [String]
2140
+ #
2141
+ # @!attribute [rw] template_name
2142
+ # The name of the migration workflow template to update.
2143
+ # @return [String]
2144
+ #
2145
+ # @!attribute [rw] template_description
2146
+ # The description of the migration workflow template to update.
2147
+ # @return [String]
2148
+ #
2149
+ # @!attribute [rw] client_token
2150
+ # A unique, case-sensitive identifier that you provide to ensure the
2151
+ # idempotency of the request.
2152
+ #
2153
+ # **A suitable default value is auto-generated.** You should normally
2154
+ # not need to pass this option.
2155
+ # @return [String]
2156
+ #
2157
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateTemplateRequest AWS API Documentation
2158
+ #
2159
+ class UpdateTemplateRequest < Struct.new(
2160
+ :id,
2161
+ :template_name,
2162
+ :template_description,
2163
+ :client_token)
2164
+ SENSITIVE = []
2165
+ include Aws::Structure
2166
+ end
2167
+
2168
+ # @!attribute [rw] template_id
2169
+ # The ID of the migration workflow template being updated.
2170
+ # @return [String]
2171
+ #
2172
+ # @!attribute [rw] template_arn
2173
+ # The ARN of the migration workflow template being updated. The format
2174
+ # for an Migration Hub Orchestrator template ARN is
2175
+ # `arn:aws:migrationhub-orchestrator:region:account:template/template-abcd1234`.
2176
+ # For more information about ARNs, see [Amazon Resource Names
2177
+ # (ARNs)][1] in the *AWS General Reference*.
2178
+ #
2179
+ #
2180
+ #
2181
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
2182
+ # @return [String]
2183
+ #
2184
+ # @!attribute [rw] tags
2185
+ # The tags added to the migration workflow template.
2186
+ # @return [Hash<String,String>]
2187
+ #
2188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/UpdateTemplateResponse AWS API Documentation
2189
+ #
2190
+ class UpdateTemplateResponse < Struct.new(
2191
+ :template_id,
2192
+ :template_arn,
2193
+ :tags)
2194
+ SENSITIVE = []
2195
+ include Aws::Structure
2196
+ end
2197
+
1967
2198
  # @!attribute [rw] workflow_id
1968
2199
  # The ID of the migration workflow.
1969
2200
  # @return [String]
@@ -33,7 +33,7 @@ require_relative 'aws-sdk-migrationhuborchestrator/customizations'
33
33
  # structure.
34
34
  #
35
35
  # migration_hub_orchestrator = Aws::MigrationHubOrchestrator::Client.new
36
- # resp = migration_hub_orchestrator.create_workflow(params)
36
+ # resp = migration_hub_orchestrator.create_template(params)
37
37
  #
38
38
  # See {Client} for more information.
39
39
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-migrationhuborchestrator/customizations'
53
53
  # @!group service
54
54
  module Aws::MigrationHubOrchestrator
55
55
 
56
- GEM_VERSION = '1.12.0'
56
+ GEM_VERSION = '1.14.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -72,6 +72,24 @@ module Aws
72
72
  | (?Hash[Symbol, untyped]) -> instance
73
73
 
74
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
+
75
93
  interface _CreateWorkflowResponseSuccess
76
94
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMigrationWorkflowResponse]
77
95
  def id: () -> ::String
@@ -91,7 +109,7 @@ module Aws
91
109
  name: ::String,
92
110
  ?description: ::String,
93
111
  template_id: ::String,
94
- application_configuration_id: ::String,
112
+ ?application_configuration_id: ::String,
95
113
  input_parameters: Hash[::String, {
96
114
  integer_value: ::Integer?,
97
115
  string_value: ::String?,
@@ -169,6 +187,15 @@ module Aws
169
187
  ) -> _CreateWorkflowStepGroupResponseSuccess
170
188
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowStepGroupResponseSuccess
171
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
+
172
199
  interface _DeleteWorkflowResponseSuccess
173
200
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMigrationWorkflowResponse]
174
201
  def id: () -> ::String
@@ -205,12 +232,17 @@ module Aws
205
232
  interface _GetTemplateResponseSuccess
206
233
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMigrationWorkflowTemplateResponse]
207
234
  def id: () -> ::String
235
+ def template_arn: () -> ::String
208
236
  def name: () -> ::String
209
237
  def description: () -> ::String
210
238
  def inputs: () -> ::Array[Types::TemplateInput]
211
239
  def tools: () -> ::Array[Types::Tool]
212
- def status: () -> ("CREATED")
213
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]
214
246
  end
215
247
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#get_template-instance_method
216
248
  def get_template: (
@@ -303,7 +335,7 @@ module Aws
303
335
  def outputs: () -> ::Array[Types::WorkflowStepOutput]
304
336
  def previous: () -> ::Array[::String]
305
337
  def next: () -> ::Array[::String]
306
- def status: () -> ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
338
+ def status: () -> ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
307
339
  def status_message: () -> ::String
308
340
  def script_output_location: () -> ::String
309
341
  def creation_time: () -> ::Time
@@ -453,7 +485,7 @@ module Aws
453
485
  def step_group_id: () -> ::String
454
486
  def workflow_id: () -> ::String
455
487
  def id: () -> ::String
456
- def status: () -> ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
488
+ def status: () -> ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
457
489
  end
458
490
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHubOrchestrator/Client.html#retry_workflow_step-instance_method
459
491
  def retry_workflow_step: (
@@ -511,6 +543,21 @@ module Aws
511
543
  ) -> _UntagResourceResponseSuccess
512
544
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
513
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
+
514
561
  interface _UpdateWorkflowResponseSuccess
515
562
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMigrationWorkflowResponse]
516
563
  def id: () -> ::String
@@ -584,7 +631,7 @@ module Aws
584
631
  ],
585
632
  ?previous: Array[::String],
586
633
  ?next: Array[::String],
587
- ?status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
634
+ ?status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
588
635
  ) -> _UpdateWorkflowStepResponseSuccess
589
636
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkflowStepResponseSuccess
590
637
 
data/sig/errors.rbs CHANGED
@@ -14,6 +14,9 @@ module Aws
14
14
  class AccessDeniedException < ::Aws::Errors::ServiceError
15
15
  def message: () -> ::String
16
16
  end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
17
20
  class InternalServerException < ::Aws::Errors::ServiceError
18
21
  def message: () -> ::String
19
22
  end
data/sig/types.rbs CHANGED
@@ -13,6 +13,11 @@ module Aws::MigrationHubOrchestrator
13
13
  SENSITIVE: []
14
14
  end
15
15
 
16
+ class ConflictException
17
+ attr_accessor message: ::String
18
+ SENSITIVE: []
19
+ end
20
+
16
21
  class CreateMigrationWorkflowRequest
17
22
  attr_accessor name: ::String
18
23
  attr_accessor description: ::String
@@ -39,6 +44,22 @@ module Aws::MigrationHubOrchestrator
39
44
  SENSITIVE: [:workflow_inputs]
40
45
  end
41
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
+
42
63
  class CreateWorkflowStepGroupRequest
43
64
  attr_accessor workflow_id: ::String
44
65
  attr_accessor name: ::String
@@ -94,6 +115,14 @@ module Aws::MigrationHubOrchestrator
94
115
  SENSITIVE: []
95
116
  end
96
117
 
118
+ class DeleteTemplateRequest
119
+ attr_accessor id: ::String
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class DeleteTemplateResponse < Aws::EmptyStructure
124
+ end
125
+
97
126
  class DeleteWorkflowStepGroupRequest
98
127
  attr_accessor workflow_id: ::String
99
128
  attr_accessor id: ::String
@@ -149,12 +178,17 @@ module Aws::MigrationHubOrchestrator
149
178
 
150
179
  class GetMigrationWorkflowTemplateResponse
151
180
  attr_accessor id: ::String
181
+ attr_accessor template_arn: ::String
152
182
  attr_accessor name: ::String
153
183
  attr_accessor description: ::String
154
184
  attr_accessor inputs: ::Array[Types::TemplateInput]
155
185
  attr_accessor tools: ::Array[Types::Tool]
156
- attr_accessor status: ("CREATED")
157
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]
158
192
  SENSITIVE: []
159
193
  end
160
194
 
@@ -242,7 +276,7 @@ module Aws::MigrationHubOrchestrator
242
276
  attr_accessor outputs: ::Array[Types::WorkflowStepOutput]
243
277
  attr_accessor previous: ::Array[::String]
244
278
  attr_accessor next: ::Array[::String]
245
- attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
279
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
246
280
  attr_accessor status_message: ::String
247
281
  attr_accessor script_output_location: ::String
248
282
  attr_accessor creation_time: ::Time
@@ -416,7 +450,7 @@ module Aws::MigrationHubOrchestrator
416
450
  attr_accessor step_group_id: ::String
417
451
  attr_accessor workflow_id: ::String
418
452
  attr_accessor id: ::String
419
- attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
453
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
420
454
  SENSITIVE: []
421
455
  end
422
456
 
@@ -500,6 +534,17 @@ module Aws::MigrationHubOrchestrator
500
534
  SENSITIVE: []
501
535
  end
502
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
+
503
548
  class TemplateStepGroupSummary
504
549
  attr_accessor id: ::String
505
550
  attr_accessor name: ::String
@@ -574,6 +619,21 @@ module Aws::MigrationHubOrchestrator
574
619
  SENSITIVE: [:workflow_inputs]
575
620
  end
576
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
+
577
637
  class UpdateWorkflowStepGroupRequest
578
638
  attr_accessor workflow_id: ::String
579
639
  attr_accessor id: ::String
@@ -608,7 +668,7 @@ module Aws::MigrationHubOrchestrator
608
668
  attr_accessor outputs: ::Array[Types::WorkflowStepOutput]
609
669
  attr_accessor previous: ::Array[::String]
610
670
  attr_accessor next: ::Array[::String]
611
- attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
671
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
612
672
  SENSITIVE: []
613
673
  end
614
674
 
@@ -676,7 +736,7 @@ module Aws::MigrationHubOrchestrator
676
736
  attr_accessor owner: ("AWS_MANAGED" | "CUSTOM")
677
737
  attr_accessor previous: ::Array[::String]
678
738
  attr_accessor next: ::Array[::String]
679
- attr_accessor status: ("AWAITING_DEPENDENCIES" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
739
+ attr_accessor status: ("AWAITING_DEPENDENCIES" | "SKIPPED" | "READY" | "IN_PROGRESS" | "COMPLETED" | "FAILED" | "PAUSED" | "USER_ATTENTION_REQUIRED")
680
740
  attr_accessor status_message: ::String
681
741
  attr_accessor no_of_srv_completed: ::Integer
682
742
  attr_accessor no_of_srv_failed: ::Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-migrationhuborchestrator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement