aws-sdk-migrationhuborchestrator 1.45.0 → 1.47.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: a2b8d8fe0296dd8dfa605ef46d3e391a8e294b782362faeb85366e45730a0dda
4
+ data.tar.gz: 84dc837381c83cc4b0551a5a14403eed7c3fa05ba406283914f312add14929af
5
5
  SHA512:
6
- metadata.gz: b38381466ec54351f24178747dea3dbead4c6fc8fe13f4a3b77bee58bab1013cdaada795d787288a1f19d98224f6dd29f50509681187e9dbe3644f370ad48067
7
- data.tar.gz: e9f73cfe11ea059be8f5d5b059ab76707999020b8ceeecf7498ee83e3857854afadc3bda38c9c8fdec467363328790d7b6f54f2a850dadadcf4e9a387527e040
6
+ metadata.gz: ca1ecb3fe0f677ab131e408adea528c75f547c4ccc0edbd6a19e9b148fe7bd191a43b4d8f82197aa6980c3db0c1c7bbcf390a6f60d81b27953e5babe4056fa55
7
+ data.tar.gz: 24a7571e2f7ae99c915693ca9152937fb2db584b28fb7b5bf475f5fa6b083c25a232f809d32aab05bb3f0d26fffcbb50a9f8d1f4f39be55bab734625df2527fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Adding new BDD representation of endpoint ruleset
8
+
9
+ 1.46.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.45.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.47.0
@@ -199,7 +199,7 @@ module Aws::MigrationHubOrchestrator
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::MigrationHubOrchestrator
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -2178,7 +2176,7 @@ module Aws::MigrationHubOrchestrator
2178
2176
  tracer: tracer
2179
2177
  )
2180
2178
  context[:gem_name] = 'aws-sdk-migrationhuborchestrator'
2181
- context[:gem_version] = '1.45.0'
2179
+ context[:gem_version] = '1.47.0'
2182
2180
  Seahorse::Client::Request.new(handlers, context)
2183
2181
  end
2184
2182
 
@@ -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.47.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.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -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