@aws-sdk/client-wisdom 3.450.0 → 3.454.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 +80 -0
- package/dist-cjs/Wisdom.js +20 -0
- package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
- package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
- package/dist-cjs/commands/GetImportJobCommand.js +52 -0
- package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
- package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/StartImportJobCommand.js +52 -0
- package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +200 -1
- package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +816 -18
- package/dist-es/Wisdom.js +20 -0
- package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
- package/dist-es/commands/DeleteImportJobCommand.js +47 -0
- package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
- package/dist-es/commands/GetImportJobCommand.js +48 -0
- package/dist-es/commands/GetQuickResponseCommand.js +48 -0
- package/dist-es/commands/ListImportJobsCommand.js +47 -0
- package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
- package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
- package/dist-es/commands/StartImportJobCommand.js +48 -0
- package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +179 -0
- package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +794 -16
- package/dist-types/Wisdom.d.ts +70 -0
- package/dist-types/WisdomClient.d.ts +12 -2
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
- package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
- package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
- package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
- package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
- package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +5 -0
- package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
- package/dist-types/commands/StartContentUploadCommand.d.ts +1 -0
- package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
- package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1631 -167
- package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Wisdom.d.ts +170 -0
- package/dist-types/ts3.4/WisdomClient.d.ts +62 -2
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +397 -0
- package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +35 -35
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
CreateKnowledgeBaseCommandInput,
|
|
62
62
|
CreateKnowledgeBaseCommandOutput,
|
|
63
63
|
} from "./commands/CreateKnowledgeBaseCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateQuickResponseCommandInput,
|
|
66
|
+
CreateQuickResponseCommandOutput,
|
|
67
|
+
} from "./commands/CreateQuickResponseCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateSessionCommandInput,
|
|
66
70
|
CreateSessionCommandOutput,
|
|
@@ -77,10 +81,18 @@ import {
|
|
|
77
81
|
DeleteContentCommandInput,
|
|
78
82
|
DeleteContentCommandOutput,
|
|
79
83
|
} from "./commands/DeleteContentCommand";
|
|
84
|
+
import {
|
|
85
|
+
DeleteImportJobCommandInput,
|
|
86
|
+
DeleteImportJobCommandOutput,
|
|
87
|
+
} from "./commands/DeleteImportJobCommand";
|
|
80
88
|
import {
|
|
81
89
|
DeleteKnowledgeBaseCommandInput,
|
|
82
90
|
DeleteKnowledgeBaseCommandOutput,
|
|
83
91
|
} from "./commands/DeleteKnowledgeBaseCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteQuickResponseCommandInput,
|
|
94
|
+
DeleteQuickResponseCommandOutput,
|
|
95
|
+
} from "./commands/DeleteQuickResponseCommand";
|
|
84
96
|
import {
|
|
85
97
|
GetAssistantAssociationCommandInput,
|
|
86
98
|
GetAssistantAssociationCommandOutput,
|
|
@@ -97,10 +109,18 @@ import {
|
|
|
97
109
|
GetContentSummaryCommandInput,
|
|
98
110
|
GetContentSummaryCommandOutput,
|
|
99
111
|
} from "./commands/GetContentSummaryCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetImportJobCommandInput,
|
|
114
|
+
GetImportJobCommandOutput,
|
|
115
|
+
} from "./commands/GetImportJobCommand";
|
|
100
116
|
import {
|
|
101
117
|
GetKnowledgeBaseCommandInput,
|
|
102
118
|
GetKnowledgeBaseCommandOutput,
|
|
103
119
|
} from "./commands/GetKnowledgeBaseCommand";
|
|
120
|
+
import {
|
|
121
|
+
GetQuickResponseCommandInput,
|
|
122
|
+
GetQuickResponseCommandOutput,
|
|
123
|
+
} from "./commands/GetQuickResponseCommand";
|
|
104
124
|
import {
|
|
105
125
|
GetRecommendationsCommandInput,
|
|
106
126
|
GetRecommendationsCommandOutput,
|
|
@@ -121,10 +141,18 @@ import {
|
|
|
121
141
|
ListContentsCommandInput,
|
|
122
142
|
ListContentsCommandOutput,
|
|
123
143
|
} from "./commands/ListContentsCommand";
|
|
144
|
+
import {
|
|
145
|
+
ListImportJobsCommandInput,
|
|
146
|
+
ListImportJobsCommandOutput,
|
|
147
|
+
} from "./commands/ListImportJobsCommand";
|
|
124
148
|
import {
|
|
125
149
|
ListKnowledgeBasesCommandInput,
|
|
126
150
|
ListKnowledgeBasesCommandOutput,
|
|
127
151
|
} from "./commands/ListKnowledgeBasesCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListQuickResponsesCommandInput,
|
|
154
|
+
ListQuickResponsesCommandOutput,
|
|
155
|
+
} from "./commands/ListQuickResponsesCommand";
|
|
128
156
|
import {
|
|
129
157
|
ListTagsForResourceCommandInput,
|
|
130
158
|
ListTagsForResourceCommandOutput,
|
|
@@ -145,6 +173,10 @@ import {
|
|
|
145
173
|
SearchContentCommandInput,
|
|
146
174
|
SearchContentCommandOutput,
|
|
147
175
|
} from "./commands/SearchContentCommand";
|
|
176
|
+
import {
|
|
177
|
+
SearchQuickResponsesCommandInput,
|
|
178
|
+
SearchQuickResponsesCommandOutput,
|
|
179
|
+
} from "./commands/SearchQuickResponsesCommand";
|
|
148
180
|
import {
|
|
149
181
|
SearchSessionsCommandInput,
|
|
150
182
|
SearchSessionsCommandOutput,
|
|
@@ -153,6 +185,10 @@ import {
|
|
|
153
185
|
StartContentUploadCommandInput,
|
|
154
186
|
StartContentUploadCommandOutput,
|
|
155
187
|
} from "./commands/StartContentUploadCommand";
|
|
188
|
+
import {
|
|
189
|
+
StartImportJobCommandInput,
|
|
190
|
+
StartImportJobCommandOutput,
|
|
191
|
+
} from "./commands/StartImportJobCommand";
|
|
156
192
|
import {
|
|
157
193
|
TagResourceCommandInput,
|
|
158
194
|
TagResourceCommandOutput,
|
|
@@ -169,6 +205,10 @@ import {
|
|
|
169
205
|
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
170
206
|
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
171
207
|
} from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
208
|
+
import {
|
|
209
|
+
UpdateQuickResponseCommandInput,
|
|
210
|
+
UpdateQuickResponseCommandOutput,
|
|
211
|
+
} from "./commands/UpdateQuickResponseCommand";
|
|
172
212
|
import {
|
|
173
213
|
ClientInputEndpointParameters,
|
|
174
214
|
ClientResolvedEndpointParameters,
|
|
@@ -181,65 +221,85 @@ export type ServiceInputTypes =
|
|
|
181
221
|
| CreateAssistantCommandInput
|
|
182
222
|
| CreateContentCommandInput
|
|
183
223
|
| CreateKnowledgeBaseCommandInput
|
|
224
|
+
| CreateQuickResponseCommandInput
|
|
184
225
|
| CreateSessionCommandInput
|
|
185
226
|
| DeleteAssistantAssociationCommandInput
|
|
186
227
|
| DeleteAssistantCommandInput
|
|
187
228
|
| DeleteContentCommandInput
|
|
229
|
+
| DeleteImportJobCommandInput
|
|
188
230
|
| DeleteKnowledgeBaseCommandInput
|
|
231
|
+
| DeleteQuickResponseCommandInput
|
|
189
232
|
| GetAssistantAssociationCommandInput
|
|
190
233
|
| GetAssistantCommandInput
|
|
191
234
|
| GetContentCommandInput
|
|
192
235
|
| GetContentSummaryCommandInput
|
|
236
|
+
| GetImportJobCommandInput
|
|
193
237
|
| GetKnowledgeBaseCommandInput
|
|
238
|
+
| GetQuickResponseCommandInput
|
|
194
239
|
| GetRecommendationsCommandInput
|
|
195
240
|
| GetSessionCommandInput
|
|
196
241
|
| ListAssistantAssociationsCommandInput
|
|
197
242
|
| ListAssistantsCommandInput
|
|
198
243
|
| ListContentsCommandInput
|
|
244
|
+
| ListImportJobsCommandInput
|
|
199
245
|
| ListKnowledgeBasesCommandInput
|
|
246
|
+
| ListQuickResponsesCommandInput
|
|
200
247
|
| ListTagsForResourceCommandInput
|
|
201
248
|
| NotifyRecommendationsReceivedCommandInput
|
|
202
249
|
| QueryAssistantCommandInput
|
|
203
250
|
| RemoveKnowledgeBaseTemplateUriCommandInput
|
|
204
251
|
| SearchContentCommandInput
|
|
252
|
+
| SearchQuickResponsesCommandInput
|
|
205
253
|
| SearchSessionsCommandInput
|
|
206
254
|
| StartContentUploadCommandInput
|
|
255
|
+
| StartImportJobCommandInput
|
|
207
256
|
| TagResourceCommandInput
|
|
208
257
|
| UntagResourceCommandInput
|
|
209
258
|
| UpdateContentCommandInput
|
|
210
|
-
| UpdateKnowledgeBaseTemplateUriCommandInput
|
|
259
|
+
| UpdateKnowledgeBaseTemplateUriCommandInput
|
|
260
|
+
| UpdateQuickResponseCommandInput;
|
|
211
261
|
export type ServiceOutputTypes =
|
|
212
262
|
| CreateAssistantAssociationCommandOutput
|
|
213
263
|
| CreateAssistantCommandOutput
|
|
214
264
|
| CreateContentCommandOutput
|
|
215
265
|
| CreateKnowledgeBaseCommandOutput
|
|
266
|
+
| CreateQuickResponseCommandOutput
|
|
216
267
|
| CreateSessionCommandOutput
|
|
217
268
|
| DeleteAssistantAssociationCommandOutput
|
|
218
269
|
| DeleteAssistantCommandOutput
|
|
219
270
|
| DeleteContentCommandOutput
|
|
271
|
+
| DeleteImportJobCommandOutput
|
|
220
272
|
| DeleteKnowledgeBaseCommandOutput
|
|
273
|
+
| DeleteQuickResponseCommandOutput
|
|
221
274
|
| GetAssistantAssociationCommandOutput
|
|
222
275
|
| GetAssistantCommandOutput
|
|
223
276
|
| GetContentCommandOutput
|
|
224
277
|
| GetContentSummaryCommandOutput
|
|
278
|
+
| GetImportJobCommandOutput
|
|
225
279
|
| GetKnowledgeBaseCommandOutput
|
|
280
|
+
| GetQuickResponseCommandOutput
|
|
226
281
|
| GetRecommendationsCommandOutput
|
|
227
282
|
| GetSessionCommandOutput
|
|
228
283
|
| ListAssistantAssociationsCommandOutput
|
|
229
284
|
| ListAssistantsCommandOutput
|
|
230
285
|
| ListContentsCommandOutput
|
|
286
|
+
| ListImportJobsCommandOutput
|
|
231
287
|
| ListKnowledgeBasesCommandOutput
|
|
288
|
+
| ListQuickResponsesCommandOutput
|
|
232
289
|
| ListTagsForResourceCommandOutput
|
|
233
290
|
| NotifyRecommendationsReceivedCommandOutput
|
|
234
291
|
| QueryAssistantCommandOutput
|
|
235
292
|
| RemoveKnowledgeBaseTemplateUriCommandOutput
|
|
236
293
|
| SearchContentCommandOutput
|
|
294
|
+
| SearchQuickResponsesCommandOutput
|
|
237
295
|
| SearchSessionsCommandOutput
|
|
238
296
|
| StartContentUploadCommandOutput
|
|
297
|
+
| StartImportJobCommandOutput
|
|
239
298
|
| TagResourceCommandOutput
|
|
240
299
|
| UntagResourceCommandOutput
|
|
241
300
|
| UpdateContentCommandOutput
|
|
242
|
-
| UpdateKnowledgeBaseTemplateUriCommandOutput
|
|
301
|
+
| UpdateKnowledgeBaseTemplateUriCommandOutput
|
|
302
|
+
| UpdateQuickResponseCommandOutput;
|
|
243
303
|
export interface ClientDefaults
|
|
244
304
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
245
305
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateQuickResponseRequest,
|
|
11
|
+
CreateQuickResponseResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateQuickResponseCommandInput
|
|
20
|
+
extends CreateQuickResponseRequest {}
|
|
21
|
+
export interface CreateQuickResponseCommandOutput
|
|
22
|
+
extends CreateQuickResponseResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateQuickResponseCommand extends $Command<
|
|
25
|
+
CreateQuickResponseCommandInput,
|
|
26
|
+
CreateQuickResponseCommandOutput,
|
|
27
|
+
WisdomClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateQuickResponseCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateQuickResponseCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WisdomClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateQuickResponseCommandInput, CreateQuickResponseCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteImportJobRequest,
|
|
11
|
+
DeleteImportJobResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteImportJobCommandInput extends DeleteImportJobRequest {}
|
|
20
|
+
export interface DeleteImportJobCommandOutput
|
|
21
|
+
extends DeleteImportJobResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteImportJobCommand extends $Command<
|
|
24
|
+
DeleteImportJobCommandInput,
|
|
25
|
+
DeleteImportJobCommandOutput,
|
|
26
|
+
WisdomClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteImportJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteImportJobCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WisdomClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteImportJobCommandInput, DeleteImportJobCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteQuickResponseRequest,
|
|
11
|
+
DeleteQuickResponseResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteQuickResponseCommandInput
|
|
20
|
+
extends DeleteQuickResponseRequest {}
|
|
21
|
+
export interface DeleteQuickResponseCommandOutput
|
|
22
|
+
extends DeleteQuickResponseResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteQuickResponseCommand extends $Command<
|
|
25
|
+
DeleteQuickResponseCommandInput,
|
|
26
|
+
DeleteQuickResponseCommandOutput,
|
|
27
|
+
WisdomClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteQuickResponseCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteQuickResponseCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WisdomClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<DeleteQuickResponseCommandInput, DeleteQuickResponseCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetImportJobRequest, GetImportJobResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WisdomClientResolvedConfig,
|
|
14
|
+
} from "../WisdomClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetImportJobCommandInput extends GetImportJobRequest {}
|
|
17
|
+
export interface GetImportJobCommandOutput
|
|
18
|
+
extends GetImportJobResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetImportJobCommand extends $Command<
|
|
21
|
+
GetImportJobCommandInput,
|
|
22
|
+
GetImportJobCommandOutput,
|
|
23
|
+
WisdomClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetImportJobCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetImportJobCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WisdomClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetImportJobCommandInput, GetImportJobCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetQuickResponseRequest,
|
|
11
|
+
GetQuickResponseResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetQuickResponseCommandInput extends GetQuickResponseRequest {}
|
|
20
|
+
export interface GetQuickResponseCommandOutput
|
|
21
|
+
extends GetQuickResponseResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetQuickResponseCommand extends $Command<
|
|
24
|
+
GetQuickResponseCommandInput,
|
|
25
|
+
GetQuickResponseCommandOutput,
|
|
26
|
+
WisdomClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetQuickResponseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetQuickResponseCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WisdomClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetQuickResponseCommandInput, GetQuickResponseCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListImportJobsRequest,
|
|
11
|
+
ListImportJobsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListImportJobsCommandInput extends ListImportJobsRequest {}
|
|
20
|
+
export interface ListImportJobsCommandOutput
|
|
21
|
+
extends ListImportJobsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListImportJobsCommand extends $Command<
|
|
24
|
+
ListImportJobsCommandInput,
|
|
25
|
+
ListImportJobsCommandOutput,
|
|
26
|
+
WisdomClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListImportJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListImportJobsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WisdomClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListImportJobsCommandInput, ListImportJobsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListQuickResponsesRequest,
|
|
11
|
+
ListQuickResponsesResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListQuickResponsesCommandInput
|
|
20
|
+
extends ListQuickResponsesRequest {}
|
|
21
|
+
export interface ListQuickResponsesCommandOutput
|
|
22
|
+
extends ListQuickResponsesResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListQuickResponsesCommand extends $Command<
|
|
25
|
+
ListQuickResponsesCommandInput,
|
|
26
|
+
ListQuickResponsesCommandOutput,
|
|
27
|
+
WisdomClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListQuickResponsesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListQuickResponsesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WisdomClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
SearchQuickResponsesRequest,
|
|
11
|
+
SearchQuickResponsesResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface SearchQuickResponsesCommandInput
|
|
20
|
+
extends SearchQuickResponsesRequest {}
|
|
21
|
+
export interface SearchQuickResponsesCommandOutput
|
|
22
|
+
extends SearchQuickResponsesResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class SearchQuickResponsesCommand extends $Command<
|
|
25
|
+
SearchQuickResponsesCommandInput,
|
|
26
|
+
SearchQuickResponsesCommandOutput,
|
|
27
|
+
WisdomClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: SearchQuickResponsesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: SearchQuickResponsesCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WisdomClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
SearchQuickResponsesCommandInput,
|
|
38
|
+
SearchQuickResponsesCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
StartImportJobRequest,
|
|
11
|
+
StartImportJobResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartImportJobCommandInput extends StartImportJobRequest {}
|
|
20
|
+
export interface StartImportJobCommandOutput
|
|
21
|
+
extends StartImportJobResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StartImportJobCommand extends $Command<
|
|
24
|
+
StartImportJobCommandInput,
|
|
25
|
+
StartImportJobCommandOutput,
|
|
26
|
+
WisdomClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartImportJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StartImportJobCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WisdomClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartImportJobCommandInput, StartImportJobCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateQuickResponseRequest,
|
|
11
|
+
UpdateQuickResponseResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WisdomClientResolvedConfig,
|
|
17
|
+
} from "../WisdomClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateQuickResponseCommandInput
|
|
20
|
+
extends UpdateQuickResponseRequest {}
|
|
21
|
+
export interface UpdateQuickResponseCommandOutput
|
|
22
|
+
extends UpdateQuickResponseResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateQuickResponseCommand extends $Command<
|
|
25
|
+
UpdateQuickResponseCommandInput,
|
|
26
|
+
UpdateQuickResponseCommandOutput,
|
|
27
|
+
WisdomClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateQuickResponseCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateQuickResponseCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WisdomClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<UpdateQuickResponseCommandInput, UpdateQuickResponseCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -2,30 +2,40 @@ export * from "./CreateAssistantAssociationCommand";
|
|
|
2
2
|
export * from "./CreateAssistantCommand";
|
|
3
3
|
export * from "./CreateContentCommand";
|
|
4
4
|
export * from "./CreateKnowledgeBaseCommand";
|
|
5
|
+
export * from "./CreateQuickResponseCommand";
|
|
5
6
|
export * from "./CreateSessionCommand";
|
|
6
7
|
export * from "./DeleteAssistantAssociationCommand";
|
|
7
8
|
export * from "./DeleteAssistantCommand";
|
|
8
9
|
export * from "./DeleteContentCommand";
|
|
10
|
+
export * from "./DeleteImportJobCommand";
|
|
9
11
|
export * from "./DeleteKnowledgeBaseCommand";
|
|
12
|
+
export * from "./DeleteQuickResponseCommand";
|
|
10
13
|
export * from "./GetAssistantAssociationCommand";
|
|
11
14
|
export * from "./GetAssistantCommand";
|
|
12
15
|
export * from "./GetContentCommand";
|
|
13
16
|
export * from "./GetContentSummaryCommand";
|
|
17
|
+
export * from "./GetImportJobCommand";
|
|
14
18
|
export * from "./GetKnowledgeBaseCommand";
|
|
19
|
+
export * from "./GetQuickResponseCommand";
|
|
15
20
|
export * from "./GetRecommendationsCommand";
|
|
16
21
|
export * from "./GetSessionCommand";
|
|
17
22
|
export * from "./ListAssistantAssociationsCommand";
|
|
18
23
|
export * from "./ListAssistantsCommand";
|
|
19
24
|
export * from "./ListContentsCommand";
|
|
25
|
+
export * from "./ListImportJobsCommand";
|
|
20
26
|
export * from "./ListKnowledgeBasesCommand";
|
|
27
|
+
export * from "./ListQuickResponsesCommand";
|
|
21
28
|
export * from "./ListTagsForResourceCommand";
|
|
22
29
|
export * from "./NotifyRecommendationsReceivedCommand";
|
|
23
30
|
export * from "./QueryAssistantCommand";
|
|
24
31
|
export * from "./RemoveKnowledgeBaseTemplateUriCommand";
|
|
25
32
|
export * from "./SearchContentCommand";
|
|
33
|
+
export * from "./SearchQuickResponsesCommand";
|
|
26
34
|
export * from "./SearchSessionsCommand";
|
|
27
35
|
export * from "./StartContentUploadCommand";
|
|
36
|
+
export * from "./StartImportJobCommand";
|
|
28
37
|
export * from "./TagResourceCommand";
|
|
29
38
|
export * from "./UntagResourceCommand";
|
|
30
39
|
export * from "./UpdateContentCommand";
|
|
31
40
|
export * from "./UpdateKnowledgeBaseTemplateUriCommand";
|
|
41
|
+
export * from "./UpdateQuickResponseCommand";
|