aws-sdk-migrationhuborchestrator 1.45.0 → 1.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81810c78af572e5e5e53e518499a3adbf1dc94fcde4a1828672cabf425d06bdd
4
- data.tar.gz: 80c4266db13882cd4239859aa4db02f0f230f065b065bee05d8c0b4109a5af37
3
+ metadata.gz: d72b4145ea01b85df8f4ddb4aa29261e6ee6f2196c2530f49365da1c1f3c5160
4
+ data.tar.gz: d75bb28540e956065fb4cd69631fa9184438976fe117d258c171a25bb45f62d4
5
5
  SHA512:
6
- metadata.gz: b38381466ec54351f24178747dea3dbead4c6fc8fe13f4a3b77bee58bab1013cdaada795d787288a1f19d98224f6dd29f50509681187e9dbe3644f370ad48067
7
- data.tar.gz: e9f73cfe11ea059be8f5d5b059ab76707999020b8ceeecf7498ee83e3857854afadc3bda38c9c8fdec467363328790d7b6f54f2a850dadadcf4e9a387527e040
6
+ metadata.gz: 50f63af0825fd195a34b0c4bed63595f442376e303dddff0f5ebb7a6445f106111ebc3e69385cbce73a7ad984866ab410e81e3a618b6213fd4374f04d12777dd
7
+ data.tar.gz: fb0d03c2b61df7bc8e22b1f98e55674e341ae221db1c337c9408713f2aec52291228abb50a24ceb13ac5199c909c2789b3b5f4d5ba37600c9285ed5edbb19502
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.45.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.46.0
@@ -2178,7 +2178,7 @@ module Aws::MigrationHubOrchestrator
2178
2178
  tracer: tracer
2179
2179
  )
2180
2180
  context[:gem_name] = 'aws-sdk-migrationhuborchestrator'
2181
- context[:gem_version] = '1.45.0'
2181
+ context[:gem_version] = '1.46.0'
2182
2182
  Seahorse::Client::Request.new(handlers, context)
2183
2183
  end
2184
2184
 
@@ -55,7 +55,7 @@ module Aws::MigrationHubOrchestrator
55
55
  autoload :EndpointProvider, 'aws-sdk-migrationhuborchestrator/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-migrationhuborchestrator/endpoints'
57
57
 
58
- GEM_VERSION = '1.45.0'
58
+ GEM_VERSION = '1.46.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -141,31 +141,10 @@ module Aws
141
141
  workflow_id: ::String,
142
142
  step_action_type: ("MANUAL" | "AUTOMATED"),
143
143
  ?description: ::String,
144
- ?workflow_step_automation_configuration: {
145
- script_location_s3_bucket: ::String?,
146
- script_location_s3_key: {
147
- linux: ::String?,
148
- windows: ::String?
149
- }?,
150
- command: {
151
- linux: ::String?,
152
- windows: ::String?
153
- }?,
154
- run_environment: ("AWS" | "ONPREMISE")?,
155
- target_type: ("SINGLE" | "ALL" | "NONE")?
156
- },
144
+ ?workflow_step_automation_configuration: Params::workflow_step_automation_configuration,
157
145
  ?step_target: Array[::String],
158
146
  ?outputs: Array[
159
- {
160
- name: ::String?,
161
- data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")?,
162
- required: bool?,
163
- value: {
164
- integer_value: ::Integer?,
165
- string_value: ::String?,
166
- list_of_string_value: Array[::String]?
167
- }?
168
- },
147
+ Params::workflow_step_output
169
148
  ],
170
149
  ?previous: Array[::String],
171
150
  ?next: Array[::String]
@@ -609,31 +588,10 @@ module Aws
609
588
  ?name: ::String,
610
589
  ?description: ::String,
611
590
  ?step_action_type: ("MANUAL" | "AUTOMATED"),
612
- ?workflow_step_automation_configuration: {
613
- script_location_s3_bucket: ::String?,
614
- script_location_s3_key: {
615
- linux: ::String?,
616
- windows: ::String?
617
- }?,
618
- command: {
619
- linux: ::String?,
620
- windows: ::String?
621
- }?,
622
- run_environment: ("AWS" | "ONPREMISE")?,
623
- target_type: ("SINGLE" | "ALL" | "NONE")?
624
- },
591
+ ?workflow_step_automation_configuration: Params::workflow_step_automation_configuration,
625
592
  ?step_target: Array[::String],
626
593
  ?outputs: Array[
627
- {
628
- name: ::String?,
629
- data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")?,
630
- required: bool?,
631
- value: {
632
- integer_value: ::Integer?,
633
- string_value: ::String?,
634
- list_of_string_value: Array[::String]?
635
- }?
636
- },
594
+ Params::workflow_step_output
637
595
  ],
638
596
  ?previous: Array[::String],
639
597
  ?next: Array[::String],
data/sig/params.rbs ADDED
@@ -0,0 +1,38 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MigrationHubOrchestrator
10
+ module Params
11
+ type workflow_step_automation_configuration = {
12
+ script_location_s3_bucket: ::String?,
13
+ script_location_s3_key: {
14
+ linux: ::String?,
15
+ windows: ::String?
16
+ }?,
17
+ command: {
18
+ linux: ::String?,
19
+ windows: ::String?
20
+ }?,
21
+ run_environment: ("AWS" | "ONPREMISE")?,
22
+ target_type: ("SINGLE" | "ALL" | "NONE")?
23
+ }
24
+
25
+ type workflow_step_output = {
26
+ name: ::String?,
27
+ data_type: ("STRING" | "INTEGER" | "STRINGLIST" | "STRINGMAP")?,
28
+ required: bool?,
29
+ value: {
30
+ integer_value: ::Integer?,
31
+ string_value: ::String?,
32
+ list_of_string_value: Array[::String]?
33
+ }?
34
+ }
35
+
36
+ end
37
+ end
38
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-migrationhuborchestrator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-migrationhuborchestrator/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs