@aws-sdk/client-wisdom 3.987.0 → 3.988.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/dist-cjs/index.js +60 -1569
- package/dist-cjs/models/WisdomServiceException.js +12 -0
- package/dist-cjs/models/errors.js +113 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1253 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +69 -63
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var WisdomServiceException = require('./models/WisdomServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1346 +113,6 @@ class WisdomClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class WisdomServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, WisdomServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends WisdomServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends WisdomServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends WisdomServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
resourceName;
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "ResourceNotFoundException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
155
|
-
this.resourceName = opts.resourceName;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class ServiceQuotaExceededException extends WisdomServiceException {
|
|
159
|
-
name = "ServiceQuotaExceededException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "ServiceQuotaExceededException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ValidationException extends WisdomServiceException {
|
|
171
|
-
name = "ValidationException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ValidationException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class RequestTimeoutException extends WisdomServiceException {
|
|
183
|
-
name = "RequestTimeoutException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
$retryable = {};
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "RequestTimeoutException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
class PreconditionFailedException extends WisdomServiceException {
|
|
196
|
-
name = "PreconditionFailedException";
|
|
197
|
-
$fault = "client";
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "PreconditionFailedException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
class TooManyTagsException extends WisdomServiceException {
|
|
208
|
-
name = "TooManyTagsException";
|
|
209
|
-
$fault = "client";
|
|
210
|
-
resourceName;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "TooManyTagsException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
218
|
-
this.resourceName = opts.resourceName;
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
const _AAD = "AssistantAssociationData";
|
|
223
|
-
const _AAID = "AssistantAssociationInputData";
|
|
224
|
-
const _AAOD = "AssistantAssociationOutputData";
|
|
225
|
-
const _AAS = "AssistantAssociationSummary";
|
|
226
|
-
const _AASL = "AssistantAssociationSummaryList";
|
|
227
|
-
const _AD = "AssistantData";
|
|
228
|
-
const _ADE = "AccessDeniedException";
|
|
229
|
-
const _AIC = "AppIntegrationsConfiguration";
|
|
230
|
-
const _AICs = "AssistantIntegrationConfiguration";
|
|
231
|
-
const _AL = "AssistantList";
|
|
232
|
-
const _AS = "AssistantSummary";
|
|
233
|
-
const _C = "Channel";
|
|
234
|
-
const _CA = "ContactAttributes";
|
|
235
|
-
const _CAA = "CreateAssistantAssociation";
|
|
236
|
-
const _CAAR = "CreateAssistantAssociationRequest";
|
|
237
|
-
const _CAARr = "CreateAssistantAssociationResponse";
|
|
238
|
-
const _CAK = "ContactAttributeKeys";
|
|
239
|
-
const _CAR = "CreateAssistantRequest";
|
|
240
|
-
const _CARr = "CreateAssistantResponse";
|
|
241
|
-
const _CAr = "CreateAssistant";
|
|
242
|
-
const _CC = "ConnectConfiguration";
|
|
243
|
-
const _CCR = "CreateContentRequest";
|
|
244
|
-
const _CCRr = "CreateContentResponse";
|
|
245
|
-
const _CCr = "CreateContent";
|
|
246
|
-
const _CD = "ContentData";
|
|
247
|
-
const _CE = "ConflictException";
|
|
248
|
-
const _CKB = "CreateKnowledgeBase";
|
|
249
|
-
const _CKBR = "CreateKnowledgeBaseRequest";
|
|
250
|
-
const _CKBRr = "CreateKnowledgeBaseResponse";
|
|
251
|
-
const _CQR = "CreateQuickResponse";
|
|
252
|
-
const _CQRR = "CreateQuickResponseRequest";
|
|
253
|
-
const _CQRRr = "CreateQuickResponseResponse";
|
|
254
|
-
const _CR = "ContentReference";
|
|
255
|
-
const _CS = "ContentSummary";
|
|
256
|
-
const _CSL = "ContentSummaryList";
|
|
257
|
-
const _CSR = "CreateSessionRequest";
|
|
258
|
-
const _CSRr = "CreateSessionResponse";
|
|
259
|
-
const _CSr = "CreateSession";
|
|
260
|
-
const _Ch = "Channels";
|
|
261
|
-
const _Co = "Configuration";
|
|
262
|
-
const _D = "Document";
|
|
263
|
-
const _DA = "DeleteAssistant";
|
|
264
|
-
const _DAA = "DeleteAssistantAssociation";
|
|
265
|
-
const _DAAR = "DeleteAssistantAssociationRequest";
|
|
266
|
-
const _DAARe = "DeleteAssistantAssociationResponse";
|
|
267
|
-
const _DAR = "DeleteAssistantRequest";
|
|
268
|
-
const _DARe = "DeleteAssistantResponse";
|
|
269
|
-
const _DC = "DeleteContent";
|
|
270
|
-
const _DCR = "DeleteContentRequest";
|
|
271
|
-
const _DCRe = "DeleteContentResponse";
|
|
272
|
-
const _DIJ = "DeleteImportJob";
|
|
273
|
-
const _DIJR = "DeleteImportJobRequest";
|
|
274
|
-
const _DIJRe = "DeleteImportJobResponse";
|
|
275
|
-
const _DKB = "DeleteKnowledgeBase";
|
|
276
|
-
const _DKBR = "DeleteKnowledgeBaseRequest";
|
|
277
|
-
const _DKBRe = "DeleteKnowledgeBaseResponse";
|
|
278
|
-
const _DQR = "DeleteQuickResponse";
|
|
279
|
-
const _DQRR = "DeleteQuickResponseRequest";
|
|
280
|
-
const _DQRRe = "DeleteQuickResponseResponse";
|
|
281
|
-
const _DT = "DocumentText";
|
|
282
|
-
const _ESC = "ExternalSourceConfiguration";
|
|
283
|
-
const _F = "Filter";
|
|
284
|
-
const _FL = "FilterList";
|
|
285
|
-
const _GA = "GetAssistant";
|
|
286
|
-
const _GAA = "GetAssistantAssociation";
|
|
287
|
-
const _GAAR = "GetAssistantAssociationRequest";
|
|
288
|
-
const _GAARe = "GetAssistantAssociationResponse";
|
|
289
|
-
const _GAR = "GetAssistantRequest";
|
|
290
|
-
const _GARe = "GetAssistantResponse";
|
|
291
|
-
const _GC = "GroupingCriteria";
|
|
292
|
-
const _GCR = "GetContentRequest";
|
|
293
|
-
const _GCRe = "GetContentResponse";
|
|
294
|
-
const _GCS = "GetContentSummary";
|
|
295
|
-
const _GCSR = "GetContentSummaryRequest";
|
|
296
|
-
const _GCSRe = "GetContentSummaryResponse";
|
|
297
|
-
const _GCe = "GetContent";
|
|
298
|
-
const _GCr = "GroupingConfiguration";
|
|
299
|
-
const _GIJ = "GetImportJob";
|
|
300
|
-
const _GIJR = "GetImportJobRequest";
|
|
301
|
-
const _GIJRe = "GetImportJobResponse";
|
|
302
|
-
const _GKB = "GetKnowledgeBase";
|
|
303
|
-
const _GKBR = "GetKnowledgeBaseRequest";
|
|
304
|
-
const _GKBRe = "GetKnowledgeBaseResponse";
|
|
305
|
-
const _GQR = "GetQuickResponse";
|
|
306
|
-
const _GQRR = "GetQuickResponseRequest";
|
|
307
|
-
const _GQRRe = "GetQuickResponseResponse";
|
|
308
|
-
const _GR = "GetRecommendations";
|
|
309
|
-
const _GRR = "GetRecommendationsRequest";
|
|
310
|
-
const _GRRe = "GetRecommendationsResponse";
|
|
311
|
-
const _GS = "GetSession";
|
|
312
|
-
const _GSR = "GetSessionRequest";
|
|
313
|
-
const _GSRe = "GetSessionResponse";
|
|
314
|
-
const _GV = "GroupingValue";
|
|
315
|
-
const _GVr = "GroupingValues";
|
|
316
|
-
const _H = "Highlight";
|
|
317
|
-
const _Hi = "Highlights";
|
|
318
|
-
const _IJD = "ImportJobData";
|
|
319
|
-
const _IJL = "ImportJobList";
|
|
320
|
-
const _IJS = "ImportJobSummary";
|
|
321
|
-
const _KBAD = "KnowledgeBaseAssociationData";
|
|
322
|
-
const _KBD = "KnowledgeBaseData";
|
|
323
|
-
const _KBL = "KnowledgeBaseList";
|
|
324
|
-
const _KBS = "KnowledgeBaseSummary";
|
|
325
|
-
const _LA = "ListAssistants";
|
|
326
|
-
const _LAA = "ListAssistantAssociations";
|
|
327
|
-
const _LAAR = "ListAssistantAssociationsRequest";
|
|
328
|
-
const _LAARi = "ListAssistantAssociationsResponse";
|
|
329
|
-
const _LAR = "ListAssistantsRequest";
|
|
330
|
-
const _LARi = "ListAssistantsResponse";
|
|
331
|
-
const _LC = "ListContents";
|
|
332
|
-
const _LCR = "ListContentsRequest";
|
|
333
|
-
const _LCRi = "ListContentsResponse";
|
|
334
|
-
const _LIJ = "ListImportJobs";
|
|
335
|
-
const _LIJR = "ListImportJobsRequest";
|
|
336
|
-
const _LIJRi = "ListImportJobsResponse";
|
|
337
|
-
const _LKB = "ListKnowledgeBases";
|
|
338
|
-
const _LKBR = "ListKnowledgeBasesRequest";
|
|
339
|
-
const _LKBRi = "ListKnowledgeBasesResponse";
|
|
340
|
-
const _LQR = "ListQuickResponses";
|
|
341
|
-
const _LQRR = "ListQuickResponsesRequest";
|
|
342
|
-
const _LQRRi = "ListQuickResponsesResponse";
|
|
343
|
-
const _LTFR = "ListTagsForResource";
|
|
344
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
345
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
346
|
-
const _NRR = "NotifyRecommendationsReceived";
|
|
347
|
-
const _NRRE = "NotifyRecommendationsReceivedError";
|
|
348
|
-
const _NRREL = "NotifyRecommendationsReceivedErrorList";
|
|
349
|
-
const _NRRR = "NotifyRecommendationsReceivedRequest";
|
|
350
|
-
const _NRRRo = "NotifyRecommendationsReceivedResponse";
|
|
351
|
-
const _PFE = "PreconditionFailedException";
|
|
352
|
-
const _QA = "QueryAssistant";
|
|
353
|
-
const _QAR = "QueryAssistantRequest";
|
|
354
|
-
const _QARu = "QueryAssistantResponse";
|
|
355
|
-
const _QRC = "QuickResponseContent";
|
|
356
|
-
const _QRCP = "QuickResponseContentProvider";
|
|
357
|
-
const _QRCu = "QuickResponseContents";
|
|
358
|
-
const _QRD = "QuickResponseData";
|
|
359
|
-
const _QRDP = "QuickResponseDataProvider";
|
|
360
|
-
const _QRFF = "QuickResponseFilterField";
|
|
361
|
-
const _QRFFL = "QuickResponseFilterFieldList";
|
|
362
|
-
const _QRL = "QueryResultsList";
|
|
363
|
-
const _QROF = "QuickResponseOrderField";
|
|
364
|
-
const _QRQF = "QuickResponseQueryField";
|
|
365
|
-
const _QRQFL = "QuickResponseQueryFieldList";
|
|
366
|
-
const _QRS = "QuickResponseSummary";
|
|
367
|
-
const _QRSE = "QuickResponseSearchExpression";
|
|
368
|
-
const _QRSL = "QuickResponseSummaryList";
|
|
369
|
-
const _QRSRD = "QuickResponseSearchResultData";
|
|
370
|
-
const _QRSRL = "QuickResponseSearchResultsList";
|
|
371
|
-
const _QRTD = "QueryRecommendationTriggerData";
|
|
372
|
-
const _QT = "QueryText";
|
|
373
|
-
const _RC = "RenderingConfiguration";
|
|
374
|
-
const _RD = "RecommendationData";
|
|
375
|
-
const _RDe = "ResultData";
|
|
376
|
-
const _RKBTU = "RemoveKnowledgeBaseTemplateUri";
|
|
377
|
-
const _RKBTUR = "RemoveKnowledgeBaseTemplateUriRequest";
|
|
378
|
-
const _RKBTURe = "RemoveKnowledgeBaseTemplateUriResponse";
|
|
379
|
-
const _RL = "RecommendationList";
|
|
380
|
-
const _RNFE = "ResourceNotFoundException";
|
|
381
|
-
const _RT = "RecommendationTrigger";
|
|
382
|
-
const _RTD = "RecommendationTriggerData";
|
|
383
|
-
const _RTE = "RequestTimeoutException";
|
|
384
|
-
const _RTL = "RecommendationTriggerList";
|
|
385
|
-
const _SC = "SourceConfiguration";
|
|
386
|
-
const _SCR = "SearchContentRequest";
|
|
387
|
-
const _SCRe = "SearchContentResponse";
|
|
388
|
-
const _SCU = "StartContentUpload";
|
|
389
|
-
const _SCUR = "StartContentUploadRequest";
|
|
390
|
-
const _SCURt = "StartContentUploadResponse";
|
|
391
|
-
const _SCe = "SearchContent";
|
|
392
|
-
const _SD = "SessionData";
|
|
393
|
-
const _SE = "SearchExpression";
|
|
394
|
-
const _SIC = "SessionIntegrationConfiguration";
|
|
395
|
-
const _SIJ = "StartImportJob";
|
|
396
|
-
const _SIJR = "StartImportJobRequest";
|
|
397
|
-
const _SIJRt = "StartImportJobResponse";
|
|
398
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
399
|
-
const _SQR = "SearchQuickResponses";
|
|
400
|
-
const _SQRR = "SearchQuickResponsesRequest";
|
|
401
|
-
const _SQRRe = "SearchQuickResponsesResponse";
|
|
402
|
-
const _SS = "SensitiveString";
|
|
403
|
-
const _SSEC = "ServerSideEncryptionConfiguration";
|
|
404
|
-
const _SSR = "SearchSessionsRequest";
|
|
405
|
-
const _SSRe = "SearchSessionsResponse";
|
|
406
|
-
const _SSe = "SessionSummary";
|
|
407
|
-
const _SSea = "SearchSessions";
|
|
408
|
-
const _SSes = "SessionSummaries";
|
|
409
|
-
const _TMTE = "TooManyTagsException";
|
|
410
|
-
const _TR = "TagResource";
|
|
411
|
-
const _TRR = "TagResourceRequest";
|
|
412
|
-
const _TRRa = "TagResourceResponse";
|
|
413
|
-
const _U = "Url";
|
|
414
|
-
const _UC = "UpdateContent";
|
|
415
|
-
const _UCR = "UpdateContentRequest";
|
|
416
|
-
const _UCRp = "UpdateContentResponse";
|
|
417
|
-
const _UKBTU = "UpdateKnowledgeBaseTemplateUri";
|
|
418
|
-
const _UKBTUR = "UpdateKnowledgeBaseTemplateUriRequest";
|
|
419
|
-
const _UKBTURp = "UpdateKnowledgeBaseTemplateUriResponse";
|
|
420
|
-
const _UQR = "UpdateQuickResponse";
|
|
421
|
-
const _UQRR = "UpdateQuickResponseRequest";
|
|
422
|
-
const _UQRRp = "UpdateQuickResponseResponse";
|
|
423
|
-
const _UR = "UntagResource";
|
|
424
|
-
const _URR = "UntagResourceRequest";
|
|
425
|
-
const _URRn = "UntagResourceResponse";
|
|
426
|
-
const _VE = "ValidationException";
|
|
427
|
-
const _a = "association";
|
|
428
|
-
const _aA = "assistantArn";
|
|
429
|
-
const _aAA = "assistantAssociationArn";
|
|
430
|
-
const _aAI = "assistantAssociationId";
|
|
431
|
-
const _aAS = "assistantAssociationSummaries";
|
|
432
|
-
const _aAs = "assistantAssociation";
|
|
433
|
-
const _aD = "associationData";
|
|
434
|
-
const _aF = "allowFuzziness";
|
|
435
|
-
const _aI = "assistantId";
|
|
436
|
-
const _aIA = "appIntegrationArn";
|
|
437
|
-
const _aIp = "appIntegrations";
|
|
438
|
-
const _aIt = "attributesInterpolated";
|
|
439
|
-
const _aNI = "attributesNotInterpolated";
|
|
440
|
-
const _aS = "assistantSummaries";
|
|
441
|
-
const _aT = "associationType";
|
|
442
|
-
const _as = "assistant";
|
|
443
|
-
const _at = "attributes";
|
|
444
|
-
const _bOI = "beginOffsetInclusive";
|
|
445
|
-
const _c = "client";
|
|
446
|
-
const _cA = "contentArn";
|
|
447
|
-
const _cC = "connectConfiguration";
|
|
448
|
-
const _cI = "contentId";
|
|
449
|
-
const _cR = "contentReference";
|
|
450
|
-
const _cS = "contentSummary";
|
|
451
|
-
const _cSo = "contentSummaries";
|
|
452
|
-
const _cT = "contentType";
|
|
453
|
-
const _cTl = "clientToken";
|
|
454
|
-
const _cTr = "createdTime";
|
|
455
|
-
const _ch = "channels";
|
|
456
|
-
const _co = "content";
|
|
457
|
-
const _con = "configuration";
|
|
458
|
-
const _cont = "contents";
|
|
459
|
-
const _cr = "criteria";
|
|
460
|
-
const _d = "description";
|
|
461
|
-
const _da = "data";
|
|
462
|
-
const _do = "document";
|
|
463
|
-
const _e = "error";
|
|
464
|
-
const _eOE = "endOffsetExclusive";
|
|
465
|
-
const _eSC = "externalSourceConfiguration";
|
|
466
|
-
const _er = "errors";
|
|
467
|
-
const _ex = "excerpt";
|
|
468
|
-
const _f = "field";
|
|
469
|
-
const _fRR = "failedRecordReport";
|
|
470
|
-
const _fi = "filters";
|
|
471
|
-
const _gC = "groupingConfiguration";
|
|
472
|
-
const _h = "highlights";
|
|
473
|
-
const _hE = "httpError";
|
|
474
|
-
const _hQ = "httpQuery";
|
|
475
|
-
const _hTI = "headersToInclude";
|
|
476
|
-
const _ht = "http";
|
|
477
|
-
const _i = "id";
|
|
478
|
-
const _iA = "isActive";
|
|
479
|
-
const _iC = "integrationConfiguration";
|
|
480
|
-
const _iI = "instanceId";
|
|
481
|
-
const _iJ = "importJob";
|
|
482
|
-
const _iJI = "importJobId";
|
|
483
|
-
const _iJS = "importJobSummaries";
|
|
484
|
-
const _iJT = "importJobType";
|
|
485
|
-
const _iNE = "includeNoExistence";
|
|
486
|
-
const _kB = "knowledgeBase";
|
|
487
|
-
const _kBA = "knowledgeBaseArn";
|
|
488
|
-
const _kBAn = "knowledgeBaseAssociation";
|
|
489
|
-
const _kBI = "knowledgeBaseId";
|
|
490
|
-
const _kBS = "knowledgeBaseSummaries";
|
|
491
|
-
const _kBT = "knowledgeBaseType";
|
|
492
|
-
const _kKI = "kmsKeyId";
|
|
493
|
-
const _l = "language";
|
|
494
|
-
const _lCMT = "lastContentModificationTime";
|
|
495
|
-
const _lMB = "lastModifiedBy";
|
|
496
|
-
const _lMT = "lastModifiedTime";
|
|
497
|
-
const _lOU = "linkOutUri";
|
|
498
|
-
const _m = "message";
|
|
499
|
-
const _mR = "maxResults";
|
|
500
|
-
const _ma = "markdown";
|
|
501
|
-
const _me = "metadata";
|
|
502
|
-
const _n = "name";
|
|
503
|
-
const _nT = "nextToken";
|
|
504
|
-
const _o = "operator";
|
|
505
|
-
const _oF = "objectFields";
|
|
506
|
-
const _oLOU = "overrideLinkOutUri";
|
|
507
|
-
const _oOF = "orderOnField";
|
|
508
|
-
const _or = "order";
|
|
509
|
-
const _p = "priority";
|
|
510
|
-
const _pT = "plainText";
|
|
511
|
-
const _pUTTL = "presignedUrlTimeToLive";
|
|
512
|
-
const _q = "queries";
|
|
513
|
-
const _qR = "quickResponse";
|
|
514
|
-
const _qRA = "quickResponseArn";
|
|
515
|
-
const _qRI = "quickResponseId";
|
|
516
|
-
const _qRS = "quickResponseSummaries";
|
|
517
|
-
const _qT = "queryText";
|
|
518
|
-
const _qu = "query";
|
|
519
|
-
const _r = "recommendations";
|
|
520
|
-
const _rA = "resourceArn";
|
|
521
|
-
const _rC = "renderingConfiguration";
|
|
522
|
-
const _rD = "removeDescription";
|
|
523
|
-
const _rGC = "removeGroupingConfiguration";
|
|
524
|
-
const _rI = "revisionId";
|
|
525
|
-
const _rIe = "recommendationId";
|
|
526
|
-
const _rIec = "recommendationIds";
|
|
527
|
-
const _rIes = "resultId";
|
|
528
|
-
const _rL = "relevanceLevel";
|
|
529
|
-
const _rN = "resourceName";
|
|
530
|
-
const _rOLOU = "removeOverrideLinkOutUri";
|
|
531
|
-
const _rS = "relevanceScore";
|
|
532
|
-
const _rSK = "removeShortcutKey";
|
|
533
|
-
const _re = "results";
|
|
534
|
-
const _s = "status";
|
|
535
|
-
const _sA = "sessionArn";
|
|
536
|
-
const _sC = "sourceConfiguration";
|
|
537
|
-
const _sE = "searchExpression";
|
|
538
|
-
const _sI = "sessionId";
|
|
539
|
-
const _sK = "shortcutKey";
|
|
540
|
-
const _sS = "sessionSummaries";
|
|
541
|
-
const _sSEC = "serverSideEncryptionConfiguration";
|
|
542
|
-
const _se = "session";
|
|
543
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wisdom";
|
|
544
|
-
const _so = "source";
|
|
545
|
-
const _t = "tags";
|
|
546
|
-
const _tIA = "topicIntegrationArn";
|
|
547
|
-
const _tK = "tagKeys";
|
|
548
|
-
const _tU = "templateUri";
|
|
549
|
-
const _te = "text";
|
|
550
|
-
const _ti = "title";
|
|
551
|
-
const _tr = "triggers";
|
|
552
|
-
const _ty = "type";
|
|
553
|
-
const _u = "url";
|
|
554
|
-
const _uE = "urlExpiry";
|
|
555
|
-
const _uI = "uploadId";
|
|
556
|
-
const _v = "value";
|
|
557
|
-
const _va = "values";
|
|
558
|
-
const _wTS = "waitTimeSeconds";
|
|
559
|
-
const n0 = "com.amazonaws.wisdom";
|
|
560
|
-
var Channel = [0, n0, _C, 8, 0];
|
|
561
|
-
var GroupingCriteria = [0, n0, _GC, 8, 0];
|
|
562
|
-
var GroupingValue = [0, n0, _GV, 8, 0];
|
|
563
|
-
var QueryText = [0, n0, _QT, 8, 0];
|
|
564
|
-
var QuickResponseContent = [0, n0, _QRC, 8, 0];
|
|
565
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
566
|
-
var Url = [0, n0, _U, 8, 0];
|
|
567
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
568
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
569
|
-
[_m],
|
|
570
|
-
[0]
|
|
571
|
-
];
|
|
572
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
573
|
-
var AppIntegrationsConfiguration$ = [3, n0, _AIC,
|
|
574
|
-
0,
|
|
575
|
-
[_aIA, _oF],
|
|
576
|
-
[0, 64 | 0], 1
|
|
577
|
-
];
|
|
578
|
-
var AssistantAssociationData$ = [3, n0, _AAD,
|
|
579
|
-
0,
|
|
580
|
-
[_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
|
|
581
|
-
[0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0], 6
|
|
582
|
-
];
|
|
583
|
-
var AssistantAssociationSummary$ = [3, n0, _AAS,
|
|
584
|
-
0,
|
|
585
|
-
[_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
|
|
586
|
-
[0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0], 6
|
|
587
|
-
];
|
|
588
|
-
var AssistantData$ = [3, n0, _AD,
|
|
589
|
-
0,
|
|
590
|
-
[_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
|
|
591
|
-
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
|
|
592
|
-
];
|
|
593
|
-
var AssistantIntegrationConfiguration$ = [3, n0, _AICs,
|
|
594
|
-
0,
|
|
595
|
-
[_tIA],
|
|
596
|
-
[0]
|
|
597
|
-
];
|
|
598
|
-
var AssistantSummary$ = [3, n0, _AS,
|
|
599
|
-
0,
|
|
600
|
-
[_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
|
|
601
|
-
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
|
|
602
|
-
];
|
|
603
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
604
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
605
|
-
[_m],
|
|
606
|
-
[0]
|
|
607
|
-
];
|
|
608
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
609
|
-
var ConnectConfiguration$ = [3, n0, _CC,
|
|
610
|
-
0,
|
|
611
|
-
[_iI],
|
|
612
|
-
[0]
|
|
613
|
-
];
|
|
614
|
-
var ContentData$ = [3, n0, _CD,
|
|
615
|
-
0,
|
|
616
|
-
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _u, _uE, _t, _lOU],
|
|
617
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, [() => Url, 0], 7, 128 | 0, 0], 12
|
|
618
|
-
];
|
|
619
|
-
var ContentReference$ = [3, n0, _CR,
|
|
620
|
-
0,
|
|
621
|
-
[_kBA, _kBI, _cA, _cI],
|
|
622
|
-
[0, 0, 0, 0]
|
|
623
|
-
];
|
|
624
|
-
var ContentSummary$ = [3, n0, _CS,
|
|
625
|
-
0,
|
|
626
|
-
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _t],
|
|
627
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0], 10
|
|
628
|
-
];
|
|
629
|
-
var CreateAssistantAssociationRequest$ = [3, n0, _CAAR,
|
|
630
|
-
0,
|
|
631
|
-
[_aI, _aT, _a, _cTl, _t],
|
|
632
|
-
[[0, 1], 0, () => AssistantAssociationInputData$, [0, 4], 128 | 0], 3
|
|
633
|
-
];
|
|
634
|
-
var CreateAssistantAssociationResponse$ = [3, n0, _CAARr,
|
|
635
|
-
0,
|
|
636
|
-
[_aAs],
|
|
637
|
-
[() => AssistantAssociationData$]
|
|
638
|
-
];
|
|
639
|
-
var CreateAssistantRequest$ = [3, n0, _CAR,
|
|
640
|
-
0,
|
|
641
|
-
[_n, _ty, _cTl, _d, _t, _sSEC],
|
|
642
|
-
[0, 0, [0, 4], 0, 128 | 0, () => ServerSideEncryptionConfiguration$], 2
|
|
643
|
-
];
|
|
644
|
-
var CreateAssistantResponse$ = [3, n0, _CARr,
|
|
645
|
-
0,
|
|
646
|
-
[_as],
|
|
647
|
-
[() => AssistantData$]
|
|
648
|
-
];
|
|
649
|
-
var CreateContentRequest$ = [3, n0, _CCR,
|
|
650
|
-
0,
|
|
651
|
-
[_kBI, _n, _uI, _ti, _oLOU, _me, _cTl, _t],
|
|
652
|
-
[[0, 1], 0, 0, 0, 0, 128 | 0, [0, 4], 128 | 0], 3
|
|
653
|
-
];
|
|
654
|
-
var CreateContentResponse$ = [3, n0, _CCRr,
|
|
655
|
-
0,
|
|
656
|
-
[_co],
|
|
657
|
-
[[() => ContentData$, 0]]
|
|
658
|
-
];
|
|
659
|
-
var CreateKnowledgeBaseRequest$ = [3, n0, _CKBR,
|
|
660
|
-
0,
|
|
661
|
-
[_n, _kBT, _cTl, _sC, _rC, _sSEC, _d, _t],
|
|
662
|
-
[0, 0, [0, 4], () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 2
|
|
663
|
-
];
|
|
664
|
-
var CreateKnowledgeBaseResponse$ = [3, n0, _CKBRr,
|
|
665
|
-
0,
|
|
666
|
-
[_kB],
|
|
667
|
-
[() => KnowledgeBaseData$]
|
|
668
|
-
];
|
|
669
|
-
var CreateQuickResponseRequest$ = [3, n0, _CQRR,
|
|
670
|
-
0,
|
|
671
|
-
[_kBI, _n, _co, _cT, _gC, _d, _sK, _iA, _ch, _l, _cTl, _t],
|
|
672
|
-
[[0, 1], 0, [() => QuickResponseDataProvider$, 0], 0, [() => GroupingConfiguration$, 0], 0, 0, 2, [() => Channels, 0], 0, [0, 4], 128 | 0], 3
|
|
673
|
-
];
|
|
674
|
-
var CreateQuickResponseResponse$ = [3, n0, _CQRRr,
|
|
675
|
-
0,
|
|
676
|
-
[_qR],
|
|
677
|
-
[[() => QuickResponseData$, 0]]
|
|
678
|
-
];
|
|
679
|
-
var CreateSessionRequest$ = [3, n0, _CSR,
|
|
680
|
-
0,
|
|
681
|
-
[_aI, _n, _cTl, _d, _t],
|
|
682
|
-
[[0, 1], 0, [0, 4], 0, 128 | 0], 2
|
|
683
|
-
];
|
|
684
|
-
var CreateSessionResponse$ = [3, n0, _CSRr,
|
|
685
|
-
0,
|
|
686
|
-
[_se],
|
|
687
|
-
[() => SessionData$]
|
|
688
|
-
];
|
|
689
|
-
var DeleteAssistantAssociationRequest$ = [3, n0, _DAAR,
|
|
690
|
-
0,
|
|
691
|
-
[_aAI, _aI],
|
|
692
|
-
[[0, 1], [0, 1]], 2
|
|
693
|
-
];
|
|
694
|
-
var DeleteAssistantAssociationResponse$ = [3, n0, _DAARe,
|
|
695
|
-
0,
|
|
696
|
-
[],
|
|
697
|
-
[]
|
|
698
|
-
];
|
|
699
|
-
var DeleteAssistantRequest$ = [3, n0, _DAR,
|
|
700
|
-
0,
|
|
701
|
-
[_aI],
|
|
702
|
-
[[0, 1]], 1
|
|
703
|
-
];
|
|
704
|
-
var DeleteAssistantResponse$ = [3, n0, _DARe,
|
|
705
|
-
0,
|
|
706
|
-
[],
|
|
707
|
-
[]
|
|
708
|
-
];
|
|
709
|
-
var DeleteContentRequest$ = [3, n0, _DCR,
|
|
710
|
-
0,
|
|
711
|
-
[_kBI, _cI],
|
|
712
|
-
[[0, 1], [0, 1]], 2
|
|
713
|
-
];
|
|
714
|
-
var DeleteContentResponse$ = [3, n0, _DCRe,
|
|
715
|
-
0,
|
|
716
|
-
[],
|
|
717
|
-
[]
|
|
718
|
-
];
|
|
719
|
-
var DeleteImportJobRequest$ = [3, n0, _DIJR,
|
|
720
|
-
0,
|
|
721
|
-
[_kBI, _iJI],
|
|
722
|
-
[[0, 1], [0, 1]], 2
|
|
723
|
-
];
|
|
724
|
-
var DeleteImportJobResponse$ = [3, n0, _DIJRe,
|
|
725
|
-
0,
|
|
726
|
-
[],
|
|
727
|
-
[]
|
|
728
|
-
];
|
|
729
|
-
var DeleteKnowledgeBaseRequest$ = [3, n0, _DKBR,
|
|
730
|
-
0,
|
|
731
|
-
[_kBI],
|
|
732
|
-
[[0, 1]], 1
|
|
733
|
-
];
|
|
734
|
-
var DeleteKnowledgeBaseResponse$ = [3, n0, _DKBRe,
|
|
735
|
-
0,
|
|
736
|
-
[],
|
|
737
|
-
[]
|
|
738
|
-
];
|
|
739
|
-
var DeleteQuickResponseRequest$ = [3, n0, _DQRR,
|
|
740
|
-
0,
|
|
741
|
-
[_kBI, _qRI],
|
|
742
|
-
[[0, 1], [0, 1]], 2
|
|
743
|
-
];
|
|
744
|
-
var DeleteQuickResponseResponse$ = [3, n0, _DQRRe,
|
|
745
|
-
0,
|
|
746
|
-
[],
|
|
747
|
-
[]
|
|
748
|
-
];
|
|
749
|
-
var Document$ = [3, n0, _D,
|
|
750
|
-
0,
|
|
751
|
-
[_cR, _ti, _ex],
|
|
752
|
-
[() => ContentReference$, [() => DocumentText$, 0], [() => DocumentText$, 0]], 1
|
|
753
|
-
];
|
|
754
|
-
var DocumentText$ = [3, n0, _DT,
|
|
755
|
-
0,
|
|
756
|
-
[_te, _h],
|
|
757
|
-
[[() => SensitiveString, 0], () => Highlights]
|
|
758
|
-
];
|
|
759
|
-
var ExternalSourceConfiguration$ = [3, n0, _ESC,
|
|
760
|
-
0,
|
|
761
|
-
[_so, _con],
|
|
762
|
-
[0, () => Configuration$], 2
|
|
763
|
-
];
|
|
764
|
-
var Filter$ = [3, n0, _F,
|
|
765
|
-
0,
|
|
766
|
-
[_f, _o, _v],
|
|
767
|
-
[0, 0, 0], 3
|
|
768
|
-
];
|
|
769
|
-
var GetAssistantAssociationRequest$ = [3, n0, _GAAR,
|
|
770
|
-
0,
|
|
771
|
-
[_aAI, _aI],
|
|
772
|
-
[[0, 1], [0, 1]], 2
|
|
773
|
-
];
|
|
774
|
-
var GetAssistantAssociationResponse$ = [3, n0, _GAARe,
|
|
775
|
-
0,
|
|
776
|
-
[_aAs],
|
|
777
|
-
[() => AssistantAssociationData$]
|
|
778
|
-
];
|
|
779
|
-
var GetAssistantRequest$ = [3, n0, _GAR,
|
|
780
|
-
0,
|
|
781
|
-
[_aI],
|
|
782
|
-
[[0, 1]], 1
|
|
783
|
-
];
|
|
784
|
-
var GetAssistantResponse$ = [3, n0, _GARe,
|
|
785
|
-
0,
|
|
786
|
-
[_as],
|
|
787
|
-
[() => AssistantData$]
|
|
788
|
-
];
|
|
789
|
-
var GetContentRequest$ = [3, n0, _GCR,
|
|
790
|
-
0,
|
|
791
|
-
[_cI, _kBI],
|
|
792
|
-
[[0, 1], [0, 1]], 2
|
|
793
|
-
];
|
|
794
|
-
var GetContentResponse$ = [3, n0, _GCRe,
|
|
795
|
-
0,
|
|
796
|
-
[_co],
|
|
797
|
-
[[() => ContentData$, 0]]
|
|
798
|
-
];
|
|
799
|
-
var GetContentSummaryRequest$ = [3, n0, _GCSR,
|
|
800
|
-
0,
|
|
801
|
-
[_cI, _kBI],
|
|
802
|
-
[[0, 1], [0, 1]], 2
|
|
803
|
-
];
|
|
804
|
-
var GetContentSummaryResponse$ = [3, n0, _GCSRe,
|
|
805
|
-
0,
|
|
806
|
-
[_cS],
|
|
807
|
-
[() => ContentSummary$]
|
|
808
|
-
];
|
|
809
|
-
var GetImportJobRequest$ = [3, n0, _GIJR,
|
|
810
|
-
0,
|
|
811
|
-
[_iJI, _kBI],
|
|
812
|
-
[[0, 1], [0, 1]], 2
|
|
813
|
-
];
|
|
814
|
-
var GetImportJobResponse$ = [3, n0, _GIJRe,
|
|
815
|
-
0,
|
|
816
|
-
[_iJ],
|
|
817
|
-
[[() => ImportJobData$, 0]]
|
|
818
|
-
];
|
|
819
|
-
var GetKnowledgeBaseRequest$ = [3, n0, _GKBR,
|
|
820
|
-
0,
|
|
821
|
-
[_kBI],
|
|
822
|
-
[[0, 1]], 1
|
|
823
|
-
];
|
|
824
|
-
var GetKnowledgeBaseResponse$ = [3, n0, _GKBRe,
|
|
825
|
-
0,
|
|
826
|
-
[_kB],
|
|
827
|
-
[() => KnowledgeBaseData$]
|
|
828
|
-
];
|
|
829
|
-
var GetQuickResponseRequest$ = [3, n0, _GQRR,
|
|
830
|
-
0,
|
|
831
|
-
[_qRI, _kBI],
|
|
832
|
-
[[0, 1], [0, 1]], 2
|
|
833
|
-
];
|
|
834
|
-
var GetQuickResponseResponse$ = [3, n0, _GQRRe,
|
|
835
|
-
0,
|
|
836
|
-
[_qR],
|
|
837
|
-
[[() => QuickResponseData$, 0]]
|
|
838
|
-
];
|
|
839
|
-
var GetRecommendationsRequest$ = [3, n0, _GRR,
|
|
840
|
-
0,
|
|
841
|
-
[_aI, _sI, _mR, _wTS],
|
|
842
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [1, { [_hQ]: _wTS }]], 2
|
|
843
|
-
];
|
|
844
|
-
var GetRecommendationsResponse$ = [3, n0, _GRRe,
|
|
845
|
-
0,
|
|
846
|
-
[_r, _tr],
|
|
847
|
-
[[() => RecommendationList, 0], [() => RecommendationTriggerList, 0]], 1
|
|
848
|
-
];
|
|
849
|
-
var GetSessionRequest$ = [3, n0, _GSR,
|
|
850
|
-
0,
|
|
851
|
-
[_aI, _sI],
|
|
852
|
-
[[0, 1], [0, 1]], 2
|
|
853
|
-
];
|
|
854
|
-
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
855
|
-
0,
|
|
856
|
-
[_se],
|
|
857
|
-
[() => SessionData$]
|
|
858
|
-
];
|
|
859
|
-
var GroupingConfiguration$ = [3, n0, _GCr,
|
|
860
|
-
0,
|
|
861
|
-
[_cr, _va],
|
|
862
|
-
[[() => GroupingCriteria, 0], [() => GroupingValues, 0]]
|
|
863
|
-
];
|
|
864
|
-
var Highlight$ = [3, n0, _H,
|
|
865
|
-
0,
|
|
866
|
-
[_bOI, _eOE],
|
|
867
|
-
[1, 1]
|
|
868
|
-
];
|
|
869
|
-
var ImportJobData$ = [3, n0, _IJD,
|
|
870
|
-
0,
|
|
871
|
-
[_iJI, _kBI, _uI, _kBA, _iJT, _s, _u, _uE, _cTr, _lMT, _fRR, _me, _eSC],
|
|
872
|
-
[0, 0, 0, 0, 0, 0, [() => Url, 0], 7, 7, 7, [() => Url, 0], 128 | 0, () => ExternalSourceConfiguration$], 10
|
|
873
|
-
];
|
|
874
|
-
var ImportJobSummary$ = [3, n0, _IJS,
|
|
875
|
-
0,
|
|
876
|
-
[_iJI, _kBI, _uI, _kBA, _iJT, _s, _cTr, _lMT, _me, _eSC],
|
|
877
|
-
[0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration$], 8
|
|
878
|
-
];
|
|
879
|
-
var KnowledgeBaseAssociationData$ = [3, n0, _KBAD,
|
|
880
|
-
0,
|
|
881
|
-
[_kBI, _kBA],
|
|
882
|
-
[0, 0]
|
|
883
|
-
];
|
|
884
|
-
var KnowledgeBaseData$ = [3, n0, _KBD,
|
|
885
|
-
0,
|
|
886
|
-
[_kBI, _kBA, _n, _kBT, _s, _lCMT, _sC, _rC, _sSEC, _d, _t],
|
|
887
|
-
[0, 0, 0, 0, 0, 7, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
|
|
888
|
-
];
|
|
889
|
-
var KnowledgeBaseSummary$ = [3, n0, _KBS,
|
|
890
|
-
0,
|
|
891
|
-
[_kBI, _kBA, _n, _kBT, _s, _sC, _rC, _sSEC, _d, _t],
|
|
892
|
-
[0, 0, 0, 0, 0, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
|
|
893
|
-
];
|
|
894
|
-
var ListAssistantAssociationsRequest$ = [3, n0, _LAAR,
|
|
895
|
-
0,
|
|
896
|
-
[_aI, _nT, _mR],
|
|
897
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
898
|
-
];
|
|
899
|
-
var ListAssistantAssociationsResponse$ = [3, n0, _LAARi,
|
|
900
|
-
0,
|
|
901
|
-
[_aAS, _nT],
|
|
902
|
-
[() => AssistantAssociationSummaryList, 0], 1
|
|
903
|
-
];
|
|
904
|
-
var ListAssistantsRequest$ = [3, n0, _LAR,
|
|
905
|
-
0,
|
|
906
|
-
[_nT, _mR],
|
|
907
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
908
|
-
];
|
|
909
|
-
var ListAssistantsResponse$ = [3, n0, _LARi,
|
|
910
|
-
0,
|
|
911
|
-
[_aS, _nT],
|
|
912
|
-
[() => AssistantList, 0], 1
|
|
913
|
-
];
|
|
914
|
-
var ListContentsRequest$ = [3, n0, _LCR,
|
|
915
|
-
0,
|
|
916
|
-
[_kBI, _nT, _mR],
|
|
917
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
918
|
-
];
|
|
919
|
-
var ListContentsResponse$ = [3, n0, _LCRi,
|
|
920
|
-
0,
|
|
921
|
-
[_cSo, _nT],
|
|
922
|
-
[() => ContentSummaryList, 0], 1
|
|
923
|
-
];
|
|
924
|
-
var ListImportJobsRequest$ = [3, n0, _LIJR,
|
|
925
|
-
0,
|
|
926
|
-
[_kBI, _nT, _mR],
|
|
927
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
928
|
-
];
|
|
929
|
-
var ListImportJobsResponse$ = [3, n0, _LIJRi,
|
|
930
|
-
0,
|
|
931
|
-
[_iJS, _nT],
|
|
932
|
-
[() => ImportJobList, 0], 1
|
|
933
|
-
];
|
|
934
|
-
var ListKnowledgeBasesRequest$ = [3, n0, _LKBR,
|
|
935
|
-
0,
|
|
936
|
-
[_nT, _mR],
|
|
937
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
938
|
-
];
|
|
939
|
-
var ListKnowledgeBasesResponse$ = [3, n0, _LKBRi,
|
|
940
|
-
0,
|
|
941
|
-
[_kBS, _nT],
|
|
942
|
-
[() => KnowledgeBaseList, 0], 1
|
|
943
|
-
];
|
|
944
|
-
var ListQuickResponsesRequest$ = [3, n0, _LQRR,
|
|
945
|
-
0,
|
|
946
|
-
[_kBI, _nT, _mR],
|
|
947
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
948
|
-
];
|
|
949
|
-
var ListQuickResponsesResponse$ = [3, n0, _LQRRi,
|
|
950
|
-
0,
|
|
951
|
-
[_qRS, _nT],
|
|
952
|
-
[[() => QuickResponseSummaryList, 0], 0], 1
|
|
953
|
-
];
|
|
954
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
955
|
-
0,
|
|
956
|
-
[_rA],
|
|
957
|
-
[[0, 1]], 1
|
|
958
|
-
];
|
|
959
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
960
|
-
0,
|
|
961
|
-
[_t],
|
|
962
|
-
[128 | 0]
|
|
963
|
-
];
|
|
964
|
-
var NotifyRecommendationsReceivedError$ = [3, n0, _NRRE,
|
|
965
|
-
0,
|
|
966
|
-
[_rIe, _m],
|
|
967
|
-
[0, 0]
|
|
968
|
-
];
|
|
969
|
-
var NotifyRecommendationsReceivedRequest$ = [3, n0, _NRRR,
|
|
970
|
-
0,
|
|
971
|
-
[_aI, _sI, _rIec],
|
|
972
|
-
[[0, 1], [0, 1], 64 | 0], 3
|
|
973
|
-
];
|
|
974
|
-
var NotifyRecommendationsReceivedResponse$ = [3, n0, _NRRRo,
|
|
975
|
-
0,
|
|
976
|
-
[_rIec, _er],
|
|
977
|
-
[64 | 0, () => NotifyRecommendationsReceivedErrorList]
|
|
978
|
-
];
|
|
979
|
-
var PreconditionFailedException$ = [-3, n0, _PFE,
|
|
980
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
981
|
-
[_m],
|
|
982
|
-
[0]
|
|
983
|
-
];
|
|
984
|
-
schema.TypeRegistry.for(n0).registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
985
|
-
var QueryAssistantRequest$ = [3, n0, _QAR,
|
|
986
|
-
0,
|
|
987
|
-
[_aI, _qT, _nT, _mR],
|
|
988
|
-
[[0, 1], [() => QueryText, 0], 0, 1], 2
|
|
989
|
-
];
|
|
990
|
-
var QueryAssistantResponse$ = [3, n0, _QARu,
|
|
991
|
-
0,
|
|
992
|
-
[_re, _nT],
|
|
993
|
-
[[() => QueryResultsList, 0], 0], 1
|
|
994
|
-
];
|
|
995
|
-
var QueryRecommendationTriggerData$ = [3, n0, _QRTD,
|
|
996
|
-
0,
|
|
997
|
-
[_te],
|
|
998
|
-
[[() => QueryText, 0]]
|
|
999
|
-
];
|
|
1000
|
-
var QuickResponseContents$ = [3, n0, _QRCu,
|
|
1001
|
-
0,
|
|
1002
|
-
[_pT, _ma],
|
|
1003
|
-
[[() => QuickResponseContentProvider$, 0], [() => QuickResponseContentProvider$, 0]]
|
|
1004
|
-
];
|
|
1005
|
-
var QuickResponseData$ = [3, n0, _QRD,
|
|
1006
|
-
0,
|
|
1007
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cTr, _lMT, _cont, _d, _gC, _sK, _lMB, _iA, _ch, _l, _t],
|
|
1008
|
-
[0, 0, 0, 0, 0, 0, 0, 7, 7, [() => QuickResponseContents$, 0], 0, [() => GroupingConfiguration$, 0], 0, 0, 2, [() => Channels, 0], 0, 128 | 0], 9
|
|
1009
|
-
];
|
|
1010
|
-
var QuickResponseFilterField$ = [3, n0, _QRFF,
|
|
1011
|
-
0,
|
|
1012
|
-
[_n, _o, _va, _iNE],
|
|
1013
|
-
[0, 0, 64 | 0, 2], 2
|
|
1014
|
-
];
|
|
1015
|
-
var QuickResponseOrderField$ = [3, n0, _QROF,
|
|
1016
|
-
0,
|
|
1017
|
-
[_n, _or],
|
|
1018
|
-
[0, 0], 1
|
|
1019
|
-
];
|
|
1020
|
-
var QuickResponseQueryField$ = [3, n0, _QRQF,
|
|
1021
|
-
0,
|
|
1022
|
-
[_n, _va, _o, _aF, _p],
|
|
1023
|
-
[0, 64 | 0, 0, 2, 0], 3
|
|
1024
|
-
];
|
|
1025
|
-
var QuickResponseSearchExpression$ = [3, n0, _QRSE,
|
|
1026
|
-
0,
|
|
1027
|
-
[_q, _fi, _oOF],
|
|
1028
|
-
[() => QuickResponseQueryFieldList, () => QuickResponseFilterFieldList, () => QuickResponseOrderField$]
|
|
1029
|
-
];
|
|
1030
|
-
var QuickResponseSearchResultData$ = [3, n0, _QRSRD,
|
|
1031
|
-
0,
|
|
1032
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cont, _cTr, _lMT, _iA, _d, _gC, _sK, _lMB, _ch, _l, _aNI, _aIt, _t],
|
|
1033
|
-
[0, 0, 0, 0, 0, 0, 0, [() => QuickResponseContents$, 0], 7, 7, 2, 0, [() => GroupingConfiguration$, 0], 0, 0, [() => Channels, 0], 0, [() => ContactAttributeKeys, 0], [() => ContactAttributeKeys, 0], 128 | 0], 11
|
|
1034
|
-
];
|
|
1035
|
-
var QuickResponseSummary$ = [3, n0, _QRS,
|
|
1036
|
-
0,
|
|
1037
|
-
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cTr, _lMT, _d, _lMB, _iA, _ch, _t],
|
|
1038
|
-
[0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, [() => Channels, 0], 128 | 0], 9
|
|
1039
|
-
];
|
|
1040
|
-
var RecommendationData$ = [3, n0, _RD,
|
|
1041
|
-
0,
|
|
1042
|
-
[_rIe, _do, _rS, _rL, _ty],
|
|
1043
|
-
[0, [() => Document$, 0], 1, 0, 0], 2
|
|
1044
|
-
];
|
|
1045
|
-
var RecommendationTrigger$ = [3, n0, _RT,
|
|
1046
|
-
0,
|
|
1047
|
-
[_i, _ty, _so, _da, _rIec],
|
|
1048
|
-
[0, 0, 0, [() => RecommendationTriggerData$, 0], 64 | 0], 5
|
|
1049
|
-
];
|
|
1050
|
-
var RemoveKnowledgeBaseTemplateUriRequest$ = [3, n0, _RKBTUR,
|
|
1051
|
-
0,
|
|
1052
|
-
[_kBI],
|
|
1053
|
-
[[0, 1]], 1
|
|
1054
|
-
];
|
|
1055
|
-
var RemoveKnowledgeBaseTemplateUriResponse$ = [3, n0, _RKBTURe,
|
|
1056
|
-
0,
|
|
1057
|
-
[],
|
|
1058
|
-
[]
|
|
1059
|
-
];
|
|
1060
|
-
var RenderingConfiguration$ = [3, n0, _RC,
|
|
1061
|
-
0,
|
|
1062
|
-
[_tU],
|
|
1063
|
-
[0]
|
|
1064
|
-
];
|
|
1065
|
-
var RequestTimeoutException$ = [-3, n0, _RTE,
|
|
1066
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1067
|
-
[_m],
|
|
1068
|
-
[0]
|
|
1069
|
-
];
|
|
1070
|
-
schema.TypeRegistry.for(n0).registerError(RequestTimeoutException$, RequestTimeoutException);
|
|
1071
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1072
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1073
|
-
[_m, _rN],
|
|
1074
|
-
[0, 0]
|
|
1075
|
-
];
|
|
1076
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1077
|
-
var ResultData$ = [3, n0, _RDe,
|
|
1078
|
-
0,
|
|
1079
|
-
[_rIes, _do, _rS],
|
|
1080
|
-
[0, [() => Document$, 0], 1], 2
|
|
1081
|
-
];
|
|
1082
|
-
var SearchContentRequest$ = [3, n0, _SCR,
|
|
1083
|
-
0,
|
|
1084
|
-
[_kBI, _sE, _nT, _mR],
|
|
1085
|
-
[[0, 1], () => SearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1086
|
-
];
|
|
1087
|
-
var SearchContentResponse$ = [3, n0, _SCRe,
|
|
1088
|
-
0,
|
|
1089
|
-
[_cSo, _nT],
|
|
1090
|
-
[() => ContentSummaryList, 0], 1
|
|
1091
|
-
];
|
|
1092
|
-
var SearchExpression$ = [3, n0, _SE,
|
|
1093
|
-
0,
|
|
1094
|
-
[_fi],
|
|
1095
|
-
[() => FilterList], 1
|
|
1096
|
-
];
|
|
1097
|
-
var SearchQuickResponsesRequest$ = [3, n0, _SQRR,
|
|
1098
|
-
0,
|
|
1099
|
-
[_kBI, _sE, _nT, _mR, _at],
|
|
1100
|
-
[[0, 1], () => QuickResponseSearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [() => ContactAttributes, 0]], 2
|
|
1101
|
-
];
|
|
1102
|
-
var SearchQuickResponsesResponse$ = [3, n0, _SQRRe,
|
|
1103
|
-
0,
|
|
1104
|
-
[_re, _nT],
|
|
1105
|
-
[[() => QuickResponseSearchResultsList, 0], 0], 1
|
|
1106
|
-
];
|
|
1107
|
-
var SearchSessionsRequest$ = [3, n0, _SSR,
|
|
1108
|
-
0,
|
|
1109
|
-
[_aI, _sE, _nT, _mR],
|
|
1110
|
-
[[0, 1], () => SearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1111
|
-
];
|
|
1112
|
-
var SearchSessionsResponse$ = [3, n0, _SSRe,
|
|
1113
|
-
0,
|
|
1114
|
-
[_sS, _nT],
|
|
1115
|
-
[() => SessionSummaries, 0], 1
|
|
1116
|
-
];
|
|
1117
|
-
var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
1118
|
-
0,
|
|
1119
|
-
[_kKI],
|
|
1120
|
-
[0]
|
|
1121
|
-
];
|
|
1122
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1123
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1124
|
-
[_m],
|
|
1125
|
-
[0]
|
|
1126
|
-
];
|
|
1127
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1128
|
-
var SessionData$ = [3, n0, _SD,
|
|
1129
|
-
0,
|
|
1130
|
-
[_sA, _sI, _n, _d, _t, _iC],
|
|
1131
|
-
[0, 0, 0, 0, 128 | 0, () => SessionIntegrationConfiguration$], 3
|
|
1132
|
-
];
|
|
1133
|
-
var SessionIntegrationConfiguration$ = [3, n0, _SIC,
|
|
1134
|
-
0,
|
|
1135
|
-
[_tIA],
|
|
1136
|
-
[0]
|
|
1137
|
-
];
|
|
1138
|
-
var SessionSummary$ = [3, n0, _SSe,
|
|
1139
|
-
0,
|
|
1140
|
-
[_sI, _sA, _aI, _aA],
|
|
1141
|
-
[0, 0, 0, 0], 4
|
|
1142
|
-
];
|
|
1143
|
-
var StartContentUploadRequest$ = [3, n0, _SCUR,
|
|
1144
|
-
0,
|
|
1145
|
-
[_kBI, _cT, _pUTTL],
|
|
1146
|
-
[[0, 1], 0, 1], 2
|
|
1147
|
-
];
|
|
1148
|
-
var StartContentUploadResponse$ = [3, n0, _SCURt,
|
|
1149
|
-
0,
|
|
1150
|
-
[_uI, _u, _uE, _hTI],
|
|
1151
|
-
[0, [() => Url, 0], 7, 128 | 0], 4
|
|
1152
|
-
];
|
|
1153
|
-
var StartImportJobRequest$ = [3, n0, _SIJR,
|
|
1154
|
-
0,
|
|
1155
|
-
[_kBI, _iJT, _uI, _cTl, _me, _eSC],
|
|
1156
|
-
[[0, 1], 0, 0, [0, 4], 128 | 0, () => ExternalSourceConfiguration$], 3
|
|
1157
|
-
];
|
|
1158
|
-
var StartImportJobResponse$ = [3, n0, _SIJRt,
|
|
1159
|
-
0,
|
|
1160
|
-
[_iJ],
|
|
1161
|
-
[[() => ImportJobData$, 0]]
|
|
1162
|
-
];
|
|
1163
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1164
|
-
0,
|
|
1165
|
-
[_rA, _t],
|
|
1166
|
-
[[0, 1], 128 | 0], 2
|
|
1167
|
-
];
|
|
1168
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1169
|
-
0,
|
|
1170
|
-
[],
|
|
1171
|
-
[]
|
|
1172
|
-
];
|
|
1173
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1174
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1175
|
-
[_m, _rN],
|
|
1176
|
-
[0, 0]
|
|
1177
|
-
];
|
|
1178
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1179
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1180
|
-
0,
|
|
1181
|
-
[_rA, _tK],
|
|
1182
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1183
|
-
];
|
|
1184
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1185
|
-
0,
|
|
1186
|
-
[],
|
|
1187
|
-
[]
|
|
1188
|
-
];
|
|
1189
|
-
var UpdateContentRequest$ = [3, n0, _UCR,
|
|
1190
|
-
0,
|
|
1191
|
-
[_kBI, _cI, _rI, _ti, _oLOU, _rOLOU, _me, _uI],
|
|
1192
|
-
[[0, 1], [0, 1], 0, 0, 0, 2, 128 | 0, 0], 2
|
|
1193
|
-
];
|
|
1194
|
-
var UpdateContentResponse$ = [3, n0, _UCRp,
|
|
1195
|
-
0,
|
|
1196
|
-
[_co],
|
|
1197
|
-
[[() => ContentData$, 0]]
|
|
1198
|
-
];
|
|
1199
|
-
var UpdateKnowledgeBaseTemplateUriRequest$ = [3, n0, _UKBTUR,
|
|
1200
|
-
0,
|
|
1201
|
-
[_kBI, _tU],
|
|
1202
|
-
[[0, 1], 0], 2
|
|
1203
|
-
];
|
|
1204
|
-
var UpdateKnowledgeBaseTemplateUriResponse$ = [3, n0, _UKBTURp,
|
|
1205
|
-
0,
|
|
1206
|
-
[_kB],
|
|
1207
|
-
[() => KnowledgeBaseData$]
|
|
1208
|
-
];
|
|
1209
|
-
var UpdateQuickResponseRequest$ = [3, n0, _UQRR,
|
|
1210
|
-
0,
|
|
1211
|
-
[_kBI, _qRI, _n, _co, _cT, _gC, _rGC, _d, _rD, _sK, _rSK, _iA, _ch, _l],
|
|
1212
|
-
[[0, 1], [0, 1], 0, [() => QuickResponseDataProvider$, 0], 0, [() => GroupingConfiguration$, 0], 2, 0, 2, 0, 2, 2, [() => Channels, 0], 0], 2
|
|
1213
|
-
];
|
|
1214
|
-
var UpdateQuickResponseResponse$ = [3, n0, _UQRRp,
|
|
1215
|
-
0,
|
|
1216
|
-
[_qR],
|
|
1217
|
-
[[() => QuickResponseData$, 0]]
|
|
1218
|
-
];
|
|
1219
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1220
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1221
|
-
[_m],
|
|
1222
|
-
[0]
|
|
1223
|
-
];
|
|
1224
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1225
|
-
var WisdomServiceException$ = [-3, _sm, "WisdomServiceException", 0, [], []];
|
|
1226
|
-
schema.TypeRegistry.for(_sm).registerError(WisdomServiceException$, WisdomServiceException);
|
|
1227
|
-
var AssistantAssociationSummaryList = [1, n0, _AASL,
|
|
1228
|
-
0, () => AssistantAssociationSummary$
|
|
1229
|
-
];
|
|
1230
|
-
var AssistantList = [1, n0, _AL,
|
|
1231
|
-
0, () => AssistantSummary$
|
|
1232
|
-
];
|
|
1233
|
-
var Channels = [1, n0, _Ch,
|
|
1234
|
-
0, [() => Channel,
|
|
1235
|
-
0]
|
|
1236
|
-
];
|
|
1237
|
-
var ContactAttributeKeys = [1, n0, _CAK,
|
|
1238
|
-
8, 0
|
|
1239
|
-
];
|
|
1240
|
-
var ContentSummaryList = [1, n0, _CSL,
|
|
1241
|
-
0, () => ContentSummary$
|
|
1242
|
-
];
|
|
1243
|
-
var FilterList = [1, n0, _FL,
|
|
1244
|
-
0, () => Filter$
|
|
1245
|
-
];
|
|
1246
|
-
var GroupingValues = [1, n0, _GVr,
|
|
1247
|
-
0, [() => GroupingValue,
|
|
1248
|
-
0]
|
|
1249
|
-
];
|
|
1250
|
-
var Highlights = [1, n0, _Hi,
|
|
1251
|
-
0, () => Highlight$
|
|
1252
|
-
];
|
|
1253
|
-
var ImportJobList = [1, n0, _IJL,
|
|
1254
|
-
0, () => ImportJobSummary$
|
|
1255
|
-
];
|
|
1256
|
-
var KnowledgeBaseList = [1, n0, _KBL,
|
|
1257
|
-
0, () => KnowledgeBaseSummary$
|
|
1258
|
-
];
|
|
1259
|
-
var NotifyRecommendationsReceivedErrorList = [1, n0, _NRREL,
|
|
1260
|
-
0, () => NotifyRecommendationsReceivedError$
|
|
1261
|
-
];
|
|
1262
|
-
var QueryResultsList = [1, n0, _QRL,
|
|
1263
|
-
0, [() => ResultData$,
|
|
1264
|
-
0]
|
|
1265
|
-
];
|
|
1266
|
-
var QuickResponseFilterFieldList = [1, n0, _QRFFL,
|
|
1267
|
-
0, () => QuickResponseFilterField$
|
|
1268
|
-
];
|
|
1269
|
-
var QuickResponseQueryFieldList = [1, n0, _QRQFL,
|
|
1270
|
-
0, () => QuickResponseQueryField$
|
|
1271
|
-
];
|
|
1272
|
-
var QuickResponseSearchResultsList = [1, n0, _QRSRL,
|
|
1273
|
-
0, [() => QuickResponseSearchResultData$,
|
|
1274
|
-
0]
|
|
1275
|
-
];
|
|
1276
|
-
var QuickResponseSummaryList = [1, n0, _QRSL,
|
|
1277
|
-
0, [() => QuickResponseSummary$,
|
|
1278
|
-
0]
|
|
1279
|
-
];
|
|
1280
|
-
var RecommendationList = [1, n0, _RL,
|
|
1281
|
-
0, [() => RecommendationData$,
|
|
1282
|
-
0]
|
|
1283
|
-
];
|
|
1284
|
-
var RecommendationTriggerList = [1, n0, _RTL,
|
|
1285
|
-
0, [() => RecommendationTrigger$,
|
|
1286
|
-
0]
|
|
1287
|
-
];
|
|
1288
|
-
var SessionSummaries = [1, n0, _SSes,
|
|
1289
|
-
0, () => SessionSummary$
|
|
1290
|
-
];
|
|
1291
|
-
var ContactAttributes = [2, n0, _CA,
|
|
1292
|
-
8, 0, 0
|
|
1293
|
-
];
|
|
1294
|
-
var AssistantAssociationInputData$ = [4, n0, _AAID,
|
|
1295
|
-
0,
|
|
1296
|
-
[_kBI],
|
|
1297
|
-
[0]
|
|
1298
|
-
];
|
|
1299
|
-
var AssistantAssociationOutputData$ = [4, n0, _AAOD,
|
|
1300
|
-
0,
|
|
1301
|
-
[_kBAn],
|
|
1302
|
-
[() => KnowledgeBaseAssociationData$]
|
|
1303
|
-
];
|
|
1304
|
-
var Configuration$ = [4, n0, _Co,
|
|
1305
|
-
0,
|
|
1306
|
-
[_cC],
|
|
1307
|
-
[() => ConnectConfiguration$]
|
|
1308
|
-
];
|
|
1309
|
-
var QuickResponseContentProvider$ = [4, n0, _QRCP,
|
|
1310
|
-
0,
|
|
1311
|
-
[_co],
|
|
1312
|
-
[[() => QuickResponseContent, 0]]
|
|
1313
|
-
];
|
|
1314
|
-
var QuickResponseDataProvider$ = [4, n0, _QRDP,
|
|
1315
|
-
0,
|
|
1316
|
-
[_co],
|
|
1317
|
-
[[() => QuickResponseContent, 0]]
|
|
1318
|
-
];
|
|
1319
|
-
var RecommendationTriggerData$ = [4, n0, _RTD,
|
|
1320
|
-
0,
|
|
1321
|
-
[_qu],
|
|
1322
|
-
[[() => QueryRecommendationTriggerData$, 0]]
|
|
1323
|
-
];
|
|
1324
|
-
var SourceConfiguration$ = [4, n0, _SC,
|
|
1325
|
-
0,
|
|
1326
|
-
[_aIp],
|
|
1327
|
-
[() => AppIntegrationsConfiguration$]
|
|
1328
|
-
];
|
|
1329
|
-
var CreateAssistant$ = [9, n0, _CAr,
|
|
1330
|
-
{ [_ht]: ["POST", "/assistants", 200] }, () => CreateAssistantRequest$, () => CreateAssistantResponse$
|
|
1331
|
-
];
|
|
1332
|
-
var CreateAssistantAssociation$ = [9, n0, _CAA,
|
|
1333
|
-
{ [_ht]: ["POST", "/assistants/{assistantId}/associations", 200] }, () => CreateAssistantAssociationRequest$, () => CreateAssistantAssociationResponse$
|
|
1334
|
-
];
|
|
1335
|
-
var CreateContent$ = [9, n0, _CCr,
|
|
1336
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents", 200] }, () => CreateContentRequest$, () => CreateContentResponse$
|
|
1337
|
-
];
|
|
1338
|
-
var CreateKnowledgeBase$ = [9, n0, _CKB,
|
|
1339
|
-
{ [_ht]: ["POST", "/knowledgeBases", 200] }, () => CreateKnowledgeBaseRequest$, () => CreateKnowledgeBaseResponse$
|
|
1340
|
-
];
|
|
1341
|
-
var CreateQuickResponse$ = [9, n0, _CQR,
|
|
1342
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] }, () => CreateQuickResponseRequest$, () => CreateQuickResponseResponse$
|
|
1343
|
-
];
|
|
1344
|
-
var CreateSession$ = [9, n0, _CSr,
|
|
1345
|
-
{ [_ht]: ["POST", "/assistants/{assistantId}/sessions", 200] }, () => CreateSessionRequest$, () => CreateSessionResponse$
|
|
1346
|
-
];
|
|
1347
|
-
var DeleteAssistant$ = [9, n0, _DA,
|
|
1348
|
-
{ [_ht]: ["DELETE", "/assistants/{assistantId}", 204] }, () => DeleteAssistantRequest$, () => DeleteAssistantResponse$
|
|
1349
|
-
];
|
|
1350
|
-
var DeleteAssistantAssociation$ = [9, n0, _DAA,
|
|
1351
|
-
{ [_ht]: ["DELETE", "/assistants/{assistantId}/associations/{assistantAssociationId}", 204] }, () => DeleteAssistantAssociationRequest$, () => DeleteAssistantAssociationResponse$
|
|
1352
|
-
];
|
|
1353
|
-
var DeleteContent$ = [9, n0, _DC,
|
|
1354
|
-
{ [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 204] }, () => DeleteContentRequest$, () => DeleteContentResponse$
|
|
1355
|
-
];
|
|
1356
|
-
var DeleteImportJob$ = [9, n0, _DIJ,
|
|
1357
|
-
{ [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 204] }, () => DeleteImportJobRequest$, () => DeleteImportJobResponse$
|
|
1358
|
-
];
|
|
1359
|
-
var DeleteKnowledgeBase$ = [9, n0, _DKB,
|
|
1360
|
-
{ [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}", 204] }, () => DeleteKnowledgeBaseRequest$, () => DeleteKnowledgeBaseResponse$
|
|
1361
|
-
];
|
|
1362
|
-
var DeleteQuickResponse$ = [9, n0, _DQR,
|
|
1363
|
-
{ [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 204] }, () => DeleteQuickResponseRequest$, () => DeleteQuickResponseResponse$
|
|
1364
|
-
];
|
|
1365
|
-
var GetAssistant$ = [9, n0, _GA,
|
|
1366
|
-
{ [_ht]: ["GET", "/assistants/{assistantId}", 200] }, () => GetAssistantRequest$, () => GetAssistantResponse$
|
|
1367
|
-
];
|
|
1368
|
-
var GetAssistantAssociation$ = [9, n0, _GAA,
|
|
1369
|
-
{ [_ht]: ["GET", "/assistants/{assistantId}/associations/{assistantAssociationId}", 200] }, () => GetAssistantAssociationRequest$, () => GetAssistantAssociationResponse$
|
|
1370
|
-
];
|
|
1371
|
-
var GetContent$ = [9, n0, _GCe,
|
|
1372
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] }, () => GetContentRequest$, () => GetContentResponse$
|
|
1373
|
-
];
|
|
1374
|
-
var GetContentSummary$ = [9, n0, _GCS,
|
|
1375
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary", 200] }, () => GetContentSummaryRequest$, () => GetContentSummaryResponse$
|
|
1376
|
-
];
|
|
1377
|
-
var GetImportJob$ = [9, n0, _GIJ,
|
|
1378
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 200] }, () => GetImportJobRequest$, () => GetImportJobResponse$
|
|
1379
|
-
];
|
|
1380
|
-
var GetKnowledgeBase$ = [9, n0, _GKB,
|
|
1381
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}", 200] }, () => GetKnowledgeBaseRequest$, () => GetKnowledgeBaseResponse$
|
|
1382
|
-
];
|
|
1383
|
-
var GetQuickResponse$ = [9, n0, _GQR,
|
|
1384
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] }, () => GetQuickResponseRequest$, () => GetQuickResponseResponse$
|
|
1385
|
-
];
|
|
1386
|
-
var GetRecommendations$ = [9, n0, _GR,
|
|
1387
|
-
{ [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}/recommendations", 200] }, () => GetRecommendationsRequest$, () => GetRecommendationsResponse$
|
|
1388
|
-
];
|
|
1389
|
-
var GetSession$ = [9, n0, _GS,
|
|
1390
|
-
{ [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
1391
|
-
];
|
|
1392
|
-
var ListAssistantAssociations$ = [9, n0, _LAA,
|
|
1393
|
-
{ [_ht]: ["GET", "/assistants/{assistantId}/associations", 200] }, () => ListAssistantAssociationsRequest$, () => ListAssistantAssociationsResponse$
|
|
1394
|
-
];
|
|
1395
|
-
var ListAssistants$ = [9, n0, _LA,
|
|
1396
|
-
{ [_ht]: ["GET", "/assistants", 200] }, () => ListAssistantsRequest$, () => ListAssistantsResponse$
|
|
1397
|
-
];
|
|
1398
|
-
var ListContents$ = [9, n0, _LC,
|
|
1399
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents", 200] }, () => ListContentsRequest$, () => ListContentsResponse$
|
|
1400
|
-
];
|
|
1401
|
-
var ListImportJobs$ = [9, n0, _LIJ,
|
|
1402
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] }, () => ListImportJobsRequest$, () => ListImportJobsResponse$
|
|
1403
|
-
];
|
|
1404
|
-
var ListKnowledgeBases$ = [9, n0, _LKB,
|
|
1405
|
-
{ [_ht]: ["GET", "/knowledgeBases", 200] }, () => ListKnowledgeBasesRequest$, () => ListKnowledgeBasesResponse$
|
|
1406
|
-
];
|
|
1407
|
-
var ListQuickResponses$ = [9, n0, _LQR,
|
|
1408
|
-
{ [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] }, () => ListQuickResponsesRequest$, () => ListQuickResponsesResponse$
|
|
1409
|
-
];
|
|
1410
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1411
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1412
|
-
];
|
|
1413
|
-
var NotifyRecommendationsReceived$ = [9, n0, _NRR,
|
|
1414
|
-
{ [_ht]: ["POST", "/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify", 200] }, () => NotifyRecommendationsReceivedRequest$, () => NotifyRecommendationsReceivedResponse$
|
|
1415
|
-
];
|
|
1416
|
-
var QueryAssistant$ = [9, n0, _QA,
|
|
1417
|
-
{ [_ht]: ["POST", "/assistants/{assistantId}/query", 200] }, () => QueryAssistantRequest$, () => QueryAssistantResponse$
|
|
1418
|
-
];
|
|
1419
|
-
var RemoveKnowledgeBaseTemplateUri$ = [9, n0, _RKBTU,
|
|
1420
|
-
{ [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/templateUri", 204] }, () => RemoveKnowledgeBaseTemplateUriRequest$, () => RemoveKnowledgeBaseTemplateUriResponse$
|
|
1421
|
-
];
|
|
1422
|
-
var SearchContent$ = [9, n0, _SCe,
|
|
1423
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search", 200] }, () => SearchContentRequest$, () => SearchContentResponse$
|
|
1424
|
-
];
|
|
1425
|
-
var SearchQuickResponses$ = [9, n0, _SQR,
|
|
1426
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search/quickResponses", 200] }, () => SearchQuickResponsesRequest$, () => SearchQuickResponsesResponse$
|
|
1427
|
-
];
|
|
1428
|
-
var SearchSessions$ = [9, n0, _SSea,
|
|
1429
|
-
{ [_ht]: ["POST", "/assistants/{assistantId}/searchSessions", 200] }, () => SearchSessionsRequest$, () => SearchSessionsResponse$
|
|
1430
|
-
];
|
|
1431
|
-
var StartContentUpload$ = [9, n0, _SCU,
|
|
1432
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/upload", 200] }, () => StartContentUploadRequest$, () => StartContentUploadResponse$
|
|
1433
|
-
];
|
|
1434
|
-
var StartImportJob$ = [9, n0, _SIJ,
|
|
1435
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] }, () => StartImportJobRequest$, () => StartImportJobResponse$
|
|
1436
|
-
];
|
|
1437
|
-
var TagResource$ = [9, n0, _TR,
|
|
1438
|
-
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1439
|
-
];
|
|
1440
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1441
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1442
|
-
];
|
|
1443
|
-
var UpdateContent$ = [9, n0, _UC,
|
|
1444
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] }, () => UpdateContentRequest$, () => UpdateContentResponse$
|
|
1445
|
-
];
|
|
1446
|
-
var UpdateKnowledgeBaseTemplateUri$ = [9, n0, _UKBTU,
|
|
1447
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/templateUri", 200] }, () => UpdateKnowledgeBaseTemplateUriRequest$, () => UpdateKnowledgeBaseTemplateUriResponse$
|
|
1448
|
-
];
|
|
1449
|
-
var UpdateQuickResponse$ = [9, n0, _UQR,
|
|
1450
|
-
{ [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] }, () => UpdateQuickResponseRequest$, () => UpdateQuickResponseResponse$
|
|
1451
|
-
];
|
|
1452
|
-
|
|
1453
116
|
class CreateAssistantAssociationCommand extends smithyClient.Command
|
|
1454
117
|
.classBuilder()
|
|
1455
118
|
.ep(commonParams)
|
|
@@ -1458,7 +121,7 @@ class CreateAssistantAssociationCommand extends smithyClient.Command
|
|
|
1458
121
|
})
|
|
1459
122
|
.s("WisdomService", "CreateAssistantAssociation", {})
|
|
1460
123
|
.n("WisdomClient", "CreateAssistantAssociationCommand")
|
|
1461
|
-
.sc(CreateAssistantAssociation$)
|
|
124
|
+
.sc(schemas_0.CreateAssistantAssociation$)
|
|
1462
125
|
.build() {
|
|
1463
126
|
}
|
|
1464
127
|
|
|
@@ -1470,7 +133,7 @@ class CreateAssistantCommand extends smithyClient.Command
|
|
|
1470
133
|
})
|
|
1471
134
|
.s("WisdomService", "CreateAssistant", {})
|
|
1472
135
|
.n("WisdomClient", "CreateAssistantCommand")
|
|
1473
|
-
.sc(CreateAssistant$)
|
|
136
|
+
.sc(schemas_0.CreateAssistant$)
|
|
1474
137
|
.build() {
|
|
1475
138
|
}
|
|
1476
139
|
|
|
@@ -1482,7 +145,7 @@ class CreateContentCommand extends smithyClient.Command
|
|
|
1482
145
|
})
|
|
1483
146
|
.s("WisdomService", "CreateContent", {})
|
|
1484
147
|
.n("WisdomClient", "CreateContentCommand")
|
|
1485
|
-
.sc(CreateContent$)
|
|
148
|
+
.sc(schemas_0.CreateContent$)
|
|
1486
149
|
.build() {
|
|
1487
150
|
}
|
|
1488
151
|
|
|
@@ -1494,7 +157,7 @@ class CreateKnowledgeBaseCommand extends smithyClient.Command
|
|
|
1494
157
|
})
|
|
1495
158
|
.s("WisdomService", "CreateKnowledgeBase", {})
|
|
1496
159
|
.n("WisdomClient", "CreateKnowledgeBaseCommand")
|
|
1497
|
-
.sc(CreateKnowledgeBase$)
|
|
160
|
+
.sc(schemas_0.CreateKnowledgeBase$)
|
|
1498
161
|
.build() {
|
|
1499
162
|
}
|
|
1500
163
|
|
|
@@ -1506,7 +169,7 @@ class CreateQuickResponseCommand extends smithyClient.Command
|
|
|
1506
169
|
})
|
|
1507
170
|
.s("WisdomService", "CreateQuickResponse", {})
|
|
1508
171
|
.n("WisdomClient", "CreateQuickResponseCommand")
|
|
1509
|
-
.sc(CreateQuickResponse$)
|
|
172
|
+
.sc(schemas_0.CreateQuickResponse$)
|
|
1510
173
|
.build() {
|
|
1511
174
|
}
|
|
1512
175
|
|
|
@@ -1518,7 +181,7 @@ class CreateSessionCommand extends smithyClient.Command
|
|
|
1518
181
|
})
|
|
1519
182
|
.s("WisdomService", "CreateSession", {})
|
|
1520
183
|
.n("WisdomClient", "CreateSessionCommand")
|
|
1521
|
-
.sc(CreateSession$)
|
|
184
|
+
.sc(schemas_0.CreateSession$)
|
|
1522
185
|
.build() {
|
|
1523
186
|
}
|
|
1524
187
|
|
|
@@ -1530,7 +193,7 @@ class DeleteAssistantAssociationCommand extends smithyClient.Command
|
|
|
1530
193
|
})
|
|
1531
194
|
.s("WisdomService", "DeleteAssistantAssociation", {})
|
|
1532
195
|
.n("WisdomClient", "DeleteAssistantAssociationCommand")
|
|
1533
|
-
.sc(DeleteAssistantAssociation$)
|
|
196
|
+
.sc(schemas_0.DeleteAssistantAssociation$)
|
|
1534
197
|
.build() {
|
|
1535
198
|
}
|
|
1536
199
|
|
|
@@ -1542,7 +205,7 @@ class DeleteAssistantCommand extends smithyClient.Command
|
|
|
1542
205
|
})
|
|
1543
206
|
.s("WisdomService", "DeleteAssistant", {})
|
|
1544
207
|
.n("WisdomClient", "DeleteAssistantCommand")
|
|
1545
|
-
.sc(DeleteAssistant$)
|
|
208
|
+
.sc(schemas_0.DeleteAssistant$)
|
|
1546
209
|
.build() {
|
|
1547
210
|
}
|
|
1548
211
|
|
|
@@ -1554,7 +217,7 @@ class DeleteContentCommand extends smithyClient.Command
|
|
|
1554
217
|
})
|
|
1555
218
|
.s("WisdomService", "DeleteContent", {})
|
|
1556
219
|
.n("WisdomClient", "DeleteContentCommand")
|
|
1557
|
-
.sc(DeleteContent$)
|
|
220
|
+
.sc(schemas_0.DeleteContent$)
|
|
1558
221
|
.build() {
|
|
1559
222
|
}
|
|
1560
223
|
|
|
@@ -1566,7 +229,7 @@ class DeleteImportJobCommand extends smithyClient.Command
|
|
|
1566
229
|
})
|
|
1567
230
|
.s("WisdomService", "DeleteImportJob", {})
|
|
1568
231
|
.n("WisdomClient", "DeleteImportJobCommand")
|
|
1569
|
-
.sc(DeleteImportJob$)
|
|
232
|
+
.sc(schemas_0.DeleteImportJob$)
|
|
1570
233
|
.build() {
|
|
1571
234
|
}
|
|
1572
235
|
|
|
@@ -1578,7 +241,7 @@ class DeleteKnowledgeBaseCommand extends smithyClient.Command
|
|
|
1578
241
|
})
|
|
1579
242
|
.s("WisdomService", "DeleteKnowledgeBase", {})
|
|
1580
243
|
.n("WisdomClient", "DeleteKnowledgeBaseCommand")
|
|
1581
|
-
.sc(DeleteKnowledgeBase$)
|
|
244
|
+
.sc(schemas_0.DeleteKnowledgeBase$)
|
|
1582
245
|
.build() {
|
|
1583
246
|
}
|
|
1584
247
|
|
|
@@ -1590,7 +253,7 @@ class DeleteQuickResponseCommand extends smithyClient.Command
|
|
|
1590
253
|
})
|
|
1591
254
|
.s("WisdomService", "DeleteQuickResponse", {})
|
|
1592
255
|
.n("WisdomClient", "DeleteQuickResponseCommand")
|
|
1593
|
-
.sc(DeleteQuickResponse$)
|
|
256
|
+
.sc(schemas_0.DeleteQuickResponse$)
|
|
1594
257
|
.build() {
|
|
1595
258
|
}
|
|
1596
259
|
|
|
@@ -1602,7 +265,7 @@ class GetAssistantAssociationCommand extends smithyClient.Command
|
|
|
1602
265
|
})
|
|
1603
266
|
.s("WisdomService", "GetAssistantAssociation", {})
|
|
1604
267
|
.n("WisdomClient", "GetAssistantAssociationCommand")
|
|
1605
|
-
.sc(GetAssistantAssociation$)
|
|
268
|
+
.sc(schemas_0.GetAssistantAssociation$)
|
|
1606
269
|
.build() {
|
|
1607
270
|
}
|
|
1608
271
|
|
|
@@ -1614,7 +277,7 @@ class GetAssistantCommand extends smithyClient.Command
|
|
|
1614
277
|
})
|
|
1615
278
|
.s("WisdomService", "GetAssistant", {})
|
|
1616
279
|
.n("WisdomClient", "GetAssistantCommand")
|
|
1617
|
-
.sc(GetAssistant$)
|
|
280
|
+
.sc(schemas_0.GetAssistant$)
|
|
1618
281
|
.build() {
|
|
1619
282
|
}
|
|
1620
283
|
|
|
@@ -1626,7 +289,7 @@ class GetContentCommand extends smithyClient.Command
|
|
|
1626
289
|
})
|
|
1627
290
|
.s("WisdomService", "GetContent", {})
|
|
1628
291
|
.n("WisdomClient", "GetContentCommand")
|
|
1629
|
-
.sc(GetContent$)
|
|
292
|
+
.sc(schemas_0.GetContent$)
|
|
1630
293
|
.build() {
|
|
1631
294
|
}
|
|
1632
295
|
|
|
@@ -1638,7 +301,7 @@ class GetContentSummaryCommand extends smithyClient.Command
|
|
|
1638
301
|
})
|
|
1639
302
|
.s("WisdomService", "GetContentSummary", {})
|
|
1640
303
|
.n("WisdomClient", "GetContentSummaryCommand")
|
|
1641
|
-
.sc(GetContentSummary$)
|
|
304
|
+
.sc(schemas_0.GetContentSummary$)
|
|
1642
305
|
.build() {
|
|
1643
306
|
}
|
|
1644
307
|
|
|
@@ -1650,7 +313,7 @@ class GetImportJobCommand extends smithyClient.Command
|
|
|
1650
313
|
})
|
|
1651
314
|
.s("WisdomService", "GetImportJob", {})
|
|
1652
315
|
.n("WisdomClient", "GetImportJobCommand")
|
|
1653
|
-
.sc(GetImportJob$)
|
|
316
|
+
.sc(schemas_0.GetImportJob$)
|
|
1654
317
|
.build() {
|
|
1655
318
|
}
|
|
1656
319
|
|
|
@@ -1662,7 +325,7 @@ class GetKnowledgeBaseCommand extends smithyClient.Command
|
|
|
1662
325
|
})
|
|
1663
326
|
.s("WisdomService", "GetKnowledgeBase", {})
|
|
1664
327
|
.n("WisdomClient", "GetKnowledgeBaseCommand")
|
|
1665
|
-
.sc(GetKnowledgeBase$)
|
|
328
|
+
.sc(schemas_0.GetKnowledgeBase$)
|
|
1666
329
|
.build() {
|
|
1667
330
|
}
|
|
1668
331
|
|
|
@@ -1674,7 +337,7 @@ class GetQuickResponseCommand extends smithyClient.Command
|
|
|
1674
337
|
})
|
|
1675
338
|
.s("WisdomService", "GetQuickResponse", {})
|
|
1676
339
|
.n("WisdomClient", "GetQuickResponseCommand")
|
|
1677
|
-
.sc(GetQuickResponse$)
|
|
340
|
+
.sc(schemas_0.GetQuickResponse$)
|
|
1678
341
|
.build() {
|
|
1679
342
|
}
|
|
1680
343
|
|
|
@@ -1686,7 +349,7 @@ class GetRecommendationsCommand extends smithyClient.Command
|
|
|
1686
349
|
})
|
|
1687
350
|
.s("WisdomService", "GetRecommendations", {})
|
|
1688
351
|
.n("WisdomClient", "GetRecommendationsCommand")
|
|
1689
|
-
.sc(GetRecommendations$)
|
|
352
|
+
.sc(schemas_0.GetRecommendations$)
|
|
1690
353
|
.build() {
|
|
1691
354
|
}
|
|
1692
355
|
|
|
@@ -1698,7 +361,7 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
1698
361
|
})
|
|
1699
362
|
.s("WisdomService", "GetSession", {})
|
|
1700
363
|
.n("WisdomClient", "GetSessionCommand")
|
|
1701
|
-
.sc(GetSession$)
|
|
364
|
+
.sc(schemas_0.GetSession$)
|
|
1702
365
|
.build() {
|
|
1703
366
|
}
|
|
1704
367
|
|
|
@@ -1710,7 +373,7 @@ class ListAssistantAssociationsCommand extends smithyClient.Command
|
|
|
1710
373
|
})
|
|
1711
374
|
.s("WisdomService", "ListAssistantAssociations", {})
|
|
1712
375
|
.n("WisdomClient", "ListAssistantAssociationsCommand")
|
|
1713
|
-
.sc(ListAssistantAssociations$)
|
|
376
|
+
.sc(schemas_0.ListAssistantAssociations$)
|
|
1714
377
|
.build() {
|
|
1715
378
|
}
|
|
1716
379
|
|
|
@@ -1722,7 +385,7 @@ class ListAssistantsCommand extends smithyClient.Command
|
|
|
1722
385
|
})
|
|
1723
386
|
.s("WisdomService", "ListAssistants", {})
|
|
1724
387
|
.n("WisdomClient", "ListAssistantsCommand")
|
|
1725
|
-
.sc(ListAssistants$)
|
|
388
|
+
.sc(schemas_0.ListAssistants$)
|
|
1726
389
|
.build() {
|
|
1727
390
|
}
|
|
1728
391
|
|
|
@@ -1734,7 +397,7 @@ class ListContentsCommand extends smithyClient.Command
|
|
|
1734
397
|
})
|
|
1735
398
|
.s("WisdomService", "ListContents", {})
|
|
1736
399
|
.n("WisdomClient", "ListContentsCommand")
|
|
1737
|
-
.sc(ListContents$)
|
|
400
|
+
.sc(schemas_0.ListContents$)
|
|
1738
401
|
.build() {
|
|
1739
402
|
}
|
|
1740
403
|
|
|
@@ -1746,7 +409,7 @@ class ListImportJobsCommand extends smithyClient.Command
|
|
|
1746
409
|
})
|
|
1747
410
|
.s("WisdomService", "ListImportJobs", {})
|
|
1748
411
|
.n("WisdomClient", "ListImportJobsCommand")
|
|
1749
|
-
.sc(ListImportJobs$)
|
|
412
|
+
.sc(schemas_0.ListImportJobs$)
|
|
1750
413
|
.build() {
|
|
1751
414
|
}
|
|
1752
415
|
|
|
@@ -1758,7 +421,7 @@ class ListKnowledgeBasesCommand extends smithyClient.Command
|
|
|
1758
421
|
})
|
|
1759
422
|
.s("WisdomService", "ListKnowledgeBases", {})
|
|
1760
423
|
.n("WisdomClient", "ListKnowledgeBasesCommand")
|
|
1761
|
-
.sc(ListKnowledgeBases$)
|
|
424
|
+
.sc(schemas_0.ListKnowledgeBases$)
|
|
1762
425
|
.build() {
|
|
1763
426
|
}
|
|
1764
427
|
|
|
@@ -1770,7 +433,7 @@ class ListQuickResponsesCommand extends smithyClient.Command
|
|
|
1770
433
|
})
|
|
1771
434
|
.s("WisdomService", "ListQuickResponses", {})
|
|
1772
435
|
.n("WisdomClient", "ListQuickResponsesCommand")
|
|
1773
|
-
.sc(ListQuickResponses$)
|
|
436
|
+
.sc(schemas_0.ListQuickResponses$)
|
|
1774
437
|
.build() {
|
|
1775
438
|
}
|
|
1776
439
|
|
|
@@ -1782,7 +445,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1782
445
|
})
|
|
1783
446
|
.s("WisdomService", "ListTagsForResource", {})
|
|
1784
447
|
.n("WisdomClient", "ListTagsForResourceCommand")
|
|
1785
|
-
.sc(ListTagsForResource$)
|
|
448
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1786
449
|
.build() {
|
|
1787
450
|
}
|
|
1788
451
|
|
|
@@ -1794,7 +457,7 @@ class NotifyRecommendationsReceivedCommand extends smithyClient.Command
|
|
|
1794
457
|
})
|
|
1795
458
|
.s("WisdomService", "NotifyRecommendationsReceived", {})
|
|
1796
459
|
.n("WisdomClient", "NotifyRecommendationsReceivedCommand")
|
|
1797
|
-
.sc(NotifyRecommendationsReceived$)
|
|
460
|
+
.sc(schemas_0.NotifyRecommendationsReceived$)
|
|
1798
461
|
.build() {
|
|
1799
462
|
}
|
|
1800
463
|
|
|
@@ -1806,7 +469,7 @@ class QueryAssistantCommand extends smithyClient.Command
|
|
|
1806
469
|
})
|
|
1807
470
|
.s("WisdomService", "QueryAssistant", {})
|
|
1808
471
|
.n("WisdomClient", "QueryAssistantCommand")
|
|
1809
|
-
.sc(QueryAssistant$)
|
|
472
|
+
.sc(schemas_0.QueryAssistant$)
|
|
1810
473
|
.build() {
|
|
1811
474
|
}
|
|
1812
475
|
|
|
@@ -1818,7 +481,7 @@ class RemoveKnowledgeBaseTemplateUriCommand extends smithyClient.Command
|
|
|
1818
481
|
})
|
|
1819
482
|
.s("WisdomService", "RemoveKnowledgeBaseTemplateUri", {})
|
|
1820
483
|
.n("WisdomClient", "RemoveKnowledgeBaseTemplateUriCommand")
|
|
1821
|
-
.sc(RemoveKnowledgeBaseTemplateUri$)
|
|
484
|
+
.sc(schemas_0.RemoveKnowledgeBaseTemplateUri$)
|
|
1822
485
|
.build() {
|
|
1823
486
|
}
|
|
1824
487
|
|
|
@@ -1830,7 +493,7 @@ class SearchContentCommand extends smithyClient.Command
|
|
|
1830
493
|
})
|
|
1831
494
|
.s("WisdomService", "SearchContent", {})
|
|
1832
495
|
.n("WisdomClient", "SearchContentCommand")
|
|
1833
|
-
.sc(SearchContent$)
|
|
496
|
+
.sc(schemas_0.SearchContent$)
|
|
1834
497
|
.build() {
|
|
1835
498
|
}
|
|
1836
499
|
|
|
@@ -1842,7 +505,7 @@ class SearchQuickResponsesCommand extends smithyClient.Command
|
|
|
1842
505
|
})
|
|
1843
506
|
.s("WisdomService", "SearchQuickResponses", {})
|
|
1844
507
|
.n("WisdomClient", "SearchQuickResponsesCommand")
|
|
1845
|
-
.sc(SearchQuickResponses$)
|
|
508
|
+
.sc(schemas_0.SearchQuickResponses$)
|
|
1846
509
|
.build() {
|
|
1847
510
|
}
|
|
1848
511
|
|
|
@@ -1854,7 +517,7 @@ class SearchSessionsCommand extends smithyClient.Command
|
|
|
1854
517
|
})
|
|
1855
518
|
.s("WisdomService", "SearchSessions", {})
|
|
1856
519
|
.n("WisdomClient", "SearchSessionsCommand")
|
|
1857
|
-
.sc(SearchSessions$)
|
|
520
|
+
.sc(schemas_0.SearchSessions$)
|
|
1858
521
|
.build() {
|
|
1859
522
|
}
|
|
1860
523
|
|
|
@@ -1866,7 +529,7 @@ class StartContentUploadCommand extends smithyClient.Command
|
|
|
1866
529
|
})
|
|
1867
530
|
.s("WisdomService", "StartContentUpload", {})
|
|
1868
531
|
.n("WisdomClient", "StartContentUploadCommand")
|
|
1869
|
-
.sc(StartContentUpload$)
|
|
532
|
+
.sc(schemas_0.StartContentUpload$)
|
|
1870
533
|
.build() {
|
|
1871
534
|
}
|
|
1872
535
|
|
|
@@ -1878,7 +541,7 @@ class StartImportJobCommand extends smithyClient.Command
|
|
|
1878
541
|
})
|
|
1879
542
|
.s("WisdomService", "StartImportJob", {})
|
|
1880
543
|
.n("WisdomClient", "StartImportJobCommand")
|
|
1881
|
-
.sc(StartImportJob$)
|
|
544
|
+
.sc(schemas_0.StartImportJob$)
|
|
1882
545
|
.build() {
|
|
1883
546
|
}
|
|
1884
547
|
|
|
@@ -1890,7 +553,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1890
553
|
})
|
|
1891
554
|
.s("WisdomService", "TagResource", {})
|
|
1892
555
|
.n("WisdomClient", "TagResourceCommand")
|
|
1893
|
-
.sc(TagResource$)
|
|
556
|
+
.sc(schemas_0.TagResource$)
|
|
1894
557
|
.build() {
|
|
1895
558
|
}
|
|
1896
559
|
|
|
@@ -1902,7 +565,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1902
565
|
})
|
|
1903
566
|
.s("WisdomService", "UntagResource", {})
|
|
1904
567
|
.n("WisdomClient", "UntagResourceCommand")
|
|
1905
|
-
.sc(UntagResource$)
|
|
568
|
+
.sc(schemas_0.UntagResource$)
|
|
1906
569
|
.build() {
|
|
1907
570
|
}
|
|
1908
571
|
|
|
@@ -1914,7 +577,7 @@ class UpdateContentCommand extends smithyClient.Command
|
|
|
1914
577
|
})
|
|
1915
578
|
.s("WisdomService", "UpdateContent", {})
|
|
1916
579
|
.n("WisdomClient", "UpdateContentCommand")
|
|
1917
|
-
.sc(UpdateContent$)
|
|
580
|
+
.sc(schemas_0.UpdateContent$)
|
|
1918
581
|
.build() {
|
|
1919
582
|
}
|
|
1920
583
|
|
|
@@ -1926,7 +589,7 @@ class UpdateKnowledgeBaseTemplateUriCommand extends smithyClient.Command
|
|
|
1926
589
|
})
|
|
1927
590
|
.s("WisdomService", "UpdateKnowledgeBaseTemplateUri", {})
|
|
1928
591
|
.n("WisdomClient", "UpdateKnowledgeBaseTemplateUriCommand")
|
|
1929
|
-
.sc(UpdateKnowledgeBaseTemplateUri$)
|
|
592
|
+
.sc(schemas_0.UpdateKnowledgeBaseTemplateUri$)
|
|
1930
593
|
.build() {
|
|
1931
594
|
}
|
|
1932
595
|
|
|
@@ -1938,7 +601,7 @@ class UpdateQuickResponseCommand extends smithyClient.Command
|
|
|
1938
601
|
})
|
|
1939
602
|
.s("WisdomService", "UpdateQuickResponse", {})
|
|
1940
603
|
.n("WisdomClient", "UpdateQuickResponseCommand")
|
|
1941
|
-
.sc(UpdateQuickResponse$)
|
|
604
|
+
.sc(schemas_0.UpdateQuickResponse$)
|
|
1942
605
|
.build() {
|
|
1943
606
|
}
|
|
1944
607
|
|
|
@@ -2129,257 +792,73 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2129
792
|
enumerable: true,
|
|
2130
793
|
get: function () { return smithyClient.Client; }
|
|
2131
794
|
});
|
|
2132
|
-
exports
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
exports.AssistantAssociationInputData$ = AssistantAssociationInputData$;
|
|
2137
|
-
exports.AssistantAssociationOutputData$ = AssistantAssociationOutputData$;
|
|
2138
|
-
exports.AssistantAssociationSummary$ = AssistantAssociationSummary$;
|
|
2139
|
-
exports.AssistantData$ = AssistantData$;
|
|
2140
|
-
exports.AssistantIntegrationConfiguration$ = AssistantIntegrationConfiguration$;
|
|
795
|
+
Object.defineProperty(exports, "WisdomServiceException", {
|
|
796
|
+
enumerable: true,
|
|
797
|
+
get: function () { return WisdomServiceException.WisdomServiceException; }
|
|
798
|
+
});
|
|
2141
799
|
exports.AssistantStatus = AssistantStatus;
|
|
2142
|
-
exports.AssistantSummary$ = AssistantSummary$;
|
|
2143
800
|
exports.AssistantType = AssistantType;
|
|
2144
801
|
exports.AssociationType = AssociationType;
|
|
2145
|
-
exports.Configuration$ = Configuration$;
|
|
2146
|
-
exports.ConflictException = ConflictException;
|
|
2147
|
-
exports.ConflictException$ = ConflictException$;
|
|
2148
|
-
exports.ConnectConfiguration$ = ConnectConfiguration$;
|
|
2149
|
-
exports.ContentData$ = ContentData$;
|
|
2150
|
-
exports.ContentReference$ = ContentReference$;
|
|
2151
802
|
exports.ContentStatus = ContentStatus;
|
|
2152
|
-
exports.ContentSummary$ = ContentSummary$;
|
|
2153
|
-
exports.CreateAssistant$ = CreateAssistant$;
|
|
2154
|
-
exports.CreateAssistantAssociation$ = CreateAssistantAssociation$;
|
|
2155
803
|
exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
|
|
2156
|
-
exports.CreateAssistantAssociationRequest$ = CreateAssistantAssociationRequest$;
|
|
2157
|
-
exports.CreateAssistantAssociationResponse$ = CreateAssistantAssociationResponse$;
|
|
2158
804
|
exports.CreateAssistantCommand = CreateAssistantCommand;
|
|
2159
|
-
exports.CreateAssistantRequest$ = CreateAssistantRequest$;
|
|
2160
|
-
exports.CreateAssistantResponse$ = CreateAssistantResponse$;
|
|
2161
|
-
exports.CreateContent$ = CreateContent$;
|
|
2162
805
|
exports.CreateContentCommand = CreateContentCommand;
|
|
2163
|
-
exports.CreateContentRequest$ = CreateContentRequest$;
|
|
2164
|
-
exports.CreateContentResponse$ = CreateContentResponse$;
|
|
2165
|
-
exports.CreateKnowledgeBase$ = CreateKnowledgeBase$;
|
|
2166
806
|
exports.CreateKnowledgeBaseCommand = CreateKnowledgeBaseCommand;
|
|
2167
|
-
exports.CreateKnowledgeBaseRequest$ = CreateKnowledgeBaseRequest$;
|
|
2168
|
-
exports.CreateKnowledgeBaseResponse$ = CreateKnowledgeBaseResponse$;
|
|
2169
|
-
exports.CreateQuickResponse$ = CreateQuickResponse$;
|
|
2170
807
|
exports.CreateQuickResponseCommand = CreateQuickResponseCommand;
|
|
2171
|
-
exports.CreateQuickResponseRequest$ = CreateQuickResponseRequest$;
|
|
2172
|
-
exports.CreateQuickResponseResponse$ = CreateQuickResponseResponse$;
|
|
2173
|
-
exports.CreateSession$ = CreateSession$;
|
|
2174
808
|
exports.CreateSessionCommand = CreateSessionCommand;
|
|
2175
|
-
exports.CreateSessionRequest$ = CreateSessionRequest$;
|
|
2176
|
-
exports.CreateSessionResponse$ = CreateSessionResponse$;
|
|
2177
|
-
exports.DeleteAssistant$ = DeleteAssistant$;
|
|
2178
|
-
exports.DeleteAssistantAssociation$ = DeleteAssistantAssociation$;
|
|
2179
809
|
exports.DeleteAssistantAssociationCommand = DeleteAssistantAssociationCommand;
|
|
2180
|
-
exports.DeleteAssistantAssociationRequest$ = DeleteAssistantAssociationRequest$;
|
|
2181
|
-
exports.DeleteAssistantAssociationResponse$ = DeleteAssistantAssociationResponse$;
|
|
2182
810
|
exports.DeleteAssistantCommand = DeleteAssistantCommand;
|
|
2183
|
-
exports.DeleteAssistantRequest$ = DeleteAssistantRequest$;
|
|
2184
|
-
exports.DeleteAssistantResponse$ = DeleteAssistantResponse$;
|
|
2185
|
-
exports.DeleteContent$ = DeleteContent$;
|
|
2186
811
|
exports.DeleteContentCommand = DeleteContentCommand;
|
|
2187
|
-
exports.DeleteContentRequest$ = DeleteContentRequest$;
|
|
2188
|
-
exports.DeleteContentResponse$ = DeleteContentResponse$;
|
|
2189
|
-
exports.DeleteImportJob$ = DeleteImportJob$;
|
|
2190
812
|
exports.DeleteImportJobCommand = DeleteImportJobCommand;
|
|
2191
|
-
exports.DeleteImportJobRequest$ = DeleteImportJobRequest$;
|
|
2192
|
-
exports.DeleteImportJobResponse$ = DeleteImportJobResponse$;
|
|
2193
|
-
exports.DeleteKnowledgeBase$ = DeleteKnowledgeBase$;
|
|
2194
813
|
exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
|
|
2195
|
-
exports.DeleteKnowledgeBaseRequest$ = DeleteKnowledgeBaseRequest$;
|
|
2196
|
-
exports.DeleteKnowledgeBaseResponse$ = DeleteKnowledgeBaseResponse$;
|
|
2197
|
-
exports.DeleteQuickResponse$ = DeleteQuickResponse$;
|
|
2198
814
|
exports.DeleteQuickResponseCommand = DeleteQuickResponseCommand;
|
|
2199
|
-
exports.DeleteQuickResponseRequest$ = DeleteQuickResponseRequest$;
|
|
2200
|
-
exports.DeleteQuickResponseResponse$ = DeleteQuickResponseResponse$;
|
|
2201
|
-
exports.Document$ = Document$;
|
|
2202
|
-
exports.DocumentText$ = DocumentText$;
|
|
2203
815
|
exports.ExternalSource = ExternalSource;
|
|
2204
|
-
exports.ExternalSourceConfiguration$ = ExternalSourceConfiguration$;
|
|
2205
|
-
exports.Filter$ = Filter$;
|
|
2206
816
|
exports.FilterField = FilterField;
|
|
2207
817
|
exports.FilterOperator = FilterOperator;
|
|
2208
|
-
exports.GetAssistant$ = GetAssistant$;
|
|
2209
|
-
exports.GetAssistantAssociation$ = GetAssistantAssociation$;
|
|
2210
818
|
exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
|
|
2211
|
-
exports.GetAssistantAssociationRequest$ = GetAssistantAssociationRequest$;
|
|
2212
|
-
exports.GetAssistantAssociationResponse$ = GetAssistantAssociationResponse$;
|
|
2213
819
|
exports.GetAssistantCommand = GetAssistantCommand;
|
|
2214
|
-
exports.GetAssistantRequest$ = GetAssistantRequest$;
|
|
2215
|
-
exports.GetAssistantResponse$ = GetAssistantResponse$;
|
|
2216
|
-
exports.GetContent$ = GetContent$;
|
|
2217
820
|
exports.GetContentCommand = GetContentCommand;
|
|
2218
|
-
exports.GetContentRequest$ = GetContentRequest$;
|
|
2219
|
-
exports.GetContentResponse$ = GetContentResponse$;
|
|
2220
|
-
exports.GetContentSummary$ = GetContentSummary$;
|
|
2221
821
|
exports.GetContentSummaryCommand = GetContentSummaryCommand;
|
|
2222
|
-
exports.GetContentSummaryRequest$ = GetContentSummaryRequest$;
|
|
2223
|
-
exports.GetContentSummaryResponse$ = GetContentSummaryResponse$;
|
|
2224
|
-
exports.GetImportJob$ = GetImportJob$;
|
|
2225
822
|
exports.GetImportJobCommand = GetImportJobCommand;
|
|
2226
|
-
exports.GetImportJobRequest$ = GetImportJobRequest$;
|
|
2227
|
-
exports.GetImportJobResponse$ = GetImportJobResponse$;
|
|
2228
|
-
exports.GetKnowledgeBase$ = GetKnowledgeBase$;
|
|
2229
823
|
exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
|
|
2230
|
-
exports.GetKnowledgeBaseRequest$ = GetKnowledgeBaseRequest$;
|
|
2231
|
-
exports.GetKnowledgeBaseResponse$ = GetKnowledgeBaseResponse$;
|
|
2232
|
-
exports.GetQuickResponse$ = GetQuickResponse$;
|
|
2233
824
|
exports.GetQuickResponseCommand = GetQuickResponseCommand;
|
|
2234
|
-
exports.GetQuickResponseRequest$ = GetQuickResponseRequest$;
|
|
2235
|
-
exports.GetQuickResponseResponse$ = GetQuickResponseResponse$;
|
|
2236
|
-
exports.GetRecommendations$ = GetRecommendations$;
|
|
2237
825
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
2238
|
-
exports.GetRecommendationsRequest$ = GetRecommendationsRequest$;
|
|
2239
|
-
exports.GetRecommendationsResponse$ = GetRecommendationsResponse$;
|
|
2240
|
-
exports.GetSession$ = GetSession$;
|
|
2241
826
|
exports.GetSessionCommand = GetSessionCommand;
|
|
2242
|
-
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
2243
|
-
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
2244
|
-
exports.GroupingConfiguration$ = GroupingConfiguration$;
|
|
2245
|
-
exports.Highlight$ = Highlight$;
|
|
2246
|
-
exports.ImportJobData$ = ImportJobData$;
|
|
2247
827
|
exports.ImportJobStatus = ImportJobStatus;
|
|
2248
|
-
exports.ImportJobSummary$ = ImportJobSummary$;
|
|
2249
828
|
exports.ImportJobType = ImportJobType;
|
|
2250
|
-
exports.KnowledgeBaseAssociationData$ = KnowledgeBaseAssociationData$;
|
|
2251
|
-
exports.KnowledgeBaseData$ = KnowledgeBaseData$;
|
|
2252
829
|
exports.KnowledgeBaseStatus = KnowledgeBaseStatus;
|
|
2253
|
-
exports.KnowledgeBaseSummary$ = KnowledgeBaseSummary$;
|
|
2254
830
|
exports.KnowledgeBaseType = KnowledgeBaseType;
|
|
2255
|
-
exports.ListAssistantAssociations$ = ListAssistantAssociations$;
|
|
2256
831
|
exports.ListAssistantAssociationsCommand = ListAssistantAssociationsCommand;
|
|
2257
|
-
exports.ListAssistantAssociationsRequest$ = ListAssistantAssociationsRequest$;
|
|
2258
|
-
exports.ListAssistantAssociationsResponse$ = ListAssistantAssociationsResponse$;
|
|
2259
|
-
exports.ListAssistants$ = ListAssistants$;
|
|
2260
832
|
exports.ListAssistantsCommand = ListAssistantsCommand;
|
|
2261
|
-
exports.ListAssistantsRequest$ = ListAssistantsRequest$;
|
|
2262
|
-
exports.ListAssistantsResponse$ = ListAssistantsResponse$;
|
|
2263
|
-
exports.ListContents$ = ListContents$;
|
|
2264
833
|
exports.ListContentsCommand = ListContentsCommand;
|
|
2265
|
-
exports.ListContentsRequest$ = ListContentsRequest$;
|
|
2266
|
-
exports.ListContentsResponse$ = ListContentsResponse$;
|
|
2267
|
-
exports.ListImportJobs$ = ListImportJobs$;
|
|
2268
834
|
exports.ListImportJobsCommand = ListImportJobsCommand;
|
|
2269
|
-
exports.ListImportJobsRequest$ = ListImportJobsRequest$;
|
|
2270
|
-
exports.ListImportJobsResponse$ = ListImportJobsResponse$;
|
|
2271
|
-
exports.ListKnowledgeBases$ = ListKnowledgeBases$;
|
|
2272
835
|
exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
|
|
2273
|
-
exports.ListKnowledgeBasesRequest$ = ListKnowledgeBasesRequest$;
|
|
2274
|
-
exports.ListKnowledgeBasesResponse$ = ListKnowledgeBasesResponse$;
|
|
2275
|
-
exports.ListQuickResponses$ = ListQuickResponses$;
|
|
2276
836
|
exports.ListQuickResponsesCommand = ListQuickResponsesCommand;
|
|
2277
|
-
exports.ListQuickResponsesRequest$ = ListQuickResponsesRequest$;
|
|
2278
|
-
exports.ListQuickResponsesResponse$ = ListQuickResponsesResponse$;
|
|
2279
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2280
837
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2281
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2282
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2283
|
-
exports.NotifyRecommendationsReceived$ = NotifyRecommendationsReceived$;
|
|
2284
838
|
exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
|
|
2285
|
-
exports.NotifyRecommendationsReceivedError$ = NotifyRecommendationsReceivedError$;
|
|
2286
|
-
exports.NotifyRecommendationsReceivedRequest$ = NotifyRecommendationsReceivedRequest$;
|
|
2287
|
-
exports.NotifyRecommendationsReceivedResponse$ = NotifyRecommendationsReceivedResponse$;
|
|
2288
839
|
exports.Order = Order;
|
|
2289
|
-
exports.PreconditionFailedException = PreconditionFailedException;
|
|
2290
|
-
exports.PreconditionFailedException$ = PreconditionFailedException$;
|
|
2291
840
|
exports.Priority = Priority;
|
|
2292
|
-
exports.QueryAssistant$ = QueryAssistant$;
|
|
2293
841
|
exports.QueryAssistantCommand = QueryAssistantCommand;
|
|
2294
|
-
exports.QueryAssistantRequest$ = QueryAssistantRequest$;
|
|
2295
|
-
exports.QueryAssistantResponse$ = QueryAssistantResponse$;
|
|
2296
|
-
exports.QueryRecommendationTriggerData$ = QueryRecommendationTriggerData$;
|
|
2297
|
-
exports.QuickResponseContentProvider$ = QuickResponseContentProvider$;
|
|
2298
|
-
exports.QuickResponseContents$ = QuickResponseContents$;
|
|
2299
|
-
exports.QuickResponseData$ = QuickResponseData$;
|
|
2300
|
-
exports.QuickResponseDataProvider$ = QuickResponseDataProvider$;
|
|
2301
|
-
exports.QuickResponseFilterField$ = QuickResponseFilterField$;
|
|
2302
842
|
exports.QuickResponseFilterOperator = QuickResponseFilterOperator;
|
|
2303
|
-
exports.QuickResponseOrderField$ = QuickResponseOrderField$;
|
|
2304
|
-
exports.QuickResponseQueryField$ = QuickResponseQueryField$;
|
|
2305
843
|
exports.QuickResponseQueryOperator = QuickResponseQueryOperator;
|
|
2306
|
-
exports.QuickResponseSearchExpression$ = QuickResponseSearchExpression$;
|
|
2307
|
-
exports.QuickResponseSearchResultData$ = QuickResponseSearchResultData$;
|
|
2308
844
|
exports.QuickResponseStatus = QuickResponseStatus;
|
|
2309
|
-
exports.QuickResponseSummary$ = QuickResponseSummary$;
|
|
2310
|
-
exports.RecommendationData$ = RecommendationData$;
|
|
2311
845
|
exports.RecommendationSourceType = RecommendationSourceType;
|
|
2312
|
-
exports.RecommendationTrigger$ = RecommendationTrigger$;
|
|
2313
|
-
exports.RecommendationTriggerData$ = RecommendationTriggerData$;
|
|
2314
846
|
exports.RecommendationTriggerType = RecommendationTriggerType;
|
|
2315
847
|
exports.RecommendationType = RecommendationType;
|
|
2316
848
|
exports.RelevanceLevel = RelevanceLevel;
|
|
2317
|
-
exports.RemoveKnowledgeBaseTemplateUri$ = RemoveKnowledgeBaseTemplateUri$;
|
|
2318
849
|
exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
|
|
2319
|
-
exports.RemoveKnowledgeBaseTemplateUriRequest$ = RemoveKnowledgeBaseTemplateUriRequest$;
|
|
2320
|
-
exports.RemoveKnowledgeBaseTemplateUriResponse$ = RemoveKnowledgeBaseTemplateUriResponse$;
|
|
2321
|
-
exports.RenderingConfiguration$ = RenderingConfiguration$;
|
|
2322
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
2323
|
-
exports.RequestTimeoutException$ = RequestTimeoutException$;
|
|
2324
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2325
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2326
|
-
exports.ResultData$ = ResultData$;
|
|
2327
|
-
exports.SearchContent$ = SearchContent$;
|
|
2328
850
|
exports.SearchContentCommand = SearchContentCommand;
|
|
2329
|
-
exports.SearchContentRequest$ = SearchContentRequest$;
|
|
2330
|
-
exports.SearchContentResponse$ = SearchContentResponse$;
|
|
2331
|
-
exports.SearchExpression$ = SearchExpression$;
|
|
2332
|
-
exports.SearchQuickResponses$ = SearchQuickResponses$;
|
|
2333
851
|
exports.SearchQuickResponsesCommand = SearchQuickResponsesCommand;
|
|
2334
|
-
exports.SearchQuickResponsesRequest$ = SearchQuickResponsesRequest$;
|
|
2335
|
-
exports.SearchQuickResponsesResponse$ = SearchQuickResponsesResponse$;
|
|
2336
|
-
exports.SearchSessions$ = SearchSessions$;
|
|
2337
852
|
exports.SearchSessionsCommand = SearchSessionsCommand;
|
|
2338
|
-
exports.SearchSessionsRequest$ = SearchSessionsRequest$;
|
|
2339
|
-
exports.SearchSessionsResponse$ = SearchSessionsResponse$;
|
|
2340
|
-
exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
|
|
2341
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2342
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2343
|
-
exports.SessionData$ = SessionData$;
|
|
2344
|
-
exports.SessionIntegrationConfiguration$ = SessionIntegrationConfiguration$;
|
|
2345
|
-
exports.SessionSummary$ = SessionSummary$;
|
|
2346
|
-
exports.SourceConfiguration$ = SourceConfiguration$;
|
|
2347
|
-
exports.StartContentUpload$ = StartContentUpload$;
|
|
2348
853
|
exports.StartContentUploadCommand = StartContentUploadCommand;
|
|
2349
|
-
exports.StartContentUploadRequest$ = StartContentUploadRequest$;
|
|
2350
|
-
exports.StartContentUploadResponse$ = StartContentUploadResponse$;
|
|
2351
|
-
exports.StartImportJob$ = StartImportJob$;
|
|
2352
854
|
exports.StartImportJobCommand = StartImportJobCommand;
|
|
2353
|
-
exports.StartImportJobRequest$ = StartImportJobRequest$;
|
|
2354
|
-
exports.StartImportJobResponse$ = StartImportJobResponse$;
|
|
2355
|
-
exports.TagResource$ = TagResource$;
|
|
2356
855
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2357
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2358
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2359
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
2360
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2361
|
-
exports.UntagResource$ = UntagResource$;
|
|
2362
856
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2363
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2364
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2365
|
-
exports.UpdateContent$ = UpdateContent$;
|
|
2366
857
|
exports.UpdateContentCommand = UpdateContentCommand;
|
|
2367
|
-
exports.UpdateContentRequest$ = UpdateContentRequest$;
|
|
2368
|
-
exports.UpdateContentResponse$ = UpdateContentResponse$;
|
|
2369
|
-
exports.UpdateKnowledgeBaseTemplateUri$ = UpdateKnowledgeBaseTemplateUri$;
|
|
2370
858
|
exports.UpdateKnowledgeBaseTemplateUriCommand = UpdateKnowledgeBaseTemplateUriCommand;
|
|
2371
|
-
exports.UpdateKnowledgeBaseTemplateUriRequest$ = UpdateKnowledgeBaseTemplateUriRequest$;
|
|
2372
|
-
exports.UpdateKnowledgeBaseTemplateUriResponse$ = UpdateKnowledgeBaseTemplateUriResponse$;
|
|
2373
|
-
exports.UpdateQuickResponse$ = UpdateQuickResponse$;
|
|
2374
859
|
exports.UpdateQuickResponseCommand = UpdateQuickResponseCommand;
|
|
2375
|
-
exports.UpdateQuickResponseRequest$ = UpdateQuickResponseRequest$;
|
|
2376
|
-
exports.UpdateQuickResponseResponse$ = UpdateQuickResponseResponse$;
|
|
2377
|
-
exports.ValidationException = ValidationException;
|
|
2378
|
-
exports.ValidationException$ = ValidationException$;
|
|
2379
860
|
exports.Wisdom = Wisdom;
|
|
2380
861
|
exports.WisdomClient = WisdomClient;
|
|
2381
|
-
exports.WisdomServiceException = WisdomServiceException;
|
|
2382
|
-
exports.WisdomServiceException$ = WisdomServiceException$;
|
|
2383
862
|
exports.paginateListAssistantAssociations = paginateListAssistantAssociations;
|
|
2384
863
|
exports.paginateListAssistants = paginateListAssistants;
|
|
2385
864
|
exports.paginateListContents = paginateListContents;
|
|
@@ -2390,3 +869,15 @@ exports.paginateQueryAssistant = paginateQueryAssistant;
|
|
|
2390
869
|
exports.paginateSearchContent = paginateSearchContent;
|
|
2391
870
|
exports.paginateSearchQuickResponses = paginateSearchQuickResponses;
|
|
2392
871
|
exports.paginateSearchSessions = paginateSearchSessions;
|
|
872
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
873
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
874
|
+
enumerable: true,
|
|
875
|
+
get: function () { return schemas_0[k]; }
|
|
876
|
+
});
|
|
877
|
+
});
|
|
878
|
+
Object.keys(errors).forEach(function (k) {
|
|
879
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
880
|
+
enumerable: true,
|
|
881
|
+
get: function () { return errors[k]; }
|
|
882
|
+
});
|
|
883
|
+
});
|