aws-sdk-lexmodelsv2 1.47.0 → 1.49.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 +302 -1
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +259 -0
- data/lib/aws-sdk-lexmodelsv2/endpoints.rb +84 -0
- data/lib/aws-sdk-lexmodelsv2/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +661 -5
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- data/sig/client.rbs +149 -0
- data/sig/types.rbs +169 -0
- metadata +2 -2
@@ -110,6 +110,20 @@ module Aws::LexModelsV2
|
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
+
class CreateBotReplica
|
114
|
+
def self.build(context)
|
115
|
+
unless context.config.regional_endpoint
|
116
|
+
endpoint = context.config.endpoint.to_s
|
117
|
+
end
|
118
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
119
|
+
region: context.config.region,
|
120
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
121
|
+
use_fips: context.config.use_fips_endpoint,
|
122
|
+
endpoint: endpoint,
|
123
|
+
)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
113
127
|
class CreateBotVersion
|
114
128
|
def self.build(context)
|
115
129
|
unless context.config.regional_endpoint
|
@@ -278,6 +292,20 @@ module Aws::LexModelsV2
|
|
278
292
|
end
|
279
293
|
end
|
280
294
|
|
295
|
+
class DeleteBotReplica
|
296
|
+
def self.build(context)
|
297
|
+
unless context.config.regional_endpoint
|
298
|
+
endpoint = context.config.endpoint.to_s
|
299
|
+
end
|
300
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
301
|
+
region: context.config.region,
|
302
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
303
|
+
use_fips: context.config.use_fips_endpoint,
|
304
|
+
endpoint: endpoint,
|
305
|
+
)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
281
309
|
class DeleteBotVersion
|
282
310
|
def self.build(context)
|
283
311
|
unless context.config.regional_endpoint
|
@@ -488,6 +516,20 @@ module Aws::LexModelsV2
|
|
488
516
|
end
|
489
517
|
end
|
490
518
|
|
519
|
+
class DescribeBotReplica
|
520
|
+
def self.build(context)
|
521
|
+
unless context.config.regional_endpoint
|
522
|
+
endpoint = context.config.endpoint.to_s
|
523
|
+
end
|
524
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
525
|
+
region: context.config.region,
|
526
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
527
|
+
use_fips: context.config.use_fips_endpoint,
|
528
|
+
endpoint: endpoint,
|
529
|
+
)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
491
533
|
class DescribeBotResourceGeneration
|
492
534
|
def self.build(context)
|
493
535
|
unless context.config.regional_endpoint
|
@@ -712,6 +754,20 @@ module Aws::LexModelsV2
|
|
712
754
|
end
|
713
755
|
end
|
714
756
|
|
757
|
+
class ListBotAliasReplicas
|
758
|
+
def self.build(context)
|
759
|
+
unless context.config.regional_endpoint
|
760
|
+
endpoint = context.config.endpoint.to_s
|
761
|
+
end
|
762
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
763
|
+
region: context.config.region,
|
764
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
765
|
+
use_fips: context.config.use_fips_endpoint,
|
766
|
+
endpoint: endpoint,
|
767
|
+
)
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
715
771
|
class ListBotAliases
|
716
772
|
def self.build(context)
|
717
773
|
unless context.config.regional_endpoint
|
@@ -754,6 +810,20 @@ module Aws::LexModelsV2
|
|
754
810
|
end
|
755
811
|
end
|
756
812
|
|
813
|
+
class ListBotReplicas
|
814
|
+
def self.build(context)
|
815
|
+
unless context.config.regional_endpoint
|
816
|
+
endpoint = context.config.endpoint.to_s
|
817
|
+
end
|
818
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
819
|
+
region: context.config.region,
|
820
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
821
|
+
use_fips: context.config.use_fips_endpoint,
|
822
|
+
endpoint: endpoint,
|
823
|
+
)
|
824
|
+
end
|
825
|
+
end
|
826
|
+
|
757
827
|
class ListBotResourceGenerations
|
758
828
|
def self.build(context)
|
759
829
|
unless context.config.regional_endpoint
|
@@ -768,6 +838,20 @@ module Aws::LexModelsV2
|
|
768
838
|
end
|
769
839
|
end
|
770
840
|
|
841
|
+
class ListBotVersionReplicas
|
842
|
+
def self.build(context)
|
843
|
+
unless context.config.regional_endpoint
|
844
|
+
endpoint = context.config.endpoint.to_s
|
845
|
+
end
|
846
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
847
|
+
region: context.config.region,
|
848
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
849
|
+
use_fips: context.config.use_fips_endpoint,
|
850
|
+
endpoint: endpoint,
|
851
|
+
)
|
852
|
+
end
|
853
|
+
end
|
854
|
+
|
771
855
|
class ListBotVersions
|
772
856
|
def self.build(context)
|
773
857
|
unless context.config.regional_endpoint
|
@@ -72,6 +72,8 @@ module Aws::LexModelsV2
|
|
72
72
|
Aws::LexModelsV2::Endpoints::CreateBotAlias.build(context)
|
73
73
|
when :create_bot_locale
|
74
74
|
Aws::LexModelsV2::Endpoints::CreateBotLocale.build(context)
|
75
|
+
when :create_bot_replica
|
76
|
+
Aws::LexModelsV2::Endpoints::CreateBotReplica.build(context)
|
75
77
|
when :create_bot_version
|
76
78
|
Aws::LexModelsV2::Endpoints::CreateBotVersion.build(context)
|
77
79
|
when :create_export
|
@@ -96,6 +98,8 @@ module Aws::LexModelsV2
|
|
96
98
|
Aws::LexModelsV2::Endpoints::DeleteBotAlias.build(context)
|
97
99
|
when :delete_bot_locale
|
98
100
|
Aws::LexModelsV2::Endpoints::DeleteBotLocale.build(context)
|
101
|
+
when :delete_bot_replica
|
102
|
+
Aws::LexModelsV2::Endpoints::DeleteBotReplica.build(context)
|
99
103
|
when :delete_bot_version
|
100
104
|
Aws::LexModelsV2::Endpoints::DeleteBotVersion.build(context)
|
101
105
|
when :delete_custom_vocabulary
|
@@ -126,6 +130,8 @@ module Aws::LexModelsV2
|
|
126
130
|
Aws::LexModelsV2::Endpoints::DescribeBotLocale.build(context)
|
127
131
|
when :describe_bot_recommendation
|
128
132
|
Aws::LexModelsV2::Endpoints::DescribeBotRecommendation.build(context)
|
133
|
+
when :describe_bot_replica
|
134
|
+
Aws::LexModelsV2::Endpoints::DescribeBotReplica.build(context)
|
129
135
|
when :describe_bot_resource_generation
|
130
136
|
Aws::LexModelsV2::Endpoints::DescribeBotResourceGeneration.build(context)
|
131
137
|
when :describe_bot_version
|
@@ -158,14 +164,20 @@ module Aws::LexModelsV2
|
|
158
164
|
Aws::LexModelsV2::Endpoints::GetTestExecutionArtifactsUrl.build(context)
|
159
165
|
when :list_aggregated_utterances
|
160
166
|
Aws::LexModelsV2::Endpoints::ListAggregatedUtterances.build(context)
|
167
|
+
when :list_bot_alias_replicas
|
168
|
+
Aws::LexModelsV2::Endpoints::ListBotAliasReplicas.build(context)
|
161
169
|
when :list_bot_aliases
|
162
170
|
Aws::LexModelsV2::Endpoints::ListBotAliases.build(context)
|
163
171
|
when :list_bot_locales
|
164
172
|
Aws::LexModelsV2::Endpoints::ListBotLocales.build(context)
|
165
173
|
when :list_bot_recommendations
|
166
174
|
Aws::LexModelsV2::Endpoints::ListBotRecommendations.build(context)
|
175
|
+
when :list_bot_replicas
|
176
|
+
Aws::LexModelsV2::Endpoints::ListBotReplicas.build(context)
|
167
177
|
when :list_bot_resource_generations
|
168
178
|
Aws::LexModelsV2::Endpoints::ListBotResourceGenerations.build(context)
|
179
|
+
when :list_bot_version_replicas
|
180
|
+
Aws::LexModelsV2::Endpoints::ListBotVersionReplicas.build(context)
|
169
181
|
when :list_bot_versions
|
170
182
|
Aws::LexModelsV2::Endpoints::ListBotVersions.build(context)
|
171
183
|
when :list_bots
|