aws-sdk-lexmodelsv2 1.47.0 → 1.48.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 +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
@@ -1897,6 +1897,46 @@ module Aws::LexModelsV2
|
|
1897
1897
|
include Aws::Structure
|
1898
1898
|
end
|
1899
1899
|
|
1900
|
+
# Contains information about all the aliases replication statuses
|
1901
|
+
# applicable for global resiliency.
|
1902
|
+
#
|
1903
|
+
# @!attribute [rw] bot_alias_id
|
1904
|
+
# The bot alias ID for all the alias bot replications.
|
1905
|
+
# @return [String]
|
1906
|
+
#
|
1907
|
+
# @!attribute [rw] bot_alias_replication_status
|
1908
|
+
# The replication statuses for all the alias bot replications.
|
1909
|
+
# @return [String]
|
1910
|
+
#
|
1911
|
+
# @!attribute [rw] bot_version
|
1912
|
+
# The bot version for all the alias bot replications.
|
1913
|
+
# @return [String]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] creation_date_time
|
1916
|
+
# The creation time and date for all the alias bot replications.
|
1917
|
+
# @return [Time]
|
1918
|
+
#
|
1919
|
+
# @!attribute [rw] last_updated_date_time
|
1920
|
+
# The last time and date updated for all the alias bot replications.
|
1921
|
+
# @return [Time]
|
1922
|
+
#
|
1923
|
+
# @!attribute [rw] failure_reasons
|
1924
|
+
# The reasons for failure for the aliases bot replications.
|
1925
|
+
# @return [Array<String>]
|
1926
|
+
#
|
1927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/BotAliasReplicaSummary AWS API Documentation
|
1928
|
+
#
|
1929
|
+
class BotAliasReplicaSummary < Struct.new(
|
1930
|
+
:bot_alias_id,
|
1931
|
+
:bot_alias_replication_status,
|
1932
|
+
:bot_version,
|
1933
|
+
:creation_date_time,
|
1934
|
+
:last_updated_date_time,
|
1935
|
+
:failure_reasons)
|
1936
|
+
SENSITIVE = []
|
1937
|
+
include Aws::Structure
|
1938
|
+
end
|
1939
|
+
|
1900
1940
|
# Summary information about bot aliases returned from the
|
1901
1941
|
# [ListBotAliases][1] operation.
|
1902
1942
|
#
|
@@ -2396,6 +2436,36 @@ module Aws::LexModelsV2
|
|
2396
2436
|
include Aws::Structure
|
2397
2437
|
end
|
2398
2438
|
|
2439
|
+
# Contains summary information about all the replication statuses
|
2440
|
+
# applicable for global resiliency.
|
2441
|
+
#
|
2442
|
+
# @!attribute [rw] replica_region
|
2443
|
+
# The replica region used in the replication statuses summary.
|
2444
|
+
# @return [String]
|
2445
|
+
#
|
2446
|
+
# @!attribute [rw] creation_date_time
|
2447
|
+
# The creation time and date for the replicated bots.
|
2448
|
+
# @return [Time]
|
2449
|
+
#
|
2450
|
+
# @!attribute [rw] bot_replica_status
|
2451
|
+
# The operation status for the replicated bot applicable.
|
2452
|
+
# @return [String]
|
2453
|
+
#
|
2454
|
+
# @!attribute [rw] failure_reasons
|
2455
|
+
# The reasons for the failure for the replicated bot.
|
2456
|
+
# @return [Array<String>]
|
2457
|
+
#
|
2458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/BotReplicaSummary AWS API Documentation
|
2459
|
+
#
|
2460
|
+
class BotReplicaSummary < Struct.new(
|
2461
|
+
:replica_region,
|
2462
|
+
:creation_date_time,
|
2463
|
+
:bot_replica_status,
|
2464
|
+
:failure_reasons)
|
2465
|
+
SENSITIVE = []
|
2466
|
+
include Aws::Structure
|
2467
|
+
end
|
2468
|
+
|
2399
2469
|
# Specifies attributes for sorting a list of bots.
|
2400
2470
|
#
|
2401
2471
|
# @!attribute [rw] attribute
|
@@ -2485,6 +2555,57 @@ module Aws::LexModelsV2
|
|
2485
2555
|
include Aws::Structure
|
2486
2556
|
end
|
2487
2557
|
|
2558
|
+
# The sort category for the version replicated bots.
|
2559
|
+
#
|
2560
|
+
# @!attribute [rw] attribute
|
2561
|
+
# The attribute of the sort category for the version replicated bots.
|
2562
|
+
# @return [String]
|
2563
|
+
#
|
2564
|
+
# @!attribute [rw] order
|
2565
|
+
# The order of the sort category for the version replicated bots.
|
2566
|
+
# @return [String]
|
2567
|
+
#
|
2568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/BotVersionReplicaSortBy AWS API Documentation
|
2569
|
+
#
|
2570
|
+
class BotVersionReplicaSortBy < Struct.new(
|
2571
|
+
:attribute,
|
2572
|
+
:order)
|
2573
|
+
SENSITIVE = []
|
2574
|
+
include Aws::Structure
|
2575
|
+
end
|
2576
|
+
|
2577
|
+
# Contains summary information for all the version replication statuses
|
2578
|
+
# applicable for Global resiliency.
|
2579
|
+
#
|
2580
|
+
# @!attribute [rw] bot_version
|
2581
|
+
# The bot version for the summary information for all the version
|
2582
|
+
# replication statuses.
|
2583
|
+
# @return [String]
|
2584
|
+
#
|
2585
|
+
# @!attribute [rw] bot_version_replication_status
|
2586
|
+
# The version replication status for all the replicated bots.
|
2587
|
+
# @return [String]
|
2588
|
+
#
|
2589
|
+
# @!attribute [rw] creation_date_time
|
2590
|
+
# The creation date and time of the replication status for all the
|
2591
|
+
# replicated bots.
|
2592
|
+
# @return [Time]
|
2593
|
+
#
|
2594
|
+
# @!attribute [rw] failure_reasons
|
2595
|
+
# The reasons for replication failure for all the replicated bots.
|
2596
|
+
# @return [Array<String>]
|
2597
|
+
#
|
2598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/BotVersionReplicaSummary AWS API Documentation
|
2599
|
+
#
|
2600
|
+
class BotVersionReplicaSummary < Struct.new(
|
2601
|
+
:bot_version,
|
2602
|
+
:bot_version_replication_status,
|
2603
|
+
:creation_date_time,
|
2604
|
+
:failure_reasons)
|
2605
|
+
SENSITIVE = []
|
2606
|
+
include Aws::Structure
|
2607
|
+
end
|
2608
|
+
|
2488
2609
|
# Specifies attributes for sorting a list of bot versions.
|
2489
2610
|
#
|
2490
2611
|
# @!attribute [rw] attribute
|
@@ -3379,6 +3500,58 @@ module Aws::LexModelsV2
|
|
3379
3500
|
include Aws::Structure
|
3380
3501
|
end
|
3381
3502
|
|
3503
|
+
# @!attribute [rw] bot_id
|
3504
|
+
# The request for the unique bot ID of the source bot to be replicated
|
3505
|
+
# in the secondary region.
|
3506
|
+
# @return [String]
|
3507
|
+
#
|
3508
|
+
# @!attribute [rw] replica_region
|
3509
|
+
# The request for the secondary region that will be used in the
|
3510
|
+
# replication of the source bot.
|
3511
|
+
# @return [String]
|
3512
|
+
#
|
3513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotReplicaRequest AWS API Documentation
|
3514
|
+
#
|
3515
|
+
class CreateBotReplicaRequest < Struct.new(
|
3516
|
+
:bot_id,
|
3517
|
+
:replica_region)
|
3518
|
+
SENSITIVE = []
|
3519
|
+
include Aws::Structure
|
3520
|
+
end
|
3521
|
+
|
3522
|
+
# @!attribute [rw] bot_id
|
3523
|
+
# The unique bot ID of the replicated bot generated.
|
3524
|
+
# @return [String]
|
3525
|
+
#
|
3526
|
+
# @!attribute [rw] replica_region
|
3527
|
+
# The region of the replicated bot generated.
|
3528
|
+
# @return [String]
|
3529
|
+
#
|
3530
|
+
# @!attribute [rw] source_region
|
3531
|
+
# The source region for the source bot used for the replicated bot
|
3532
|
+
# generated.
|
3533
|
+
# @return [String]
|
3534
|
+
#
|
3535
|
+
# @!attribute [rw] creation_date_time
|
3536
|
+
# The creation date and time of the replicated bot generated.
|
3537
|
+
# @return [Time]
|
3538
|
+
#
|
3539
|
+
# @!attribute [rw] bot_replica_status
|
3540
|
+
# The operational status of the replicated bot generated.
|
3541
|
+
# @return [String]
|
3542
|
+
#
|
3543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/CreateBotReplicaResponse AWS API Documentation
|
3544
|
+
#
|
3545
|
+
class CreateBotReplicaResponse < Struct.new(
|
3546
|
+
:bot_id,
|
3547
|
+
:replica_region,
|
3548
|
+
:source_region,
|
3549
|
+
:creation_date_time,
|
3550
|
+
:bot_replica_status)
|
3551
|
+
SENSITIVE = []
|
3552
|
+
include Aws::Structure
|
3553
|
+
end
|
3554
|
+
|
3382
3555
|
# @!attribute [rw] bot_name
|
3383
3556
|
# The name of the bot. The bot name must be unique in the account that
|
3384
3557
|
# creates the bot.
|
@@ -4768,6 +4941,46 @@ module Aws::LexModelsV2
|
|
4768
4941
|
include Aws::Structure
|
4769
4942
|
end
|
4770
4943
|
|
4944
|
+
# @!attribute [rw] bot_id
|
4945
|
+
# The unique ID of the replicated bot to be deleted from the secondary
|
4946
|
+
# region
|
4947
|
+
# @return [String]
|
4948
|
+
#
|
4949
|
+
# @!attribute [rw] replica_region
|
4950
|
+
# The secondary region of the replicated bot that will be deleted.
|
4951
|
+
# @return [String]
|
4952
|
+
#
|
4953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DeleteBotReplicaRequest AWS API Documentation
|
4954
|
+
#
|
4955
|
+
class DeleteBotReplicaRequest < Struct.new(
|
4956
|
+
:bot_id,
|
4957
|
+
:replica_region)
|
4958
|
+
SENSITIVE = []
|
4959
|
+
include Aws::Structure
|
4960
|
+
end
|
4961
|
+
|
4962
|
+
# @!attribute [rw] bot_id
|
4963
|
+
# The unique bot ID of the replicated bot generated.
|
4964
|
+
# @return [String]
|
4965
|
+
#
|
4966
|
+
# @!attribute [rw] replica_region
|
4967
|
+
# The region of the replicated bot generated.
|
4968
|
+
# @return [String]
|
4969
|
+
#
|
4970
|
+
# @!attribute [rw] bot_replica_status
|
4971
|
+
# The operational status of the replicated bot generated.
|
4972
|
+
# @return [String]
|
4973
|
+
#
|
4974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DeleteBotReplicaResponse AWS API Documentation
|
4975
|
+
#
|
4976
|
+
class DeleteBotReplicaResponse < Struct.new(
|
4977
|
+
:bot_id,
|
4978
|
+
:replica_region,
|
4979
|
+
:bot_replica_status)
|
4980
|
+
SENSITIVE = []
|
4981
|
+
include Aws::Structure
|
4982
|
+
end
|
4983
|
+
|
4771
4984
|
# @!attribute [rw] bot_id
|
4772
4985
|
# The identifier of the bot to delete.
|
4773
4986
|
# @return [String]
|
@@ -5563,6 +5776,61 @@ module Aws::LexModelsV2
|
|
5563
5776
|
include Aws::Structure
|
5564
5777
|
end
|
5565
5778
|
|
5779
|
+
# @!attribute [rw] bot_id
|
5780
|
+
# The request for the unique bot ID of the replicated bot being
|
5781
|
+
# monitored.
|
5782
|
+
# @return [String]
|
5783
|
+
#
|
5784
|
+
# @!attribute [rw] replica_region
|
5785
|
+
# The request for the region of the replicated bot being monitored.
|
5786
|
+
# @return [String]
|
5787
|
+
#
|
5788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeBotReplicaRequest AWS API Documentation
|
5789
|
+
#
|
5790
|
+
class DescribeBotReplicaRequest < Struct.new(
|
5791
|
+
:bot_id,
|
5792
|
+
:replica_region)
|
5793
|
+
SENSITIVE = []
|
5794
|
+
include Aws::Structure
|
5795
|
+
end
|
5796
|
+
|
5797
|
+
# @!attribute [rw] bot_id
|
5798
|
+
# The unique bot ID of the replicated bot being monitored.
|
5799
|
+
# @return [String]
|
5800
|
+
#
|
5801
|
+
# @!attribute [rw] replica_region
|
5802
|
+
# The region of the replicated bot being monitored.
|
5803
|
+
# @return [String]
|
5804
|
+
#
|
5805
|
+
# @!attribute [rw] source_region
|
5806
|
+
# The source region of the replicated bot being monitored.
|
5807
|
+
# @return [String]
|
5808
|
+
#
|
5809
|
+
# @!attribute [rw] creation_date_time
|
5810
|
+
# The creation date and time of the replicated bot being monitored.
|
5811
|
+
# @return [Time]
|
5812
|
+
#
|
5813
|
+
# @!attribute [rw] bot_replica_status
|
5814
|
+
# The operational status of the replicated bot being monitored.
|
5815
|
+
# @return [String]
|
5816
|
+
#
|
5817
|
+
# @!attribute [rw] failure_reasons
|
5818
|
+
# The failure reasons the bot being monitored failed to replicate.
|
5819
|
+
# @return [Array<String>]
|
5820
|
+
#
|
5821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/DescribeBotReplicaResponse AWS API Documentation
|
5822
|
+
#
|
5823
|
+
class DescribeBotReplicaResponse < Struct.new(
|
5824
|
+
:bot_id,
|
5825
|
+
:replica_region,
|
5826
|
+
:source_region,
|
5827
|
+
:creation_date_time,
|
5828
|
+
:bot_replica_status,
|
5829
|
+
:failure_reasons)
|
5830
|
+
SENSITIVE = []
|
5831
|
+
include Aws::Structure
|
5832
|
+
end
|
5833
|
+
|
5566
5834
|
# @!attribute [rw] bot_id
|
5567
5835
|
# The unique identifier of the bot to describe.
|
5568
5836
|
# @return [String]
|
@@ -8313,6 +8581,74 @@ module Aws::LexModelsV2
|
|
8313
8581
|
include Aws::Structure
|
8314
8582
|
end
|
8315
8583
|
|
8584
|
+
# @!attribute [rw] bot_id
|
8585
|
+
# The request for the unique bot ID of the replicated bot created from
|
8586
|
+
# the source bot alias.
|
8587
|
+
# @return [String]
|
8588
|
+
#
|
8589
|
+
# @!attribute [rw] replica_region
|
8590
|
+
# The request for the secondary region of the replicated bot created
|
8591
|
+
# from the source bot alias.
|
8592
|
+
# @return [String]
|
8593
|
+
#
|
8594
|
+
# @!attribute [rw] max_results
|
8595
|
+
# The request for maximum results to list the replicated bots created
|
8596
|
+
# from the source bot alias.
|
8597
|
+
# @return [Integer]
|
8598
|
+
#
|
8599
|
+
# @!attribute [rw] next_token
|
8600
|
+
# The request for the next token for the replicated bot created from
|
8601
|
+
# the source bot alias.
|
8602
|
+
# @return [String]
|
8603
|
+
#
|
8604
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotAliasReplicasRequest AWS API Documentation
|
8605
|
+
#
|
8606
|
+
class ListBotAliasReplicasRequest < Struct.new(
|
8607
|
+
:bot_id,
|
8608
|
+
:replica_region,
|
8609
|
+
:max_results,
|
8610
|
+
:next_token)
|
8611
|
+
SENSITIVE = []
|
8612
|
+
include Aws::Structure
|
8613
|
+
end
|
8614
|
+
|
8615
|
+
# @!attribute [rw] bot_id
|
8616
|
+
# The unique bot ID of the replicated bot created from the source bot
|
8617
|
+
# alias.
|
8618
|
+
# @return [String]
|
8619
|
+
#
|
8620
|
+
# @!attribute [rw] source_region
|
8621
|
+
# The source region of the replicated bot created from the source bot
|
8622
|
+
# alias.
|
8623
|
+
# @return [String]
|
8624
|
+
#
|
8625
|
+
# @!attribute [rw] replica_region
|
8626
|
+
# The secondary region of the replicated bot created from the source
|
8627
|
+
# bot alias.
|
8628
|
+
# @return [String]
|
8629
|
+
#
|
8630
|
+
# @!attribute [rw] bot_alias_replica_summaries
|
8631
|
+
# The summary information of the replicated bot created from the
|
8632
|
+
# source bot alias.
|
8633
|
+
# @return [Array<Types::BotAliasReplicaSummary>]
|
8634
|
+
#
|
8635
|
+
# @!attribute [rw] next_token
|
8636
|
+
# The next token for the replicated bots created from the source bot
|
8637
|
+
# alias.
|
8638
|
+
# @return [String]
|
8639
|
+
#
|
8640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotAliasReplicasResponse AWS API Documentation
|
8641
|
+
#
|
8642
|
+
class ListBotAliasReplicasResponse < Struct.new(
|
8643
|
+
:bot_id,
|
8644
|
+
:source_region,
|
8645
|
+
:replica_region,
|
8646
|
+
:bot_alias_replica_summaries,
|
8647
|
+
:next_token)
|
8648
|
+
SENSITIVE = []
|
8649
|
+
include Aws::Structure
|
8650
|
+
end
|
8651
|
+
|
8316
8652
|
# @!attribute [rw] bot_id
|
8317
8653
|
# The identifier of the bot to list aliases for.
|
8318
8654
|
# @return [String]
|
@@ -8529,6 +8865,40 @@ module Aws::LexModelsV2
|
|
8529
8865
|
include Aws::Structure
|
8530
8866
|
end
|
8531
8867
|
|
8868
|
+
# @!attribute [rw] bot_id
|
8869
|
+
# The request for the unique bot IDs in the list of replicated bots.
|
8870
|
+
# @return [String]
|
8871
|
+
#
|
8872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotReplicasRequest AWS API Documentation
|
8873
|
+
#
|
8874
|
+
class ListBotReplicasRequest < Struct.new(
|
8875
|
+
:bot_id)
|
8876
|
+
SENSITIVE = []
|
8877
|
+
include Aws::Structure
|
8878
|
+
end
|
8879
|
+
|
8880
|
+
# @!attribute [rw] bot_id
|
8881
|
+
# the unique bot IDs in the list of replicated bots.
|
8882
|
+
# @return [String]
|
8883
|
+
#
|
8884
|
+
# @!attribute [rw] source_region
|
8885
|
+
# The source region of the source bots in the list of replicated bots.
|
8886
|
+
# @return [String]
|
8887
|
+
#
|
8888
|
+
# @!attribute [rw] bot_replica_summaries
|
8889
|
+
# The summary details for the replicated bots.
|
8890
|
+
# @return [Array<Types::BotReplicaSummary>]
|
8891
|
+
#
|
8892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotReplicasResponse AWS API Documentation
|
8893
|
+
#
|
8894
|
+
class ListBotReplicasResponse < Struct.new(
|
8895
|
+
:bot_id,
|
8896
|
+
:source_region,
|
8897
|
+
:bot_replica_summaries)
|
8898
|
+
SENSITIVE = []
|
8899
|
+
include Aws::Structure
|
8900
|
+
end
|
8901
|
+
|
8532
8902
|
# @!attribute [rw] bot_id
|
8533
8903
|
# The unique identifier of the bot whose generation requests you want
|
8534
8904
|
# to view.
|
@@ -8608,6 +8978,73 @@ module Aws::LexModelsV2
|
|
8608
8978
|
include Aws::Structure
|
8609
8979
|
end
|
8610
8980
|
|
8981
|
+
# @!attribute [rw] bot_id
|
8982
|
+
# The request for the unique ID in the list of replicated bots.
|
8983
|
+
# @return [String]
|
8984
|
+
#
|
8985
|
+
# @!attribute [rw] replica_region
|
8986
|
+
# The request for the region used in the list of replicated bots.
|
8987
|
+
# @return [String]
|
8988
|
+
#
|
8989
|
+
# @!attribute [rw] max_results
|
8990
|
+
# The maximum results given in the list of replicated bots.
|
8991
|
+
# @return [Integer]
|
8992
|
+
#
|
8993
|
+
# @!attribute [rw] next_token
|
8994
|
+
# The next token given in the list of replicated bots.
|
8995
|
+
# @return [String]
|
8996
|
+
#
|
8997
|
+
# @!attribute [rw] sort_by
|
8998
|
+
# The requested sort category for the list of replicated bots.
|
8999
|
+
# @return [Types::BotVersionReplicaSortBy]
|
9000
|
+
#
|
9001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotVersionReplicasRequest AWS API Documentation
|
9002
|
+
#
|
9003
|
+
class ListBotVersionReplicasRequest < Struct.new(
|
9004
|
+
:bot_id,
|
9005
|
+
:replica_region,
|
9006
|
+
:max_results,
|
9007
|
+
:next_token,
|
9008
|
+
:sort_by)
|
9009
|
+
SENSITIVE = []
|
9010
|
+
include Aws::Structure
|
9011
|
+
end
|
9012
|
+
|
9013
|
+
# @!attribute [rw] bot_id
|
9014
|
+
# The unique ID of the bots in the list of replicated bots.
|
9015
|
+
# @return [String]
|
9016
|
+
#
|
9017
|
+
# @!attribute [rw] source_region
|
9018
|
+
# The source region used for the bots in the list of replicated bots.
|
9019
|
+
# @return [String]
|
9020
|
+
#
|
9021
|
+
# @!attribute [rw] replica_region
|
9022
|
+
# The region used for the replicated bots in the list of replicated
|
9023
|
+
# bots.
|
9024
|
+
# @return [String]
|
9025
|
+
#
|
9026
|
+
# @!attribute [rw] bot_version_replica_summaries
|
9027
|
+
# The information summary used for the replicated bots in the list of
|
9028
|
+
# replicated bots.
|
9029
|
+
# @return [Array<Types::BotVersionReplicaSummary>]
|
9030
|
+
#
|
9031
|
+
# @!attribute [rw] next_token
|
9032
|
+
# The next token used for the replicated bots in the list of
|
9033
|
+
# replicated bots.
|
9034
|
+
# @return [String]
|
9035
|
+
#
|
9036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/models.lex.v2-2020-08-07/ListBotVersionReplicasResponse AWS API Documentation
|
9037
|
+
#
|
9038
|
+
class ListBotVersionReplicasResponse < Struct.new(
|
9039
|
+
:bot_id,
|
9040
|
+
:source_region,
|
9041
|
+
:replica_region,
|
9042
|
+
:bot_version_replica_summaries,
|
9043
|
+
:next_token)
|
9044
|
+
SENSITIVE = []
|
9045
|
+
include Aws::Structure
|
9046
|
+
end
|
9047
|
+
|
8611
9048
|
# @!attribute [rw] bot_id
|
8612
9049
|
# The identifier of the bot to list versions for.
|
8613
9050
|
# @return [String]
|
data/lib/aws-sdk-lexmodelsv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -309,6 +309,21 @@ module Aws
|
|
309
309
|
) -> _CreateBotLocaleResponseSuccess
|
310
310
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotLocaleResponseSuccess
|
311
311
|
|
312
|
+
interface _CreateBotReplicaResponseSuccess
|
313
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBotReplicaResponse]
|
314
|
+
def bot_id: () -> ::String
|
315
|
+
def replica_region: () -> ::String
|
316
|
+
def source_region: () -> ::String
|
317
|
+
def creation_date_time: () -> ::Time
|
318
|
+
def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
319
|
+
end
|
320
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#create_bot_replica-instance_method
|
321
|
+
def create_bot_replica: (
|
322
|
+
bot_id: ::String,
|
323
|
+
replica_region: ::String
|
324
|
+
) -> _CreateBotReplicaResponseSuccess
|
325
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBotReplicaResponseSuccess
|
326
|
+
|
312
327
|
interface _CreateBotVersionResponseSuccess
|
313
328
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBotVersionResponse]
|
314
329
|
def bot_id: () -> ::String
|
@@ -5786,6 +5801,19 @@ module Aws
|
|
5786
5801
|
) -> _DeleteBotLocaleResponseSuccess
|
5787
5802
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBotLocaleResponseSuccess
|
5788
5803
|
|
5804
|
+
interface _DeleteBotReplicaResponseSuccess
|
5805
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBotReplicaResponse]
|
5806
|
+
def bot_id: () -> ::String
|
5807
|
+
def replica_region: () -> ::String
|
5808
|
+
def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
5809
|
+
end
|
5810
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#delete_bot_replica-instance_method
|
5811
|
+
def delete_bot_replica: (
|
5812
|
+
bot_id: ::String,
|
5813
|
+
replica_region: ::String
|
5814
|
+
) -> _DeleteBotReplicaResponseSuccess
|
5815
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBotReplicaResponseSuccess
|
5816
|
+
|
5789
5817
|
interface _DeleteBotVersionResponseSuccess
|
5790
5818
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBotVersionResponse]
|
5791
5819
|
def bot_id: () -> ::String
|
@@ -6003,6 +6031,22 @@ module Aws
|
|
6003
6031
|
) -> _DescribeBotRecommendationResponseSuccess
|
6004
6032
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBotRecommendationResponseSuccess
|
6005
6033
|
|
6034
|
+
interface _DescribeBotReplicaResponseSuccess
|
6035
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBotReplicaResponse]
|
6036
|
+
def bot_id: () -> ::String
|
6037
|
+
def replica_region: () -> ::String
|
6038
|
+
def source_region: () -> ::String
|
6039
|
+
def creation_date_time: () -> ::Time
|
6040
|
+
def bot_replica_status: () -> ("Enabling" | "Enabled" | "Deleting" | "Failed")
|
6041
|
+
def failure_reasons: () -> ::Array[::String]
|
6042
|
+
end
|
6043
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#describe_bot_replica-instance_method
|
6044
|
+
def describe_bot_replica: (
|
6045
|
+
bot_id: ::String,
|
6046
|
+
replica_region: ::String
|
6047
|
+
) -> _DescribeBotReplicaResponseSuccess
|
6048
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBotReplicaResponseSuccess
|
6049
|
+
|
6006
6050
|
interface _DescribeBotResourceGenerationResponseSuccess
|
6007
6051
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBotResourceGenerationResponse]
|
6008
6052
|
def bot_id: () -> ::String
|
@@ -6341,6 +6385,23 @@ module Aws
|
|
6341
6385
|
) -> _ListAggregatedUtterancesResponseSuccess
|
6342
6386
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAggregatedUtterancesResponseSuccess
|
6343
6387
|
|
6388
|
+
interface _ListBotAliasReplicasResponseSuccess
|
6389
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotAliasReplicasResponse]
|
6390
|
+
def bot_id: () -> ::String
|
6391
|
+
def source_region: () -> ::String
|
6392
|
+
def replica_region: () -> ::String
|
6393
|
+
def bot_alias_replica_summaries: () -> ::Array[Types::BotAliasReplicaSummary]
|
6394
|
+
def next_token: () -> ::String
|
6395
|
+
end
|
6396
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_alias_replicas-instance_method
|
6397
|
+
def list_bot_alias_replicas: (
|
6398
|
+
bot_id: ::String,
|
6399
|
+
replica_region: ::String,
|
6400
|
+
?max_results: ::Integer,
|
6401
|
+
?next_token: ::String
|
6402
|
+
) -> _ListBotAliasReplicasResponseSuccess
|
6403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotAliasReplicasResponseSuccess
|
6404
|
+
|
6344
6405
|
interface _ListBotAliasesResponseSuccess
|
6345
6406
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotAliasesResponse]
|
6346
6407
|
def bot_alias_summaries: () -> ::Array[Types::BotAliasSummary]
|
@@ -6400,6 +6461,18 @@ module Aws
|
|
6400
6461
|
) -> _ListBotRecommendationsResponseSuccess
|
6401
6462
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotRecommendationsResponseSuccess
|
6402
6463
|
|
6464
|
+
interface _ListBotReplicasResponseSuccess
|
6465
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotReplicasResponse]
|
6466
|
+
def bot_id: () -> ::String
|
6467
|
+
def source_region: () -> ::String
|
6468
|
+
def bot_replica_summaries: () -> ::Array[Types::BotReplicaSummary]
|
6469
|
+
end
|
6470
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_replicas-instance_method
|
6471
|
+
def list_bot_replicas: (
|
6472
|
+
bot_id: ::String
|
6473
|
+
) -> _ListBotReplicasResponseSuccess
|
6474
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotReplicasResponseSuccess
|
6475
|
+
|
6403
6476
|
interface _ListBotResourceGenerationsResponseSuccess
|
6404
6477
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotResourceGenerationsResponse]
|
6405
6478
|
def bot_id: () -> ::String
|
@@ -6422,6 +6495,27 @@ module Aws
|
|
6422
6495
|
) -> _ListBotResourceGenerationsResponseSuccess
|
6423
6496
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotResourceGenerationsResponseSuccess
|
6424
6497
|
|
6498
|
+
interface _ListBotVersionReplicasResponseSuccess
|
6499
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotVersionReplicasResponse]
|
6500
|
+
def bot_id: () -> ::String
|
6501
|
+
def source_region: () -> ::String
|
6502
|
+
def replica_region: () -> ::String
|
6503
|
+
def bot_version_replica_summaries: () -> ::Array[Types::BotVersionReplicaSummary]
|
6504
|
+
def next_token: () -> ::String
|
6505
|
+
end
|
6506
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LexModelsV2/Client.html#list_bot_version_replicas-instance_method
|
6507
|
+
def list_bot_version_replicas: (
|
6508
|
+
bot_id: ::String,
|
6509
|
+
replica_region: ::String,
|
6510
|
+
?max_results: ::Integer,
|
6511
|
+
?next_token: ::String,
|
6512
|
+
?sort_by: {
|
6513
|
+
attribute: ("BotVersion"),
|
6514
|
+
order: ("Ascending" | "Descending")
|
6515
|
+
}
|
6516
|
+
) -> _ListBotVersionReplicasResponseSuccess
|
6517
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBotVersionReplicasResponseSuccess
|
6518
|
+
|
6425
6519
|
interface _ListBotVersionsResponseSuccess
|
6426
6520
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotVersionsResponse]
|
6427
6521
|
def bot_id: () -> ::String
|