aws-sdk-migrationhuborchestrator 1.0.0 → 1.2.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-migrationhuborchestrator/client.rb +20 -3
- data/lib/aws-sdk-migrationhuborchestrator/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-migrationhuborchestrator/endpoint_provider.rb +51 -0
- data/lib/aws-sdk-migrationhuborchestrator/endpoints.rb +407 -0
- data/lib/aws-sdk-migrationhuborchestrator/plugins/endpoints.rb +124 -0
- data/lib/aws-sdk-migrationhuborchestrator/types.rb +0 -381
- data/lib/aws-sdk-migrationhuborchestrator.rb +5 -1
- metadata +8 -4
@@ -23,30 +23,6 @@ module Aws::MigrationHubOrchestrator
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @note When making an API call, you may pass CreateMigrationWorkflowRequest
|
27
|
-
# data as a hash:
|
28
|
-
#
|
29
|
-
# {
|
30
|
-
# name: "CreateMigrationWorkflowRequestNameString", # required
|
31
|
-
# description: "CreateMigrationWorkflowRequestDescriptionString",
|
32
|
-
# template_id: "CreateMigrationWorkflowRequestTemplateIdString", # required
|
33
|
-
# application_configuration_id: "CreateMigrationWorkflowRequestApplicationConfigurationIdString", # required
|
34
|
-
# input_parameters: { # required
|
35
|
-
# "StepInputParametersKey" => {
|
36
|
-
# integer_value: 1,
|
37
|
-
# string_value: "StringValue",
|
38
|
-
# list_of_strings_value: ["StringListMember"],
|
39
|
-
# map_of_string_value: {
|
40
|
-
# "StringMapKey" => "StringMapValue",
|
41
|
-
# },
|
42
|
-
# },
|
43
|
-
# },
|
44
|
-
# step_targets: ["StringListMember"],
|
45
|
-
# tags: {
|
46
|
-
# "StringMapKey" => "StringMapValue",
|
47
|
-
# },
|
48
|
-
# }
|
49
|
-
#
|
50
26
|
# @!attribute [rw] name
|
51
27
|
# The name of the migration workflow.
|
52
28
|
# @return [String]
|
@@ -153,17 +129,6 @@ module Aws::MigrationHubOrchestrator
|
|
153
129
|
include Aws::Structure
|
154
130
|
end
|
155
131
|
|
156
|
-
# @note When making an API call, you may pass CreateWorkflowStepGroupRequest
|
157
|
-
# data as a hash:
|
158
|
-
#
|
159
|
-
# {
|
160
|
-
# workflow_id: "MigrationWorkflowId", # required
|
161
|
-
# name: "StepGroupName", # required
|
162
|
-
# description: "StepGroupDescription",
|
163
|
-
# next: ["StringListMember"],
|
164
|
-
# previous: ["StringListMember"],
|
165
|
-
# }
|
166
|
-
#
|
167
132
|
# @!attribute [rw] workflow_id
|
168
133
|
# The ID of the migration workflow that will contain the step group.
|
169
134
|
# @return [String]
|
@@ -243,45 +208,6 @@ module Aws::MigrationHubOrchestrator
|
|
243
208
|
include Aws::Structure
|
244
209
|
end
|
245
210
|
|
246
|
-
# @note When making an API call, you may pass CreateWorkflowStepRequest
|
247
|
-
# data as a hash:
|
248
|
-
#
|
249
|
-
# {
|
250
|
-
# name: "MigrationWorkflowName", # required
|
251
|
-
# step_group_id: "StepGroupId", # required
|
252
|
-
# workflow_id: "MigrationWorkflowId", # required
|
253
|
-
# step_action_type: "MANUAL", # required, accepts MANUAL, AUTOMATED
|
254
|
-
# description: "MigrationWorkflowDescription",
|
255
|
-
# workflow_step_automation_configuration: {
|
256
|
-
# script_location_s3_bucket: "S3Bucket",
|
257
|
-
# script_location_s3_key: {
|
258
|
-
# linux: "S3Key",
|
259
|
-
# windows: "S3Key",
|
260
|
-
# },
|
261
|
-
# command: {
|
262
|
-
# linux: "String",
|
263
|
-
# windows: "String",
|
264
|
-
# },
|
265
|
-
# run_environment: "AWS", # accepts AWS, ONPREMISE
|
266
|
-
# target_type: "SINGLE", # accepts SINGLE, ALL, NONE
|
267
|
-
# },
|
268
|
-
# step_target: ["StringListMember"],
|
269
|
-
# outputs: [
|
270
|
-
# {
|
271
|
-
# name: "WorkflowStepOutputName",
|
272
|
-
# data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
|
273
|
-
# required: false,
|
274
|
-
# value: {
|
275
|
-
# integer_value: 1,
|
276
|
-
# string_value: "StringValue",
|
277
|
-
# list_of_string_value: ["StringListMember"],
|
278
|
-
# },
|
279
|
-
# },
|
280
|
-
# ],
|
281
|
-
# previous: ["StringListMember"],
|
282
|
-
# next: ["StringListMember"],
|
283
|
-
# }
|
284
|
-
#
|
285
211
|
# @!attribute [rw] name
|
286
212
|
# The name of the step.
|
287
213
|
# @return [String]
|
@@ -368,13 +294,6 @@ module Aws::MigrationHubOrchestrator
|
|
368
294
|
include Aws::Structure
|
369
295
|
end
|
370
296
|
|
371
|
-
# @note When making an API call, you may pass DeleteMigrationWorkflowRequest
|
372
|
-
# data as a hash:
|
373
|
-
#
|
374
|
-
# {
|
375
|
-
# id: "MigrationWorkflowId", # required
|
376
|
-
# }
|
377
|
-
#
|
378
297
|
# @!attribute [rw] id
|
379
298
|
# The ID of the migration workflow you want to delete.
|
380
299
|
# @return [String]
|
@@ -409,14 +328,6 @@ module Aws::MigrationHubOrchestrator
|
|
409
328
|
include Aws::Structure
|
410
329
|
end
|
411
330
|
|
412
|
-
# @note When making an API call, you may pass DeleteWorkflowStepGroupRequest
|
413
|
-
# data as a hash:
|
414
|
-
#
|
415
|
-
# {
|
416
|
-
# workflow_id: "MigrationWorkflowId", # required
|
417
|
-
# id: "StepGroupId", # required
|
418
|
-
# }
|
419
|
-
#
|
420
331
|
# @!attribute [rw] workflow_id
|
421
332
|
# The ID of the migration workflow.
|
422
333
|
# @return [String]
|
@@ -438,15 +349,6 @@ module Aws::MigrationHubOrchestrator
|
|
438
349
|
#
|
439
350
|
class DeleteWorkflowStepGroupResponse < Aws::EmptyStructure; end
|
440
351
|
|
441
|
-
# @note When making an API call, you may pass DeleteWorkflowStepRequest
|
442
|
-
# data as a hash:
|
443
|
-
#
|
444
|
-
# {
|
445
|
-
# id: "StepId", # required
|
446
|
-
# step_group_id: "StepGroupId", # required
|
447
|
-
# workflow_id: "MigrationWorkflowId", # required
|
448
|
-
# }
|
449
|
-
#
|
450
352
|
# @!attribute [rw] id
|
451
353
|
# The ID of the step you want to delete.
|
452
354
|
# @return [String]
|
@@ -473,13 +375,6 @@ module Aws::MigrationHubOrchestrator
|
|
473
375
|
#
|
474
376
|
class DeleteWorkflowStepResponse < Aws::EmptyStructure; end
|
475
377
|
|
476
|
-
# @note When making an API call, you may pass GetMigrationWorkflowRequest
|
477
|
-
# data as a hash:
|
478
|
-
#
|
479
|
-
# {
|
480
|
-
# id: "MigrationWorkflowId", # required
|
481
|
-
# }
|
482
|
-
#
|
483
378
|
# @!attribute [rw] id
|
484
379
|
# The ID of the migration workflow.
|
485
380
|
# @return [String]
|
@@ -601,13 +496,6 @@ module Aws::MigrationHubOrchestrator
|
|
601
496
|
include Aws::Structure
|
602
497
|
end
|
603
498
|
|
604
|
-
# @note When making an API call, you may pass GetMigrationWorkflowTemplateRequest
|
605
|
-
# data as a hash:
|
606
|
-
#
|
607
|
-
# {
|
608
|
-
# id: "TemplateId", # required
|
609
|
-
# }
|
610
|
-
#
|
611
499
|
# @!attribute [rw] id
|
612
500
|
# The ID of the template.
|
613
501
|
# @return [String]
|
@@ -662,14 +550,6 @@ module Aws::MigrationHubOrchestrator
|
|
662
550
|
include Aws::Structure
|
663
551
|
end
|
664
552
|
|
665
|
-
# @note When making an API call, you may pass GetTemplateStepGroupRequest
|
666
|
-
# data as a hash:
|
667
|
-
#
|
668
|
-
# {
|
669
|
-
# template_id: "TemplateId", # required
|
670
|
-
# id: "StepGroupId", # required
|
671
|
-
# }
|
672
|
-
#
|
673
553
|
# @!attribute [rw] template_id
|
674
554
|
# The ID of the template.
|
675
555
|
# @return [String]
|
@@ -744,15 +624,6 @@ module Aws::MigrationHubOrchestrator
|
|
744
624
|
include Aws::Structure
|
745
625
|
end
|
746
626
|
|
747
|
-
# @note When making an API call, you may pass GetTemplateStepRequest
|
748
|
-
# data as a hash:
|
749
|
-
#
|
750
|
-
# {
|
751
|
-
# id: "StepId", # required
|
752
|
-
# template_id: "TemplateId", # required
|
753
|
-
# step_group_id: "StepGroupId", # required
|
754
|
-
# }
|
755
|
-
#
|
756
627
|
# @!attribute [rw] id
|
757
628
|
# The ID of the step.
|
758
629
|
# @return [String]
|
@@ -839,14 +710,6 @@ module Aws::MigrationHubOrchestrator
|
|
839
710
|
include Aws::Structure
|
840
711
|
end
|
841
712
|
|
842
|
-
# @note When making an API call, you may pass GetWorkflowStepGroupRequest
|
843
|
-
# data as a hash:
|
844
|
-
#
|
845
|
-
# {
|
846
|
-
# id: "StepGroupId", # required
|
847
|
-
# workflow_id: "MigrationWorkflowId", # required
|
848
|
-
# }
|
849
|
-
#
|
850
713
|
# @!attribute [rw] id
|
851
714
|
# The ID of the step group.
|
852
715
|
# @return [String]
|
@@ -931,15 +794,6 @@ module Aws::MigrationHubOrchestrator
|
|
931
794
|
include Aws::Structure
|
932
795
|
end
|
933
796
|
|
934
|
-
# @note When making an API call, you may pass GetWorkflowStepRequest
|
935
|
-
# data as a hash:
|
936
|
-
#
|
937
|
-
# {
|
938
|
-
# workflow_id: "MigrationWorkflowId", # required
|
939
|
-
# step_group_id: "StepGroupId", # required
|
940
|
-
# id: "StepId", # required
|
941
|
-
# }
|
942
|
-
#
|
943
797
|
# @!attribute [rw] workflow_id
|
944
798
|
# The ID of the migration workflow.
|
945
799
|
# @return [String]
|
@@ -1089,15 +943,6 @@ module Aws::MigrationHubOrchestrator
|
|
1089
943
|
include Aws::Structure
|
1090
944
|
end
|
1091
945
|
|
1092
|
-
# @note When making an API call, you may pass ListMigrationWorkflowTemplatesRequest
|
1093
|
-
# data as a hash:
|
1094
|
-
#
|
1095
|
-
# {
|
1096
|
-
# max_results: 1,
|
1097
|
-
# next_token: "NextToken",
|
1098
|
-
# name: "TemplateName",
|
1099
|
-
# }
|
1100
|
-
#
|
1101
946
|
# @!attribute [rw] max_results
|
1102
947
|
# The maximum number of results that can be returned.
|
1103
948
|
# @return [Integer]
|
@@ -1137,18 +982,6 @@ module Aws::MigrationHubOrchestrator
|
|
1137
982
|
include Aws::Structure
|
1138
983
|
end
|
1139
984
|
|
1140
|
-
# @note When making an API call, you may pass ListMigrationWorkflowsRequest
|
1141
|
-
# data as a hash:
|
1142
|
-
#
|
1143
|
-
# {
|
1144
|
-
# max_results: 1,
|
1145
|
-
# next_token: "NextToken",
|
1146
|
-
# template_id: "TemplateId",
|
1147
|
-
# ads_application_configuration_name: "ApplicationConfigurationName",
|
1148
|
-
# status: "CREATING", # accepts CREATING, NOT_STARTED, CREATION_FAILED, STARTING, IN_PROGRESS, WORKFLOW_FAILED, PAUSED, PAUSING, PAUSING_FAILED, USER_ATTENTION_REQUIRED, DELETING, DELETION_FAILED, DELETED, COMPLETED
|
1149
|
-
# name: "String",
|
1150
|
-
# }
|
1151
|
-
#
|
1152
985
|
# @!attribute [rw] max_results
|
1153
986
|
# The maximum number of results that can be returned.
|
1154
987
|
# @return [Integer]
|
@@ -1204,14 +1037,6 @@ module Aws::MigrationHubOrchestrator
|
|
1204
1037
|
include Aws::Structure
|
1205
1038
|
end
|
1206
1039
|
|
1207
|
-
# @note When making an API call, you may pass ListPluginsRequest
|
1208
|
-
# data as a hash:
|
1209
|
-
#
|
1210
|
-
# {
|
1211
|
-
# max_results: 1,
|
1212
|
-
# next_token: "NextToken",
|
1213
|
-
# }
|
1214
|
-
#
|
1215
1040
|
# @!attribute [rw] max_results
|
1216
1041
|
# The maximum number of plugins that can be returned.
|
1217
1042
|
# @return [Integer]
|
@@ -1246,13 +1071,6 @@ module Aws::MigrationHubOrchestrator
|
|
1246
1071
|
include Aws::Structure
|
1247
1072
|
end
|
1248
1073
|
|
1249
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1250
|
-
# data as a hash:
|
1251
|
-
#
|
1252
|
-
# {
|
1253
|
-
# resource_arn: "ResourceArn", # required
|
1254
|
-
# }
|
1255
|
-
#
|
1256
1074
|
# @!attribute [rw] resource_arn
|
1257
1075
|
# The Amazon Resource Name (ARN) of the resource.
|
1258
1076
|
# @return [String]
|
@@ -1277,15 +1095,6 @@ module Aws::MigrationHubOrchestrator
|
|
1277
1095
|
include Aws::Structure
|
1278
1096
|
end
|
1279
1097
|
|
1280
|
-
# @note When making an API call, you may pass ListTemplateStepGroupsRequest
|
1281
|
-
# data as a hash:
|
1282
|
-
#
|
1283
|
-
# {
|
1284
|
-
# max_results: 1,
|
1285
|
-
# next_token: "NextToken",
|
1286
|
-
# template_id: "TemplateId", # required
|
1287
|
-
# }
|
1288
|
-
#
|
1289
1098
|
# @!attribute [rw] max_results
|
1290
1099
|
# The maximum number of results that can be returned.
|
1291
1100
|
# @return [Integer]
|
@@ -1325,16 +1134,6 @@ module Aws::MigrationHubOrchestrator
|
|
1325
1134
|
include Aws::Structure
|
1326
1135
|
end
|
1327
1136
|
|
1328
|
-
# @note When making an API call, you may pass ListTemplateStepsRequest
|
1329
|
-
# data as a hash:
|
1330
|
-
#
|
1331
|
-
# {
|
1332
|
-
# max_results: 1,
|
1333
|
-
# next_token: "NextToken",
|
1334
|
-
# template_id: "TemplateId", # required
|
1335
|
-
# step_group_id: "StepGroupId", # required
|
1336
|
-
# }
|
1337
|
-
#
|
1338
1137
|
# @!attribute [rw] max_results
|
1339
1138
|
# The maximum number of results that can be returned.
|
1340
1139
|
# @return [Integer]
|
@@ -1379,15 +1178,6 @@ module Aws::MigrationHubOrchestrator
|
|
1379
1178
|
include Aws::Structure
|
1380
1179
|
end
|
1381
1180
|
|
1382
|
-
# @note When making an API call, you may pass ListWorkflowStepGroupsRequest
|
1383
|
-
# data as a hash:
|
1384
|
-
#
|
1385
|
-
# {
|
1386
|
-
# next_token: "NextToken",
|
1387
|
-
# max_results: 1,
|
1388
|
-
# workflow_id: "MigrationWorkflowId", # required
|
1389
|
-
# }
|
1390
|
-
#
|
1391
1181
|
# @!attribute [rw] next_token
|
1392
1182
|
# The pagination token.
|
1393
1183
|
# @return [String]
|
@@ -1427,16 +1217,6 @@ module Aws::MigrationHubOrchestrator
|
|
1427
1217
|
include Aws::Structure
|
1428
1218
|
end
|
1429
1219
|
|
1430
|
-
# @note When making an API call, you may pass ListWorkflowStepsRequest
|
1431
|
-
# data as a hash:
|
1432
|
-
#
|
1433
|
-
# {
|
1434
|
-
# next_token: "NextToken",
|
1435
|
-
# max_results: 1,
|
1436
|
-
# workflow_id: "MigrationWorkflowId", # required
|
1437
|
-
# step_group_id: "StepGroupId", # required
|
1438
|
-
# }
|
1439
|
-
#
|
1440
1220
|
# @!attribute [rw] next_token
|
1441
1221
|
# The pagination token.
|
1442
1222
|
# @return [String]
|
@@ -1543,14 +1323,6 @@ module Aws::MigrationHubOrchestrator
|
|
1543
1323
|
|
1544
1324
|
# Command to be run on a particular operating system.
|
1545
1325
|
#
|
1546
|
-
# @note When making an API call, you may pass PlatformCommand
|
1547
|
-
# data as a hash:
|
1548
|
-
#
|
1549
|
-
# {
|
1550
|
-
# linux: "String",
|
1551
|
-
# windows: "String",
|
1552
|
-
# }
|
1553
|
-
#
|
1554
1326
|
# @!attribute [rw] linux
|
1555
1327
|
# Command for Linux.
|
1556
1328
|
# @return [String]
|
@@ -1570,14 +1342,6 @@ module Aws::MigrationHubOrchestrator
|
|
1570
1342
|
|
1571
1343
|
# The script location for a particular operating system.
|
1572
1344
|
#
|
1573
|
-
# @note When making an API call, you may pass PlatformScriptKey
|
1574
|
-
# data as a hash:
|
1575
|
-
#
|
1576
|
-
# {
|
1577
|
-
# linux: "S3Key",
|
1578
|
-
# windows: "S3Key",
|
1579
|
-
# }
|
1580
|
-
#
|
1581
1345
|
# @!attribute [rw] linux
|
1582
1346
|
# The script location for Linux.
|
1583
1347
|
# @return [String]
|
@@ -1647,15 +1411,6 @@ module Aws::MigrationHubOrchestrator
|
|
1647
1411
|
include Aws::Structure
|
1648
1412
|
end
|
1649
1413
|
|
1650
|
-
# @note When making an API call, you may pass RetryWorkflowStepRequest
|
1651
|
-
# data as a hash:
|
1652
|
-
#
|
1653
|
-
# {
|
1654
|
-
# workflow_id: "MigrationWorkflowId", # required
|
1655
|
-
# step_group_id: "StepGroupId", # required
|
1656
|
-
# id: "StepId", # required
|
1657
|
-
# }
|
1658
|
-
#
|
1659
1414
|
# @!attribute [rw] workflow_id
|
1660
1415
|
# The ID of the migration workflow.
|
1661
1416
|
# @return [String]
|
@@ -1705,13 +1460,6 @@ module Aws::MigrationHubOrchestrator
|
|
1705
1460
|
include Aws::Structure
|
1706
1461
|
end
|
1707
1462
|
|
1708
|
-
# @note When making an API call, you may pass StartMigrationWorkflowRequest
|
1709
|
-
# data as a hash:
|
1710
|
-
#
|
1711
|
-
# {
|
1712
|
-
# id: "MigrationWorkflowId", # required
|
1713
|
-
# }
|
1714
|
-
#
|
1715
1463
|
# @!attribute [rw] id
|
1716
1464
|
# The ID of the migration workflow.
|
1717
1465
|
# @return [String]
|
@@ -1857,13 +1605,6 @@ module Aws::MigrationHubOrchestrator
|
|
1857
1605
|
include Aws::Structure
|
1858
1606
|
end
|
1859
1607
|
|
1860
|
-
# @note When making an API call, you may pass StopMigrationWorkflowRequest
|
1861
|
-
# data as a hash:
|
1862
|
-
#
|
1863
|
-
# {
|
1864
|
-
# id: "MigrationWorkflowId", # required
|
1865
|
-
# }
|
1866
|
-
#
|
1867
1608
|
# @!attribute [rw] id
|
1868
1609
|
# The ID of the migration workflow.
|
1869
1610
|
# @return [String]
|
@@ -1908,16 +1649,6 @@ module Aws::MigrationHubOrchestrator
|
|
1908
1649
|
include Aws::Structure
|
1909
1650
|
end
|
1910
1651
|
|
1911
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1912
|
-
# data as a hash:
|
1913
|
-
#
|
1914
|
-
# {
|
1915
|
-
# resource_arn: "ResourceArn", # required
|
1916
|
-
# tags: { # required
|
1917
|
-
# "TagKey" => "TagValue",
|
1918
|
-
# },
|
1919
|
-
# }
|
1920
|
-
#
|
1921
1652
|
# @!attribute [rw] resource_arn
|
1922
1653
|
# The Amazon Resource Name (ARN) of the resource to which you want to
|
1923
1654
|
# add tags.
|
@@ -2111,14 +1842,6 @@ module Aws::MigrationHubOrchestrator
|
|
2111
1842
|
include Aws::Structure
|
2112
1843
|
end
|
2113
1844
|
|
2114
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2115
|
-
# data as a hash:
|
2116
|
-
#
|
2117
|
-
# {
|
2118
|
-
# resource_arn: "ResourceArn", # required
|
2119
|
-
# tag_keys: ["TagKey"], # required
|
2120
|
-
# }
|
2121
|
-
#
|
2122
1845
|
# @!attribute [rw] resource_arn
|
2123
1846
|
# The Amazon Resource Name (ARN) of the resource from which you want
|
2124
1847
|
# to remove tags.
|
@@ -2141,26 +1864,6 @@ module Aws::MigrationHubOrchestrator
|
|
2141
1864
|
#
|
2142
1865
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2143
1866
|
|
2144
|
-
# @note When making an API call, you may pass UpdateMigrationWorkflowRequest
|
2145
|
-
# data as a hash:
|
2146
|
-
#
|
2147
|
-
# {
|
2148
|
-
# id: "MigrationWorkflowId", # required
|
2149
|
-
# name: "UpdateMigrationWorkflowRequestNameString",
|
2150
|
-
# description: "UpdateMigrationWorkflowRequestDescriptionString",
|
2151
|
-
# input_parameters: {
|
2152
|
-
# "StepInputParametersKey" => {
|
2153
|
-
# integer_value: 1,
|
2154
|
-
# string_value: "StringValue",
|
2155
|
-
# list_of_strings_value: ["StringListMember"],
|
2156
|
-
# map_of_string_value: {
|
2157
|
-
# "StringMapKey" => "StringMapValue",
|
2158
|
-
# },
|
2159
|
-
# },
|
2160
|
-
# },
|
2161
|
-
# step_targets: ["StringListMember"],
|
2162
|
-
# }
|
2163
|
-
#
|
2164
1867
|
# @!attribute [rw] id
|
2165
1868
|
# The ID of the migration workflow.
|
2166
1869
|
# @return [String]
|
@@ -2261,18 +1964,6 @@ module Aws::MigrationHubOrchestrator
|
|
2261
1964
|
include Aws::Structure
|
2262
1965
|
end
|
2263
1966
|
|
2264
|
-
# @note When making an API call, you may pass UpdateWorkflowStepGroupRequest
|
2265
|
-
# data as a hash:
|
2266
|
-
#
|
2267
|
-
# {
|
2268
|
-
# workflow_id: "MigrationWorkflowId", # required
|
2269
|
-
# id: "StepGroupId", # required
|
2270
|
-
# name: "StepGroupName",
|
2271
|
-
# description: "StepGroupDescription",
|
2272
|
-
# next: ["StringListMember"],
|
2273
|
-
# previous: ["StringListMember"],
|
2274
|
-
# }
|
2275
|
-
#
|
2276
1967
|
# @!attribute [rw] workflow_id
|
2277
1968
|
# The ID of the migration workflow.
|
2278
1969
|
# @return [String]
|
@@ -2357,47 +2048,6 @@ module Aws::MigrationHubOrchestrator
|
|
2357
2048
|
include Aws::Structure
|
2358
2049
|
end
|
2359
2050
|
|
2360
|
-
# @note When making an API call, you may pass UpdateWorkflowStepRequest
|
2361
|
-
# data as a hash:
|
2362
|
-
#
|
2363
|
-
# {
|
2364
|
-
# id: "StepId", # required
|
2365
|
-
# step_group_id: "StepGroupId", # required
|
2366
|
-
# workflow_id: "MigrationWorkflowId", # required
|
2367
|
-
# name: "StepName",
|
2368
|
-
# description: "StepDescription",
|
2369
|
-
# step_action_type: "MANUAL", # accepts MANUAL, AUTOMATED
|
2370
|
-
# workflow_step_automation_configuration: {
|
2371
|
-
# script_location_s3_bucket: "S3Bucket",
|
2372
|
-
# script_location_s3_key: {
|
2373
|
-
# linux: "S3Key",
|
2374
|
-
# windows: "S3Key",
|
2375
|
-
# },
|
2376
|
-
# command: {
|
2377
|
-
# linux: "String",
|
2378
|
-
# windows: "String",
|
2379
|
-
# },
|
2380
|
-
# run_environment: "AWS", # accepts AWS, ONPREMISE
|
2381
|
-
# target_type: "SINGLE", # accepts SINGLE, ALL, NONE
|
2382
|
-
# },
|
2383
|
-
# step_target: ["StringListMember"],
|
2384
|
-
# outputs: [
|
2385
|
-
# {
|
2386
|
-
# name: "WorkflowStepOutputName",
|
2387
|
-
# data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
|
2388
|
-
# required: false,
|
2389
|
-
# value: {
|
2390
|
-
# integer_value: 1,
|
2391
|
-
# string_value: "StringValue",
|
2392
|
-
# list_of_string_value: ["StringListMember"],
|
2393
|
-
# },
|
2394
|
-
# },
|
2395
|
-
# ],
|
2396
|
-
# previous: ["StringListMember"],
|
2397
|
-
# next: ["StringListMember"],
|
2398
|
-
# status: "AWAITING_DEPENDENCIES", # accepts AWAITING_DEPENDENCIES, READY, IN_PROGRESS, COMPLETED, FAILED, PAUSED, USER_ATTENTION_REQUIRED
|
2399
|
-
# }
|
2400
|
-
#
|
2401
2051
|
# @!attribute [rw] id
|
2402
2052
|
# The ID of the step.
|
2403
2053
|
# @return [String]
|
@@ -2511,23 +2161,6 @@ module Aws::MigrationHubOrchestrator
|
|
2511
2161
|
|
2512
2162
|
# The custom script to run tests on source or target environments.
|
2513
2163
|
#
|
2514
|
-
# @note When making an API call, you may pass WorkflowStepAutomationConfiguration
|
2515
|
-
# data as a hash:
|
2516
|
-
#
|
2517
|
-
# {
|
2518
|
-
# script_location_s3_bucket: "S3Bucket",
|
2519
|
-
# script_location_s3_key: {
|
2520
|
-
# linux: "S3Key",
|
2521
|
-
# windows: "S3Key",
|
2522
|
-
# },
|
2523
|
-
# command: {
|
2524
|
-
# linux: "String",
|
2525
|
-
# windows: "String",
|
2526
|
-
# },
|
2527
|
-
# run_environment: "AWS", # accepts AWS, ONPREMISE
|
2528
|
-
# target_type: "SINGLE", # accepts SINGLE, ALL, NONE
|
2529
|
-
# }
|
2530
|
-
#
|
2531
2164
|
# @!attribute [rw] script_location_s3_bucket
|
2532
2165
|
# The Amazon S3 bucket where the script is located.
|
2533
2166
|
# @return [String]
|
@@ -2601,20 +2234,6 @@ module Aws::MigrationHubOrchestrator
|
|
2601
2234
|
|
2602
2235
|
# The output of a step.
|
2603
2236
|
#
|
2604
|
-
# @note When making an API call, you may pass WorkflowStepOutput
|
2605
|
-
# data as a hash:
|
2606
|
-
#
|
2607
|
-
# {
|
2608
|
-
# name: "WorkflowStepOutputName",
|
2609
|
-
# data_type: "STRING", # accepts STRING, INTEGER, STRINGLIST, STRINGMAP
|
2610
|
-
# required: false,
|
2611
|
-
# value: {
|
2612
|
-
# integer_value: 1,
|
2613
|
-
# string_value: "StringValue",
|
2614
|
-
# list_of_string_value: ["StringListMember"],
|
2615
|
-
# },
|
2616
|
-
# }
|
2617
|
-
#
|
2618
2237
|
# @!attribute [rw] name
|
2619
2238
|
# The name of the step.
|
2620
2239
|
# @return [String]
|
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-migrationhuborchestrator/types'
|
15
15
|
require_relative 'aws-sdk-migrationhuborchestrator/client_api'
|
16
|
+
require_relative 'aws-sdk-migrationhuborchestrator/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-migrationhuborchestrator/client'
|
17
18
|
require_relative 'aws-sdk-migrationhuborchestrator/errors'
|
18
19
|
require_relative 'aws-sdk-migrationhuborchestrator/waiters'
|
19
20
|
require_relative 'aws-sdk-migrationhuborchestrator/resource'
|
21
|
+
require_relative 'aws-sdk-migrationhuborchestrator/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-migrationhuborchestrator/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-migrationhuborchestrator/endpoints'
|
20
24
|
require_relative 'aws-sdk-migrationhuborchestrator/customizations'
|
21
25
|
|
22
26
|
# This module provides support for AWS Migration Hub Orchestrator. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-migrationhuborchestrator/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::MigrationHubOrchestrator
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.2.0'
|
53
57
|
|
54
58
|
end
|
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.
|
4
|
+
version: 1.2.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:
|
11
|
+
date: 2023-01-18 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.
|
22
|
+
version: 3.165.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.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-migrationhuborchestrator/client.rb
|
60
60
|
- lib/aws-sdk-migrationhuborchestrator/client_api.rb
|
61
61
|
- lib/aws-sdk-migrationhuborchestrator/customizations.rb
|
62
|
+
- lib/aws-sdk-migrationhuborchestrator/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-migrationhuborchestrator/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-migrationhuborchestrator/endpoints.rb
|
62
65
|
- lib/aws-sdk-migrationhuborchestrator/errors.rb
|
66
|
+
- lib/aws-sdk-migrationhuborchestrator/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-migrationhuborchestrator/resource.rb
|
64
68
|
- lib/aws-sdk-migrationhuborchestrator/types.rb
|
65
69
|
- lib/aws-sdk-migrationhuborchestrator/waiters.rb
|