aws-sdk-migrationhuborchestrator 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b11eb16e4b55333f409a22be4708d5345353ec15995bac7da6e9a49800c93c3b
4
- data.tar.gz: a9d363a4a4aed242f7d5beafed056ad22d2592bc14ca09f35aefc485eead7a3d
3
+ metadata.gz: 724445bfe6785051e54262b3ee0d433ee4ffb463c94e0697b474d0719b54bed1
4
+ data.tar.gz: d31e2139a76aad706d579c802bae8de8c45729c6d06a5ec9ddbdc2e0df2e07e3
5
5
  SHA512:
6
- metadata.gz: 68e97290850bf77fdd823e60c62dd12d38224b805d9d831a4ac1e63d04f7a25e6e604db7ddd0404118a0f627a88f731d4b7040ba94632e616199e5ab3d51f24c
7
- data.tar.gz: 700f76a455a7e228b507765a0830a7383b6a4185f0ad7df25ce2f7212900d3a3b9c38d550639e16e764fc7532b194e3cf004e6baaef63efdb5bda9589940aa3c
6
+ metadata.gz: e4f8e46a8d20425a2cd0b7e694345ee03c366f82b8973a8cc4c35ed942d8dd133204b12ba4ac239dbe469fe1a391dec42eb637b04a968fecc45daff1f87d70a6
7
+ data.tar.gz: 3bd0ccb77edac11ce65fc4ac00bba854f9c9d88e17469c38290ad725233f97a698576d2c6a737a2bfcbbde67baa0f95744c1a6706da453224ba7754689ce565f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.1.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.2.0
@@ -1921,7 +1921,7 @@ module Aws::MigrationHubOrchestrator
1921
1921
  params: params,
1922
1922
  config: config)
1923
1923
  context[:gem_name] = 'aws-sdk-migrationhuborchestrator'
1924
- context[:gem_version] = '1.1.0'
1924
+ context[:gem_version] = '1.2.0'
1925
1925
  Seahorse::Client::Request.new(handlers, context)
1926
1926
  end
1927
1927
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::MigrationHubOrchestrator
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://migrationhub-orchestrator-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://migrationhub-orchestrator-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://migrationhub-orchestrator.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://migrationhub-orchestrator.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL21pZ3JhdGlvbmh1Yi1vcmNoZXN0cmF0b3It
77
- Zmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1
78
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
79
- ZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBh
80
- bmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24g
81
- ZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9
82
- XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2
83
- IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJy
84
- dWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
85
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
86
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoi
87
- dHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsi
88
- dXJsIjoiaHR0cHM6Ly9taWdyYXRpb25odWItb3JjaGVzdHJhdG9yLWZpcHMu
89
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
90
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
91
- ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQg
92
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6
93
- ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFs
94
- cyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5
95
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
96
- bGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJn
97
- diI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0
98
- YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
99
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9taWdyYXRpb25odWIt
100
- b3JjaGVzdHJhdG9yLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0
101
- YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
102
- InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
103
- OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
104
- cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
105
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWln
106
- cmF0aW9uaHViLW9yY2hlc3RyYXRvci57UmVnaW9ufS57UGFydGl0aW9uUmVz
107
- dWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319
108
- LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -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]
@@ -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.1.0'
56
+ GEM_VERSION = '1.2.0'
57
57
 
58
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.1.0
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: 2022-10-25 00:00:00.000000000 Z
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