aws-sdk-lexruntimev2 1.42.0 → 1.44.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexruntimev2/async_client.rb +1 -1
- data/lib/aws-sdk-lexruntimev2/client.rb +1 -3
- data/lib/aws-sdk-lexruntimev2/client_api.rb +1 -0
- data/lib/aws-sdk-lexruntimev2/types.rb +1 -0
- data/lib/aws-sdk-lexruntimev2.rb +17 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa8a839d042f1c8230946c70f45b59074660d5e7aa8b481a71faf501b44ccc48
|
4
|
+
data.tar.gz: ff9ba06895c3fce921bc852aee0c4c88a8c212b26669de8e27c3339cb82aea9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5b0af22f49c4e7e9e9f18f354d2e9cfd5211f0618c18b796907c92dd65073de9b7d7cabdce6667584debcdd7a6928e48cd6d5189853e1e76ce354df766f889
|
7
|
+
data.tar.gz: e1cc4208978298dfd0976196c2b94b081e58e2024154155f752873e63b3614aaf87f0649792834b3ce4075d3a9c6c4723c67df15c15212b036dd4d7ff747f5f2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.43.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.42.0 (2024-09-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -37,8 +37,6 @@ require 'aws-sdk-core/plugins/sign.rb'
|
|
37
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
38
38
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
39
39
|
|
40
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:lexruntimev2)
|
41
|
-
|
42
40
|
module Aws::LexRuntimeV2
|
43
41
|
# An API client for LexRuntimeV2. To construct a client, you need to configure a `:region` and `:credentials`.
|
44
42
|
#
|
@@ -1235,7 +1233,7 @@ module Aws::LexRuntimeV2
|
|
1235
1233
|
tracer: tracer
|
1236
1234
|
)
|
1237
1235
|
context[:gem_name] = 'aws-sdk-lexruntimev2'
|
1238
|
-
context[:gem_version] = '1.
|
1236
|
+
context[:gem_version] = '1.44.0'
|
1239
1237
|
Seahorse::Client::Request.new(handlers, context)
|
1240
1238
|
end
|
1241
1239
|
|
data/lib/aws-sdk-lexruntimev2.rb
CHANGED
@@ -11,18 +11,7 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
-
|
15
|
-
require_relative 'aws-sdk-lexruntimev2/client_api'
|
16
|
-
require_relative 'aws-sdk-lexruntimev2/plugins/endpoints.rb'
|
17
|
-
require_relative 'aws-sdk-lexruntimev2/client'
|
18
|
-
require_relative 'aws-sdk-lexruntimev2/errors'
|
19
|
-
require_relative 'aws-sdk-lexruntimev2/resource'
|
20
|
-
require_relative 'aws-sdk-lexruntimev2/endpoint_parameters'
|
21
|
-
require_relative 'aws-sdk-lexruntimev2/endpoint_provider'
|
22
|
-
require_relative 'aws-sdk-lexruntimev2/endpoints'
|
23
|
-
require_relative 'aws-sdk-lexruntimev2/customizations'
|
24
|
-
require_relative 'aws-sdk-lexruntimev2/async_client'
|
25
|
-
require_relative 'aws-sdk-lexruntimev2/event_streams'
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:lexruntimev2)
|
26
15
|
|
27
16
|
# This module provides support for Amazon Lex Runtime V2. This module is available in the
|
28
17
|
# `aws-sdk-lexruntimev2` gem.
|
@@ -53,7 +42,22 @@ require_relative 'aws-sdk-lexruntimev2/event_streams'
|
|
53
42
|
#
|
54
43
|
# @!group service
|
55
44
|
module Aws::LexRuntimeV2
|
45
|
+
autoload :Types, 'aws-sdk-lexruntimev2/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-lexruntimev2/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-lexruntimev2/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-lexruntimev2/client'
|
51
|
+
autoload :Errors, 'aws-sdk-lexruntimev2/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-lexruntimev2/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-lexruntimev2/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-lexruntimev2/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-lexruntimev2/endpoints'
|
56
|
+
autoload :AsyncClient, 'aws-sdk-lexruntimev2/async_client'
|
57
|
+
autoload :EventStreams, 'aws-sdk-lexruntimev2/event_streams'
|
56
58
|
|
57
|
-
GEM_VERSION = '1.
|
59
|
+
GEM_VERSION = '1.44.0'
|
58
60
|
|
59
61
|
end
|
62
|
+
|
63
|
+
require_relative 'aws-sdk-lexruntimev2/customizations'
|
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.
|
4
|
+
version: 1.44.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-09-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|