aws-sdk-lexruntimev2 1.11.0 → 1.12.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: fe0196898a2b133753427ab86f39842ebafe17a651bef2fca6541f3b589751fe
4
- data.tar.gz: 6d0e9a2c8bcbb188e694ad600ac216b728bc44272575209bf78dc474d46e8f21
3
+ metadata.gz: 0e801189c4920d705ceac9c552854fbe9dc548dd1202b81537350df6597b5062
4
+ data.tar.gz: 1ab1d32ca002266bb6f2504d55d9641c70cad30bbdf45007b795b96d11d4a05e
5
5
  SHA512:
6
- metadata.gz: b9d104850d67993bc266c2c9d4b83b4464fbdfe25ce803e0ff6f82bc675b730a996f11c0537f15b9f8138d41f9e0fb8fe10b20fd590c5b0ca0ece65d3d383692
7
- data.tar.gz: 7b4d2f95acdb120c95171ca372b1d63dcde4ad42d27ceb93f440654db479f66d4b6f5380d13a8b8b6c40fc1f5e14380942e139ddfa6cd1b590f6c2a67099214c
6
+ metadata.gz: f830331fe352b0f5642bbfdcc8e191590d73639ad8962240b50ab75cf13af433836cc0cdee5f8aa25ffd2ccd5422b5e33babe77f4fb6c61c60f6a944cf32a1f6
7
+ data.tar.gz: ae9d803450d2696c65c8b13a089d342c5369421555b48ff0ee14488edade55fb80ef4091851471af3ca7ea98216b3ea2ec3e483b12d37857886265d2b5dc0c82
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.11.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -23,6 +23,7 @@ require 'aws-sdk-core/plugins/stub_responses.rb'
23
23
  require 'aws-sdk-core/plugins/idempotency_token.rb'
24
24
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
25
25
  require 'aws-sdk-core/plugins/http_checksum.rb'
26
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
26
27
  require 'aws-sdk-core/plugins/invocation_id.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
@@ -52,6 +53,7 @@ module Aws::LexRuntimeV2
52
53
  add_plugin(Aws::Plugins::IdempotencyToken)
53
54
  add_plugin(Aws::Plugins::JsonvalueConverter)
54
55
  add_plugin(Aws::Plugins::HttpChecksum)
56
+ add_plugin(Aws::Plugins::DefaultsMode)
55
57
  add_plugin(Aws::Plugins::InvocationId)
56
58
  add_plugin(Aws::Plugins::SignatureV4)
57
59
  add_plugin(Aws::Plugins::Protocols::RestJson)
@@ -130,6 +132,10 @@ module Aws::LexRuntimeV2
130
132
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
131
133
  # a clock skew correction and retry requests with skewed client clocks.
132
134
  #
135
+ # @option options [String] :defaults_mode ("legacy")
136
+ # See {Aws::DefaultsModeConfiguration} for a list of the
137
+ # accepted modes and the configuration defaults that are included.
138
+ #
133
139
  # @option options [String] :endpoint
134
140
  # The client endpoint is normally constructed from the `:region`
135
141
  # option. You should only configure an `:endpoint` when connecting
@@ -629,7 +635,7 @@ module Aws::LexRuntimeV2
629
635
  http_response: Seahorse::Client::Http::AsyncResponse.new,
630
636
  config: config)
631
637
  context[:gem_name] = 'aws-sdk-lexruntimev2'
632
- context[:gem_version] = '1.11.0'
638
+ context[:gem_version] = '1.12.0'
633
639
  Seahorse::Client::Request.new(handlers, context)
634
640
  end
635
641
 
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
  require 'aws-sdk-core/plugins/event_stream_configuration.rb'
@@ -74,6 +75,7 @@ module Aws::LexRuntimeV2
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::RestJson)
79
81
  add_plugin(Aws::Plugins::EventStreamConfiguration)
@@ -177,6 +179,10 @@ module Aws::LexRuntimeV2
177
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
178
180
  # a clock skew correction and retry requests with skewed client clocks.
179
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
180
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
181
187
  # Set to true to disable SDK automatically adding host prefix
182
188
  # to default service endpoint when available.
@@ -308,7 +314,7 @@ module Aws::LexRuntimeV2
308
314
  # seconds to wait when opening a HTTP session before raising a
309
315
  # `Timeout::Error`.
310
316
  #
311
- # @option options [Integer] :http_read_timeout (60) The default
317
+ # @option options [Float] :http_read_timeout (60) The default
312
318
  # number of seconds to wait for response data. This value can
313
319
  # safely be set per-request on the session.
314
320
  #
@@ -324,6 +330,9 @@ module Aws::LexRuntimeV2
324
330
  # disables this behaviour. This value can safely be set per
325
331
  # request on the session.
326
332
  #
333
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
334
+ # in seconds.
335
+ #
327
336
  # @option options [Boolean] :http_wire_trace (false) When `true`,
328
337
  # HTTP debug output will be sent to the `:logger`.
329
338
  #
@@ -1044,7 +1053,7 @@ module Aws::LexRuntimeV2
1044
1053
  params: params,
1045
1054
  config: config)
1046
1055
  context[:gem_name] = 'aws-sdk-lexruntimev2'
1047
- context[:gem_version] = '1.11.0'
1056
+ context[:gem_version] = '1.12.0'
1048
1057
  Seahorse::Client::Request.new(handlers, context)
1049
1058
  end
1050
1059
 
@@ -50,6 +50,6 @@ require_relative 'aws-sdk-lexruntimev2/event_streams'
50
50
  # @!group service
51
51
  module Aws::LexRuntimeV2
52
52
 
53
- GEM_VERSION = '1.11.0'
53
+ GEM_VERSION = '1.12.0'
54
54
 
55
55
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lexruntimev2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.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: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement