aws-sdk-lexmodelsv2 1.47.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 +5 -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 +12 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +437 -0
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- data/sig/client.rbs +94 -0
- data/sig/types.rbs +123 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -362,6 +362,16 @@ module Aws::LexModelsV2
|
|
362
362
|
SENSITIVE: []
|
363
363
|
end
|
364
364
|
|
365
|
+
class BotAliasReplicaSummary
|
366
|
+
attr_accessor bot_alias_id: ::String
|
367
|
+
attr_accessor bot_alias_replication_status: ("Creating" | "Updating" | "Available" | "Deleting" | "Failed")
|
368
|
+
attr_accessor bot_version: ::String
|
369
|
+
attr_accessor creation_date_time: ::Time
|
370
|
+
attr_accessor last_updated_date_time: ::Time
|
371
|
+
attr_accessor failure_reasons: ::Array[::String]
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
365
375
|
class BotAliasSummary
|
366
376
|
attr_accessor bot_alias_id: ::String
|
367
377
|
attr_accessor bot_alias_name: ::String
|
@@ -478,6 +488,14 @@ module Aws::LexModelsV2
|
|
478
488
|
SENSITIVE: []
|
479
489
|
end
|
480
490
|
|
491
|
+
class BotReplicaSummary
|
492
|
+
attr_accessor replica_region: ::String
|
493
|
+
attr_accessor creation_date_time: ::Time
|
494
|
+
attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
495
|
+
attr_accessor failure_reasons: ::Array[::String]
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
481
499
|
class BotSortBy
|
482
500
|
attr_accessor attribute: ("BotName")
|
483
501
|
attr_accessor order: ("Ascending" | "Descending")
|
@@ -500,6 +518,20 @@ module Aws::LexModelsV2
|
|
500
518
|
SENSITIVE: []
|
501
519
|
end
|
502
520
|
|
521
|
+
class BotVersionReplicaSortBy
|
522
|
+
attr_accessor attribute: ("BotVersion")
|
523
|
+
attr_accessor order: ("Ascending" | "Descending")
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class BotVersionReplicaSummary
|
528
|
+
attr_accessor bot_version: ::String
|
529
|
+
attr_accessor bot_version_replication_status: ("Creating" | "Available" | "Deleting" | "Failed")
|
530
|
+
attr_accessor creation_date_time: ::Time
|
531
|
+
attr_accessor failure_reasons: ::Array[::String]
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
503
535
|
class BotVersionSortBy
|
504
536
|
attr_accessor attribute: ("BotVersion")
|
505
537
|
attr_accessor order: ("Ascending" | "Descending")
|
@@ -719,6 +751,21 @@ module Aws::LexModelsV2
|
|
719
751
|
SENSITIVE: []
|
720
752
|
end
|
721
753
|
|
754
|
+
class CreateBotReplicaRequest
|
755
|
+
attr_accessor bot_id: ::String
|
756
|
+
attr_accessor replica_region: ::String
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class CreateBotReplicaResponse
|
761
|
+
attr_accessor bot_id: ::String
|
762
|
+
attr_accessor replica_region: ::String
|
763
|
+
attr_accessor source_region: ::String
|
764
|
+
attr_accessor creation_date_time: ::Time
|
765
|
+
attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
722
769
|
class CreateBotRequest
|
723
770
|
attr_accessor bot_name: ::String
|
724
771
|
attr_accessor description: ::String
|
@@ -1021,6 +1068,19 @@ module Aws::LexModelsV2
|
|
1021
1068
|
SENSITIVE: []
|
1022
1069
|
end
|
1023
1070
|
|
1071
|
+
class DeleteBotReplicaRequest
|
1072
|
+
attr_accessor bot_id: ::String
|
1073
|
+
attr_accessor replica_region: ::String
|
1074
|
+
SENSITIVE: []
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class DeleteBotReplicaResponse
|
1078
|
+
attr_accessor bot_id: ::String
|
1079
|
+
attr_accessor replica_region: ::String
|
1080
|
+
attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1024
1084
|
class DeleteBotRequest
|
1025
1085
|
attr_accessor bot_id: ::String
|
1026
1086
|
attr_accessor skip_resource_in_use_check: bool
|
@@ -1224,6 +1284,22 @@ module Aws::LexModelsV2
|
|
1224
1284
|
SENSITIVE: []
|
1225
1285
|
end
|
1226
1286
|
|
1287
|
+
class DescribeBotReplicaRequest
|
1288
|
+
attr_accessor bot_id: ::String
|
1289
|
+
attr_accessor replica_region: ::String
|
1290
|
+
SENSITIVE: []
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class DescribeBotReplicaResponse
|
1294
|
+
attr_accessor bot_id: ::String
|
1295
|
+
attr_accessor replica_region: ::String
|
1296
|
+
attr_accessor source_region: ::String
|
1297
|
+
attr_accessor creation_date_time: ::Time
|
1298
|
+
attr_accessor bot_replica_status: ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
1299
|
+
attr_accessor failure_reasons: ::Array[::String]
|
1300
|
+
SENSITIVE: []
|
1301
|
+
end
|
1302
|
+
|
1227
1303
|
class DescribeBotRequest
|
1228
1304
|
attr_accessor bot_id: ::String
|
1229
1305
|
SENSITIVE: []
|
@@ -1906,6 +1982,23 @@ module Aws::LexModelsV2
|
|
1906
1982
|
SENSITIVE: []
|
1907
1983
|
end
|
1908
1984
|
|
1985
|
+
class ListBotAliasReplicasRequest
|
1986
|
+
attr_accessor bot_id: ::String
|
1987
|
+
attr_accessor replica_region: ::String
|
1988
|
+
attr_accessor max_results: ::Integer
|
1989
|
+
attr_accessor next_token: ::String
|
1990
|
+
SENSITIVE: []
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
class ListBotAliasReplicasResponse
|
1994
|
+
attr_accessor bot_id: ::String
|
1995
|
+
attr_accessor source_region: ::String
|
1996
|
+
attr_accessor replica_region: ::String
|
1997
|
+
attr_accessor bot_alias_replica_summaries: ::Array[Types::BotAliasReplicaSummary]
|
1998
|
+
attr_accessor next_token: ::String
|
1999
|
+
SENSITIVE: []
|
2000
|
+
end
|
2001
|
+
|
1909
2002
|
class ListBotAliasesRequest
|
1910
2003
|
attr_accessor bot_id: ::String
|
1911
2004
|
attr_accessor max_results: ::Integer
|
@@ -1956,6 +2049,18 @@ module Aws::LexModelsV2
|
|
1956
2049
|
SENSITIVE: []
|
1957
2050
|
end
|
1958
2051
|
|
2052
|
+
class ListBotReplicasRequest
|
2053
|
+
attr_accessor bot_id: ::String
|
2054
|
+
SENSITIVE: []
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
class ListBotReplicasResponse
|
2058
|
+
attr_accessor bot_id: ::String
|
2059
|
+
attr_accessor source_region: ::String
|
2060
|
+
attr_accessor bot_replica_summaries: ::Array[Types::BotReplicaSummary]
|
2061
|
+
SENSITIVE: []
|
2062
|
+
end
|
2063
|
+
|
1959
2064
|
class ListBotResourceGenerationsRequest
|
1960
2065
|
attr_accessor bot_id: ::String
|
1961
2066
|
attr_accessor bot_version: ::String
|
@@ -1975,6 +2080,24 @@ module Aws::LexModelsV2
|
|
1975
2080
|
SENSITIVE: []
|
1976
2081
|
end
|
1977
2082
|
|
2083
|
+
class ListBotVersionReplicasRequest
|
2084
|
+
attr_accessor bot_id: ::String
|
2085
|
+
attr_accessor replica_region: ::String
|
2086
|
+
attr_accessor max_results: ::Integer
|
2087
|
+
attr_accessor next_token: ::String
|
2088
|
+
attr_accessor sort_by: Types::BotVersionReplicaSortBy
|
2089
|
+
SENSITIVE: []
|
2090
|
+
end
|
2091
|
+
|
2092
|
+
class ListBotVersionReplicasResponse
|
2093
|
+
attr_accessor bot_id: ::String
|
2094
|
+
attr_accessor source_region: ::String
|
2095
|
+
attr_accessor replica_region: ::String
|
2096
|
+
attr_accessor bot_version_replica_summaries: ::Array[Types::BotVersionReplicaSummary]
|
2097
|
+
attr_accessor next_token: ::String
|
2098
|
+
SENSITIVE: []
|
2099
|
+
end
|
2100
|
+
|
1978
2101
|
class ListBotVersionsRequest
|
1979
2102
|
attr_accessor bot_id: ::String
|
1980
2103
|
attr_accessor sort_by: Types::BotVersionSortBy
|
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
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
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
|