@aws-sdk/client-lex-models-v2 3.507.0 → 3.511.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.
Files changed (68) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/commands/CreateBotReplicaCommand.js +1 -0
  3. package/dist-cjs/commands/DeleteBotReplicaCommand.js +1 -0
  4. package/dist-cjs/commands/DescribeBotReplicaCommand.js +1 -0
  5. package/dist-cjs/commands/ListBotAliasReplicasCommand.js +1 -0
  6. package/dist-cjs/commands/ListBotReplicasCommand.js +1 -0
  7. package/dist-cjs/commands/ListBotVersionReplicasCommand.js +1 -0
  8. package/dist-cjs/index.js +623 -230
  9. package/dist-cjs/pagination/ListBotAliasReplicasPaginator.js +1 -0
  10. package/dist-cjs/pagination/ListBotVersionReplicasPaginator.js +1 -0
  11. package/dist-es/LexModelsV2.js +12 -0
  12. package/dist-es/commands/CreateBotReplicaCommand.js +24 -0
  13. package/dist-es/commands/DeleteBotReplicaCommand.js +24 -0
  14. package/dist-es/commands/DescribeBotRecommendationCommand.js +1 -1
  15. package/dist-es/commands/DescribeBotReplicaCommand.js +24 -0
  16. package/dist-es/commands/ListBotAliasReplicasCommand.js +24 -0
  17. package/dist-es/commands/ListBotReplicasCommand.js +24 -0
  18. package/dist-es/commands/ListBotVersionReplicasCommand.js +24 -0
  19. package/dist-es/commands/index.js +6 -0
  20. package/dist-es/models/models_0.js +22 -14
  21. package/dist-es/models/models_1.js +14 -0
  22. package/dist-es/pagination/ListBotAliasReplicasPaginator.js +4 -0
  23. package/dist-es/pagination/ListBotVersionReplicasPaginator.js +4 -0
  24. package/dist-es/pagination/index.js +2 -0
  25. package/dist-es/protocols/Aws_restJson1.js +231 -0
  26. package/dist-types/LexModelsV2.d.ts +42 -0
  27. package/dist-types/LexModelsV2Client.d.ts +8 -2
  28. package/dist-types/commands/CreateBotReplicaCommand.d.ts +88 -0
  29. package/dist-types/commands/DeleteBotReplicaCommand.d.ts +86 -0
  30. package/dist-types/commands/DescribeBotRecommendationCommand.d.ts +2 -1
  31. package/dist-types/commands/DescribeBotReplicaCommand.d.ts +85 -0
  32. package/dist-types/commands/DescribeBotResourceGenerationCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeBotVersionCommand.d.ts +1 -1
  34. package/dist-types/commands/DescribeCustomVocabularyMetadataCommand.d.ts +1 -1
  35. package/dist-types/commands/DescribeExportCommand.d.ts +1 -1
  36. package/dist-types/commands/DescribeImportCommand.d.ts +1 -2
  37. package/dist-types/commands/ListBotAliasReplicasCommand.d.ts +91 -0
  38. package/dist-types/commands/ListBotReplicasCommand.d.ts +84 -0
  39. package/dist-types/commands/ListBotVersionReplicasCommand.d.ts +93 -0
  40. package/dist-types/commands/index.d.ts +6 -0
  41. package/dist-types/models/models_0.d.ts +238 -407
  42. package/dist-types/models/models_1.d.ts +603 -1
  43. package/dist-types/pagination/ListBotAliasReplicasPaginator.d.ts +7 -0
  44. package/dist-types/pagination/ListBotVersionReplicasPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +2 -0
  46. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  47. package/dist-types/ts3.4/LexModelsV2.d.ts +102 -0
  48. package/dist-types/ts3.4/LexModelsV2Client.d.ts +36 -0
  49. package/dist-types/ts3.4/commands/CreateBotReplicaCommand.d.ts +29 -0
  50. package/dist-types/ts3.4/commands/DeleteBotReplicaCommand.d.ts +29 -0
  51. package/dist-types/ts3.4/commands/DescribeBotRecommendationCommand.d.ts +2 -4
  52. package/dist-types/ts3.4/commands/DescribeBotReplicaCommand.d.ts +30 -0
  53. package/dist-types/ts3.4/commands/DescribeBotResourceGenerationCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/DescribeBotVersionCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/DescribeCustomVocabularyMetadataCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +4 -2
  58. package/dist-types/ts3.4/commands/ListBotAliasReplicasCommand.d.ts +30 -0
  59. package/dist-types/ts3.4/commands/ListBotReplicasCommand.d.ts +29 -0
  60. package/dist-types/ts3.4/commands/ListBotVersionReplicasCommand.d.ts +30 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +74 -96
  63. package/dist-types/ts3.4/models/models_1.d.ts +151 -2
  64. package/dist-types/ts3.4/pagination/ListBotAliasReplicasPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/ListBotVersionReplicasPaginator.d.ts +11 -0
  66. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  67. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  68. package/package.json +14 -14
package/README.md CHANGED
@@ -258,6 +258,14 @@ CreateBotLocale
258
258
 
259
259
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/CreateBotLocaleCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/CreateBotLocaleCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/CreateBotLocaleCommandOutput/)
260
260
 
261
+ </details>
262
+ <details>
263
+ <summary>
264
+ CreateBotReplica
265
+ </summary>
266
+
267
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/CreateBotReplicaCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/CreateBotReplicaCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/CreateBotReplicaCommandOutput/)
268
+
261
269
  </details>
262
270
  <details>
263
271
  <summary>
@@ -354,6 +362,14 @@ DeleteBotLocale
354
362
 
355
363
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/DeleteBotLocaleCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DeleteBotLocaleCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DeleteBotLocaleCommandOutput/)
356
364
 
365
+ </details>
366
+ <details>
367
+ <summary>
368
+ DeleteBotReplica
369
+ </summary>
370
+
371
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/DeleteBotReplicaCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DeleteBotReplicaCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DeleteBotReplicaCommandOutput/)
372
+
357
373
  </details>
358
374
  <details>
359
375
  <summary>
@@ -474,6 +490,14 @@ DescribeBotRecommendation
474
490
 
475
491
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/DescribeBotRecommendationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DescribeBotRecommendationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DescribeBotRecommendationCommandOutput/)
476
492
 
493
+ </details>
494
+ <details>
495
+ <summary>
496
+ DescribeBotReplica
497
+ </summary>
498
+
499
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/DescribeBotReplicaCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DescribeBotReplicaCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/DescribeBotReplicaCommandOutput/)
500
+
477
501
  </details>
478
502
  <details>
479
503
  <summary>
@@ -610,6 +634,14 @@ ListBotAliases
610
634
 
611
635
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotAliasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotAliasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotAliasesCommandOutput/)
612
636
 
637
+ </details>
638
+ <details>
639
+ <summary>
640
+ ListBotAliasReplicas
641
+ </summary>
642
+
643
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotAliasReplicasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotAliasReplicasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotAliasReplicasCommandOutput/)
644
+
613
645
  </details>
614
646
  <details>
615
647
  <summary>
@@ -626,6 +658,14 @@ ListBotRecommendations
626
658
 
627
659
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotRecommendationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotRecommendationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotRecommendationsCommandOutput/)
628
660
 
661
+ </details>
662
+ <details>
663
+ <summary>
664
+ ListBotReplicas
665
+ </summary>
666
+
667
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotReplicasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotReplicasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotReplicasCommandOutput/)
668
+
629
669
  </details>
630
670
  <details>
631
671
  <summary>
@@ -642,6 +682,14 @@ ListBots
642
682
 
643
683
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotsCommandOutput/)
644
684
 
685
+ </details>
686
+ <details>
687
+ <summary>
688
+ ListBotVersionReplicas
689
+ </summary>
690
+
691
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/lex-models-v2/command/ListBotVersionReplicasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotVersionReplicasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-lex-models-v2/Interface/ListBotVersionReplicasCommandOutput/)
692
+
645
693
  </details>
646
694
  <details>
647
695
  <summary>
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");
@@ -0,0 +1 @@
1
+ module.exports = require("../index.js");