aws-sdk-lex 1.92.0 → 1.94.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: 94c02cba5eaf4e45f59616e35412579a1b6bf5623e3c6a3dd27faf4843935423
4
- data.tar.gz: 18f3b3725fbf8dd3be8f2fb6e4d0de34993f354bc008694814383b576354a906
3
+ metadata.gz: f469108984871d20c2c0c9ee1cf4f4f8708ab9ff4cab49d79ed161dd23555018
4
+ data.tar.gz: 0f5684172cab0fba7981634d465b13ec01ebd93f3d154865228ebd387eb96588
5
5
  SHA512:
6
- metadata.gz: 64a52010b7d349450f5809a8569fb9a4f75b4b953b9494351f14b835851e63cd9ab0cb1f07ac23b387cc647ec309d3c330c0d4c9b7edba2f65c64fddfad709ae
7
- data.tar.gz: 806af486eaa0bfa55d6fa9d6446f442298a78abe4ccd2ffbd3bd1a2e7cd8c80ccfa68e62bd7c3721563cbe5af1c6998060ded7c7dfe997281fe9150090ad1b63
6
+ metadata.gz: 19cb035215eb2a6b68a731eada77a8f156badc754d8292524bfe3d5878346dad8bc33572834af39eccacf730fae701b87769391b67ff650026f1d2f036a873e9
7
+ data.tar.gz: b27566b559b5fa74e5b52704a0c670121570eb32eb4cf1fb1b2bdb0ae1ad6fb87380873fb981572e2e6749a02639594ff085b5d473ca04f7a1e084d0ad99a002
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.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.93.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.92.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.92.0
1
+ 1.94.0
@@ -199,7 +199,7 @@ module Aws::Lex
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::Lex
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
@@ -1278,7 +1276,7 @@ module Aws::Lex
1278
1276
  tracer: tracer
1279
1277
  )
1280
1278
  context[:gem_name] = 'aws-sdk-lex'
1281
- context[:gem_version] = '1.92.0'
1279
+ context[:gem_version] = '1.94.0'
1282
1280
  Seahorse::Client::Request.new(handlers, context)
1283
1281
  end
1284
1282
 
data/lib/aws-sdk-lex.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Lex
54
54
  autoload :EndpointProvider, 'aws-sdk-lex/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-lex/endpoints'
56
56
 
57
- GEM_VERSION = '1.92.0'
57
+ GEM_VERSION = '1.94.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -171,14 +171,7 @@ module Aws
171
171
  ?request_attributes: Hash[::String, ::String],
172
172
  input_text: ::String,
173
173
  ?active_contexts: Array[
174
- {
175
- name: ::String,
176
- time_to_live: {
177
- time_to_live_in_seconds: ::Integer?,
178
- turns_to_live: ::Integer?
179
- },
180
- parameters: Hash[::String, ::String]
181
- },
174
+ Params::active_context
182
175
  ]
183
176
  ) -> _PostTextResponseSuccess
184
177
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PostTextResponseSuccess
@@ -222,18 +215,11 @@ module Aws
222
215
  dialog_action_type: ("ElicitIntent" | "ConfirmIntent" | "ElicitSlot" | "Close" | "Delegate"),
223
216
  fulfillment_state: ("Fulfilled" | "Failed" | "ReadyForFulfillment")?,
224
217
  slot_to_elicit: ::String?
225
- },
218
+ }
226
219
  ],
227
220
  ?accept: ::String,
228
221
  ?active_contexts: Array[
229
- {
230
- name: ::String,
231
- time_to_live: {
232
- time_to_live_in_seconds: ::Integer?,
233
- turns_to_live: ::Integer?
234
- },
235
- parameters: Hash[::String, ::String]
236
- },
222
+ Params::active_context
237
223
  ]
238
224
  ) ?{ (*untyped) -> void } -> _PutSessionResponseSuccess
239
225
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _PutSessionResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,22 @@
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 Lex
10
+ module Params
11
+ type active_context = {
12
+ name: ::String,
13
+ time_to_live: {
14
+ time_to_live_in_seconds: ::Integer?,
15
+ turns_to_live: ::Integer?
16
+ },
17
+ parameters: Hash[::String, ::String]
18
+ }
19
+
20
+ end
21
+ end
22
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.92.0
4
+ version: 1.94.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-lex/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