aws-sdk-lex 1.72.0 → 1.74.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: 9d54e0160fa48a4dae5f4fa903dec8677cedf3ea7ea5a54b70e6689603b68eae
4
- data.tar.gz: 4e91284a167005ada5827774e40ceeb4ca6369baeb49b4413e4d518e42601c6f
3
+ metadata.gz: 553264395bbcbb14b348efca90e85d77156dcb36d43c28ce4bf3be067c020f9c
4
+ data.tar.gz: d8e4d733874c11a6be07bd130108d1f676b95587963af1c5b19afce6cab1d762
5
5
  SHA512:
6
- metadata.gz: e5d88976c27e03f1c6049df683951e8da60451e9624aacab5922658961aa2c63b5fd5bd8304ff6d282daef54f8c5f36e93b81d083cc7f7d0ca8a2e5d92501817
7
- data.tar.gz: 502dfdfa8424698d1d3b3c2df4f0b19e711d12b1d6a36cc685a2c78025a032297925b7a5c07d387cdb91bfee98166f9c5ec641089c12e3ad90b424260034f942
6
+ metadata.gz: 5eec6481a8a12bc238ae358e2976dd7ce06e5bf34ac98b98a8e399fe02a4056566ac6b54a6a960a1d2b38b878a7bb4ea2e103b6caed9f879f6c337db73056d6e
7
+ data.tar.gz: f3d72206b22e29b96c9a9ace032ec13d529ce3988adfe163e7f7f5ef4684ec83186120c5956d818f27a33ce528a388f3787445a6f8c980d81594f5f427b77cbd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.74.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.73.0 (2024-11-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.72.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.74.0
@@ -257,11 +257,34 @@ module Aws::Lex
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -608,7 +631,6 @@ module Aws::Lex
608
631
  #
609
632
  # * `x-amz-lex-slots` header set to a map of slots configured for the
610
633
  # intent with their current values
611
- #
612
634
  # * If the message is a confirmation prompt, the
613
635
  # `x-amz-lex-dialog-state` header is set to `Confirmation` and the
614
636
  # `x-amz-lex-slot-to-elicit` header is omitted.
@@ -713,14 +735,12 @@ module Aws::Lex
713
735
  #
714
736
  # * audio/lpcm; sample-rate=8000; sample-size-bits=16;
715
737
  # channel-count=1; is-big-endian=false
716
- #
717
738
  # * Opus format
718
739
  #
719
740
  # * audio/x-cbr-opus-with-preamble; preamble-size=0; bit-rate=256000;
720
741
  # frame-size-milliseconds=4
721
742
  #
722
743
  # ^
723
- #
724
744
  # * Text format
725
745
  #
726
746
  # * text/plain; charset=utf-8
@@ -885,7 +905,6 @@ module Aws::Lex
885
905
  #
886
906
  # * `slots` set to a map of slots, configured for the intent, with
887
907
  # currently known values
888
- #
889
908
  # * If the message is a confirmation prompt, the `dialogState` is set to
890
909
  # ConfirmIntent and `SlotToElicit` is set to null.
891
910
  #
@@ -1253,7 +1272,7 @@ module Aws::Lex
1253
1272
  tracer: tracer
1254
1273
  )
1255
1274
  context[:gem_name] = 'aws-sdk-lex'
1256
- context[:gem_version] = '1.72.0'
1275
+ context[:gem_version] = '1.74.0'
1257
1276
  Seahorse::Client::Request.new(handlers, context)
1258
1277
  end
1259
1278
 
@@ -664,14 +664,12 @@ module Aws::Lex
664
664
  #
665
665
  # * audio/lpcm; sample-rate=8000; sample-size-bits=16;
666
666
  # channel-count=1; is-big-endian=false
667
- #
668
667
  # * Opus format
669
668
  #
670
669
  # * audio/x-cbr-opus-with-preamble; preamble-size=0;
671
670
  # bit-rate=256000; frame-size-milliseconds=4
672
671
  #
673
672
  # ^
674
- #
675
673
  # * Text format
676
674
  #
677
675
  # * text/plain; charset=utf-8
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.72.0'
57
+ GEM_VERSION = '1.74.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.74.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement