aws-sdk-lexmodelsv2 1.20.0 → 1.23.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelsv2/client.rb +9 -5
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +2 -2
- data/lib/aws-sdk-lexmodelsv2/types.rb +2 -2
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b1bfc65d7d8e385c1304d700dfceb2324ea8ef63a91fefc22d6bb671a2c2508
|
4
|
+
data.tar.gz: 7b4f66a1c67c0c85991674e475636287c9c545cae3fd53e7c6c9a48a69ae6436
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e05472c44835ab2c32220dd6c29cb37e6e2058a698568a9ad5c05d9bc234395a492ee6c8e8f550c8335dc59d391b9ec7d532eac722f5fc9a962a236037b17ab7
|
7
|
+
data.tar.gz: 31cc09c4efa6f9f932eeee32ec81870916c6ab44261c1424b76fb3f7452e964deed41952dc4c18224d0d35ac10209fb2fc6ced2d5e0654cf88c33b20cfa80cf8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.23.0 (2022-03-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release makes slotTypeId an optional parameter in CreateSlot and UpdateSlot APIs in Amazon Lex V2 for model building. Customers can create and update slots without specifying a slot type id.
|
8
|
+
|
9
|
+
1.22.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.21.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.20.0 (2022-01-12)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.23.0
|
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::LexModelsV2
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -1889,7 +1893,7 @@ module Aws::LexModelsV2
|
|
1889
1893
|
# A description of the slot. Use this to help identify the slot in
|
1890
1894
|
# lists.
|
1891
1895
|
#
|
1892
|
-
# @option params [
|
1896
|
+
# @option params [String] :slot_type_id
|
1893
1897
|
# The unique identifier for the slot type associated with this slot. The
|
1894
1898
|
# slot type determines the values that can be entered into the slot.
|
1895
1899
|
#
|
@@ -1953,7 +1957,7 @@ module Aws::LexModelsV2
|
|
1953
1957
|
# resp = client.create_slot({
|
1954
1958
|
# slot_name: "Name", # required
|
1955
1959
|
# description: "Description",
|
1956
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
1960
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
1957
1961
|
# value_elicitation_setting: { # required
|
1958
1962
|
# default_value_specification: {
|
1959
1963
|
# default_value_list: [ # required
|
@@ -6965,7 +6969,7 @@ module Aws::LexModelsV2
|
|
6965
6969
|
# @option params [String] :description
|
6966
6970
|
# The new description for the slot.
|
6967
6971
|
#
|
6968
|
-
# @option params [
|
6972
|
+
# @option params [String] :slot_type_id
|
6969
6973
|
# The unique identifier of the new slot type to associate with this
|
6970
6974
|
# slot.
|
6971
6975
|
#
|
@@ -7026,7 +7030,7 @@ module Aws::LexModelsV2
|
|
7026
7030
|
# slot_id: "Id", # required
|
7027
7031
|
# slot_name: "Name", # required
|
7028
7032
|
# description: "Description",
|
7029
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
7033
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
7030
7034
|
# value_elicitation_setting: { # required
|
7031
7035
|
# default_value_specification: {
|
7032
7036
|
# default_value_list: [ # required
|
@@ -7532,7 +7536,7 @@ module Aws::LexModelsV2
|
|
7532
7536
|
params: params,
|
7533
7537
|
config: config)
|
7534
7538
|
context[:gem_name] = 'aws-sdk-lexmodelsv2'
|
7535
|
-
context[:gem_version] = '1.
|
7539
|
+
context[:gem_version] = '1.23.0'
|
7536
7540
|
Seahorse::Client::Request.new(handlers, context)
|
7537
7541
|
end
|
7538
7542
|
|
@@ -824,7 +824,7 @@ module Aws::LexModelsV2
|
|
824
824
|
|
825
825
|
CreateSlotRequest.add_member(:slot_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "slotName"))
|
826
826
|
CreateSlotRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
827
|
-
CreateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId,
|
827
|
+
CreateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId, location_name: "slotTypeId"))
|
828
828
|
CreateSlotRequest.add_member(:value_elicitation_setting, Shapes::ShapeRef.new(shape: SlotValueElicitationSetting, required: true, location_name: "valueElicitationSetting"))
|
829
829
|
CreateSlotRequest.add_member(:obfuscation_setting, Shapes::ShapeRef.new(shape: ObfuscationSetting, location_name: "obfuscationSetting"))
|
830
830
|
CreateSlotRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
|
@@ -2001,7 +2001,7 @@ module Aws::LexModelsV2
|
|
2001
2001
|
UpdateSlotRequest.add_member(:slot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "slotId"))
|
2002
2002
|
UpdateSlotRequest.add_member(:slot_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "slotName"))
|
2003
2003
|
UpdateSlotRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
2004
|
-
UpdateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId,
|
2004
|
+
UpdateSlotRequest.add_member(:slot_type_id, Shapes::ShapeRef.new(shape: BuiltInOrCustomSlotTypeId, location_name: "slotTypeId"))
|
2005
2005
|
UpdateSlotRequest.add_member(:value_elicitation_setting, Shapes::ShapeRef.new(shape: SlotValueElicitationSetting, required: true, location_name: "valueElicitationSetting"))
|
2006
2006
|
UpdateSlotRequest.add_member(:obfuscation_setting, Shapes::ShapeRef.new(shape: ObfuscationSetting, location_name: "obfuscationSetting"))
|
2007
2007
|
UpdateSlotRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "botId"))
|
@@ -2874,7 +2874,7 @@ module Aws::LexModelsV2
|
|
2874
2874
|
# {
|
2875
2875
|
# slot_name: "Name", # required
|
2876
2876
|
# description: "Description",
|
2877
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
2877
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
2878
2878
|
# value_elicitation_setting: { # required
|
2879
2879
|
# default_value_specification: {
|
2880
2880
|
# default_value_list: [ # required
|
@@ -12441,7 +12441,7 @@ module Aws::LexModelsV2
|
|
12441
12441
|
# slot_id: "Id", # required
|
12442
12442
|
# slot_name: "Name", # required
|
12443
12443
|
# description: "Description",
|
12444
|
-
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
12444
|
+
# slot_type_id: "BuiltInOrCustomSlotTypeId",
|
12445
12445
|
# value_elicitation_setting: { # required
|
12446
12446
|
# default_value_specification: {
|
12447
12447
|
# default_value_list: [ # required
|
data/lib/aws-sdk-lexmodelsv2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lexmodelsv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.23.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: 2022-
|
11
|
+
date: 2022-03-10 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.
|
22
|
+
version: 3.127.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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|