@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
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateAssistantAssociationCommand, serializeAws_restJson1CreateAssistantAssociationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateAssistantAssociationCommand, se_CreateAssistantAssociationCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateAssistantAssociationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateAssistantAssociationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateAssistantAssociationCommand(input, context);
36
+ return se_CreateAssistantAssociationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateAssistantAssociationCommand(output, context);
39
+ return de_CreateAssistantAssociationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateAssistantCommand, serializeAws_restJson1CreateAssistantCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateAssistantCommand, se_CreateAssistantCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateAssistantCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateAssistantCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateAssistantCommand(input, context);
36
+ return se_CreateAssistantCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateAssistantCommand(output, context);
39
+ return de_CreateAssistantCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { CreateContentResponseFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1CreateContentCommand, serializeAws_restJson1CreateContentCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_CreateContentCommand, se_CreateContentCommand } from "../protocols/Aws_restJson1";
6
6
  export class CreateContentCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class CreateContentCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1CreateContentCommand(input, context);
37
+ return se_CreateContentCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1CreateContentCommand(output, context);
40
+ return de_CreateContentCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateKnowledgeBaseCommand, serializeAws_restJson1CreateKnowledgeBaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateKnowledgeBaseCommand, se_CreateKnowledgeBaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateKnowledgeBaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateKnowledgeBaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateKnowledgeBaseCommand(input, context);
36
+ return se_CreateKnowledgeBaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateKnowledgeBaseCommand(output, context);
39
+ return de_CreateKnowledgeBaseCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1CreateSessionCommand, serializeAws_restJson1CreateSessionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_CreateSessionCommand, se_CreateSessionCommand } from "../protocols/Aws_restJson1";
5
5
  export class CreateSessionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class CreateSessionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1CreateSessionCommand(input, context);
36
+ return se_CreateSessionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1CreateSessionCommand(output, context);
39
+ return de_CreateSessionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteAssistantAssociationCommand, serializeAws_restJson1DeleteAssistantAssociationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteAssistantAssociationCommand, se_DeleteAssistantAssociationCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteAssistantAssociationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteAssistantAssociationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteAssistantAssociationCommand(input, context);
36
+ return se_DeleteAssistantAssociationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteAssistantAssociationCommand(output, context);
39
+ return de_DeleteAssistantAssociationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteAssistantCommand, serializeAws_restJson1DeleteAssistantCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteAssistantCommand, se_DeleteAssistantCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteAssistantCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteAssistantCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteAssistantCommand(input, context);
36
+ return se_DeleteAssistantCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteAssistantCommand(output, context);
39
+ return de_DeleteAssistantCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteContentCommand, serializeAws_restJson1DeleteContentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteContentCommand, se_DeleteContentCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteContentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteContentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteContentCommand(input, context);
36
+ return se_DeleteContentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteContentCommand(output, context);
39
+ return de_DeleteContentCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteKnowledgeBaseCommand, serializeAws_restJson1DeleteKnowledgeBaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteKnowledgeBaseCommand, se_DeleteKnowledgeBaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteKnowledgeBaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteKnowledgeBaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteKnowledgeBaseCommand(input, context);
36
+ return se_DeleteKnowledgeBaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteKnowledgeBaseCommand(output, context);
39
+ return de_DeleteKnowledgeBaseCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetAssistantAssociationCommand, serializeAws_restJson1GetAssistantAssociationCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetAssistantAssociationCommand, se_GetAssistantAssociationCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetAssistantAssociationCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetAssistantAssociationCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetAssistantAssociationCommand(input, context);
36
+ return se_GetAssistantAssociationCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetAssistantAssociationCommand(output, context);
39
+ return de_GetAssistantAssociationCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetAssistantCommand, serializeAws_restJson1GetAssistantCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetAssistantCommand, se_GetAssistantCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetAssistantCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetAssistantCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetAssistantCommand(input, context);
36
+ return se_GetAssistantCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetAssistantCommand(output, context);
39
+ return de_GetAssistantCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetContentResponseFilterSensitiveLog } from "../models/models_0";
5
- import { deserializeAws_restJson1GetContentCommand, serializeAws_restJson1GetContentCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_GetContentCommand, se_GetContentCommand } from "../protocols/Aws_restJson1";
6
6
  export class GetContentCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class GetContentCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1GetContentCommand(input, context);
37
+ return se_GetContentCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1GetContentCommand(output, context);
40
+ return de_GetContentCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetContentSummaryCommand, serializeAws_restJson1GetContentSummaryCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetContentSummaryCommand, se_GetContentSummaryCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetContentSummaryCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetContentSummaryCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetContentSummaryCommand(input, context);
36
+ return se_GetContentSummaryCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetContentSummaryCommand(output, context);
39
+ return de_GetContentSummaryCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetKnowledgeBaseCommand, serializeAws_restJson1GetKnowledgeBaseCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetKnowledgeBaseCommand, se_GetKnowledgeBaseCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetKnowledgeBaseCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetKnowledgeBaseCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetKnowledgeBaseCommand(input, context);
36
+ return se_GetKnowledgeBaseCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetKnowledgeBaseCommand(output, context);
39
+ return de_GetKnowledgeBaseCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetRecommendationsResponseFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1GetRecommendationsCommand, serializeAws_restJson1GetRecommendationsCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_GetRecommendationsCommand, se_GetRecommendationsCommand } from "../protocols/Aws_restJson1";
6
6
  export class GetRecommendationsCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class GetRecommendationsCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1GetRecommendationsCommand(input, context);
37
+ return se_GetRecommendationsCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1GetRecommendationsCommand(output, context);
40
+ return de_GetRecommendationsCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetSessionCommand, serializeAws_restJson1GetSessionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetSessionCommand, se_GetSessionCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetSessionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetSessionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetSessionCommand(input, context);
36
+ return se_GetSessionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetSessionCommand(output, context);
39
+ return de_GetSessionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListAssistantAssociationsCommand, serializeAws_restJson1ListAssistantAssociationsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListAssistantAssociationsCommand, se_ListAssistantAssociationsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListAssistantAssociationsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListAssistantAssociationsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListAssistantAssociationsCommand(input, context);
36
+ return se_ListAssistantAssociationsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListAssistantAssociationsCommand(output, context);
39
+ return de_ListAssistantAssociationsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListAssistantsCommand, serializeAws_restJson1ListAssistantsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListAssistantsCommand, se_ListAssistantsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListAssistantsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListAssistantsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListAssistantsCommand(input, context);
36
+ return se_ListAssistantsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListAssistantsCommand(output, context);
39
+ return de_ListAssistantsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListContentsCommand, serializeAws_restJson1ListContentsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListContentsCommand, se_ListContentsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListContentsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListContentsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListContentsCommand(input, context);
36
+ return se_ListContentsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListContentsCommand(output, context);
39
+ return de_ListContentsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListKnowledgeBasesCommand, serializeAws_restJson1ListKnowledgeBasesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListKnowledgeBasesCommand, se_ListKnowledgeBasesCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListKnowledgeBasesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListKnowledgeBasesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListKnowledgeBasesCommand(input, context);
36
+ return se_ListKnowledgeBasesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListKnowledgeBasesCommand(output, context);
39
+ return de_ListKnowledgeBasesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTagsForResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTagsForResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
39
+ return de_ListTagsForResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1NotifyRecommendationsReceivedCommand, serializeAws_restJson1NotifyRecommendationsReceivedCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_NotifyRecommendationsReceivedCommand, se_NotifyRecommendationsReceivedCommand, } from "../protocols/Aws_restJson1";
5
5
  export class NotifyRecommendationsReceivedCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class NotifyRecommendationsReceivedCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1NotifyRecommendationsReceivedCommand(input, context);
36
+ return se_NotifyRecommendationsReceivedCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1NotifyRecommendationsReceivedCommand(output, context);
39
+ return de_NotifyRecommendationsReceivedCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { QueryAssistantRequestFilterSensitiveLog, QueryAssistantResponseFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1QueryAssistantCommand, serializeAws_restJson1QueryAssistantCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_QueryAssistantCommand, se_QueryAssistantCommand } from "../protocols/Aws_restJson1";
6
6
  export class QueryAssistantCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class QueryAssistantCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1QueryAssistantCommand(input, context);
37
+ return se_QueryAssistantCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1QueryAssistantCommand(output, context);
40
+ return de_QueryAssistantCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand, serializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_RemoveKnowledgeBaseTemplateUriCommand, se_RemoveKnowledgeBaseTemplateUriCommand, } from "../protocols/Aws_restJson1";
5
5
  export class RemoveKnowledgeBaseTemplateUriCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class RemoveKnowledgeBaseTemplateUriCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand(input, context);
36
+ return se_RemoveKnowledgeBaseTemplateUriCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand(output, context);
39
+ return de_RemoveKnowledgeBaseTemplateUriCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1SearchContentCommand, serializeAws_restJson1SearchContentCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_SearchContentCommand, se_SearchContentCommand } from "../protocols/Aws_restJson1";
5
5
  export class SearchContentCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class SearchContentCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1SearchContentCommand(input, context);
36
+ return se_SearchContentCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1SearchContentCommand(output, context);
39
+ return de_SearchContentCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1SearchSessionsCommand, serializeAws_restJson1SearchSessionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_SearchSessionsCommand, se_SearchSessionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class SearchSessionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class SearchSessionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1SearchSessionsCommand(input, context);
36
+ return se_SearchSessionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1SearchSessionsCommand(output, context);
39
+ return de_SearchSessionsCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { StartContentUploadResponseFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1StartContentUploadCommand, serializeAws_restJson1StartContentUploadCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_StartContentUploadCommand, se_StartContentUploadCommand } from "../protocols/Aws_restJson1";
6
6
  export class StartContentUploadCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class StartContentUploadCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1StartContentUploadCommand(input, context);
37
+ return se_StartContentUploadCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1StartContentUploadCommand(output, context);
40
+ return de_StartContentUploadCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class TagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class TagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1TagResourceCommand(input, context);
36
+ return se_TagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1TagResourceCommand(output, context);
39
+ return de_TagResourceCommand(output, context);
40
40
  }
41
41
  }