aws-sdk-states 1.106.0 → 1.108.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: bae0b7903f3a89fdd82a38e99f8e1a00baea6c931c5fd1b2d80b372b2ee2e0fd
4
- data.tar.gz: bc2726a2f909ac4c4bc7de19e471284ab456cf9f16a5dab36998758612d3bd76
3
+ metadata.gz: 317f07622b2836313d0166686b53ef18cff355a26bf4e22827d0368780ab164d
4
+ data.tar.gz: 55257cfe652fb820d1ab81d46af1d786c82e36a7d1a024f312264c176609a624
5
5
  SHA512:
6
- metadata.gz: 5d5d55b754335ef7f348a9616ba6e93e90c9df84a2f288faff35c210cf14fb04b56d0e55d2bd5e643a0fe361ffb9bf92063975764ca290e75f3c086f20a5355e
7
- data.tar.gz: 478a20a4682f70b523439bf39572bcc9b3de7c1dd817683c655e9d061e28d94b989f0b671b90a2fde363c56446a78d45e720aa0df685cb82eb27311fd802b4f5
6
+ metadata.gz: 5c80e66b3229a426d9e661e629de7031f8fe375df1681b01d14e18f81e7a8ff02ee2eb8a34e49f743b7985f0e617b6eba4aea4e2dfeea54ab2062f5de5f06c97
7
+ data.tar.gz: 70672951dd58488c55a471de7680e0ade995e1fdb2d7ce199bdec1518fab15d055594c2ea324e5ef17d01b8b9ae164a4d937a333de4436ebc49a606c5bbd6bec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.108.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.107.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.106.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.106.0
1
+ 1.108.0
@@ -199,7 +199,7 @@ module Aws::States
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::States
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
@@ -3578,7 +3576,7 @@ module Aws::States
3578
3576
  tracer: tracer
3579
3577
  )
3580
3578
  context[:gem_name] = 'aws-sdk-states'
3581
- context[:gem_version] = '1.106.0'
3579
+ context[:gem_version] = '1.108.0'
3582
3580
  Seahorse::Client::Request.new(handlers, context)
3583
3581
  end
3584
3582
 
@@ -54,7 +54,7 @@ module Aws::States
54
54
  autoload :EndpointProvider, 'aws-sdk-states/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-states/endpoints'
56
56
 
57
- GEM_VERSION = '1.106.0'
57
+ GEM_VERSION = '1.108.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -91,7 +91,7 @@ module Aws
91
91
  {
92
92
  key: ::String?,
93
93
  value: ::String?
94
- },
94
+ }
95
95
  ],
96
96
  ?encryption_configuration: {
97
97
  kms_key_id: ::String?,
@@ -113,22 +113,12 @@ module Aws
113
113
  definition: ::String,
114
114
  role_arn: ::String,
115
115
  ?type: ("STANDARD" | "EXPRESS"),
116
- ?logging_configuration: {
117
- level: ("ALL" | "ERROR" | "FATAL" | "OFF")?,
118
- include_execution_data: bool?,
119
- destinations: Array[
120
- {
121
- cloud_watch_logs_log_group: {
122
- log_group_arn: ::String?
123
- }?
124
- },
125
- ]?
126
- },
116
+ ?logging_configuration: Params::logging_configuration,
127
117
  ?tags: Array[
128
118
  {
129
119
  key: ::String?,
130
120
  value: ::String?
131
- },
121
+ }
132
122
  ],
133
123
  ?tracing_configuration: {
134
124
  enabled: bool?
@@ -156,7 +146,7 @@ module Aws
156
146
  {
157
147
  state_machine_version_arn: ::String,
158
148
  weight: ::Integer
159
- },
149
+ }
160
150
  ]
161
151
  ) -> _CreateStateMachineAliasResponseSuccess
162
152
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStateMachineAliasResponseSuccess
@@ -553,7 +543,7 @@ module Aws
553
543
  {
554
544
  key: ::String?,
555
545
  value: ::String?
556
- },
546
+ }
557
547
  ]
558
548
  ) -> _TagResourceResponseSuccess
559
549
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -626,17 +616,7 @@ module Aws
626
616
  state_machine_arn: ::String,
627
617
  ?definition: ::String,
628
618
  ?role_arn: ::String,
629
- ?logging_configuration: {
630
- level: ("ALL" | "ERROR" | "FATAL" | "OFF")?,
631
- include_execution_data: bool?,
632
- destinations: Array[
633
- {
634
- cloud_watch_logs_log_group: {
635
- log_group_arn: ::String?
636
- }?
637
- },
638
- ]?
639
- },
619
+ ?logging_configuration: Params::logging_configuration,
640
620
  ?tracing_configuration: {
641
621
  enabled: bool?
642
622
  },
@@ -662,7 +642,7 @@ module Aws
662
642
  {
663
643
  state_machine_version_arn: ::String,
664
644
  weight: ::Integer
665
- },
645
+ }
666
646
  ]
667
647
  ) -> _UpdateStateMachineAliasResponseSuccess
668
648
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStateMachineAliasResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,25 @@
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 States
10
+ module Params
11
+ type logging_configuration = {
12
+ level: ("ALL" | "ERROR" | "FATAL" | "OFF")?,
13
+ include_execution_data: bool?,
14
+ destinations: Array[
15
+ {
16
+ cloud_watch_logs_log_group: {
17
+ log_group_arn: ::String?
18
+ }?
19
+ }
20
+ ]?
21
+ }
22
+
23
+ end
24
+ end
25
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-states
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.106.0
4
+ version: 1.108.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
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-states/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs