@aws-sdk/client-qconnect 3.665.0 → 3.666.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.
- package/README.md +166 -0
- package/dist-cjs/index.js +1501 -102
- package/dist-es/QConnect.js +38 -0
- package/dist-es/commands/CreateAIAgentCommand.js +22 -0
- package/dist-es/commands/CreateAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/CreateAIPromptCommand.js +23 -0
- package/dist-es/commands/CreateAIPromptVersionCommand.js +23 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/DeleteAIAgentCommand.js +22 -0
- package/dist-es/commands/DeleteAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptVersionCommand.js +22 -0
- package/dist-es/commands/GetAIAgentCommand.js +22 -0
- package/dist-es/commands/GetAIPromptCommand.js +23 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/ListAIAgentVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIAgentsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptsCommand.js +22 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -1
- package/dist-es/commands/RemoveAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIPromptCommand.js +23 -0
- package/dist-es/commands/UpdateAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -1
- package/dist-es/commands/UpdateSessionDataCommand.js +23 -0
- package/dist-es/commands/index.js +19 -0
- package/dist-es/models/models_0.js +310 -46
- package/dist-es/pagination/ListAIAgentVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIAgentsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +692 -8
- package/dist-types/QConnect.d.ts +148 -1
- package/dist-types/QConnectClient.d.ts +36 -3
- package/dist-types/commands/CreateAIAgentCommand.d.ts +252 -0
- package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +180 -0
- package/dist-types/commands/CreateAIPromptCommand.d.ts +132 -0
- package/dist-types/commands/CreateAIPromptVersionCommand.d.ts +120 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +5 -0
- package/dist-types/commands/CreateContentAssociationCommand.d.ts +5 -6
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +108 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteAIAgentCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIAgentVersionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAIPromptCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIPromptVersionCommand.d.ts +89 -0
- package/dist-types/commands/GetAIAgentCommand.d.ts +168 -0
- package/dist-types/commands/GetAIPromptCommand.d.ts +108 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +5 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +56 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +20 -0
- package/dist-types/commands/GetSessionCommand.d.ts +5 -0
- package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +176 -0
- package/dist-types/commands/ListAIAgentsCommand.d.ts +172 -0
- package/dist-types/commands/ListAIPromptVersionsCommand.d.ts +111 -0
- package/dist-types/commands/ListAIPromptsCommand.d.ts +107 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +5 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +52 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +30 -1
- package/dist-types/commands/RemoveAssistantAIAgentCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAIAgentCommand.d.ts +244 -0
- package/dist-types/commands/UpdateAIPromptCommand.d.ts +121 -0
- package/dist-types/commands/UpdateAssistantAIAgentCommand.d.ts +112 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +56 -0
- package/dist-types/commands/UpdateSessionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateSessionDataCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +19 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +2454 -275
- package/dist-types/pagination/ListAIAgentVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIAgentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +171 -0
- package/dist-types/ts3.4/QConnect.d.ts +323 -0
- package/dist-types/ts3.4/QConnectClient.d.ts +116 -2
- package/dist-types/ts3.4/commands/CreateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAIAgentCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAIPromptCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIAgentVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIAgentsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIPromptVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIPromptsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RemoveAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSessionDataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +794 -103
- package/dist-types/ts3.4/pagination/ListAIAgentVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIAgentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +228 -0
- package/package.json +12 -12
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAIAgentVersionsCommandInput, ListAIAgentVersionsCommandOutput } from "../commands/ListAIAgentVersionsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAIAgentVersions: (config: QConnectPaginationConfiguration, input: ListAIAgentVersionsCommandInput, ...rest: any[]) => Paginator<ListAIAgentVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAIAgentsCommandInput, ListAIAgentsCommandOutput } from "../commands/ListAIAgentsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAIAgents: (config: QConnectPaginationConfiguration, input: ListAIAgentsCommandInput, ...rest: any[]) => Paginator<ListAIAgentsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAIPromptVersionsCommandInput, ListAIPromptVersionsCommandOutput } from "../commands/ListAIPromptVersionsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAIPromptVersions: (config: QConnectPaginationConfiguration, input: ListAIPromptVersionsCommandInput, ...rest: any[]) => Paginator<ListAIPromptVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAIPromptsCommandInput, ListAIPromptsCommandOutput } from "../commands/ListAIPromptsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAIPrompts: (config: QConnectPaginationConfiguration, input: ListAIPromptsCommandInput, ...rest: any[]) => Paginator<ListAIPromptsCommandOutput>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAIAgentVersionsPaginator";
|
|
3
|
+
export * from "./ListAIAgentsPaginator";
|
|
4
|
+
export * from "./ListAIPromptVersionsPaginator";
|
|
5
|
+
export * from "./ListAIPromptsPaginator";
|
|
2
6
|
export * from "./ListAssistantAssociationsPaginator";
|
|
3
7
|
export * from "./ListAssistantsPaginator";
|
|
4
8
|
export * from "./ListContentAssociationsPaginator";
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateAIAgentCommandInput, CreateAIAgentCommandOutput } from "../commands/CreateAIAgentCommand";
|
|
4
|
+
import { CreateAIAgentVersionCommandInput, CreateAIAgentVersionCommandOutput } from "../commands/CreateAIAgentVersionCommand";
|
|
5
|
+
import { CreateAIPromptCommandInput, CreateAIPromptCommandOutput } from "../commands/CreateAIPromptCommand";
|
|
6
|
+
import { CreateAIPromptVersionCommandInput, CreateAIPromptVersionCommandOutput } from "../commands/CreateAIPromptVersionCommand";
|
|
3
7
|
import { CreateAssistantAssociationCommandInput, CreateAssistantAssociationCommandOutput } from "../commands/CreateAssistantAssociationCommand";
|
|
4
8
|
import { CreateAssistantCommandInput, CreateAssistantCommandOutput } from "../commands/CreateAssistantCommand";
|
|
5
9
|
import { CreateContentAssociationCommandInput, CreateContentAssociationCommandOutput } from "../commands/CreateContentAssociationCommand";
|
|
@@ -7,6 +11,10 @@ import { CreateContentCommandInput, CreateContentCommandOutput } from "../comman
|
|
|
7
11
|
import { CreateKnowledgeBaseCommandInput, CreateKnowledgeBaseCommandOutput } from "../commands/CreateKnowledgeBaseCommand";
|
|
8
12
|
import { CreateQuickResponseCommandInput, CreateQuickResponseCommandOutput } from "../commands/CreateQuickResponseCommand";
|
|
9
13
|
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "../commands/CreateSessionCommand";
|
|
14
|
+
import { DeleteAIAgentCommandInput, DeleteAIAgentCommandOutput } from "../commands/DeleteAIAgentCommand";
|
|
15
|
+
import { DeleteAIAgentVersionCommandInput, DeleteAIAgentVersionCommandOutput } from "../commands/DeleteAIAgentVersionCommand";
|
|
16
|
+
import { DeleteAIPromptCommandInput, DeleteAIPromptCommandOutput } from "../commands/DeleteAIPromptCommand";
|
|
17
|
+
import { DeleteAIPromptVersionCommandInput, DeleteAIPromptVersionCommandOutput } from "../commands/DeleteAIPromptVersionCommand";
|
|
10
18
|
import { DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput } from "../commands/DeleteAssistantAssociationCommand";
|
|
11
19
|
import { DeleteAssistantCommandInput, DeleteAssistantCommandOutput } from "../commands/DeleteAssistantCommand";
|
|
12
20
|
import { DeleteContentAssociationCommandInput, DeleteContentAssociationCommandOutput } from "../commands/DeleteContentAssociationCommand";
|
|
@@ -14,6 +22,8 @@ import { DeleteContentCommandInput, DeleteContentCommandOutput } from "../comman
|
|
|
14
22
|
import { DeleteImportJobCommandInput, DeleteImportJobCommandOutput } from "../commands/DeleteImportJobCommand";
|
|
15
23
|
import { DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput } from "../commands/DeleteKnowledgeBaseCommand";
|
|
16
24
|
import { DeleteQuickResponseCommandInput, DeleteQuickResponseCommandOutput } from "../commands/DeleteQuickResponseCommand";
|
|
25
|
+
import { GetAIAgentCommandInput, GetAIAgentCommandOutput } from "../commands/GetAIAgentCommand";
|
|
26
|
+
import { GetAIPromptCommandInput, GetAIPromptCommandOutput } from "../commands/GetAIPromptCommand";
|
|
17
27
|
import { GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput } from "../commands/GetAssistantAssociationCommand";
|
|
18
28
|
import { GetAssistantCommandInput, GetAssistantCommandOutput } from "../commands/GetAssistantCommand";
|
|
19
29
|
import { GetContentAssociationCommandInput, GetContentAssociationCommandOutput } from "../commands/GetContentAssociationCommand";
|
|
@@ -24,6 +34,10 @@ import { GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput } from "../
|
|
|
24
34
|
import { GetQuickResponseCommandInput, GetQuickResponseCommandOutput } from "../commands/GetQuickResponseCommand";
|
|
25
35
|
import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "../commands/GetRecommendationsCommand";
|
|
26
36
|
import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
|
|
37
|
+
import { ListAIAgentsCommandInput, ListAIAgentsCommandOutput } from "../commands/ListAIAgentsCommand";
|
|
38
|
+
import { ListAIAgentVersionsCommandInput, ListAIAgentVersionsCommandOutput } from "../commands/ListAIAgentVersionsCommand";
|
|
39
|
+
import { ListAIPromptsCommandInput, ListAIPromptsCommandOutput } from "../commands/ListAIPromptsCommand";
|
|
40
|
+
import { ListAIPromptVersionsCommandInput, ListAIPromptVersionsCommandOutput } from "../commands/ListAIPromptVersionsCommand";
|
|
27
41
|
import { ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput } from "../commands/ListAssistantAssociationsCommand";
|
|
28
42
|
import { ListAssistantsCommandInput, ListAssistantsCommandOutput } from "../commands/ListAssistantsCommand";
|
|
29
43
|
import { ListContentAssociationsCommandInput, ListContentAssociationsCommandOutput } from "../commands/ListContentAssociationsCommand";
|
|
@@ -35,6 +49,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
35
49
|
import { NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput } from "../commands/NotifyRecommendationsReceivedCommand";
|
|
36
50
|
import { PutFeedbackCommandInput, PutFeedbackCommandOutput } from "../commands/PutFeedbackCommand";
|
|
37
51
|
import { QueryAssistantCommandInput, QueryAssistantCommandOutput } from "../commands/QueryAssistantCommand";
|
|
52
|
+
import { RemoveAssistantAIAgentCommandInput, RemoveAssistantAIAgentCommandOutput } from "../commands/RemoveAssistantAIAgentCommand";
|
|
38
53
|
import { RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput } from "../commands/RemoveKnowledgeBaseTemplateUriCommand";
|
|
39
54
|
import { SearchContentCommandInput, SearchContentCommandOutput } from "../commands/SearchContentCommand";
|
|
40
55
|
import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
|
|
@@ -43,10 +58,30 @@ import { StartContentUploadCommandInput, StartContentUploadCommandOutput } from
|
|
|
43
58
|
import { StartImportJobCommandInput, StartImportJobCommandOutput } from "../commands/StartImportJobCommand";
|
|
44
59
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
45
60
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
61
|
+
import { UpdateAIAgentCommandInput, UpdateAIAgentCommandOutput } from "../commands/UpdateAIAgentCommand";
|
|
62
|
+
import { UpdateAIPromptCommandInput, UpdateAIPromptCommandOutput } from "../commands/UpdateAIPromptCommand";
|
|
63
|
+
import { UpdateAssistantAIAgentCommandInput, UpdateAssistantAIAgentCommandOutput } from "../commands/UpdateAssistantAIAgentCommand";
|
|
46
64
|
import { UpdateContentCommandInput, UpdateContentCommandOutput } from "../commands/UpdateContentCommand";
|
|
47
65
|
import { UpdateKnowledgeBaseTemplateUriCommandInput, UpdateKnowledgeBaseTemplateUriCommandOutput } from "../commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
48
66
|
import { UpdateQuickResponseCommandInput, UpdateQuickResponseCommandOutput } from "../commands/UpdateQuickResponseCommand";
|
|
49
67
|
import { UpdateSessionCommandInput, UpdateSessionCommandOutput } from "../commands/UpdateSessionCommand";
|
|
68
|
+
import { UpdateSessionDataCommandInput, UpdateSessionDataCommandOutput } from "../commands/UpdateSessionDataCommand";
|
|
69
|
+
/**
|
|
70
|
+
* serializeAws_restJson1CreateAIAgentCommand
|
|
71
|
+
*/
|
|
72
|
+
export declare const se_CreateAIAgentCommand: (input: CreateAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
+
/**
|
|
74
|
+
* serializeAws_restJson1CreateAIAgentVersionCommand
|
|
75
|
+
*/
|
|
76
|
+
export declare const se_CreateAIAgentVersionCommand: (input: CreateAIAgentVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
/**
|
|
78
|
+
* serializeAws_restJson1CreateAIPromptCommand
|
|
79
|
+
*/
|
|
80
|
+
export declare const se_CreateAIPromptCommand: (input: CreateAIPromptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
+
/**
|
|
82
|
+
* serializeAws_restJson1CreateAIPromptVersionCommand
|
|
83
|
+
*/
|
|
84
|
+
export declare const se_CreateAIPromptVersionCommand: (input: CreateAIPromptVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
85
|
/**
|
|
51
86
|
* serializeAws_restJson1CreateAssistantCommand
|
|
52
87
|
*/
|
|
@@ -75,6 +110,22 @@ export declare const se_CreateQuickResponseCommand: (input: CreateQuickResponseC
|
|
|
75
110
|
* serializeAws_restJson1CreateSessionCommand
|
|
76
111
|
*/
|
|
77
112
|
export declare const se_CreateSessionCommand: (input: CreateSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
+
/**
|
|
114
|
+
* serializeAws_restJson1DeleteAIAgentCommand
|
|
115
|
+
*/
|
|
116
|
+
export declare const se_DeleteAIAgentCommand: (input: DeleteAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
/**
|
|
118
|
+
* serializeAws_restJson1DeleteAIAgentVersionCommand
|
|
119
|
+
*/
|
|
120
|
+
export declare const se_DeleteAIAgentVersionCommand: (input: DeleteAIAgentVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
+
/**
|
|
122
|
+
* serializeAws_restJson1DeleteAIPromptCommand
|
|
123
|
+
*/
|
|
124
|
+
export declare const se_DeleteAIPromptCommand: (input: DeleteAIPromptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
+
/**
|
|
126
|
+
* serializeAws_restJson1DeleteAIPromptVersionCommand
|
|
127
|
+
*/
|
|
128
|
+
export declare const se_DeleteAIPromptVersionCommand: (input: DeleteAIPromptVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
129
|
/**
|
|
79
130
|
* serializeAws_restJson1DeleteAssistantCommand
|
|
80
131
|
*/
|
|
@@ -103,6 +154,14 @@ export declare const se_DeleteKnowledgeBaseCommand: (input: DeleteKnowledgeBaseC
|
|
|
103
154
|
* serializeAws_restJson1DeleteQuickResponseCommand
|
|
104
155
|
*/
|
|
105
156
|
export declare const se_DeleteQuickResponseCommand: (input: DeleteQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
157
|
+
/**
|
|
158
|
+
* serializeAws_restJson1GetAIAgentCommand
|
|
159
|
+
*/
|
|
160
|
+
export declare const se_GetAIAgentCommand: (input: GetAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
|
+
/**
|
|
162
|
+
* serializeAws_restJson1GetAIPromptCommand
|
|
163
|
+
*/
|
|
164
|
+
export declare const se_GetAIPromptCommand: (input: GetAIPromptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
165
|
/**
|
|
107
166
|
* serializeAws_restJson1GetAssistantCommand
|
|
108
167
|
*/
|
|
@@ -143,6 +202,22 @@ export declare const se_GetRecommendationsCommand: (input: GetRecommendationsCom
|
|
|
143
202
|
* serializeAws_restJson1GetSessionCommand
|
|
144
203
|
*/
|
|
145
204
|
export declare const se_GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
205
|
+
/**
|
|
206
|
+
* serializeAws_restJson1ListAIAgentsCommand
|
|
207
|
+
*/
|
|
208
|
+
export declare const se_ListAIAgentsCommand: (input: ListAIAgentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
209
|
+
/**
|
|
210
|
+
* serializeAws_restJson1ListAIAgentVersionsCommand
|
|
211
|
+
*/
|
|
212
|
+
export declare const se_ListAIAgentVersionsCommand: (input: ListAIAgentVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
213
|
+
/**
|
|
214
|
+
* serializeAws_restJson1ListAIPromptsCommand
|
|
215
|
+
*/
|
|
216
|
+
export declare const se_ListAIPromptsCommand: (input: ListAIPromptsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
217
|
+
/**
|
|
218
|
+
* serializeAws_restJson1ListAIPromptVersionsCommand
|
|
219
|
+
*/
|
|
220
|
+
export declare const se_ListAIPromptVersionsCommand: (input: ListAIPromptVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
221
|
/**
|
|
147
222
|
* serializeAws_restJson1ListAssistantAssociationsCommand
|
|
148
223
|
*/
|
|
@@ -187,6 +262,10 @@ export declare const se_PutFeedbackCommand: (input: PutFeedbackCommandInput, con
|
|
|
187
262
|
* serializeAws_restJson1QueryAssistantCommand
|
|
188
263
|
*/
|
|
189
264
|
export declare const se_QueryAssistantCommand: (input: QueryAssistantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
265
|
+
/**
|
|
266
|
+
* serializeAws_restJson1RemoveAssistantAIAgentCommand
|
|
267
|
+
*/
|
|
268
|
+
export declare const se_RemoveAssistantAIAgentCommand: (input: RemoveAssistantAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
190
269
|
/**
|
|
191
270
|
* serializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand
|
|
192
271
|
*/
|
|
@@ -219,6 +298,18 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
219
298
|
* serializeAws_restJson1UntagResourceCommand
|
|
220
299
|
*/
|
|
221
300
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
301
|
+
/**
|
|
302
|
+
* serializeAws_restJson1UpdateAIAgentCommand
|
|
303
|
+
*/
|
|
304
|
+
export declare const se_UpdateAIAgentCommand: (input: UpdateAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
305
|
+
/**
|
|
306
|
+
* serializeAws_restJson1UpdateAIPromptCommand
|
|
307
|
+
*/
|
|
308
|
+
export declare const se_UpdateAIPromptCommand: (input: UpdateAIPromptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
309
|
+
/**
|
|
310
|
+
* serializeAws_restJson1UpdateAssistantAIAgentCommand
|
|
311
|
+
*/
|
|
312
|
+
export declare const se_UpdateAssistantAIAgentCommand: (input: UpdateAssistantAIAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
222
313
|
/**
|
|
223
314
|
* serializeAws_restJson1UpdateContentCommand
|
|
224
315
|
*/
|
|
@@ -235,6 +326,26 @@ export declare const se_UpdateQuickResponseCommand: (input: UpdateQuickResponseC
|
|
|
235
326
|
* serializeAws_restJson1UpdateSessionCommand
|
|
236
327
|
*/
|
|
237
328
|
export declare const se_UpdateSessionCommand: (input: UpdateSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
329
|
+
/**
|
|
330
|
+
* serializeAws_restJson1UpdateSessionDataCommand
|
|
331
|
+
*/
|
|
332
|
+
export declare const se_UpdateSessionDataCommand: (input: UpdateSessionDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
333
|
+
/**
|
|
334
|
+
* deserializeAws_restJson1CreateAIAgentCommand
|
|
335
|
+
*/
|
|
336
|
+
export declare const de_CreateAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIAgentCommandOutput>;
|
|
337
|
+
/**
|
|
338
|
+
* deserializeAws_restJson1CreateAIAgentVersionCommand
|
|
339
|
+
*/
|
|
340
|
+
export declare const de_CreateAIAgentVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIAgentVersionCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* deserializeAws_restJson1CreateAIPromptCommand
|
|
343
|
+
*/
|
|
344
|
+
export declare const de_CreateAIPromptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIPromptCommandOutput>;
|
|
345
|
+
/**
|
|
346
|
+
* deserializeAws_restJson1CreateAIPromptVersionCommand
|
|
347
|
+
*/
|
|
348
|
+
export declare const de_CreateAIPromptVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAIPromptVersionCommandOutput>;
|
|
238
349
|
/**
|
|
239
350
|
* deserializeAws_restJson1CreateAssistantCommand
|
|
240
351
|
*/
|
|
@@ -263,6 +374,22 @@ export declare const de_CreateQuickResponseCommand: (output: __HttpResponse, con
|
|
|
263
374
|
* deserializeAws_restJson1CreateSessionCommand
|
|
264
375
|
*/
|
|
265
376
|
export declare const de_CreateSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSessionCommandOutput>;
|
|
377
|
+
/**
|
|
378
|
+
* deserializeAws_restJson1DeleteAIAgentCommand
|
|
379
|
+
*/
|
|
380
|
+
export declare const de_DeleteAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIAgentCommandOutput>;
|
|
381
|
+
/**
|
|
382
|
+
* deserializeAws_restJson1DeleteAIAgentVersionCommand
|
|
383
|
+
*/
|
|
384
|
+
export declare const de_DeleteAIAgentVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIAgentVersionCommandOutput>;
|
|
385
|
+
/**
|
|
386
|
+
* deserializeAws_restJson1DeleteAIPromptCommand
|
|
387
|
+
*/
|
|
388
|
+
export declare const de_DeleteAIPromptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIPromptCommandOutput>;
|
|
389
|
+
/**
|
|
390
|
+
* deserializeAws_restJson1DeleteAIPromptVersionCommand
|
|
391
|
+
*/
|
|
392
|
+
export declare const de_DeleteAIPromptVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAIPromptVersionCommandOutput>;
|
|
266
393
|
/**
|
|
267
394
|
* deserializeAws_restJson1DeleteAssistantCommand
|
|
268
395
|
*/
|
|
@@ -291,6 +418,14 @@ export declare const de_DeleteKnowledgeBaseCommand: (output: __HttpResponse, con
|
|
|
291
418
|
* deserializeAws_restJson1DeleteQuickResponseCommand
|
|
292
419
|
*/
|
|
293
420
|
export declare const de_DeleteQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuickResponseCommandOutput>;
|
|
421
|
+
/**
|
|
422
|
+
* deserializeAws_restJson1GetAIAgentCommand
|
|
423
|
+
*/
|
|
424
|
+
export declare const de_GetAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAIAgentCommandOutput>;
|
|
425
|
+
/**
|
|
426
|
+
* deserializeAws_restJson1GetAIPromptCommand
|
|
427
|
+
*/
|
|
428
|
+
export declare const de_GetAIPromptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAIPromptCommandOutput>;
|
|
294
429
|
/**
|
|
295
430
|
* deserializeAws_restJson1GetAssistantCommand
|
|
296
431
|
*/
|
|
@@ -331,6 +466,22 @@ export declare const de_GetRecommendationsCommand: (output: __HttpResponse, cont
|
|
|
331
466
|
* deserializeAws_restJson1GetSessionCommand
|
|
332
467
|
*/
|
|
333
468
|
export declare const de_GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
|
|
469
|
+
/**
|
|
470
|
+
* deserializeAws_restJson1ListAIAgentsCommand
|
|
471
|
+
*/
|
|
472
|
+
export declare const de_ListAIAgentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIAgentsCommandOutput>;
|
|
473
|
+
/**
|
|
474
|
+
* deserializeAws_restJson1ListAIAgentVersionsCommand
|
|
475
|
+
*/
|
|
476
|
+
export declare const de_ListAIAgentVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIAgentVersionsCommandOutput>;
|
|
477
|
+
/**
|
|
478
|
+
* deserializeAws_restJson1ListAIPromptsCommand
|
|
479
|
+
*/
|
|
480
|
+
export declare const de_ListAIPromptsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIPromptsCommandOutput>;
|
|
481
|
+
/**
|
|
482
|
+
* deserializeAws_restJson1ListAIPromptVersionsCommand
|
|
483
|
+
*/
|
|
484
|
+
export declare const de_ListAIPromptVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAIPromptVersionsCommandOutput>;
|
|
334
485
|
/**
|
|
335
486
|
* deserializeAws_restJson1ListAssistantAssociationsCommand
|
|
336
487
|
*/
|
|
@@ -375,6 +526,10 @@ export declare const de_PutFeedbackCommand: (output: __HttpResponse, context: __
|
|
|
375
526
|
* deserializeAws_restJson1QueryAssistantCommand
|
|
376
527
|
*/
|
|
377
528
|
export declare const de_QueryAssistantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryAssistantCommandOutput>;
|
|
529
|
+
/**
|
|
530
|
+
* deserializeAws_restJson1RemoveAssistantAIAgentCommand
|
|
531
|
+
*/
|
|
532
|
+
export declare const de_RemoveAssistantAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveAssistantAIAgentCommandOutput>;
|
|
378
533
|
/**
|
|
379
534
|
* deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand
|
|
380
535
|
*/
|
|
@@ -407,6 +562,18 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
407
562
|
* deserializeAws_restJson1UntagResourceCommand
|
|
408
563
|
*/
|
|
409
564
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
565
|
+
/**
|
|
566
|
+
* deserializeAws_restJson1UpdateAIAgentCommand
|
|
567
|
+
*/
|
|
568
|
+
export declare const de_UpdateAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAIAgentCommandOutput>;
|
|
569
|
+
/**
|
|
570
|
+
* deserializeAws_restJson1UpdateAIPromptCommand
|
|
571
|
+
*/
|
|
572
|
+
export declare const de_UpdateAIPromptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAIPromptCommandOutput>;
|
|
573
|
+
/**
|
|
574
|
+
* deserializeAws_restJson1UpdateAssistantAIAgentCommand
|
|
575
|
+
*/
|
|
576
|
+
export declare const de_UpdateAssistantAIAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAssistantAIAgentCommandOutput>;
|
|
410
577
|
/**
|
|
411
578
|
* deserializeAws_restJson1UpdateContentCommand
|
|
412
579
|
*/
|
|
@@ -423,3 +590,7 @@ export declare const de_UpdateQuickResponseCommand: (output: __HttpResponse, con
|
|
|
423
590
|
* deserializeAws_restJson1UpdateSessionCommand
|
|
424
591
|
*/
|
|
425
592
|
export declare const de_UpdateSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSessionCommandOutput>;
|
|
593
|
+
/**
|
|
594
|
+
* deserializeAws_restJson1UpdateSessionDataCommand
|
|
595
|
+
*/
|
|
596
|
+
export declare const de_UpdateSessionDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSessionDataCommandOutput>;
|