@aws-sdk/client-wisdom 3.303.0 → 3.309.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 (67) hide show
  1. package/dist-cjs/commands/CreateAssistantAssociationCommand.js +2 -2
  2. package/dist-cjs/commands/CreateAssistantCommand.js +2 -2
  3. package/dist-cjs/commands/CreateContentCommand.js +2 -2
  4. package/dist-cjs/commands/CreateKnowledgeBaseCommand.js +2 -2
  5. package/dist-cjs/commands/CreateSessionCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteAssistantAssociationCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteAssistantCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteContentCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteKnowledgeBaseCommand.js +2 -2
  10. package/dist-cjs/commands/GetAssistantAssociationCommand.js +2 -2
  11. package/dist-cjs/commands/GetAssistantCommand.js +2 -2
  12. package/dist-cjs/commands/GetContentCommand.js +2 -2
  13. package/dist-cjs/commands/GetContentSummaryCommand.js +2 -2
  14. package/dist-cjs/commands/GetKnowledgeBaseCommand.js +2 -2
  15. package/dist-cjs/commands/GetRecommendationsCommand.js +2 -2
  16. package/dist-cjs/commands/GetSessionCommand.js +2 -2
  17. package/dist-cjs/commands/ListAssistantAssociationsCommand.js +2 -2
  18. package/dist-cjs/commands/ListAssistantsCommand.js +2 -2
  19. package/dist-cjs/commands/ListContentsCommand.js +2 -2
  20. package/dist-cjs/commands/ListKnowledgeBasesCommand.js +2 -2
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-cjs/commands/NotifyRecommendationsReceivedCommand.js +2 -2
  23. package/dist-cjs/commands/QueryAssistantCommand.js +2 -2
  24. package/dist-cjs/commands/RemoveKnowledgeBaseTemplateUriCommand.js +2 -2
  25. package/dist-cjs/commands/SearchContentCommand.js +2 -2
  26. package/dist-cjs/commands/SearchSessionsCommand.js +2 -2
  27. package/dist-cjs/commands/StartContentUploadCommand.js +2 -2
  28. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  29. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  30. package/dist-cjs/commands/UpdateContentCommand.js +2 -2
  31. package/dist-cjs/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -2
  32. package/dist-cjs/protocols/Aws_restJson1.js +431 -447
  33. package/dist-es/commands/CreateAssistantAssociationCommand.js +3 -3
  34. package/dist-es/commands/CreateAssistantCommand.js +3 -3
  35. package/dist-es/commands/CreateContentCommand.js +3 -3
  36. package/dist-es/commands/CreateKnowledgeBaseCommand.js +3 -3
  37. package/dist-es/commands/CreateSessionCommand.js +3 -3
  38. package/dist-es/commands/DeleteAssistantAssociationCommand.js +3 -3
  39. package/dist-es/commands/DeleteAssistantCommand.js +3 -3
  40. package/dist-es/commands/DeleteContentCommand.js +3 -3
  41. package/dist-es/commands/DeleteKnowledgeBaseCommand.js +3 -3
  42. package/dist-es/commands/GetAssistantAssociationCommand.js +3 -3
  43. package/dist-es/commands/GetAssistantCommand.js +3 -3
  44. package/dist-es/commands/GetContentCommand.js +3 -3
  45. package/dist-es/commands/GetContentSummaryCommand.js +3 -3
  46. package/dist-es/commands/GetKnowledgeBaseCommand.js +3 -3
  47. package/dist-es/commands/GetRecommendationsCommand.js +3 -3
  48. package/dist-es/commands/GetSessionCommand.js +3 -3
  49. package/dist-es/commands/ListAssistantAssociationsCommand.js +3 -3
  50. package/dist-es/commands/ListAssistantsCommand.js +3 -3
  51. package/dist-es/commands/ListContentsCommand.js +3 -3
  52. package/dist-es/commands/ListKnowledgeBasesCommand.js +3 -3
  53. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  54. package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +3 -3
  55. package/dist-es/commands/QueryAssistantCommand.js +3 -3
  56. package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +3 -3
  57. package/dist-es/commands/SearchContentCommand.js +3 -3
  58. package/dist-es/commands/SearchSessionsCommand.js +3 -3
  59. package/dist-es/commands/StartContentUploadCommand.js +3 -3
  60. package/dist-es/commands/TagResourceCommand.js +3 -3
  61. package/dist-es/commands/UntagResourceCommand.js +3 -3
  62. package/dist-es/commands/UpdateContentCommand.js +3 -3
  63. package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +3 -3
  64. package/dist-es/protocols/Aws_restJson1.js +367 -383
  65. package/dist-types/protocols/Aws_restJson1.d.ts +248 -62
  66. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +62 -62
  67. package/package.json +29 -29
@@ -36,10 +36,10 @@ class CreateAssistantAssociationCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateAssistantAssociationCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateAssistantAssociationCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateAssistantAssociationCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateAssistantAssociationCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
@@ -36,10 +36,10 @@ class CreateAssistantCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateAssistantCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateAssistantCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateAssistantCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateAssistantCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateAssistantCommand = CreateAssistantCommand;
@@ -37,10 +37,10 @@ class CreateContentCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateContentCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_CreateContentCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateContentCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_CreateContentCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.CreateContentCommand = CreateContentCommand;
@@ -36,10 +36,10 @@ class CreateKnowledgeBaseCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateKnowledgeBaseCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateKnowledgeBaseCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateKnowledgeBaseCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateKnowledgeBaseCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateKnowledgeBaseCommand = CreateKnowledgeBaseCommand;
@@ -36,10 +36,10 @@ class CreateSessionCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1CreateSessionCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_CreateSessionCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1CreateSessionCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_CreateSessionCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.CreateSessionCommand = CreateSessionCommand;
@@ -36,10 +36,10 @@ class DeleteAssistantAssociationCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1DeleteAssistantAssociationCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteAssistantAssociationCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteAssistantAssociationCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteAssistantAssociationCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteAssistantAssociationCommand = DeleteAssistantAssociationCommand;
@@ -36,10 +36,10 @@ class DeleteAssistantCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1DeleteAssistantCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteAssistantCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteAssistantCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteAssistantCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteAssistantCommand = DeleteAssistantCommand;
@@ -36,10 +36,10 @@ class DeleteContentCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1DeleteContentCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteContentCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteContentCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteContentCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteContentCommand = DeleteContentCommand;
@@ -36,10 +36,10 @@ class DeleteKnowledgeBaseCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1DeleteKnowledgeBaseCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_DeleteKnowledgeBaseCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1DeleteKnowledgeBaseCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_DeleteKnowledgeBaseCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
@@ -36,10 +36,10 @@ class GetAssistantAssociationCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1GetAssistantAssociationCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetAssistantAssociationCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetAssistantAssociationCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetAssistantAssociationCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
@@ -36,10 +36,10 @@ class GetAssistantCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1GetAssistantCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetAssistantCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetAssistantCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetAssistantCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetAssistantCommand = GetAssistantCommand;
@@ -37,10 +37,10 @@ class GetContentCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1GetContentCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_GetContentCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetContentCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_GetContentCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.GetContentCommand = GetContentCommand;
@@ -36,10 +36,10 @@ class GetContentSummaryCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1GetContentSummaryCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetContentSummaryCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetContentSummaryCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetContentSummaryCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetContentSummaryCommand = GetContentSummaryCommand;
@@ -36,10 +36,10 @@ class GetKnowledgeBaseCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1GetKnowledgeBaseCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetKnowledgeBaseCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetKnowledgeBaseCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetKnowledgeBaseCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
@@ -37,10 +37,10 @@ class GetRecommendationsCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1GetRecommendationsCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_GetRecommendationsCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetRecommendationsCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_GetRecommendationsCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.GetRecommendationsCommand = GetRecommendationsCommand;
@@ -36,10 +36,10 @@ class GetSessionCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1GetSessionCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_GetSessionCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1GetSessionCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_GetSessionCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.GetSessionCommand = GetSessionCommand;
@@ -36,10 +36,10 @@ class ListAssistantAssociationsCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1ListAssistantAssociationsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListAssistantAssociationsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListAssistantAssociationsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListAssistantAssociationsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListAssistantAssociationsCommand = ListAssistantAssociationsCommand;
@@ -36,10 +36,10 @@ class ListAssistantsCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1ListAssistantsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListAssistantsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListAssistantsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListAssistantsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListAssistantsCommand = ListAssistantsCommand;
@@ -36,10 +36,10 @@ class ListContentsCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1ListContentsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListContentsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListContentsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListContentsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListContentsCommand = ListContentsCommand;
@@ -36,10 +36,10 @@ class ListKnowledgeBasesCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1ListKnowledgeBasesCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListKnowledgeBasesCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListKnowledgeBasesCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListKnowledgeBasesCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
@@ -36,10 +36,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1ListTagsForResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_ListTagsForResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1ListTagsForResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_ListTagsForResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -36,10 +36,10 @@ class NotifyRecommendationsReceivedCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1NotifyRecommendationsReceivedCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_NotifyRecommendationsReceivedCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1NotifyRecommendationsReceivedCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_NotifyRecommendationsReceivedCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
@@ -37,10 +37,10 @@ class QueryAssistantCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1QueryAssistantCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_QueryAssistantCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1QueryAssistantCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_QueryAssistantCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.QueryAssistantCommand = QueryAssistantCommand;
@@ -36,10 +36,10 @@ class RemoveKnowledgeBaseTemplateUriCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_RemoveKnowledgeBaseTemplateUriCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_RemoveKnowledgeBaseTemplateUriCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
@@ -36,10 +36,10 @@ class SearchContentCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1SearchContentCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_SearchContentCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1SearchContentCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_SearchContentCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.SearchContentCommand = SearchContentCommand;
@@ -36,10 +36,10 @@ class SearchSessionsCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1SearchSessionsCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_SearchSessionsCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1SearchSessionsCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_SearchSessionsCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.SearchSessionsCommand = SearchSessionsCommand;
@@ -37,10 +37,10 @@ class StartContentUploadCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1StartContentUploadCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_StartContentUploadCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1StartContentUploadCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_StartContentUploadCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.StartContentUploadCommand = StartContentUploadCommand;
@@ -36,10 +36,10 @@ class TagResourceCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1TagResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_TagResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1TagResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_TagResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.TagResourceCommand = TagResourceCommand;
@@ -36,10 +36,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1UntagResourceCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UntagResourceCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UntagResourceCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UntagResourceCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -37,10 +37,10 @@ class UpdateContentCommand extends smithy_client_1.Command {
37
37
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
38
  }
39
39
  serialize(input, context) {
40
- return (0, Aws_restJson1_1.serializeAws_restJson1UpdateContentCommand)(input, context);
40
+ return (0, Aws_restJson1_1.se_UpdateContentCommand)(input, context);
41
41
  }
42
42
  deserialize(output, context) {
43
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateContentCommand)(output, context);
43
+ return (0, Aws_restJson1_1.de_UpdateContentCommand)(output, context);
44
44
  }
45
45
  }
46
46
  exports.UpdateContentCommand = UpdateContentCommand;
@@ -36,10 +36,10 @@ class UpdateKnowledgeBaseTemplateUriCommand extends smithy_client_1.Command {
36
36
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
37
37
  }
38
38
  serialize(input, context) {
39
- return (0, Aws_restJson1_1.serializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand)(input, context);
39
+ return (0, Aws_restJson1_1.se_UpdateKnowledgeBaseTemplateUriCommand)(input, context);
40
40
  }
41
41
  deserialize(output, context) {
42
- return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand)(output, context);
42
+ return (0, Aws_restJson1_1.de_UpdateKnowledgeBaseTemplateUriCommand)(output, context);
43
43
  }
44
44
  }
45
45
  exports.UpdateKnowledgeBaseTemplateUriCommand = UpdateKnowledgeBaseTemplateUriCommand;