aws-sdk-lexmodelsv2 1.46.0 → 1.48.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelsv2/client.rb +287 -1
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +210 -0
- data/lib/aws-sdk-lexmodelsv2/endpoints.rb +84 -0
- data/lib/aws-sdk-lexmodelsv2/plugins/endpoints.rb +13 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +437 -0
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- data/sig/client.rbs +12955 -0
- data/sig/errors.rbs +38 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +3638 -0
- data/sig/waiters.rbs +101 -0
- metadata +13 -8
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,101 @@
|
|
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 LexModelsV2
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class BotAliasAvailable
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
bot_alias_id: ::String,
|
18
|
+
bot_id: ::String
|
19
|
+
) -> Client::_DescribeBotAliasResponseSuccess
|
20
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotAliasResponseSuccess
|
21
|
+
end
|
22
|
+
|
23
|
+
class BotAvailable
|
24
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
25
|
+
| (?Hash[Symbol, untyped]) -> void
|
26
|
+
|
27
|
+
def wait: (
|
28
|
+
bot_id: ::String
|
29
|
+
) -> Client::_DescribeBotResponseSuccess
|
30
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotResponseSuccess
|
31
|
+
end
|
32
|
+
|
33
|
+
class BotExportCompleted
|
34
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
35
|
+
| (?Hash[Symbol, untyped]) -> void
|
36
|
+
|
37
|
+
def wait: (
|
38
|
+
export_id: ::String
|
39
|
+
) -> Client::_DescribeExportResponseSuccess
|
40
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeExportResponseSuccess
|
41
|
+
end
|
42
|
+
|
43
|
+
class BotImportCompleted
|
44
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
45
|
+
| (?Hash[Symbol, untyped]) -> void
|
46
|
+
|
47
|
+
def wait: (
|
48
|
+
import_id: ::String
|
49
|
+
) -> Client::_DescribeImportResponseSuccess
|
50
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeImportResponseSuccess
|
51
|
+
end
|
52
|
+
|
53
|
+
class BotLocaleBuilt
|
54
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
55
|
+
| (?Hash[Symbol, untyped]) -> void
|
56
|
+
|
57
|
+
def wait: (
|
58
|
+
bot_id: ::String,
|
59
|
+
bot_version: ::String,
|
60
|
+
locale_id: ::String
|
61
|
+
) -> Client::_DescribeBotLocaleResponseSuccess
|
62
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotLocaleResponseSuccess
|
63
|
+
end
|
64
|
+
|
65
|
+
class BotLocaleCreated
|
66
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
67
|
+
| (?Hash[Symbol, untyped]) -> void
|
68
|
+
|
69
|
+
def wait: (
|
70
|
+
bot_id: ::String,
|
71
|
+
bot_version: ::String,
|
72
|
+
locale_id: ::String
|
73
|
+
) -> Client::_DescribeBotLocaleResponseSuccess
|
74
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotLocaleResponseSuccess
|
75
|
+
end
|
76
|
+
|
77
|
+
class BotLocaleExpressTestingAvailable
|
78
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
79
|
+
| (?Hash[Symbol, untyped]) -> void
|
80
|
+
|
81
|
+
def wait: (
|
82
|
+
bot_id: ::String,
|
83
|
+
bot_version: ::String,
|
84
|
+
locale_id: ::String
|
85
|
+
) -> Client::_DescribeBotLocaleResponseSuccess
|
86
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotLocaleResponseSuccess
|
87
|
+
end
|
88
|
+
|
89
|
+
class BotVersionAvailable
|
90
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
91
|
+
| (?Hash[Symbol, untyped]) -> void
|
92
|
+
|
93
|
+
def wait: (
|
94
|
+
bot_id: ::String,
|
95
|
+
bot_version: ::String
|
96
|
+
) -> Client::_DescribeBotVersionResponseSuccess
|
97
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeBotVersionResponseSuccess
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
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.48.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-07 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.191.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.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-lexmodelsv2/resource.rb
|
68
68
|
- lib/aws-sdk-lexmodelsv2/types.rb
|
69
69
|
- lib/aws-sdk-lexmodelsv2/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lexmodelsv2
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lexmodelsv2/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - Lex Models V2
|
95
100
|
test_files: []
|