@aws-sdk/client-wisdom 3.928.0 → 3.930.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 +1907 -2026
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/WisdomClient.js +2 -0
- package/dist-es/commands/CreateAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/CreateAssistantCommand.js +3 -9
- package/dist-es/commands/CreateContentCommand.js +3 -10
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/CreateQuickResponseCommand.js +3 -10
- package/dist-es/commands/CreateSessionCommand.js +3 -9
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/DeleteAssistantCommand.js +3 -9
- package/dist-es/commands/DeleteContentCommand.js +3 -9
- package/dist-es/commands/DeleteImportJobCommand.js +3 -9
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/DeleteQuickResponseCommand.js +3 -9
- package/dist-es/commands/GetAssistantAssociationCommand.js +3 -9
- package/dist-es/commands/GetAssistantCommand.js +3 -9
- package/dist-es/commands/GetContentCommand.js +3 -10
- package/dist-es/commands/GetContentSummaryCommand.js +3 -9
- package/dist-es/commands/GetImportJobCommand.js +3 -10
- package/dist-es/commands/GetKnowledgeBaseCommand.js +3 -9
- package/dist-es/commands/GetQuickResponseCommand.js +3 -10
- package/dist-es/commands/GetRecommendationsCommand.js +3 -10
- package/dist-es/commands/GetSessionCommand.js +3 -9
- package/dist-es/commands/ListAssistantAssociationsCommand.js +3 -9
- package/dist-es/commands/ListAssistantsCommand.js +3 -9
- package/dist-es/commands/ListContentsCommand.js +3 -9
- package/dist-es/commands/ListImportJobsCommand.js +3 -9
- package/dist-es/commands/ListKnowledgeBasesCommand.js +3 -9
- package/dist-es/commands/ListQuickResponsesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +3 -9
- package/dist-es/commands/QueryAssistantCommand.js +3 -10
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +3 -9
- package/dist-es/commands/SearchContentCommand.js +3 -9
- package/dist-es/commands/SearchQuickResponsesCommand.js +3 -10
- package/dist-es/commands/SearchSessionsCommand.js +3 -9
- package/dist-es/commands/StartContentUploadCommand.js +3 -10
- package/dist-es/commands/StartImportJobCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateContentCommand.js +3 -10
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +3 -9
- package/dist-es/commands/UpdateQuickResponseCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -223
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1812 -0
- package/dist-types/WisdomClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +28 -139
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +215 -0
- package/dist-types/ts3.4/WisdomClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -107
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +222 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1466
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -371
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -497
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class WisdomClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class WisdomClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class WisdomServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let WisdomServiceException$1 = class WisdomServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, WisdomServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends WisdomServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends WisdomServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,8 +128,8 @@ class AccessDeniedException extends WisdomServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends WisdomServiceException {
|
|
131
|
+
};
|
|
132
|
+
let ConflictException$1 = class ConflictException extends WisdomServiceException$1 {
|
|
134
133
|
name = "ConflictException";
|
|
135
134
|
$fault = "client";
|
|
136
135
|
constructor(opts) {
|
|
@@ -141,27 +140,11 @@ class ConflictException extends WisdomServiceException {
|
|
|
141
140
|
});
|
|
142
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
142
|
}
|
|
144
|
-
}
|
|
145
|
-
exports.AssistantAssociationInputData = void 0;
|
|
146
|
-
(function (AssistantAssociationInputData) {
|
|
147
|
-
AssistantAssociationInputData.visit = (value, visitor) => {
|
|
148
|
-
if (value.knowledgeBaseId !== undefined)
|
|
149
|
-
return visitor.knowledgeBaseId(value.knowledgeBaseId);
|
|
150
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
151
|
-
};
|
|
152
|
-
})(exports.AssistantAssociationInputData || (exports.AssistantAssociationInputData = {}));
|
|
143
|
+
};
|
|
153
144
|
const AssociationType = {
|
|
154
145
|
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
155
146
|
};
|
|
156
|
-
|
|
157
|
-
(function (AssistantAssociationOutputData) {
|
|
158
|
-
AssistantAssociationOutputData.visit = (value, visitor) => {
|
|
159
|
-
if (value.knowledgeBaseAssociation !== undefined)
|
|
160
|
-
return visitor.knowledgeBaseAssociation(value.knowledgeBaseAssociation);
|
|
161
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
162
|
-
};
|
|
163
|
-
})(exports.AssistantAssociationOutputData || (exports.AssistantAssociationOutputData = {}));
|
|
164
|
-
class ResourceNotFoundException extends WisdomServiceException {
|
|
147
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends WisdomServiceException$1 {
|
|
165
148
|
name = "ResourceNotFoundException";
|
|
166
149
|
$fault = "client";
|
|
167
150
|
resourceName;
|
|
@@ -174,8 +157,8 @@ class ResourceNotFoundException extends WisdomServiceException {
|
|
|
174
157
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
158
|
this.resourceName = opts.resourceName;
|
|
176
159
|
}
|
|
177
|
-
}
|
|
178
|
-
class ServiceQuotaExceededException extends WisdomServiceException {
|
|
160
|
+
};
|
|
161
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends WisdomServiceException$1 {
|
|
179
162
|
name = "ServiceQuotaExceededException";
|
|
180
163
|
$fault = "client";
|
|
181
164
|
constructor(opts) {
|
|
@@ -186,8 +169,8 @@ class ServiceQuotaExceededException extends WisdomServiceException {
|
|
|
186
169
|
});
|
|
187
170
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
188
171
|
}
|
|
189
|
-
}
|
|
190
|
-
class ValidationException extends WisdomServiceException {
|
|
172
|
+
};
|
|
173
|
+
let ValidationException$1 = class ValidationException extends WisdomServiceException$1 {
|
|
191
174
|
name = "ValidationException";
|
|
192
175
|
$fault = "client";
|
|
193
176
|
constructor(opts) {
|
|
@@ -198,7 +181,7 @@ class ValidationException extends WisdomServiceException {
|
|
|
198
181
|
});
|
|
199
182
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
200
183
|
}
|
|
201
|
-
}
|
|
184
|
+
};
|
|
202
185
|
const AssistantType = {
|
|
203
186
|
AGENT: "AGENT",
|
|
204
187
|
};
|
|
@@ -218,14 +201,6 @@ const RelevanceLevel = {
|
|
|
218
201
|
const RecommendationType = {
|
|
219
202
|
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
220
203
|
};
|
|
221
|
-
exports.RecommendationTriggerData = void 0;
|
|
222
|
-
(function (RecommendationTriggerData) {
|
|
223
|
-
RecommendationTriggerData.visit = (value, visitor) => {
|
|
224
|
-
if (value.query !== undefined)
|
|
225
|
-
return visitor.query(value.query);
|
|
226
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
227
|
-
};
|
|
228
|
-
})(exports.RecommendationTriggerData || (exports.RecommendationTriggerData = {}));
|
|
229
204
|
const RecommendationSourceType = {
|
|
230
205
|
ISSUE_DETECTION: "ISSUE_DETECTION",
|
|
231
206
|
OTHER: "OTHER",
|
|
@@ -234,7 +209,7 @@ const RecommendationSourceType = {
|
|
|
234
209
|
const RecommendationTriggerType = {
|
|
235
210
|
QUERY: "QUERY",
|
|
236
211
|
};
|
|
237
|
-
class RequestTimeoutException extends WisdomServiceException {
|
|
212
|
+
let RequestTimeoutException$1 = class RequestTimeoutException extends WisdomServiceException$1 {
|
|
238
213
|
name = "RequestTimeoutException";
|
|
239
214
|
$fault = "client";
|
|
240
215
|
$retryable = {};
|
|
@@ -246,21 +221,13 @@ class RequestTimeoutException extends WisdomServiceException {
|
|
|
246
221
|
});
|
|
247
222
|
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
248
223
|
}
|
|
249
|
-
}
|
|
224
|
+
};
|
|
250
225
|
const FilterField = {
|
|
251
226
|
NAME: "NAME",
|
|
252
227
|
};
|
|
253
228
|
const FilterOperator = {
|
|
254
229
|
EQUALS: "EQUALS",
|
|
255
230
|
};
|
|
256
|
-
exports.Configuration = void 0;
|
|
257
|
-
(function (Configuration) {
|
|
258
|
-
Configuration.visit = (value, visitor) => {
|
|
259
|
-
if (value.connectConfiguration !== undefined)
|
|
260
|
-
return visitor.connectConfiguration(value.connectConfiguration);
|
|
261
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
262
|
-
};
|
|
263
|
-
})(exports.Configuration || (exports.Configuration = {}));
|
|
264
231
|
const ContentStatus = {
|
|
265
232
|
ACTIVE: "ACTIVE",
|
|
266
233
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -270,7 +237,7 @@ const ContentStatus = {
|
|
|
270
237
|
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
271
238
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
272
239
|
};
|
|
273
|
-
class PreconditionFailedException extends WisdomServiceException {
|
|
240
|
+
let PreconditionFailedException$1 = class PreconditionFailedException extends WisdomServiceException$1 {
|
|
274
241
|
name = "PreconditionFailedException";
|
|
275
242
|
$fault = "client";
|
|
276
243
|
constructor(opts) {
|
|
@@ -281,20 +248,12 @@ class PreconditionFailedException extends WisdomServiceException {
|
|
|
281
248
|
});
|
|
282
249
|
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
283
250
|
}
|
|
284
|
-
}
|
|
251
|
+
};
|
|
285
252
|
const KnowledgeBaseType = {
|
|
286
253
|
CUSTOM: "CUSTOM",
|
|
287
254
|
EXTERNAL: "EXTERNAL",
|
|
288
255
|
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
289
256
|
};
|
|
290
|
-
exports.SourceConfiguration = void 0;
|
|
291
|
-
(function (SourceConfiguration) {
|
|
292
|
-
SourceConfiguration.visit = (value, visitor) => {
|
|
293
|
-
if (value.appIntegrations !== undefined)
|
|
294
|
-
return visitor.appIntegrations(value.appIntegrations);
|
|
295
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
296
|
-
};
|
|
297
|
-
})(exports.SourceConfiguration || (exports.SourceConfiguration = {}));
|
|
298
257
|
const KnowledgeBaseStatus = {
|
|
299
258
|
ACTIVE: "ACTIVE",
|
|
300
259
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -303,22 +262,6 @@ const KnowledgeBaseStatus = {
|
|
|
303
262
|
DELETE_FAILED: "DELETE_FAILED",
|
|
304
263
|
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
305
264
|
};
|
|
306
|
-
exports.QuickResponseDataProvider = void 0;
|
|
307
|
-
(function (QuickResponseDataProvider) {
|
|
308
|
-
QuickResponseDataProvider.visit = (value, visitor) => {
|
|
309
|
-
if (value.content !== undefined)
|
|
310
|
-
return visitor.content(value.content);
|
|
311
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
312
|
-
};
|
|
313
|
-
})(exports.QuickResponseDataProvider || (exports.QuickResponseDataProvider = {}));
|
|
314
|
-
exports.QuickResponseContentProvider = void 0;
|
|
315
|
-
(function (QuickResponseContentProvider) {
|
|
316
|
-
QuickResponseContentProvider.visit = (value, visitor) => {
|
|
317
|
-
if (value.content !== undefined)
|
|
318
|
-
return visitor.content(value.content);
|
|
319
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
320
|
-
};
|
|
321
|
-
})(exports.QuickResponseContentProvider || (exports.QuickResponseContentProvider = {}));
|
|
322
265
|
const QuickResponseStatus = {
|
|
323
266
|
CREATED: "CREATED",
|
|
324
267
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -360,7 +303,7 @@ const Priority = {
|
|
|
360
303
|
LOW: "LOW",
|
|
361
304
|
MEDIUM: "MEDIUM",
|
|
362
305
|
};
|
|
363
|
-
class TooManyTagsException extends WisdomServiceException {
|
|
306
|
+
let TooManyTagsException$1 = class TooManyTagsException extends WisdomServiceException$1 {
|
|
364
307
|
name = "TooManyTagsException";
|
|
365
308
|
$fault = "client";
|
|
366
309
|
resourceName;
|
|
@@ -373,1648 +316,1819 @@ class TooManyTagsException extends WisdomServiceException {
|
|
|
373
316
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
374
317
|
this.resourceName = opts.resourceName;
|
|
375
318
|
}
|
|
376
|
-
}
|
|
377
|
-
const DocumentTextFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
...(obj.text && { text: smithyClient.SENSITIVE_STRING }),
|
|
380
|
-
});
|
|
381
|
-
const DocumentFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.title && { title: DocumentTextFilterSensitiveLog(obj.title) }),
|
|
384
|
-
...(obj.excerpt && { excerpt: DocumentTextFilterSensitiveLog(obj.excerpt) }),
|
|
385
|
-
});
|
|
386
|
-
const RecommendationDataFilterSensitiveLog = (obj) => ({
|
|
387
|
-
...obj,
|
|
388
|
-
...(obj.document && { document: DocumentFilterSensitiveLog(obj.document) }),
|
|
389
|
-
});
|
|
390
|
-
const QueryRecommendationTriggerDataFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
...(obj.text && { text: smithyClient.SENSITIVE_STRING }),
|
|
393
|
-
});
|
|
394
|
-
const RecommendationTriggerDataFilterSensitiveLog = (obj) => {
|
|
395
|
-
if (obj.query !== undefined)
|
|
396
|
-
return { query: QueryRecommendationTriggerDataFilterSensitiveLog(obj.query) };
|
|
397
|
-
if (obj.$unknown !== undefined)
|
|
398
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
399
319
|
};
|
|
400
|
-
const RecommendationTriggerFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
...(obj.data && { data: RecommendationTriggerDataFilterSensitiveLog(obj.data) }),
|
|
403
|
-
});
|
|
404
|
-
const GetRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
...(obj.recommendations && {
|
|
407
|
-
recommendations: obj.recommendations.map((item) => RecommendationDataFilterSensitiveLog(item)),
|
|
408
|
-
}),
|
|
409
|
-
...(obj.triggers && { triggers: obj.triggers.map((item) => RecommendationTriggerFilterSensitiveLog(item)) }),
|
|
410
|
-
});
|
|
411
|
-
const QueryAssistantRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
...(obj.queryText && { queryText: smithyClient.SENSITIVE_STRING }),
|
|
414
|
-
});
|
|
415
|
-
const ResultDataFilterSensitiveLog = (obj) => ({
|
|
416
|
-
...obj,
|
|
417
|
-
...(obj.document && { document: DocumentFilterSensitiveLog(obj.document) }),
|
|
418
|
-
});
|
|
419
|
-
const QueryAssistantResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
...(obj.results && { results: obj.results.map((item) => ResultDataFilterSensitiveLog(item)) }),
|
|
422
|
-
});
|
|
423
|
-
const ContentDataFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
...(obj.url && { url: smithyClient.SENSITIVE_STRING }),
|
|
426
|
-
});
|
|
427
|
-
const CreateContentResponseFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
430
|
-
});
|
|
431
|
-
const GetContentResponseFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
434
|
-
});
|
|
435
|
-
const UpdateContentResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
438
|
-
});
|
|
439
|
-
const QuickResponseDataProviderFilterSensitiveLog = (obj) => {
|
|
440
|
-
if (obj.content !== undefined)
|
|
441
|
-
return { content: smithyClient.SENSITIVE_STRING };
|
|
442
|
-
if (obj.$unknown !== undefined)
|
|
443
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
444
|
-
};
|
|
445
|
-
const GroupingConfigurationFilterSensitiveLog = (obj) => ({
|
|
446
|
-
...obj,
|
|
447
|
-
...(obj.criteria && { criteria: smithyClient.SENSITIVE_STRING }),
|
|
448
|
-
...(obj.values && { values: smithyClient.SENSITIVE_STRING }),
|
|
449
|
-
});
|
|
450
|
-
const CreateQuickResponseRequestFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
...(obj.content && { content: QuickResponseDataProviderFilterSensitiveLog(obj.content) }),
|
|
453
|
-
...(obj.groupingConfiguration && {
|
|
454
|
-
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
455
|
-
}),
|
|
456
|
-
...(obj.channels && { channels: smithyClient.SENSITIVE_STRING }),
|
|
457
|
-
});
|
|
458
|
-
const QuickResponseContentProviderFilterSensitiveLog = (obj) => {
|
|
459
|
-
if (obj.content !== undefined)
|
|
460
|
-
return { content: smithyClient.SENSITIVE_STRING };
|
|
461
|
-
if (obj.$unknown !== undefined)
|
|
462
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
463
|
-
};
|
|
464
|
-
const QuickResponseContentsFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
...(obj.plainText && { plainText: QuickResponseContentProviderFilterSensitiveLog(obj.plainText) }),
|
|
467
|
-
...(obj.markdown && { markdown: QuickResponseContentProviderFilterSensitiveLog(obj.markdown) }),
|
|
468
|
-
});
|
|
469
|
-
const QuickResponseDataFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
...(obj.contents && { contents: QuickResponseContentsFilterSensitiveLog(obj.contents) }),
|
|
472
|
-
...(obj.groupingConfiguration && {
|
|
473
|
-
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
474
|
-
}),
|
|
475
|
-
...(obj.channels && { channels: smithyClient.SENSITIVE_STRING }),
|
|
476
|
-
});
|
|
477
|
-
const CreateQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
480
|
-
});
|
|
481
|
-
const ImportJobDataFilterSensitiveLog = (obj) => ({
|
|
482
|
-
...obj,
|
|
483
|
-
...(obj.url && { url: smithyClient.SENSITIVE_STRING }),
|
|
484
|
-
...(obj.failedRecordReport && { failedRecordReport: smithyClient.SENSITIVE_STRING }),
|
|
485
|
-
...(obj.externalSourceConfiguration && { externalSourceConfiguration: obj.externalSourceConfiguration }),
|
|
486
|
-
});
|
|
487
|
-
const GetImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
490
|
-
});
|
|
491
|
-
const GetQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
494
|
-
});
|
|
495
|
-
const QuickResponseSummaryFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
...(obj.channels && { channels: smithyClient.SENSITIVE_STRING }),
|
|
498
|
-
});
|
|
499
|
-
const ListQuickResponsesResponseFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
...(obj.quickResponseSummaries && {
|
|
502
|
-
quickResponseSummaries: obj.quickResponseSummaries.map((item) => QuickResponseSummaryFilterSensitiveLog(item)),
|
|
503
|
-
}),
|
|
504
|
-
});
|
|
505
|
-
const UpdateQuickResponseRequestFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
...(obj.content && { content: QuickResponseDataProviderFilterSensitiveLog(obj.content) }),
|
|
508
|
-
...(obj.groupingConfiguration && {
|
|
509
|
-
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
510
|
-
}),
|
|
511
|
-
...(obj.channels && { channels: smithyClient.SENSITIVE_STRING }),
|
|
512
|
-
});
|
|
513
|
-
const UpdateQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
514
|
-
...obj,
|
|
515
|
-
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
516
|
-
});
|
|
517
|
-
const SearchQuickResponsesRequestFilterSensitiveLog = (obj) => ({
|
|
518
|
-
...obj,
|
|
519
|
-
...(obj.attributes && { attributes: smithyClient.SENSITIVE_STRING }),
|
|
520
|
-
});
|
|
521
|
-
const QuickResponseSearchResultDataFilterSensitiveLog = (obj) => ({
|
|
522
|
-
...obj,
|
|
523
|
-
...(obj.contents && { contents: QuickResponseContentsFilterSensitiveLog(obj.contents) }),
|
|
524
|
-
...(obj.groupingConfiguration && {
|
|
525
|
-
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
526
|
-
}),
|
|
527
|
-
...(obj.channels && { channels: smithyClient.SENSITIVE_STRING }),
|
|
528
|
-
...(obj.attributesNotInterpolated && { attributesNotInterpolated: smithyClient.SENSITIVE_STRING }),
|
|
529
|
-
...(obj.attributesInterpolated && { attributesInterpolated: smithyClient.SENSITIVE_STRING }),
|
|
530
|
-
});
|
|
531
|
-
const SearchQuickResponsesResponseFilterSensitiveLog = (obj) => ({
|
|
532
|
-
...obj,
|
|
533
|
-
...(obj.results && { results: obj.results.map((item) => QuickResponseSearchResultDataFilterSensitiveLog(item)) }),
|
|
534
|
-
});
|
|
535
|
-
const StartContentUploadResponseFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
...(obj.url && { url: smithyClient.SENSITIVE_STRING }),
|
|
538
|
-
});
|
|
539
|
-
const StartImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
540
|
-
...obj,
|
|
541
|
-
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
542
|
-
});
|
|
543
320
|
|
|
544
|
-
const
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
const
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
const
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
const
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
const
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
const
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
const
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
const
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
const
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
const
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
const
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
const
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
const
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
const
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
const
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
const
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
const
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
const
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
const
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
const
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
const
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
const
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
return b.build();
|
|
822
|
-
};
|
|
823
|
-
const se_ListAssistantsCommand = async (input, context) => {
|
|
824
|
-
const b = core.requestBuilder(input, context);
|
|
825
|
-
const headers = {};
|
|
826
|
-
b.bp("/assistants");
|
|
827
|
-
const query = smithyClient.map({
|
|
828
|
-
[_nT]: [, input[_nT]],
|
|
829
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
830
|
-
});
|
|
831
|
-
let body;
|
|
832
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
833
|
-
return b.build();
|
|
834
|
-
};
|
|
835
|
-
const se_ListContentsCommand = async (input, context) => {
|
|
836
|
-
const b = core.requestBuilder(input, context);
|
|
837
|
-
const headers = {};
|
|
838
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/contents");
|
|
839
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
840
|
-
const query = smithyClient.map({
|
|
841
|
-
[_nT]: [, input[_nT]],
|
|
842
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
843
|
-
});
|
|
844
|
-
let body;
|
|
845
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
846
|
-
return b.build();
|
|
847
|
-
};
|
|
848
|
-
const se_ListImportJobsCommand = async (input, context) => {
|
|
849
|
-
const b = core.requestBuilder(input, context);
|
|
850
|
-
const headers = {};
|
|
851
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/importJobs");
|
|
852
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
853
|
-
const query = smithyClient.map({
|
|
854
|
-
[_nT]: [, input[_nT]],
|
|
855
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
856
|
-
});
|
|
857
|
-
let body;
|
|
858
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
859
|
-
return b.build();
|
|
860
|
-
};
|
|
861
|
-
const se_ListKnowledgeBasesCommand = async (input, context) => {
|
|
862
|
-
const b = core.requestBuilder(input, context);
|
|
863
|
-
const headers = {};
|
|
864
|
-
b.bp("/knowledgeBases");
|
|
865
|
-
const query = smithyClient.map({
|
|
866
|
-
[_nT]: [, input[_nT]],
|
|
867
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
868
|
-
});
|
|
869
|
-
let body;
|
|
870
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
871
|
-
return b.build();
|
|
872
|
-
};
|
|
873
|
-
const se_ListQuickResponsesCommand = async (input, context) => {
|
|
874
|
-
const b = core.requestBuilder(input, context);
|
|
875
|
-
const headers = {};
|
|
876
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/quickResponses");
|
|
877
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
878
|
-
const query = smithyClient.map({
|
|
879
|
-
[_nT]: [, input[_nT]],
|
|
880
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
881
|
-
});
|
|
882
|
-
let body;
|
|
883
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
884
|
-
return b.build();
|
|
885
|
-
};
|
|
886
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
887
|
-
const b = core.requestBuilder(input, context);
|
|
888
|
-
const headers = {};
|
|
889
|
-
b.bp("/tags/{resourceArn}");
|
|
890
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
891
|
-
let body;
|
|
892
|
-
b.m("GET").h(headers).b(body);
|
|
893
|
-
return b.build();
|
|
894
|
-
};
|
|
895
|
-
const se_NotifyRecommendationsReceivedCommand = async (input, context) => {
|
|
896
|
-
const b = core.requestBuilder(input, context);
|
|
897
|
-
const headers = {
|
|
898
|
-
"content-type": "application/json",
|
|
899
|
-
};
|
|
900
|
-
b.bp("/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify");
|
|
901
|
-
b.p("assistantId", () => input.assistantId, "{assistantId}", false);
|
|
902
|
-
b.p("sessionId", () => input.sessionId, "{sessionId}", false);
|
|
903
|
-
let body;
|
|
904
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
905
|
-
recommendationIds: (_) => smithyClient._json(_),
|
|
906
|
-
}));
|
|
907
|
-
b.m("POST").h(headers).b(body);
|
|
908
|
-
return b.build();
|
|
909
|
-
};
|
|
910
|
-
const se_QueryAssistantCommand = async (input, context) => {
|
|
911
|
-
const b = core.requestBuilder(input, context);
|
|
912
|
-
const headers = {
|
|
913
|
-
"content-type": "application/json",
|
|
914
|
-
};
|
|
915
|
-
b.bp("/assistants/{assistantId}/query");
|
|
916
|
-
b.p("assistantId", () => input.assistantId, "{assistantId}", false);
|
|
917
|
-
let body;
|
|
918
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
919
|
-
maxResults: [],
|
|
920
|
-
nextToken: [],
|
|
921
|
-
queryText: [],
|
|
922
|
-
}));
|
|
923
|
-
b.m("POST").h(headers).b(body);
|
|
924
|
-
return b.build();
|
|
925
|
-
};
|
|
926
|
-
const se_RemoveKnowledgeBaseTemplateUriCommand = async (input, context) => {
|
|
927
|
-
const b = core.requestBuilder(input, context);
|
|
928
|
-
const headers = {};
|
|
929
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/templateUri");
|
|
930
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
931
|
-
let body;
|
|
932
|
-
b.m("DELETE").h(headers).b(body);
|
|
933
|
-
return b.build();
|
|
934
|
-
};
|
|
935
|
-
const se_SearchContentCommand = async (input, context) => {
|
|
936
|
-
const b = core.requestBuilder(input, context);
|
|
937
|
-
const headers = {
|
|
938
|
-
"content-type": "application/json",
|
|
939
|
-
};
|
|
940
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/search");
|
|
941
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
942
|
-
const query = smithyClient.map({
|
|
943
|
-
[_nT]: [, input[_nT]],
|
|
944
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
945
|
-
});
|
|
946
|
-
let body;
|
|
947
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
948
|
-
searchExpression: (_) => smithyClient._json(_),
|
|
949
|
-
}));
|
|
950
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
951
|
-
return b.build();
|
|
952
|
-
};
|
|
953
|
-
const se_SearchQuickResponsesCommand = async (input, context) => {
|
|
954
|
-
const b = core.requestBuilder(input, context);
|
|
955
|
-
const headers = {
|
|
956
|
-
"content-type": "application/json",
|
|
957
|
-
};
|
|
958
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/search/quickResponses");
|
|
959
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
960
|
-
const query = smithyClient.map({
|
|
961
|
-
[_nT]: [, input[_nT]],
|
|
962
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
963
|
-
});
|
|
964
|
-
let body;
|
|
965
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
966
|
-
attributes: (_) => smithyClient._json(_),
|
|
967
|
-
searchExpression: (_) => smithyClient._json(_),
|
|
968
|
-
}));
|
|
969
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
970
|
-
return b.build();
|
|
971
|
-
};
|
|
972
|
-
const se_SearchSessionsCommand = async (input, context) => {
|
|
973
|
-
const b = core.requestBuilder(input, context);
|
|
974
|
-
const headers = {
|
|
975
|
-
"content-type": "application/json",
|
|
976
|
-
};
|
|
977
|
-
b.bp("/assistants/{assistantId}/searchSessions");
|
|
978
|
-
b.p("assistantId", () => input.assistantId, "{assistantId}", false);
|
|
979
|
-
const query = smithyClient.map({
|
|
980
|
-
[_nT]: [, input[_nT]],
|
|
981
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
982
|
-
});
|
|
983
|
-
let body;
|
|
984
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
985
|
-
searchExpression: (_) => smithyClient._json(_),
|
|
986
|
-
}));
|
|
987
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
988
|
-
return b.build();
|
|
989
|
-
};
|
|
990
|
-
const se_StartContentUploadCommand = async (input, context) => {
|
|
991
|
-
const b = core.requestBuilder(input, context);
|
|
992
|
-
const headers = {
|
|
993
|
-
"content-type": "application/json",
|
|
994
|
-
};
|
|
995
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/upload");
|
|
996
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
997
|
-
let body;
|
|
998
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
999
|
-
contentType: [],
|
|
1000
|
-
presignedUrlTimeToLive: [],
|
|
1001
|
-
}));
|
|
1002
|
-
b.m("POST").h(headers).b(body);
|
|
1003
|
-
return b.build();
|
|
1004
|
-
};
|
|
1005
|
-
const se_StartImportJobCommand = async (input, context) => {
|
|
1006
|
-
const b = core.requestBuilder(input, context);
|
|
1007
|
-
const headers = {
|
|
1008
|
-
"content-type": "application/json",
|
|
1009
|
-
};
|
|
1010
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/importJobs");
|
|
1011
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
1012
|
-
let body;
|
|
1013
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1014
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
1015
|
-
externalSourceConfiguration: (_) => smithyClient._json(_),
|
|
1016
|
-
importJobType: [],
|
|
1017
|
-
metadata: (_) => smithyClient._json(_),
|
|
1018
|
-
uploadId: [],
|
|
1019
|
-
}));
|
|
1020
|
-
b.m("POST").h(headers).b(body);
|
|
1021
|
-
return b.build();
|
|
1022
|
-
};
|
|
1023
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
1024
|
-
const b = core.requestBuilder(input, context);
|
|
1025
|
-
const headers = {
|
|
1026
|
-
"content-type": "application/json",
|
|
1027
|
-
};
|
|
1028
|
-
b.bp("/tags/{resourceArn}");
|
|
1029
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
1030
|
-
let body;
|
|
1031
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1032
|
-
tags: (_) => smithyClient._json(_),
|
|
1033
|
-
}));
|
|
1034
|
-
b.m("POST").h(headers).b(body);
|
|
1035
|
-
return b.build();
|
|
1036
|
-
};
|
|
1037
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
1038
|
-
const b = core.requestBuilder(input, context);
|
|
1039
|
-
const headers = {};
|
|
1040
|
-
b.bp("/tags/{resourceArn}");
|
|
1041
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
1042
|
-
const query = smithyClient.map({
|
|
1043
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
1044
|
-
});
|
|
1045
|
-
let body;
|
|
1046
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
1047
|
-
return b.build();
|
|
1048
|
-
};
|
|
1049
|
-
const se_UpdateContentCommand = async (input, context) => {
|
|
1050
|
-
const b = core.requestBuilder(input, context);
|
|
1051
|
-
const headers = {
|
|
1052
|
-
"content-type": "application/json",
|
|
1053
|
-
};
|
|
1054
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/contents/{contentId}");
|
|
1055
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
1056
|
-
b.p("contentId", () => input.contentId, "{contentId}", false);
|
|
1057
|
-
let body;
|
|
1058
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1059
|
-
metadata: (_) => smithyClient._json(_),
|
|
1060
|
-
overrideLinkOutUri: [],
|
|
1061
|
-
removeOverrideLinkOutUri: [],
|
|
1062
|
-
revisionId: [],
|
|
1063
|
-
title: [],
|
|
1064
|
-
uploadId: [],
|
|
1065
|
-
}));
|
|
1066
|
-
b.m("POST").h(headers).b(body);
|
|
1067
|
-
return b.build();
|
|
1068
|
-
};
|
|
1069
|
-
const se_UpdateKnowledgeBaseTemplateUriCommand = async (input, context) => {
|
|
1070
|
-
const b = core.requestBuilder(input, context);
|
|
1071
|
-
const headers = {
|
|
1072
|
-
"content-type": "application/json",
|
|
1073
|
-
};
|
|
1074
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/templateUri");
|
|
1075
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
1076
|
-
let body;
|
|
1077
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1078
|
-
templateUri: [],
|
|
1079
|
-
}));
|
|
1080
|
-
b.m("POST").h(headers).b(body);
|
|
1081
|
-
return b.build();
|
|
1082
|
-
};
|
|
1083
|
-
const se_UpdateQuickResponseCommand = async (input, context) => {
|
|
1084
|
-
const b = core.requestBuilder(input, context);
|
|
1085
|
-
const headers = {
|
|
1086
|
-
"content-type": "application/json",
|
|
1087
|
-
};
|
|
1088
|
-
b.bp("/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}");
|
|
1089
|
-
b.p("knowledgeBaseId", () => input.knowledgeBaseId, "{knowledgeBaseId}", false);
|
|
1090
|
-
b.p("quickResponseId", () => input.quickResponseId, "{quickResponseId}", false);
|
|
1091
|
-
let body;
|
|
1092
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1093
|
-
channels: (_) => smithyClient._json(_),
|
|
1094
|
-
content: (_) => smithyClient._json(_),
|
|
1095
|
-
contentType: [],
|
|
1096
|
-
description: [],
|
|
1097
|
-
groupingConfiguration: (_) => smithyClient._json(_),
|
|
1098
|
-
isActive: [],
|
|
1099
|
-
language: [],
|
|
1100
|
-
name: [],
|
|
1101
|
-
removeDescription: [],
|
|
1102
|
-
removeGroupingConfiguration: [],
|
|
1103
|
-
removeShortcutKey: [],
|
|
1104
|
-
shortcutKey: [],
|
|
1105
|
-
}));
|
|
1106
|
-
b.m("POST").h(headers).b(body);
|
|
1107
|
-
return b.build();
|
|
1108
|
-
};
|
|
1109
|
-
const de_CreateAssistantCommand = async (output, context) => {
|
|
1110
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1111
|
-
return de_CommandError(output, context);
|
|
1112
|
-
}
|
|
1113
|
-
const contents = smithyClient.map({
|
|
1114
|
-
$metadata: deserializeMetadata(output),
|
|
1115
|
-
});
|
|
1116
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1117
|
-
const doc = smithyClient.take(data, {
|
|
1118
|
-
assistant: smithyClient._json,
|
|
1119
|
-
});
|
|
1120
|
-
Object.assign(contents, doc);
|
|
1121
|
-
return contents;
|
|
1122
|
-
};
|
|
1123
|
-
const de_CreateAssistantAssociationCommand = async (output, context) => {
|
|
1124
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1125
|
-
return de_CommandError(output, context);
|
|
1126
|
-
}
|
|
1127
|
-
const contents = smithyClient.map({
|
|
1128
|
-
$metadata: deserializeMetadata(output),
|
|
1129
|
-
});
|
|
1130
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1131
|
-
const doc = smithyClient.take(data, {
|
|
1132
|
-
assistantAssociation: smithyClient._json,
|
|
1133
|
-
});
|
|
1134
|
-
Object.assign(contents, doc);
|
|
1135
|
-
return contents;
|
|
1136
|
-
};
|
|
1137
|
-
const de_CreateContentCommand = async (output, context) => {
|
|
1138
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1139
|
-
return de_CommandError(output, context);
|
|
1140
|
-
}
|
|
1141
|
-
const contents = smithyClient.map({
|
|
1142
|
-
$metadata: deserializeMetadata(output),
|
|
1143
|
-
});
|
|
1144
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1145
|
-
const doc = smithyClient.take(data, {
|
|
1146
|
-
content: (_) => de_ContentData(_),
|
|
1147
|
-
});
|
|
1148
|
-
Object.assign(contents, doc);
|
|
1149
|
-
return contents;
|
|
1150
|
-
};
|
|
1151
|
-
const de_CreateKnowledgeBaseCommand = async (output, context) => {
|
|
1152
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1153
|
-
return de_CommandError(output, context);
|
|
1154
|
-
}
|
|
1155
|
-
const contents = smithyClient.map({
|
|
1156
|
-
$metadata: deserializeMetadata(output),
|
|
1157
|
-
});
|
|
1158
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1159
|
-
const doc = smithyClient.take(data, {
|
|
1160
|
-
knowledgeBase: (_) => de_KnowledgeBaseData(_),
|
|
1161
|
-
});
|
|
1162
|
-
Object.assign(contents, doc);
|
|
1163
|
-
return contents;
|
|
1164
|
-
};
|
|
1165
|
-
const de_CreateQuickResponseCommand = async (output, context) => {
|
|
1166
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1167
|
-
return de_CommandError(output, context);
|
|
1168
|
-
}
|
|
1169
|
-
const contents = smithyClient.map({
|
|
1170
|
-
$metadata: deserializeMetadata(output),
|
|
1171
|
-
});
|
|
1172
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1173
|
-
const doc = smithyClient.take(data, {
|
|
1174
|
-
quickResponse: (_) => de_QuickResponseData(_),
|
|
1175
|
-
});
|
|
1176
|
-
Object.assign(contents, doc);
|
|
1177
|
-
return contents;
|
|
1178
|
-
};
|
|
1179
|
-
const de_CreateSessionCommand = async (output, context) => {
|
|
1180
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1181
|
-
return de_CommandError(output, context);
|
|
1182
|
-
}
|
|
1183
|
-
const contents = smithyClient.map({
|
|
1184
|
-
$metadata: deserializeMetadata(output),
|
|
1185
|
-
});
|
|
1186
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1187
|
-
const doc = smithyClient.take(data, {
|
|
1188
|
-
session: smithyClient._json,
|
|
1189
|
-
});
|
|
1190
|
-
Object.assign(contents, doc);
|
|
1191
|
-
return contents;
|
|
1192
|
-
};
|
|
1193
|
-
const de_DeleteAssistantCommand = async (output, context) => {
|
|
1194
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1195
|
-
return de_CommandError(output, context);
|
|
1196
|
-
}
|
|
1197
|
-
const contents = smithyClient.map({
|
|
1198
|
-
$metadata: deserializeMetadata(output),
|
|
1199
|
-
});
|
|
1200
|
-
await smithyClient.collectBody(output.body, context);
|
|
1201
|
-
return contents;
|
|
1202
|
-
};
|
|
1203
|
-
const de_DeleteAssistantAssociationCommand = async (output, context) => {
|
|
1204
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1205
|
-
return de_CommandError(output, context);
|
|
1206
|
-
}
|
|
1207
|
-
const contents = smithyClient.map({
|
|
1208
|
-
$metadata: deserializeMetadata(output),
|
|
1209
|
-
});
|
|
1210
|
-
await smithyClient.collectBody(output.body, context);
|
|
1211
|
-
return contents;
|
|
1212
|
-
};
|
|
1213
|
-
const de_DeleteContentCommand = async (output, context) => {
|
|
1214
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1215
|
-
return de_CommandError(output, context);
|
|
1216
|
-
}
|
|
1217
|
-
const contents = smithyClient.map({
|
|
1218
|
-
$metadata: deserializeMetadata(output),
|
|
1219
|
-
});
|
|
1220
|
-
await smithyClient.collectBody(output.body, context);
|
|
1221
|
-
return contents;
|
|
1222
|
-
};
|
|
1223
|
-
const de_DeleteImportJobCommand = async (output, context) => {
|
|
1224
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1225
|
-
return de_CommandError(output, context);
|
|
1226
|
-
}
|
|
1227
|
-
const contents = smithyClient.map({
|
|
1228
|
-
$metadata: deserializeMetadata(output),
|
|
1229
|
-
});
|
|
1230
|
-
await smithyClient.collectBody(output.body, context);
|
|
1231
|
-
return contents;
|
|
1232
|
-
};
|
|
1233
|
-
const de_DeleteKnowledgeBaseCommand = async (output, context) => {
|
|
1234
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1235
|
-
return de_CommandError(output, context);
|
|
1236
|
-
}
|
|
1237
|
-
const contents = smithyClient.map({
|
|
1238
|
-
$metadata: deserializeMetadata(output),
|
|
1239
|
-
});
|
|
1240
|
-
await smithyClient.collectBody(output.body, context);
|
|
1241
|
-
return contents;
|
|
1242
|
-
};
|
|
1243
|
-
const de_DeleteQuickResponseCommand = async (output, context) => {
|
|
1244
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1245
|
-
return de_CommandError(output, context);
|
|
1246
|
-
}
|
|
1247
|
-
const contents = smithyClient.map({
|
|
1248
|
-
$metadata: deserializeMetadata(output),
|
|
1249
|
-
});
|
|
1250
|
-
await smithyClient.collectBody(output.body, context);
|
|
1251
|
-
return contents;
|
|
1252
|
-
};
|
|
1253
|
-
const de_GetAssistantCommand = async (output, context) => {
|
|
1254
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1255
|
-
return de_CommandError(output, context);
|
|
1256
|
-
}
|
|
1257
|
-
const contents = smithyClient.map({
|
|
1258
|
-
$metadata: deserializeMetadata(output),
|
|
1259
|
-
});
|
|
1260
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1261
|
-
const doc = smithyClient.take(data, {
|
|
1262
|
-
assistant: smithyClient._json,
|
|
1263
|
-
});
|
|
1264
|
-
Object.assign(contents, doc);
|
|
1265
|
-
return contents;
|
|
1266
|
-
};
|
|
1267
|
-
const de_GetAssistantAssociationCommand = async (output, context) => {
|
|
1268
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1269
|
-
return de_CommandError(output, context);
|
|
1270
|
-
}
|
|
1271
|
-
const contents = smithyClient.map({
|
|
1272
|
-
$metadata: deserializeMetadata(output),
|
|
1273
|
-
});
|
|
1274
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1275
|
-
const doc = smithyClient.take(data, {
|
|
1276
|
-
assistantAssociation: smithyClient._json,
|
|
1277
|
-
});
|
|
1278
|
-
Object.assign(contents, doc);
|
|
1279
|
-
return contents;
|
|
1280
|
-
};
|
|
1281
|
-
const de_GetContentCommand = async (output, context) => {
|
|
1282
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1283
|
-
return de_CommandError(output, context);
|
|
1284
|
-
}
|
|
1285
|
-
const contents = smithyClient.map({
|
|
1286
|
-
$metadata: deserializeMetadata(output),
|
|
1287
|
-
});
|
|
1288
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1289
|
-
const doc = smithyClient.take(data, {
|
|
1290
|
-
content: (_) => de_ContentData(_),
|
|
1291
|
-
});
|
|
1292
|
-
Object.assign(contents, doc);
|
|
1293
|
-
return contents;
|
|
1294
|
-
};
|
|
1295
|
-
const de_GetContentSummaryCommand = async (output, context) => {
|
|
1296
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1297
|
-
return de_CommandError(output, context);
|
|
1298
|
-
}
|
|
1299
|
-
const contents = smithyClient.map({
|
|
1300
|
-
$metadata: deserializeMetadata(output),
|
|
1301
|
-
});
|
|
1302
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1303
|
-
const doc = smithyClient.take(data, {
|
|
1304
|
-
contentSummary: smithyClient._json,
|
|
1305
|
-
});
|
|
1306
|
-
Object.assign(contents, doc);
|
|
1307
|
-
return contents;
|
|
1308
|
-
};
|
|
1309
|
-
const de_GetImportJobCommand = async (output, context) => {
|
|
1310
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1311
|
-
return de_CommandError(output, context);
|
|
1312
|
-
}
|
|
1313
|
-
const contents = smithyClient.map({
|
|
1314
|
-
$metadata: deserializeMetadata(output),
|
|
1315
|
-
});
|
|
1316
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1317
|
-
const doc = smithyClient.take(data, {
|
|
1318
|
-
importJob: (_) => de_ImportJobData(_),
|
|
1319
|
-
});
|
|
1320
|
-
Object.assign(contents, doc);
|
|
1321
|
-
return contents;
|
|
1322
|
-
};
|
|
1323
|
-
const de_GetKnowledgeBaseCommand = async (output, context) => {
|
|
1324
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1325
|
-
return de_CommandError(output, context);
|
|
1326
|
-
}
|
|
1327
|
-
const contents = smithyClient.map({
|
|
1328
|
-
$metadata: deserializeMetadata(output),
|
|
1329
|
-
});
|
|
1330
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1331
|
-
const doc = smithyClient.take(data, {
|
|
1332
|
-
knowledgeBase: (_) => de_KnowledgeBaseData(_),
|
|
1333
|
-
});
|
|
1334
|
-
Object.assign(contents, doc);
|
|
1335
|
-
return contents;
|
|
1336
|
-
};
|
|
1337
|
-
const de_GetQuickResponseCommand = async (output, context) => {
|
|
1338
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1339
|
-
return de_CommandError(output, context);
|
|
1340
|
-
}
|
|
1341
|
-
const contents = smithyClient.map({
|
|
1342
|
-
$metadata: deserializeMetadata(output),
|
|
1343
|
-
});
|
|
1344
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1345
|
-
const doc = smithyClient.take(data, {
|
|
1346
|
-
quickResponse: (_) => de_QuickResponseData(_),
|
|
1347
|
-
});
|
|
1348
|
-
Object.assign(contents, doc);
|
|
1349
|
-
return contents;
|
|
1350
|
-
};
|
|
1351
|
-
const de_GetRecommendationsCommand = async (output, context) => {
|
|
1352
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1353
|
-
return de_CommandError(output, context);
|
|
1354
|
-
}
|
|
1355
|
-
const contents = smithyClient.map({
|
|
1356
|
-
$metadata: deserializeMetadata(output),
|
|
1357
|
-
});
|
|
1358
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1359
|
-
const doc = smithyClient.take(data, {
|
|
1360
|
-
recommendations: (_) => de_RecommendationList(_),
|
|
1361
|
-
triggers: smithyClient._json,
|
|
1362
|
-
});
|
|
1363
|
-
Object.assign(contents, doc);
|
|
1364
|
-
return contents;
|
|
1365
|
-
};
|
|
1366
|
-
const de_GetSessionCommand = async (output, context) => {
|
|
1367
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1368
|
-
return de_CommandError(output, context);
|
|
1369
|
-
}
|
|
1370
|
-
const contents = smithyClient.map({
|
|
1371
|
-
$metadata: deserializeMetadata(output),
|
|
1372
|
-
});
|
|
1373
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1374
|
-
const doc = smithyClient.take(data, {
|
|
1375
|
-
session: smithyClient._json,
|
|
1376
|
-
});
|
|
1377
|
-
Object.assign(contents, doc);
|
|
1378
|
-
return contents;
|
|
1379
|
-
};
|
|
1380
|
-
const de_ListAssistantAssociationsCommand = async (output, context) => {
|
|
1381
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1382
|
-
return de_CommandError(output, context);
|
|
1383
|
-
}
|
|
1384
|
-
const contents = smithyClient.map({
|
|
1385
|
-
$metadata: deserializeMetadata(output),
|
|
1386
|
-
});
|
|
1387
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1388
|
-
const doc = smithyClient.take(data, {
|
|
1389
|
-
assistantAssociationSummaries: smithyClient._json,
|
|
1390
|
-
nextToken: smithyClient.expectString,
|
|
1391
|
-
});
|
|
1392
|
-
Object.assign(contents, doc);
|
|
1393
|
-
return contents;
|
|
1394
|
-
};
|
|
1395
|
-
const de_ListAssistantsCommand = async (output, context) => {
|
|
1396
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1397
|
-
return de_CommandError(output, context);
|
|
1398
|
-
}
|
|
1399
|
-
const contents = smithyClient.map({
|
|
1400
|
-
$metadata: deserializeMetadata(output),
|
|
1401
|
-
});
|
|
1402
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1403
|
-
const doc = smithyClient.take(data, {
|
|
1404
|
-
assistantSummaries: smithyClient._json,
|
|
1405
|
-
nextToken: smithyClient.expectString,
|
|
1406
|
-
});
|
|
1407
|
-
Object.assign(contents, doc);
|
|
1408
|
-
return contents;
|
|
1409
|
-
};
|
|
1410
|
-
const de_ListContentsCommand = async (output, context) => {
|
|
1411
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1412
|
-
return de_CommandError(output, context);
|
|
1413
|
-
}
|
|
1414
|
-
const contents = smithyClient.map({
|
|
1415
|
-
$metadata: deserializeMetadata(output),
|
|
1416
|
-
});
|
|
1417
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1418
|
-
const doc = smithyClient.take(data, {
|
|
1419
|
-
contentSummaries: smithyClient._json,
|
|
1420
|
-
nextToken: smithyClient.expectString,
|
|
1421
|
-
});
|
|
1422
|
-
Object.assign(contents, doc);
|
|
1423
|
-
return contents;
|
|
1424
|
-
};
|
|
1425
|
-
const de_ListImportJobsCommand = async (output, context) => {
|
|
1426
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1427
|
-
return de_CommandError(output, context);
|
|
1428
|
-
}
|
|
1429
|
-
const contents = smithyClient.map({
|
|
1430
|
-
$metadata: deserializeMetadata(output),
|
|
1431
|
-
});
|
|
1432
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1433
|
-
const doc = smithyClient.take(data, {
|
|
1434
|
-
importJobSummaries: (_) => de_ImportJobList(_),
|
|
1435
|
-
nextToken: smithyClient.expectString,
|
|
1436
|
-
});
|
|
1437
|
-
Object.assign(contents, doc);
|
|
1438
|
-
return contents;
|
|
1439
|
-
};
|
|
1440
|
-
const de_ListKnowledgeBasesCommand = async (output, context) => {
|
|
1441
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1442
|
-
return de_CommandError(output, context);
|
|
1443
|
-
}
|
|
1444
|
-
const contents = smithyClient.map({
|
|
1445
|
-
$metadata: deserializeMetadata(output),
|
|
1446
|
-
});
|
|
1447
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1448
|
-
const doc = smithyClient.take(data, {
|
|
1449
|
-
knowledgeBaseSummaries: smithyClient._json,
|
|
1450
|
-
nextToken: smithyClient.expectString,
|
|
1451
|
-
});
|
|
1452
|
-
Object.assign(contents, doc);
|
|
1453
|
-
return contents;
|
|
1454
|
-
};
|
|
1455
|
-
const de_ListQuickResponsesCommand = async (output, context) => {
|
|
1456
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1457
|
-
return de_CommandError(output, context);
|
|
1458
|
-
}
|
|
1459
|
-
const contents = smithyClient.map({
|
|
1460
|
-
$metadata: deserializeMetadata(output),
|
|
1461
|
-
});
|
|
1462
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1463
|
-
const doc = smithyClient.take(data, {
|
|
1464
|
-
nextToken: smithyClient.expectString,
|
|
1465
|
-
quickResponseSummaries: (_) => de_QuickResponseSummaryList(_),
|
|
1466
|
-
});
|
|
1467
|
-
Object.assign(contents, doc);
|
|
1468
|
-
return contents;
|
|
1469
|
-
};
|
|
1470
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1471
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1472
|
-
return de_CommandError(output, context);
|
|
1473
|
-
}
|
|
1474
|
-
const contents = smithyClient.map({
|
|
1475
|
-
$metadata: deserializeMetadata(output),
|
|
1476
|
-
});
|
|
1477
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1478
|
-
const doc = smithyClient.take(data, {
|
|
1479
|
-
tags: smithyClient._json,
|
|
1480
|
-
});
|
|
1481
|
-
Object.assign(contents, doc);
|
|
1482
|
-
return contents;
|
|
1483
|
-
};
|
|
1484
|
-
const de_NotifyRecommendationsReceivedCommand = async (output, context) => {
|
|
1485
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1486
|
-
return de_CommandError(output, context);
|
|
1487
|
-
}
|
|
1488
|
-
const contents = smithyClient.map({
|
|
1489
|
-
$metadata: deserializeMetadata(output),
|
|
1490
|
-
});
|
|
1491
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1492
|
-
const doc = smithyClient.take(data, {
|
|
1493
|
-
errors: smithyClient._json,
|
|
1494
|
-
recommendationIds: smithyClient._json,
|
|
1495
|
-
});
|
|
1496
|
-
Object.assign(contents, doc);
|
|
1497
|
-
return contents;
|
|
1498
|
-
};
|
|
1499
|
-
const de_QueryAssistantCommand = async (output, context) => {
|
|
1500
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1501
|
-
return de_CommandError(output, context);
|
|
1502
|
-
}
|
|
1503
|
-
const contents = smithyClient.map({
|
|
1504
|
-
$metadata: deserializeMetadata(output),
|
|
1505
|
-
});
|
|
1506
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1507
|
-
const doc = smithyClient.take(data, {
|
|
1508
|
-
nextToken: smithyClient.expectString,
|
|
1509
|
-
results: (_) => de_QueryResultsList(_),
|
|
1510
|
-
});
|
|
1511
|
-
Object.assign(contents, doc);
|
|
1512
|
-
return contents;
|
|
1513
|
-
};
|
|
1514
|
-
const de_RemoveKnowledgeBaseTemplateUriCommand = async (output, context) => {
|
|
1515
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1516
|
-
return de_CommandError(output, context);
|
|
1517
|
-
}
|
|
1518
|
-
const contents = smithyClient.map({
|
|
1519
|
-
$metadata: deserializeMetadata(output),
|
|
1520
|
-
});
|
|
1521
|
-
await smithyClient.collectBody(output.body, context);
|
|
1522
|
-
return contents;
|
|
1523
|
-
};
|
|
1524
|
-
const de_SearchContentCommand = async (output, context) => {
|
|
1525
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1526
|
-
return de_CommandError(output, context);
|
|
1527
|
-
}
|
|
1528
|
-
const contents = smithyClient.map({
|
|
1529
|
-
$metadata: deserializeMetadata(output),
|
|
1530
|
-
});
|
|
1531
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1532
|
-
const doc = smithyClient.take(data, {
|
|
1533
|
-
contentSummaries: smithyClient._json,
|
|
1534
|
-
nextToken: smithyClient.expectString,
|
|
1535
|
-
});
|
|
1536
|
-
Object.assign(contents, doc);
|
|
1537
|
-
return contents;
|
|
1538
|
-
};
|
|
1539
|
-
const de_SearchQuickResponsesCommand = async (output, context) => {
|
|
1540
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1541
|
-
return de_CommandError(output, context);
|
|
1542
|
-
}
|
|
1543
|
-
const contents = smithyClient.map({
|
|
1544
|
-
$metadata: deserializeMetadata(output),
|
|
1545
|
-
});
|
|
1546
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1547
|
-
const doc = smithyClient.take(data, {
|
|
1548
|
-
nextToken: smithyClient.expectString,
|
|
1549
|
-
results: (_) => de_QuickResponseSearchResultsList(_),
|
|
1550
|
-
});
|
|
1551
|
-
Object.assign(contents, doc);
|
|
1552
|
-
return contents;
|
|
1553
|
-
};
|
|
1554
|
-
const de_SearchSessionsCommand = async (output, context) => {
|
|
1555
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1556
|
-
return de_CommandError(output, context);
|
|
1557
|
-
}
|
|
1558
|
-
const contents = smithyClient.map({
|
|
1559
|
-
$metadata: deserializeMetadata(output),
|
|
1560
|
-
});
|
|
1561
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1562
|
-
const doc = smithyClient.take(data, {
|
|
1563
|
-
nextToken: smithyClient.expectString,
|
|
1564
|
-
sessionSummaries: smithyClient._json,
|
|
1565
|
-
});
|
|
1566
|
-
Object.assign(contents, doc);
|
|
1567
|
-
return contents;
|
|
1568
|
-
};
|
|
1569
|
-
const de_StartContentUploadCommand = async (output, context) => {
|
|
1570
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1571
|
-
return de_CommandError(output, context);
|
|
1572
|
-
}
|
|
1573
|
-
const contents = smithyClient.map({
|
|
1574
|
-
$metadata: deserializeMetadata(output),
|
|
1575
|
-
});
|
|
1576
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1577
|
-
const doc = smithyClient.take(data, {
|
|
1578
|
-
headersToInclude: smithyClient._json,
|
|
1579
|
-
uploadId: smithyClient.expectString,
|
|
1580
|
-
url: smithyClient.expectString,
|
|
1581
|
-
urlExpiry: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1582
|
-
});
|
|
1583
|
-
Object.assign(contents, doc);
|
|
1584
|
-
return contents;
|
|
1585
|
-
};
|
|
1586
|
-
const de_StartImportJobCommand = async (output, context) => {
|
|
1587
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1588
|
-
return de_CommandError(output, context);
|
|
1589
|
-
}
|
|
1590
|
-
const contents = smithyClient.map({
|
|
1591
|
-
$metadata: deserializeMetadata(output),
|
|
1592
|
-
});
|
|
1593
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1594
|
-
const doc = smithyClient.take(data, {
|
|
1595
|
-
importJob: (_) => de_ImportJobData(_),
|
|
1596
|
-
});
|
|
1597
|
-
Object.assign(contents, doc);
|
|
1598
|
-
return contents;
|
|
1599
|
-
};
|
|
1600
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1601
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1602
|
-
return de_CommandError(output, context);
|
|
1603
|
-
}
|
|
1604
|
-
const contents = smithyClient.map({
|
|
1605
|
-
$metadata: deserializeMetadata(output),
|
|
1606
|
-
});
|
|
1607
|
-
await smithyClient.collectBody(output.body, context);
|
|
1608
|
-
return contents;
|
|
1609
|
-
};
|
|
1610
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1611
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1612
|
-
return de_CommandError(output, context);
|
|
1613
|
-
}
|
|
1614
|
-
const contents = smithyClient.map({
|
|
1615
|
-
$metadata: deserializeMetadata(output),
|
|
1616
|
-
});
|
|
1617
|
-
await smithyClient.collectBody(output.body, context);
|
|
1618
|
-
return contents;
|
|
1619
|
-
};
|
|
1620
|
-
const de_UpdateContentCommand = async (output, context) => {
|
|
1621
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1622
|
-
return de_CommandError(output, context);
|
|
1623
|
-
}
|
|
1624
|
-
const contents = smithyClient.map({
|
|
1625
|
-
$metadata: deserializeMetadata(output),
|
|
1626
|
-
});
|
|
1627
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1628
|
-
const doc = smithyClient.take(data, {
|
|
1629
|
-
content: (_) => de_ContentData(_),
|
|
1630
|
-
});
|
|
1631
|
-
Object.assign(contents, doc);
|
|
1632
|
-
return contents;
|
|
1633
|
-
};
|
|
1634
|
-
const de_UpdateKnowledgeBaseTemplateUriCommand = async (output, context) => {
|
|
1635
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1636
|
-
return de_CommandError(output, context);
|
|
1637
|
-
}
|
|
1638
|
-
const contents = smithyClient.map({
|
|
1639
|
-
$metadata: deserializeMetadata(output),
|
|
1640
|
-
});
|
|
1641
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1642
|
-
const doc = smithyClient.take(data, {
|
|
1643
|
-
knowledgeBase: (_) => de_KnowledgeBaseData(_),
|
|
1644
|
-
});
|
|
1645
|
-
Object.assign(contents, doc);
|
|
1646
|
-
return contents;
|
|
1647
|
-
};
|
|
1648
|
-
const de_UpdateQuickResponseCommand = async (output, context) => {
|
|
1649
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1650
|
-
return de_CommandError(output, context);
|
|
1651
|
-
}
|
|
1652
|
-
const contents = smithyClient.map({
|
|
1653
|
-
$metadata: deserializeMetadata(output),
|
|
1654
|
-
});
|
|
1655
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1656
|
-
const doc = smithyClient.take(data, {
|
|
1657
|
-
quickResponse: (_) => de_QuickResponseData(_),
|
|
1658
|
-
});
|
|
1659
|
-
Object.assign(contents, doc);
|
|
1660
|
-
return contents;
|
|
1661
|
-
};
|
|
1662
|
-
const de_CommandError = async (output, context) => {
|
|
1663
|
-
const parsedOutput = {
|
|
1664
|
-
...output,
|
|
1665
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1666
|
-
};
|
|
1667
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1668
|
-
switch (errorCode) {
|
|
1669
|
-
case "AccessDeniedException":
|
|
1670
|
-
case "com.amazonaws.wisdom#AccessDeniedException":
|
|
1671
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1672
|
-
case "ConflictException":
|
|
1673
|
-
case "com.amazonaws.wisdom#ConflictException":
|
|
1674
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1675
|
-
case "ServiceQuotaExceededException":
|
|
1676
|
-
case "com.amazonaws.wisdom#ServiceQuotaExceededException":
|
|
1677
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1678
|
-
case "ValidationException":
|
|
1679
|
-
case "com.amazonaws.wisdom#ValidationException":
|
|
1680
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1681
|
-
case "ResourceNotFoundException":
|
|
1682
|
-
case "com.amazonaws.wisdom#ResourceNotFoundException":
|
|
1683
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1684
|
-
case "RequestTimeoutException":
|
|
1685
|
-
case "com.amazonaws.wisdom#RequestTimeoutException":
|
|
1686
|
-
throw await de_RequestTimeoutExceptionRes(parsedOutput);
|
|
1687
|
-
case "TooManyTagsException":
|
|
1688
|
-
case "com.amazonaws.wisdom#TooManyTagsException":
|
|
1689
|
-
throw await de_TooManyTagsExceptionRes(parsedOutput);
|
|
1690
|
-
case "PreconditionFailedException":
|
|
1691
|
-
case "com.amazonaws.wisdom#PreconditionFailedException":
|
|
1692
|
-
throw await de_PreconditionFailedExceptionRes(parsedOutput);
|
|
1693
|
-
default:
|
|
1694
|
-
const parsedBody = parsedOutput.body;
|
|
1695
|
-
return throwDefaultError({
|
|
1696
|
-
output,
|
|
1697
|
-
parsedBody,
|
|
1698
|
-
errorCode,
|
|
1699
|
-
});
|
|
1700
|
-
}
|
|
1701
|
-
};
|
|
1702
|
-
const throwDefaultError = smithyClient.withBaseException(WisdomServiceException);
|
|
1703
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1704
|
-
const contents = smithyClient.map({});
|
|
1705
|
-
const data = parsedOutput.body;
|
|
1706
|
-
const doc = smithyClient.take(data, {
|
|
1707
|
-
message: smithyClient.expectString,
|
|
1708
|
-
});
|
|
1709
|
-
Object.assign(contents, doc);
|
|
1710
|
-
const exception = new AccessDeniedException({
|
|
1711
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1712
|
-
...contents,
|
|
1713
|
-
});
|
|
1714
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1715
|
-
};
|
|
1716
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1717
|
-
const contents = smithyClient.map({});
|
|
1718
|
-
const data = parsedOutput.body;
|
|
1719
|
-
const doc = smithyClient.take(data, {
|
|
1720
|
-
message: smithyClient.expectString,
|
|
1721
|
-
});
|
|
1722
|
-
Object.assign(contents, doc);
|
|
1723
|
-
const exception = new ConflictException({
|
|
1724
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1725
|
-
...contents,
|
|
1726
|
-
});
|
|
1727
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1728
|
-
};
|
|
1729
|
-
const de_PreconditionFailedExceptionRes = async (parsedOutput, context) => {
|
|
1730
|
-
const contents = smithyClient.map({});
|
|
1731
|
-
const data = parsedOutput.body;
|
|
1732
|
-
const doc = smithyClient.take(data, {
|
|
1733
|
-
message: smithyClient.expectString,
|
|
1734
|
-
});
|
|
1735
|
-
Object.assign(contents, doc);
|
|
1736
|
-
const exception = new PreconditionFailedException({
|
|
1737
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1738
|
-
...contents,
|
|
1739
|
-
});
|
|
1740
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1741
|
-
};
|
|
1742
|
-
const de_RequestTimeoutExceptionRes = async (parsedOutput, context) => {
|
|
1743
|
-
const contents = smithyClient.map({});
|
|
1744
|
-
const data = parsedOutput.body;
|
|
1745
|
-
const doc = smithyClient.take(data, {
|
|
1746
|
-
message: smithyClient.expectString,
|
|
1747
|
-
});
|
|
1748
|
-
Object.assign(contents, doc);
|
|
1749
|
-
const exception = new RequestTimeoutException({
|
|
1750
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1751
|
-
...contents,
|
|
1752
|
-
});
|
|
1753
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1754
|
-
};
|
|
1755
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1756
|
-
const contents = smithyClient.map({});
|
|
1757
|
-
const data = parsedOutput.body;
|
|
1758
|
-
const doc = smithyClient.take(data, {
|
|
1759
|
-
message: smithyClient.expectString,
|
|
1760
|
-
resourceName: smithyClient.expectString,
|
|
1761
|
-
});
|
|
1762
|
-
Object.assign(contents, doc);
|
|
1763
|
-
const exception = new ResourceNotFoundException({
|
|
1764
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1765
|
-
...contents,
|
|
1766
|
-
});
|
|
1767
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1768
|
-
};
|
|
1769
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1770
|
-
const contents = smithyClient.map({});
|
|
1771
|
-
const data = parsedOutput.body;
|
|
1772
|
-
const doc = smithyClient.take(data, {
|
|
1773
|
-
message: smithyClient.expectString,
|
|
1774
|
-
});
|
|
1775
|
-
Object.assign(contents, doc);
|
|
1776
|
-
const exception = new ServiceQuotaExceededException({
|
|
1777
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1778
|
-
...contents,
|
|
1779
|
-
});
|
|
1780
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1781
|
-
};
|
|
1782
|
-
const de_TooManyTagsExceptionRes = async (parsedOutput, context) => {
|
|
1783
|
-
const contents = smithyClient.map({});
|
|
1784
|
-
const data = parsedOutput.body;
|
|
1785
|
-
const doc = smithyClient.take(data, {
|
|
1786
|
-
message: smithyClient.expectString,
|
|
1787
|
-
resourceName: smithyClient.expectString,
|
|
1788
|
-
});
|
|
1789
|
-
Object.assign(contents, doc);
|
|
1790
|
-
const exception = new TooManyTagsException({
|
|
1791
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1792
|
-
...contents,
|
|
1793
|
-
});
|
|
1794
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1795
|
-
};
|
|
1796
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1797
|
-
const contents = smithyClient.map({});
|
|
1798
|
-
const data = parsedOutput.body;
|
|
1799
|
-
const doc = smithyClient.take(data, {
|
|
1800
|
-
message: smithyClient.expectString,
|
|
1801
|
-
});
|
|
1802
|
-
Object.assign(contents, doc);
|
|
1803
|
-
const exception = new ValidationException({
|
|
1804
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1805
|
-
...contents,
|
|
1806
|
-
});
|
|
1807
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1808
|
-
};
|
|
1809
|
-
const de_ContentData = (output, context) => {
|
|
1810
|
-
return smithyClient.take(output, {
|
|
1811
|
-
contentArn: smithyClient.expectString,
|
|
1812
|
-
contentId: smithyClient.expectString,
|
|
1813
|
-
contentType: smithyClient.expectString,
|
|
1814
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1815
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1816
|
-
linkOutUri: smithyClient.expectString,
|
|
1817
|
-
metadata: smithyClient._json,
|
|
1818
|
-
name: smithyClient.expectString,
|
|
1819
|
-
revisionId: smithyClient.expectString,
|
|
1820
|
-
status: smithyClient.expectString,
|
|
1821
|
-
tags: smithyClient._json,
|
|
1822
|
-
title: smithyClient.expectString,
|
|
1823
|
-
url: smithyClient.expectString,
|
|
1824
|
-
urlExpiry: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1825
|
-
});
|
|
1826
|
-
};
|
|
1827
|
-
const de_ImportJobData = (output, context) => {
|
|
1828
|
-
return smithyClient.take(output, {
|
|
1829
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1830
|
-
externalSourceConfiguration: smithyClient._json,
|
|
1831
|
-
failedRecordReport: smithyClient.expectString,
|
|
1832
|
-
importJobId: smithyClient.expectString,
|
|
1833
|
-
importJobType: smithyClient.expectString,
|
|
1834
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1835
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1836
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1837
|
-
metadata: smithyClient._json,
|
|
1838
|
-
status: smithyClient.expectString,
|
|
1839
|
-
uploadId: smithyClient.expectString,
|
|
1840
|
-
url: smithyClient.expectString,
|
|
1841
|
-
urlExpiry: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1842
|
-
});
|
|
1843
|
-
};
|
|
1844
|
-
const de_ImportJobList = (output, context) => {
|
|
1845
|
-
const retVal = (output || [])
|
|
1846
|
-
.filter((e) => e != null)
|
|
1847
|
-
.map((entry) => {
|
|
1848
|
-
return de_ImportJobSummary(entry);
|
|
1849
|
-
});
|
|
1850
|
-
return retVal;
|
|
1851
|
-
};
|
|
1852
|
-
const de_ImportJobSummary = (output, context) => {
|
|
1853
|
-
return smithyClient.take(output, {
|
|
1854
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1855
|
-
externalSourceConfiguration: smithyClient._json,
|
|
1856
|
-
importJobId: smithyClient.expectString,
|
|
1857
|
-
importJobType: smithyClient.expectString,
|
|
1858
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1859
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1860
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1861
|
-
metadata: smithyClient._json,
|
|
1862
|
-
status: smithyClient.expectString,
|
|
1863
|
-
uploadId: smithyClient.expectString,
|
|
1864
|
-
});
|
|
1865
|
-
};
|
|
1866
|
-
const de_KnowledgeBaseData = (output, context) => {
|
|
1867
|
-
return smithyClient.take(output, {
|
|
1868
|
-
description: smithyClient.expectString,
|
|
1869
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1870
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1871
|
-
knowledgeBaseType: smithyClient.expectString,
|
|
1872
|
-
lastContentModificationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1873
|
-
name: smithyClient.expectString,
|
|
1874
|
-
renderingConfiguration: smithyClient._json,
|
|
1875
|
-
serverSideEncryptionConfiguration: smithyClient._json,
|
|
1876
|
-
sourceConfiguration: (_) => smithyClient._json(core$1.awsExpectUnion(_)),
|
|
1877
|
-
status: smithyClient.expectString,
|
|
1878
|
-
tags: smithyClient._json,
|
|
1879
|
-
});
|
|
1880
|
-
};
|
|
1881
|
-
const de_QueryResultsList = (output, context) => {
|
|
1882
|
-
const retVal = (output || [])
|
|
1883
|
-
.filter((e) => e != null)
|
|
1884
|
-
.map((entry) => {
|
|
1885
|
-
return de_ResultData(entry);
|
|
1886
|
-
});
|
|
1887
|
-
return retVal;
|
|
1888
|
-
};
|
|
1889
|
-
const de_QuickResponseData = (output, context) => {
|
|
1890
|
-
return smithyClient.take(output, {
|
|
1891
|
-
channels: smithyClient._json,
|
|
1892
|
-
contentType: smithyClient.expectString,
|
|
1893
|
-
contents: smithyClient._json,
|
|
1894
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1895
|
-
description: smithyClient.expectString,
|
|
1896
|
-
groupingConfiguration: smithyClient._json,
|
|
1897
|
-
isActive: smithyClient.expectBoolean,
|
|
1898
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1899
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1900
|
-
language: smithyClient.expectString,
|
|
1901
|
-
lastModifiedBy: smithyClient.expectString,
|
|
1902
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1903
|
-
name: smithyClient.expectString,
|
|
1904
|
-
quickResponseArn: smithyClient.expectString,
|
|
1905
|
-
quickResponseId: smithyClient.expectString,
|
|
1906
|
-
shortcutKey: smithyClient.expectString,
|
|
1907
|
-
status: smithyClient.expectString,
|
|
1908
|
-
tags: smithyClient._json,
|
|
1909
|
-
});
|
|
1910
|
-
};
|
|
1911
|
-
const de_QuickResponseSearchResultData = (output, context) => {
|
|
1912
|
-
return smithyClient.take(output, {
|
|
1913
|
-
attributesInterpolated: smithyClient._json,
|
|
1914
|
-
attributesNotInterpolated: smithyClient._json,
|
|
1915
|
-
channels: smithyClient._json,
|
|
1916
|
-
contentType: smithyClient.expectString,
|
|
1917
|
-
contents: smithyClient._json,
|
|
1918
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1919
|
-
description: smithyClient.expectString,
|
|
1920
|
-
groupingConfiguration: smithyClient._json,
|
|
1921
|
-
isActive: smithyClient.expectBoolean,
|
|
1922
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1923
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1924
|
-
language: smithyClient.expectString,
|
|
1925
|
-
lastModifiedBy: smithyClient.expectString,
|
|
1926
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1927
|
-
name: smithyClient.expectString,
|
|
1928
|
-
quickResponseArn: smithyClient.expectString,
|
|
1929
|
-
quickResponseId: smithyClient.expectString,
|
|
1930
|
-
shortcutKey: smithyClient.expectString,
|
|
1931
|
-
status: smithyClient.expectString,
|
|
1932
|
-
tags: smithyClient._json,
|
|
1933
|
-
});
|
|
1934
|
-
};
|
|
1935
|
-
const de_QuickResponseSearchResultsList = (output, context) => {
|
|
1936
|
-
const retVal = (output || [])
|
|
1937
|
-
.filter((e) => e != null)
|
|
1938
|
-
.map((entry) => {
|
|
1939
|
-
return de_QuickResponseSearchResultData(entry);
|
|
1940
|
-
});
|
|
1941
|
-
return retVal;
|
|
1942
|
-
};
|
|
1943
|
-
const de_QuickResponseSummary = (output, context) => {
|
|
1944
|
-
return smithyClient.take(output, {
|
|
1945
|
-
channels: smithyClient._json,
|
|
1946
|
-
contentType: smithyClient.expectString,
|
|
1947
|
-
createdTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1948
|
-
description: smithyClient.expectString,
|
|
1949
|
-
isActive: smithyClient.expectBoolean,
|
|
1950
|
-
knowledgeBaseArn: smithyClient.expectString,
|
|
1951
|
-
knowledgeBaseId: smithyClient.expectString,
|
|
1952
|
-
lastModifiedBy: smithyClient.expectString,
|
|
1953
|
-
lastModifiedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1954
|
-
name: smithyClient.expectString,
|
|
1955
|
-
quickResponseArn: smithyClient.expectString,
|
|
1956
|
-
quickResponseId: smithyClient.expectString,
|
|
1957
|
-
status: smithyClient.expectString,
|
|
1958
|
-
tags: smithyClient._json,
|
|
1959
|
-
});
|
|
1960
|
-
};
|
|
1961
|
-
const de_QuickResponseSummaryList = (output, context) => {
|
|
1962
|
-
const retVal = (output || [])
|
|
1963
|
-
.filter((e) => e != null)
|
|
1964
|
-
.map((entry) => {
|
|
1965
|
-
return de_QuickResponseSummary(entry);
|
|
1966
|
-
});
|
|
1967
|
-
return retVal;
|
|
1968
|
-
};
|
|
1969
|
-
const de_RecommendationData = (output, context) => {
|
|
1970
|
-
return smithyClient.take(output, {
|
|
1971
|
-
document: smithyClient._json,
|
|
1972
|
-
recommendationId: smithyClient.expectString,
|
|
1973
|
-
relevanceLevel: smithyClient.expectString,
|
|
1974
|
-
relevanceScore: smithyClient.limitedParseDouble,
|
|
1975
|
-
type: smithyClient.expectString,
|
|
1976
|
-
});
|
|
1977
|
-
};
|
|
1978
|
-
const de_RecommendationList = (output, context) => {
|
|
1979
|
-
const retVal = (output || [])
|
|
1980
|
-
.filter((e) => e != null)
|
|
1981
|
-
.map((entry) => {
|
|
1982
|
-
return de_RecommendationData(entry);
|
|
1983
|
-
});
|
|
1984
|
-
return retVal;
|
|
1985
|
-
};
|
|
1986
|
-
const de_ResultData = (output, context) => {
|
|
1987
|
-
return smithyClient.take(output, {
|
|
1988
|
-
document: smithyClient._json,
|
|
1989
|
-
relevanceScore: smithyClient.limitedParseDouble,
|
|
1990
|
-
resultId: smithyClient.expectString,
|
|
1991
|
-
});
|
|
1992
|
-
};
|
|
1993
|
-
const deserializeMetadata = (output) => ({
|
|
1994
|
-
httpStatusCode: output.statusCode,
|
|
1995
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1996
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1997
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1998
|
-
});
|
|
321
|
+
const _AAD = "AssistantAssociationData";
|
|
322
|
+
const _AAID = "AssistantAssociationInputData";
|
|
323
|
+
const _AAOD = "AssistantAssociationOutputData";
|
|
324
|
+
const _AAS = "AssistantAssociationSummary";
|
|
325
|
+
const _AASL = "AssistantAssociationSummaryList";
|
|
326
|
+
const _AD = "AssistantData";
|
|
327
|
+
const _ADE = "AccessDeniedException";
|
|
328
|
+
const _AIC = "AppIntegrationsConfiguration";
|
|
329
|
+
const _AICs = "AssistantIntegrationConfiguration";
|
|
330
|
+
const _AL = "AssistantList";
|
|
331
|
+
const _AS = "AssistantSummary";
|
|
332
|
+
const _C = "Channel";
|
|
333
|
+
const _CA = "ContactAttributes";
|
|
334
|
+
const _CAA = "CreateAssistantAssociation";
|
|
335
|
+
const _CAAR = "CreateAssistantAssociationRequest";
|
|
336
|
+
const _CAARr = "CreateAssistantAssociationResponse";
|
|
337
|
+
const _CAK = "ContactAttributeKeys";
|
|
338
|
+
const _CAR = "CreateAssistantRequest";
|
|
339
|
+
const _CARr = "CreateAssistantResponse";
|
|
340
|
+
const _CAr = "CreateAssistant";
|
|
341
|
+
const _CC = "ConnectConfiguration";
|
|
342
|
+
const _CCR = "CreateContentRequest";
|
|
343
|
+
const _CCRr = "CreateContentResponse";
|
|
344
|
+
const _CCr = "CreateContent";
|
|
345
|
+
const _CD = "ContentData";
|
|
346
|
+
const _CE = "ConflictException";
|
|
347
|
+
const _CKB = "CreateKnowledgeBase";
|
|
348
|
+
const _CKBR = "CreateKnowledgeBaseRequest";
|
|
349
|
+
const _CKBRr = "CreateKnowledgeBaseResponse";
|
|
350
|
+
const _CQR = "CreateQuickResponse";
|
|
351
|
+
const _CQRR = "CreateQuickResponseRequest";
|
|
352
|
+
const _CQRRr = "CreateQuickResponseResponse";
|
|
353
|
+
const _CR = "ContentReference";
|
|
354
|
+
const _CS = "ContentSummary";
|
|
355
|
+
const _CSL = "ContentSummaryList";
|
|
356
|
+
const _CSR = "CreateSessionRequest";
|
|
357
|
+
const _CSRr = "CreateSessionResponse";
|
|
358
|
+
const _CSr = "CreateSession";
|
|
359
|
+
const _Ch = "Channels";
|
|
360
|
+
const _Co = "Configuration";
|
|
361
|
+
const _D = "Document";
|
|
362
|
+
const _DA = "DeleteAssistant";
|
|
363
|
+
const _DAA = "DeleteAssistantAssociation";
|
|
364
|
+
const _DAAR = "DeleteAssistantAssociationRequest";
|
|
365
|
+
const _DAARe = "DeleteAssistantAssociationResponse";
|
|
366
|
+
const _DAR = "DeleteAssistantRequest";
|
|
367
|
+
const _DARe = "DeleteAssistantResponse";
|
|
368
|
+
const _DC = "DeleteContent";
|
|
369
|
+
const _DCR = "DeleteContentRequest";
|
|
370
|
+
const _DCRe = "DeleteContentResponse";
|
|
371
|
+
const _DIJ = "DeleteImportJob";
|
|
372
|
+
const _DIJR = "DeleteImportJobRequest";
|
|
373
|
+
const _DIJRe = "DeleteImportJobResponse";
|
|
374
|
+
const _DKB = "DeleteKnowledgeBase";
|
|
375
|
+
const _DKBR = "DeleteKnowledgeBaseRequest";
|
|
376
|
+
const _DKBRe = "DeleteKnowledgeBaseResponse";
|
|
377
|
+
const _DQR = "DeleteQuickResponse";
|
|
378
|
+
const _DQRR = "DeleteQuickResponseRequest";
|
|
379
|
+
const _DQRRe = "DeleteQuickResponseResponse";
|
|
380
|
+
const _DT = "DocumentText";
|
|
381
|
+
const _ESC = "ExternalSourceConfiguration";
|
|
382
|
+
const _F = "Filter";
|
|
383
|
+
const _FL = "FilterList";
|
|
384
|
+
const _GA = "GetAssistant";
|
|
385
|
+
const _GAA = "GetAssistantAssociation";
|
|
386
|
+
const _GAAR = "GetAssistantAssociationRequest";
|
|
387
|
+
const _GAARe = "GetAssistantAssociationResponse";
|
|
388
|
+
const _GAR = "GetAssistantRequest";
|
|
389
|
+
const _GARe = "GetAssistantResponse";
|
|
390
|
+
const _GC = "GroupingCriteria";
|
|
391
|
+
const _GCR = "GetContentRequest";
|
|
392
|
+
const _GCRe = "GetContentResponse";
|
|
393
|
+
const _GCS = "GetContentSummary";
|
|
394
|
+
const _GCSR = "GetContentSummaryRequest";
|
|
395
|
+
const _GCSRe = "GetContentSummaryResponse";
|
|
396
|
+
const _GCe = "GetContent";
|
|
397
|
+
const _GCr = "GroupingConfiguration";
|
|
398
|
+
const _GIJ = "GetImportJob";
|
|
399
|
+
const _GIJR = "GetImportJobRequest";
|
|
400
|
+
const _GIJRe = "GetImportJobResponse";
|
|
401
|
+
const _GKB = "GetKnowledgeBase";
|
|
402
|
+
const _GKBR = "GetKnowledgeBaseRequest";
|
|
403
|
+
const _GKBRe = "GetKnowledgeBaseResponse";
|
|
404
|
+
const _GQR = "GetQuickResponse";
|
|
405
|
+
const _GQRR = "GetQuickResponseRequest";
|
|
406
|
+
const _GQRRe = "GetQuickResponseResponse";
|
|
407
|
+
const _GR = "GetRecommendations";
|
|
408
|
+
const _GRR = "GetRecommendationsRequest";
|
|
409
|
+
const _GRRe = "GetRecommendationsResponse";
|
|
410
|
+
const _GS = "GetSession";
|
|
411
|
+
const _GSR = "GetSessionRequest";
|
|
412
|
+
const _GSRe = "GetSessionResponse";
|
|
413
|
+
const _GV = "GroupingValue";
|
|
414
|
+
const _GVr = "GroupingValues";
|
|
415
|
+
const _H = "Highlight";
|
|
416
|
+
const _Hi = "Highlights";
|
|
417
|
+
const _IJD = "ImportJobData";
|
|
418
|
+
const _IJL = "ImportJobList";
|
|
419
|
+
const _IJS = "ImportJobSummary";
|
|
420
|
+
const _KBAD = "KnowledgeBaseAssociationData";
|
|
421
|
+
const _KBD = "KnowledgeBaseData";
|
|
422
|
+
const _KBL = "KnowledgeBaseList";
|
|
423
|
+
const _KBS = "KnowledgeBaseSummary";
|
|
424
|
+
const _LA = "ListAssistants";
|
|
425
|
+
const _LAA = "ListAssistantAssociations";
|
|
426
|
+
const _LAAR = "ListAssistantAssociationsRequest";
|
|
427
|
+
const _LAARi = "ListAssistantAssociationsResponse";
|
|
428
|
+
const _LAR = "ListAssistantsRequest";
|
|
429
|
+
const _LARi = "ListAssistantsResponse";
|
|
430
|
+
const _LC = "ListContents";
|
|
431
|
+
const _LCR = "ListContentsRequest";
|
|
432
|
+
const _LCRi = "ListContentsResponse";
|
|
433
|
+
const _LIJ = "ListImportJobs";
|
|
434
|
+
const _LIJR = "ListImportJobsRequest";
|
|
435
|
+
const _LIJRi = "ListImportJobsResponse";
|
|
436
|
+
const _LKB = "ListKnowledgeBases";
|
|
437
|
+
const _LKBR = "ListKnowledgeBasesRequest";
|
|
438
|
+
const _LKBRi = "ListKnowledgeBasesResponse";
|
|
439
|
+
const _LQR = "ListQuickResponses";
|
|
440
|
+
const _LQRR = "ListQuickResponsesRequest";
|
|
441
|
+
const _LQRRi = "ListQuickResponsesResponse";
|
|
442
|
+
const _LTFR = "ListTagsForResource";
|
|
443
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
444
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
445
|
+
const _NRR = "NotifyRecommendationsReceived";
|
|
446
|
+
const _NRRE = "NotifyRecommendationsReceivedError";
|
|
447
|
+
const _NRREL = "NotifyRecommendationsReceivedErrorList";
|
|
448
|
+
const _NRRR = "NotifyRecommendationsReceivedRequest";
|
|
449
|
+
const _NRRRo = "NotifyRecommendationsReceivedResponse";
|
|
450
|
+
const _PFE = "PreconditionFailedException";
|
|
451
|
+
const _QA = "QueryAssistant";
|
|
452
|
+
const _QAR = "QueryAssistantRequest";
|
|
453
|
+
const _QARu = "QueryAssistantResponse";
|
|
454
|
+
const _QRC = "QuickResponseContent";
|
|
455
|
+
const _QRCP = "QuickResponseContentProvider";
|
|
456
|
+
const _QRCu = "QuickResponseContents";
|
|
457
|
+
const _QRD = "QuickResponseData";
|
|
458
|
+
const _QRDP = "QuickResponseDataProvider";
|
|
459
|
+
const _QRFF = "QuickResponseFilterField";
|
|
460
|
+
const _QRFFL = "QuickResponseFilterFieldList";
|
|
461
|
+
const _QRL = "QueryResultsList";
|
|
462
|
+
const _QROF = "QuickResponseOrderField";
|
|
463
|
+
const _QRQF = "QuickResponseQueryField";
|
|
464
|
+
const _QRQFL = "QuickResponseQueryFieldList";
|
|
465
|
+
const _QRS = "QuickResponseSummary";
|
|
466
|
+
const _QRSE = "QuickResponseSearchExpression";
|
|
467
|
+
const _QRSL = "QuickResponseSummaryList";
|
|
468
|
+
const _QRSRD = "QuickResponseSearchResultData";
|
|
469
|
+
const _QRSRL = "QuickResponseSearchResultsList";
|
|
470
|
+
const _QRTD = "QueryRecommendationTriggerData";
|
|
471
|
+
const _QT = "QueryText";
|
|
472
|
+
const _RC = "RenderingConfiguration";
|
|
473
|
+
const _RD = "RecommendationData";
|
|
474
|
+
const _RDe = "ResultData";
|
|
475
|
+
const _RKBTU = "RemoveKnowledgeBaseTemplateUri";
|
|
476
|
+
const _RKBTUR = "RemoveKnowledgeBaseTemplateUriRequest";
|
|
477
|
+
const _RKBTURe = "RemoveKnowledgeBaseTemplateUriResponse";
|
|
478
|
+
const _RL = "RecommendationList";
|
|
479
|
+
const _RNFE = "ResourceNotFoundException";
|
|
480
|
+
const _RT = "RecommendationTrigger";
|
|
481
|
+
const _RTD = "RecommendationTriggerData";
|
|
482
|
+
const _RTE = "RequestTimeoutException";
|
|
483
|
+
const _RTL = "RecommendationTriggerList";
|
|
484
|
+
const _SC = "SourceConfiguration";
|
|
485
|
+
const _SCR = "SearchContentRequest";
|
|
486
|
+
const _SCRe = "SearchContentResponse";
|
|
487
|
+
const _SCU = "StartContentUpload";
|
|
488
|
+
const _SCUR = "StartContentUploadRequest";
|
|
489
|
+
const _SCURt = "StartContentUploadResponse";
|
|
490
|
+
const _SCe = "SearchContent";
|
|
491
|
+
const _SD = "SessionData";
|
|
492
|
+
const _SE = "SearchExpression";
|
|
493
|
+
const _SIC = "SessionIntegrationConfiguration";
|
|
494
|
+
const _SIJ = "StartImportJob";
|
|
495
|
+
const _SIJR = "StartImportJobRequest";
|
|
496
|
+
const _SIJRt = "StartImportJobResponse";
|
|
497
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
498
|
+
const _SQR = "SearchQuickResponses";
|
|
499
|
+
const _SQRR = "SearchQuickResponsesRequest";
|
|
500
|
+
const _SQRRe = "SearchQuickResponsesResponse";
|
|
501
|
+
const _SS = "SensitiveString";
|
|
502
|
+
const _SSEC = "ServerSideEncryptionConfiguration";
|
|
503
|
+
const _SSR = "SearchSessionsRequest";
|
|
504
|
+
const _SSRe = "SearchSessionsResponse";
|
|
505
|
+
const _SSe = "SessionSummary";
|
|
506
|
+
const _SSea = "SearchSessions";
|
|
507
|
+
const _SSes = "SessionSummaries";
|
|
508
|
+
const _TMTE = "TooManyTagsException";
|
|
509
|
+
const _TR = "TagResource";
|
|
510
|
+
const _TRR = "TagResourceRequest";
|
|
511
|
+
const _TRRa = "TagResourceResponse";
|
|
512
|
+
const _U = "Url";
|
|
513
|
+
const _UC = "UpdateContent";
|
|
514
|
+
const _UCR = "UpdateContentRequest";
|
|
515
|
+
const _UCRp = "UpdateContentResponse";
|
|
516
|
+
const _UKBTU = "UpdateKnowledgeBaseTemplateUri";
|
|
517
|
+
const _UKBTUR = "UpdateKnowledgeBaseTemplateUriRequest";
|
|
518
|
+
const _UKBTURp = "UpdateKnowledgeBaseTemplateUriResponse";
|
|
519
|
+
const _UQR = "UpdateQuickResponse";
|
|
520
|
+
const _UQRR = "UpdateQuickResponseRequest";
|
|
521
|
+
const _UQRRp = "UpdateQuickResponseResponse";
|
|
522
|
+
const _UR = "UntagResource";
|
|
523
|
+
const _URR = "UntagResourceRequest";
|
|
524
|
+
const _URRn = "UntagResourceResponse";
|
|
525
|
+
const _VE = "ValidationException";
|
|
526
|
+
const _a = "association";
|
|
527
|
+
const _aA = "assistantArn";
|
|
528
|
+
const _aAA = "assistantAssociationArn";
|
|
529
|
+
const _aAI = "assistantAssociationId";
|
|
530
|
+
const _aAS = "assistantAssociationSummaries";
|
|
531
|
+
const _aAs = "assistantAssociation";
|
|
532
|
+
const _aD = "associationData";
|
|
533
|
+
const _aF = "allowFuzziness";
|
|
534
|
+
const _aI = "assistantId";
|
|
535
|
+
const _aIA = "appIntegrationArn";
|
|
536
|
+
const _aIp = "appIntegrations";
|
|
537
|
+
const _aIt = "attributesInterpolated";
|
|
538
|
+
const _aNI = "attributesNotInterpolated";
|
|
539
|
+
const _aS = "assistantSummaries";
|
|
540
|
+
const _aT = "associationType";
|
|
541
|
+
const _as = "assistant";
|
|
542
|
+
const _at = "attributes";
|
|
543
|
+
const _bOI = "beginOffsetInclusive";
|
|
544
|
+
const _c = "client";
|
|
545
|
+
const _cA = "contentArn";
|
|
546
|
+
const _cC = "connectConfiguration";
|
|
547
|
+
const _cI = "contentId";
|
|
548
|
+
const _cR = "contentReference";
|
|
549
|
+
const _cS = "contentSummary";
|
|
550
|
+
const _cSo = "contentSummaries";
|
|
551
|
+
const _cT = "contentType";
|
|
552
|
+
const _cTl = "clientToken";
|
|
553
|
+
const _cTr = "createdTime";
|
|
554
|
+
const _ch = "channels";
|
|
555
|
+
const _co = "content";
|
|
556
|
+
const _con = "configuration";
|
|
557
|
+
const _cont = "contents";
|
|
558
|
+
const _cr = "criteria";
|
|
559
|
+
const _d = "description";
|
|
560
|
+
const _da = "data";
|
|
561
|
+
const _do = "document";
|
|
562
|
+
const _e = "error";
|
|
563
|
+
const _eOE = "endOffsetExclusive";
|
|
564
|
+
const _eSC = "externalSourceConfiguration";
|
|
565
|
+
const _er = "errors";
|
|
566
|
+
const _ex = "excerpt";
|
|
567
|
+
const _f = "field";
|
|
568
|
+
const _fRR = "failedRecordReport";
|
|
569
|
+
const _fi = "filters";
|
|
570
|
+
const _gC = "groupingConfiguration";
|
|
571
|
+
const _h = "highlights";
|
|
572
|
+
const _hE = "httpError";
|
|
573
|
+
const _hQ = "httpQuery";
|
|
574
|
+
const _hTI = "headersToInclude";
|
|
575
|
+
const _ht = "http";
|
|
576
|
+
const _i = "id";
|
|
577
|
+
const _iA = "isActive";
|
|
578
|
+
const _iC = "integrationConfiguration";
|
|
579
|
+
const _iI = "instanceId";
|
|
580
|
+
const _iJ = "importJob";
|
|
581
|
+
const _iJI = "importJobId";
|
|
582
|
+
const _iJS = "importJobSummaries";
|
|
583
|
+
const _iJT = "importJobType";
|
|
584
|
+
const _iNE = "includeNoExistence";
|
|
585
|
+
const _kB = "knowledgeBase";
|
|
586
|
+
const _kBA = "knowledgeBaseArn";
|
|
587
|
+
const _kBAn = "knowledgeBaseAssociation";
|
|
588
|
+
const _kBI = "knowledgeBaseId";
|
|
589
|
+
const _kBS = "knowledgeBaseSummaries";
|
|
590
|
+
const _kBT = "knowledgeBaseType";
|
|
591
|
+
const _kKI = "kmsKeyId";
|
|
592
|
+
const _l = "language";
|
|
593
|
+
const _lCMT = "lastContentModificationTime";
|
|
594
|
+
const _lMB = "lastModifiedBy";
|
|
595
|
+
const _lMT = "lastModifiedTime";
|
|
596
|
+
const _lOU = "linkOutUri";
|
|
597
|
+
const _m = "message";
|
|
1999
598
|
const _mR = "maxResults";
|
|
599
|
+
const _ma = "markdown";
|
|
600
|
+
const _me = "metadata";
|
|
601
|
+
const _n = "name";
|
|
2000
602
|
const _nT = "nextToken";
|
|
603
|
+
const _o = "operator";
|
|
604
|
+
const _oF = "objectFields";
|
|
605
|
+
const _oLOU = "overrideLinkOutUri";
|
|
606
|
+
const _oOF = "orderOnField";
|
|
607
|
+
const _or = "order";
|
|
608
|
+
const _p = "priority";
|
|
609
|
+
const _pT = "plainText";
|
|
610
|
+
const _pUTTL = "presignedUrlTimeToLive";
|
|
611
|
+
const _q = "queries";
|
|
612
|
+
const _qR = "quickResponse";
|
|
613
|
+
const _qRA = "quickResponseArn";
|
|
614
|
+
const _qRI = "quickResponseId";
|
|
615
|
+
const _qRS = "quickResponseSummaries";
|
|
616
|
+
const _qT = "queryText";
|
|
617
|
+
const _qu = "query";
|
|
618
|
+
const _r = "recommendations";
|
|
619
|
+
const _rA = "resourceArn";
|
|
620
|
+
const _rC = "renderingConfiguration";
|
|
621
|
+
const _rD = "removeDescription";
|
|
622
|
+
const _rGC = "removeGroupingConfiguration";
|
|
623
|
+
const _rI = "revisionId";
|
|
624
|
+
const _rIe = "recommendationId";
|
|
625
|
+
const _rIec = "recommendationIds";
|
|
626
|
+
const _rIes = "resultId";
|
|
627
|
+
const _rL = "relevanceLevel";
|
|
628
|
+
const _rN = "resourceName";
|
|
629
|
+
const _rOLOU = "removeOverrideLinkOutUri";
|
|
630
|
+
const _rS = "relevanceScore";
|
|
631
|
+
const _rSK = "removeShortcutKey";
|
|
632
|
+
const _re = "results";
|
|
633
|
+
const _s = "status";
|
|
634
|
+
const _sA = "sessionArn";
|
|
635
|
+
const _sC = "sourceConfiguration";
|
|
636
|
+
const _sE = "searchExpression";
|
|
637
|
+
const _sI = "sessionId";
|
|
638
|
+
const _sK = "shortcutKey";
|
|
639
|
+
const _sS = "sessionSummaries";
|
|
640
|
+
const _sSEC = "serverSideEncryptionConfiguration";
|
|
641
|
+
const _se = "session";
|
|
642
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wisdom";
|
|
643
|
+
const _so = "source";
|
|
644
|
+
const _t = "tags";
|
|
645
|
+
const _tIA = "topicIntegrationArn";
|
|
2001
646
|
const _tK = "tagKeys";
|
|
647
|
+
const _tU = "templateUri";
|
|
648
|
+
const _te = "text";
|
|
649
|
+
const _ti = "title";
|
|
650
|
+
const _tr = "triggers";
|
|
651
|
+
const _ty = "type";
|
|
652
|
+
const _u = "url";
|
|
653
|
+
const _uE = "urlExpiry";
|
|
654
|
+
const _uI = "uploadId";
|
|
655
|
+
const _v = "value";
|
|
656
|
+
const _va = "values";
|
|
2002
657
|
const _wTS = "waitTimeSeconds";
|
|
658
|
+
const n0 = "com.amazonaws.wisdom";
|
|
659
|
+
var Channel = [0, n0, _C, 8, 0];
|
|
660
|
+
var GroupingCriteria = [0, n0, _GC, 8, 0];
|
|
661
|
+
var GroupingValue = [0, n0, _GV, 8, 0];
|
|
662
|
+
var QueryText = [0, n0, _QT, 8, 0];
|
|
663
|
+
var QuickResponseContent = [0, n0, _QRC, 8, 0];
|
|
664
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
665
|
+
var Url = [0, n0, _U, 8, 0];
|
|
666
|
+
var AccessDeniedException = [
|
|
667
|
+
-3,
|
|
668
|
+
n0,
|
|
669
|
+
_ADE,
|
|
670
|
+
{
|
|
671
|
+
[_e]: _c,
|
|
672
|
+
[_hE]: 403,
|
|
673
|
+
},
|
|
674
|
+
[_m],
|
|
675
|
+
[0],
|
|
676
|
+
];
|
|
677
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
678
|
+
var AppIntegrationsConfiguration = [3, n0, _AIC, 0, [_aIA, _oF], [0, 64 | 0]];
|
|
679
|
+
var AssistantAssociationData = [
|
|
680
|
+
3,
|
|
681
|
+
n0,
|
|
682
|
+
_AAD,
|
|
683
|
+
0,
|
|
684
|
+
[_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
|
|
685
|
+
[0, 0, 0, 0, 0, () => AssistantAssociationOutputData, 128 | 0],
|
|
686
|
+
];
|
|
687
|
+
var AssistantAssociationSummary = [
|
|
688
|
+
3,
|
|
689
|
+
n0,
|
|
690
|
+
_AAS,
|
|
691
|
+
0,
|
|
692
|
+
[_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
|
|
693
|
+
[0, 0, 0, 0, 0, () => AssistantAssociationOutputData, 128 | 0],
|
|
694
|
+
];
|
|
695
|
+
var AssistantData = [
|
|
696
|
+
3,
|
|
697
|
+
n0,
|
|
698
|
+
_AD,
|
|
699
|
+
0,
|
|
700
|
+
[_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
|
|
701
|
+
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration, () => AssistantIntegrationConfiguration],
|
|
702
|
+
];
|
|
703
|
+
var AssistantIntegrationConfiguration = [3, n0, _AICs, 0, [_tIA], [0]];
|
|
704
|
+
var AssistantSummary = [
|
|
705
|
+
3,
|
|
706
|
+
n0,
|
|
707
|
+
_AS,
|
|
708
|
+
0,
|
|
709
|
+
[_aI, _aA, _n, _ty, _s, _d, _t, _sSEC, _iC],
|
|
710
|
+
[0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration, () => AssistantIntegrationConfiguration],
|
|
711
|
+
];
|
|
712
|
+
var ConflictException = [
|
|
713
|
+
-3,
|
|
714
|
+
n0,
|
|
715
|
+
_CE,
|
|
716
|
+
{
|
|
717
|
+
[_e]: _c,
|
|
718
|
+
[_hE]: 409,
|
|
719
|
+
},
|
|
720
|
+
[_m],
|
|
721
|
+
[0],
|
|
722
|
+
];
|
|
723
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
724
|
+
var ConnectConfiguration = [3, n0, _CC, 0, [_iI], [0]];
|
|
725
|
+
var ContentData = [
|
|
726
|
+
3,
|
|
727
|
+
n0,
|
|
728
|
+
_CD,
|
|
729
|
+
0,
|
|
730
|
+
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _t, _lOU, _u, _uE],
|
|
731
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, [() => Url, 0], 7],
|
|
732
|
+
];
|
|
733
|
+
var ContentReference = [3, n0, _CR, 0, [_kBA, _kBI, _cA, _cI], [0, 0, 0, 0]];
|
|
734
|
+
var ContentSummary = [
|
|
735
|
+
3,
|
|
736
|
+
n0,
|
|
737
|
+
_CS,
|
|
738
|
+
0,
|
|
739
|
+
[_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _s, _me, _t],
|
|
740
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0],
|
|
741
|
+
];
|
|
742
|
+
var CreateAssistantAssociationRequest = [
|
|
743
|
+
3,
|
|
744
|
+
n0,
|
|
745
|
+
_CAAR,
|
|
746
|
+
0,
|
|
747
|
+
[_aI, _aT, _a, _cTl, _t],
|
|
748
|
+
[[0, 1], 0, () => AssistantAssociationInputData, [0, 4], 128 | 0],
|
|
749
|
+
];
|
|
750
|
+
var CreateAssistantAssociationResponse = [
|
|
751
|
+
3,
|
|
752
|
+
n0,
|
|
753
|
+
_CAARr,
|
|
754
|
+
0,
|
|
755
|
+
[_aAs],
|
|
756
|
+
[() => AssistantAssociationData],
|
|
757
|
+
];
|
|
758
|
+
var CreateAssistantRequest = [
|
|
759
|
+
3,
|
|
760
|
+
n0,
|
|
761
|
+
_CAR,
|
|
762
|
+
0,
|
|
763
|
+
[_cTl, _n, _ty, _d, _t, _sSEC],
|
|
764
|
+
[[0, 4], 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration],
|
|
765
|
+
];
|
|
766
|
+
var CreateAssistantResponse = [3, n0, _CARr, 0, [_as], [() => AssistantData]];
|
|
767
|
+
var CreateContentRequest = [
|
|
768
|
+
3,
|
|
769
|
+
n0,
|
|
770
|
+
_CCR,
|
|
771
|
+
0,
|
|
772
|
+
[_kBI, _n, _ti, _oLOU, _me, _uI, _cTl, _t],
|
|
773
|
+
[[0, 1], 0, 0, 0, 128 | 0, 0, [0, 4], 128 | 0],
|
|
774
|
+
];
|
|
775
|
+
var CreateContentResponse = [3, n0, _CCRr, 0, [_co], [[() => ContentData, 0]]];
|
|
776
|
+
var CreateKnowledgeBaseRequest = [
|
|
777
|
+
3,
|
|
778
|
+
n0,
|
|
779
|
+
_CKBR,
|
|
780
|
+
0,
|
|
781
|
+
[_cTl, _n, _kBT, _sC, _rC, _sSEC, _d, _t],
|
|
782
|
+
[
|
|
783
|
+
[0, 4],
|
|
784
|
+
0,
|
|
785
|
+
0,
|
|
786
|
+
() => SourceConfiguration,
|
|
787
|
+
() => RenderingConfiguration,
|
|
788
|
+
() => ServerSideEncryptionConfiguration,
|
|
789
|
+
0,
|
|
790
|
+
128 | 0,
|
|
791
|
+
],
|
|
792
|
+
];
|
|
793
|
+
var CreateKnowledgeBaseResponse = [3, n0, _CKBRr, 0, [_kB], [() => KnowledgeBaseData]];
|
|
794
|
+
var CreateQuickResponseRequest = [
|
|
795
|
+
3,
|
|
796
|
+
n0,
|
|
797
|
+
_CQRR,
|
|
798
|
+
0,
|
|
799
|
+
[_kBI, _n, _co, _cT, _gC, _d, _sK, _iA, _ch, _l, _cTl, _t],
|
|
800
|
+
[
|
|
801
|
+
[0, 1],
|
|
802
|
+
0,
|
|
803
|
+
[() => QuickResponseDataProvider, 0],
|
|
804
|
+
0,
|
|
805
|
+
[() => GroupingConfiguration, 0],
|
|
806
|
+
0,
|
|
807
|
+
0,
|
|
808
|
+
2,
|
|
809
|
+
[() => Channels, 0],
|
|
810
|
+
0,
|
|
811
|
+
[0, 4],
|
|
812
|
+
128 | 0,
|
|
813
|
+
],
|
|
814
|
+
];
|
|
815
|
+
var CreateQuickResponseResponse = [
|
|
816
|
+
3,
|
|
817
|
+
n0,
|
|
818
|
+
_CQRRr,
|
|
819
|
+
0,
|
|
820
|
+
[_qR],
|
|
821
|
+
[[() => QuickResponseData, 0]],
|
|
822
|
+
];
|
|
823
|
+
var CreateSessionRequest = [
|
|
824
|
+
3,
|
|
825
|
+
n0,
|
|
826
|
+
_CSR,
|
|
827
|
+
0,
|
|
828
|
+
[_cTl, _aI, _n, _d, _t],
|
|
829
|
+
[[0, 4], [0, 1], 0, 0, 128 | 0],
|
|
830
|
+
];
|
|
831
|
+
var CreateSessionResponse = [3, n0, _CSRr, 0, [_se], [() => SessionData]];
|
|
832
|
+
var DeleteAssistantAssociationRequest = [
|
|
833
|
+
3,
|
|
834
|
+
n0,
|
|
835
|
+
_DAAR,
|
|
836
|
+
0,
|
|
837
|
+
[_aAI, _aI],
|
|
838
|
+
[
|
|
839
|
+
[0, 1],
|
|
840
|
+
[0, 1],
|
|
841
|
+
],
|
|
842
|
+
];
|
|
843
|
+
var DeleteAssistantAssociationResponse = [3, n0, _DAARe, 0, [], []];
|
|
844
|
+
var DeleteAssistantRequest = [3, n0, _DAR, 0, [_aI], [[0, 1]]];
|
|
845
|
+
var DeleteAssistantResponse = [3, n0, _DARe, 0, [], []];
|
|
846
|
+
var DeleteContentRequest = [
|
|
847
|
+
3,
|
|
848
|
+
n0,
|
|
849
|
+
_DCR,
|
|
850
|
+
0,
|
|
851
|
+
[_kBI, _cI],
|
|
852
|
+
[
|
|
853
|
+
[0, 1],
|
|
854
|
+
[0, 1],
|
|
855
|
+
],
|
|
856
|
+
];
|
|
857
|
+
var DeleteContentResponse = [3, n0, _DCRe, 0, [], []];
|
|
858
|
+
var DeleteImportJobRequest = [
|
|
859
|
+
3,
|
|
860
|
+
n0,
|
|
861
|
+
_DIJR,
|
|
862
|
+
0,
|
|
863
|
+
[_kBI, _iJI],
|
|
864
|
+
[
|
|
865
|
+
[0, 1],
|
|
866
|
+
[0, 1],
|
|
867
|
+
],
|
|
868
|
+
];
|
|
869
|
+
var DeleteImportJobResponse = [3, n0, _DIJRe, 0, [], []];
|
|
870
|
+
var DeleteKnowledgeBaseRequest = [3, n0, _DKBR, 0, [_kBI], [[0, 1]]];
|
|
871
|
+
var DeleteKnowledgeBaseResponse = [3, n0, _DKBRe, 0, [], []];
|
|
872
|
+
var DeleteQuickResponseRequest = [
|
|
873
|
+
3,
|
|
874
|
+
n0,
|
|
875
|
+
_DQRR,
|
|
876
|
+
0,
|
|
877
|
+
[_kBI, _qRI],
|
|
878
|
+
[
|
|
879
|
+
[0, 1],
|
|
880
|
+
[0, 1],
|
|
881
|
+
],
|
|
882
|
+
];
|
|
883
|
+
var DeleteQuickResponseResponse = [3, n0, _DQRRe, 0, [], []];
|
|
884
|
+
var Document = [
|
|
885
|
+
3,
|
|
886
|
+
n0,
|
|
887
|
+
_D,
|
|
888
|
+
0,
|
|
889
|
+
[_cR, _ti, _ex],
|
|
890
|
+
[() => ContentReference, [() => DocumentText, 0], [() => DocumentText, 0]],
|
|
891
|
+
];
|
|
892
|
+
var DocumentText = [
|
|
893
|
+
3,
|
|
894
|
+
n0,
|
|
895
|
+
_DT,
|
|
896
|
+
0,
|
|
897
|
+
[_te, _h],
|
|
898
|
+
[[() => SensitiveString, 0], () => Highlights],
|
|
899
|
+
];
|
|
900
|
+
var ExternalSourceConfiguration = [3, n0, _ESC, 0, [_so, _con], [0, () => Configuration]];
|
|
901
|
+
var Filter = [3, n0, _F, 0, [_f, _o, _v], [0, 0, 0]];
|
|
902
|
+
var GetAssistantAssociationRequest = [
|
|
903
|
+
3,
|
|
904
|
+
n0,
|
|
905
|
+
_GAAR,
|
|
906
|
+
0,
|
|
907
|
+
[_aAI, _aI],
|
|
908
|
+
[
|
|
909
|
+
[0, 1],
|
|
910
|
+
[0, 1],
|
|
911
|
+
],
|
|
912
|
+
];
|
|
913
|
+
var GetAssistantAssociationResponse = [
|
|
914
|
+
3,
|
|
915
|
+
n0,
|
|
916
|
+
_GAARe,
|
|
917
|
+
0,
|
|
918
|
+
[_aAs],
|
|
919
|
+
[() => AssistantAssociationData],
|
|
920
|
+
];
|
|
921
|
+
var GetAssistantRequest = [3, n0, _GAR, 0, [_aI], [[0, 1]]];
|
|
922
|
+
var GetAssistantResponse = [3, n0, _GARe, 0, [_as], [() => AssistantData]];
|
|
923
|
+
var GetContentRequest = [
|
|
924
|
+
3,
|
|
925
|
+
n0,
|
|
926
|
+
_GCR,
|
|
927
|
+
0,
|
|
928
|
+
[_cI, _kBI],
|
|
929
|
+
[
|
|
930
|
+
[0, 1],
|
|
931
|
+
[0, 1],
|
|
932
|
+
],
|
|
933
|
+
];
|
|
934
|
+
var GetContentResponse = [3, n0, _GCRe, 0, [_co], [[() => ContentData, 0]]];
|
|
935
|
+
var GetContentSummaryRequest = [
|
|
936
|
+
3,
|
|
937
|
+
n0,
|
|
938
|
+
_GCSR,
|
|
939
|
+
0,
|
|
940
|
+
[_cI, _kBI],
|
|
941
|
+
[
|
|
942
|
+
[0, 1],
|
|
943
|
+
[0, 1],
|
|
944
|
+
],
|
|
945
|
+
];
|
|
946
|
+
var GetContentSummaryResponse = [3, n0, _GCSRe, 0, [_cS], [() => ContentSummary]];
|
|
947
|
+
var GetImportJobRequest = [
|
|
948
|
+
3,
|
|
949
|
+
n0,
|
|
950
|
+
_GIJR,
|
|
951
|
+
0,
|
|
952
|
+
[_iJI, _kBI],
|
|
953
|
+
[
|
|
954
|
+
[0, 1],
|
|
955
|
+
[0, 1],
|
|
956
|
+
],
|
|
957
|
+
];
|
|
958
|
+
var GetImportJobResponse = [3, n0, _GIJRe, 0, [_iJ], [[() => ImportJobData, 0]]];
|
|
959
|
+
var GetKnowledgeBaseRequest = [3, n0, _GKBR, 0, [_kBI], [[0, 1]]];
|
|
960
|
+
var GetKnowledgeBaseResponse = [3, n0, _GKBRe, 0, [_kB], [() => KnowledgeBaseData]];
|
|
961
|
+
var GetQuickResponseRequest = [
|
|
962
|
+
3,
|
|
963
|
+
n0,
|
|
964
|
+
_GQRR,
|
|
965
|
+
0,
|
|
966
|
+
[_qRI, _kBI],
|
|
967
|
+
[
|
|
968
|
+
[0, 1],
|
|
969
|
+
[0, 1],
|
|
970
|
+
],
|
|
971
|
+
];
|
|
972
|
+
var GetQuickResponseResponse = [3, n0, _GQRRe, 0, [_qR], [[() => QuickResponseData, 0]]];
|
|
973
|
+
var GetRecommendationsRequest = [
|
|
974
|
+
3,
|
|
975
|
+
n0,
|
|
976
|
+
_GRR,
|
|
977
|
+
0,
|
|
978
|
+
[_aI, _sI, _mR, _wTS],
|
|
979
|
+
[
|
|
980
|
+
[0, 1],
|
|
981
|
+
[0, 1],
|
|
982
|
+
[
|
|
983
|
+
1,
|
|
984
|
+
{
|
|
985
|
+
[_hQ]: _mR,
|
|
986
|
+
},
|
|
987
|
+
],
|
|
988
|
+
[
|
|
989
|
+
1,
|
|
990
|
+
{
|
|
991
|
+
[_hQ]: _wTS,
|
|
992
|
+
},
|
|
993
|
+
],
|
|
994
|
+
],
|
|
995
|
+
];
|
|
996
|
+
var GetRecommendationsResponse = [
|
|
997
|
+
3,
|
|
998
|
+
n0,
|
|
999
|
+
_GRRe,
|
|
1000
|
+
0,
|
|
1001
|
+
[_r, _tr],
|
|
1002
|
+
[
|
|
1003
|
+
[() => RecommendationList, 0],
|
|
1004
|
+
[() => RecommendationTriggerList, 0],
|
|
1005
|
+
],
|
|
1006
|
+
];
|
|
1007
|
+
var GetSessionRequest = [
|
|
1008
|
+
3,
|
|
1009
|
+
n0,
|
|
1010
|
+
_GSR,
|
|
1011
|
+
0,
|
|
1012
|
+
[_aI, _sI],
|
|
1013
|
+
[
|
|
1014
|
+
[0, 1],
|
|
1015
|
+
[0, 1],
|
|
1016
|
+
],
|
|
1017
|
+
];
|
|
1018
|
+
var GetSessionResponse = [3, n0, _GSRe, 0, [_se], [() => SessionData]];
|
|
1019
|
+
var GroupingConfiguration = [
|
|
1020
|
+
3,
|
|
1021
|
+
n0,
|
|
1022
|
+
_GCr,
|
|
1023
|
+
0,
|
|
1024
|
+
[_cr, _va],
|
|
1025
|
+
[
|
|
1026
|
+
[() => GroupingCriteria, 0],
|
|
1027
|
+
[() => GroupingValues, 0],
|
|
1028
|
+
],
|
|
1029
|
+
];
|
|
1030
|
+
var Highlight = [3, n0, _H, 0, [_bOI, _eOE], [1, 1]];
|
|
1031
|
+
var ImportJobData = [
|
|
1032
|
+
3,
|
|
1033
|
+
n0,
|
|
1034
|
+
_IJD,
|
|
1035
|
+
0,
|
|
1036
|
+
[_iJI, _kBI, _uI, _kBA, _iJT, _s, _u, _fRR, _uE, _cTr, _lMT, _me, _eSC],
|
|
1037
|
+
[0, 0, 0, 0, 0, 0, [() => Url, 0], [() => Url, 0], 7, 7, 7, 128 | 0, () => ExternalSourceConfiguration],
|
|
1038
|
+
];
|
|
1039
|
+
var ImportJobSummary = [
|
|
1040
|
+
3,
|
|
1041
|
+
n0,
|
|
1042
|
+
_IJS,
|
|
1043
|
+
0,
|
|
1044
|
+
[_iJI, _kBI, _uI, _kBA, _iJT, _s, _cTr, _lMT, _me, _eSC],
|
|
1045
|
+
[0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration],
|
|
1046
|
+
];
|
|
1047
|
+
var KnowledgeBaseAssociationData = [3, n0, _KBAD, 0, [_kBI, _kBA], [0, 0]];
|
|
1048
|
+
var KnowledgeBaseData = [
|
|
1049
|
+
3,
|
|
1050
|
+
n0,
|
|
1051
|
+
_KBD,
|
|
1052
|
+
0,
|
|
1053
|
+
[_kBI, _kBA, _n, _kBT, _s, _lCMT, _sC, _rC, _sSEC, _d, _t],
|
|
1054
|
+
[
|
|
1055
|
+
0,
|
|
1056
|
+
0,
|
|
1057
|
+
0,
|
|
1058
|
+
0,
|
|
1059
|
+
0,
|
|
1060
|
+
7,
|
|
1061
|
+
() => SourceConfiguration,
|
|
1062
|
+
() => RenderingConfiguration,
|
|
1063
|
+
() => ServerSideEncryptionConfiguration,
|
|
1064
|
+
0,
|
|
1065
|
+
128 | 0,
|
|
1066
|
+
],
|
|
1067
|
+
];
|
|
1068
|
+
var KnowledgeBaseSummary = [
|
|
1069
|
+
3,
|
|
1070
|
+
n0,
|
|
1071
|
+
_KBS,
|
|
1072
|
+
0,
|
|
1073
|
+
[_kBI, _kBA, _n, _kBT, _s, _sC, _rC, _sSEC, _d, _t],
|
|
1074
|
+
[
|
|
1075
|
+
0,
|
|
1076
|
+
0,
|
|
1077
|
+
0,
|
|
1078
|
+
0,
|
|
1079
|
+
0,
|
|
1080
|
+
() => SourceConfiguration,
|
|
1081
|
+
() => RenderingConfiguration,
|
|
1082
|
+
() => ServerSideEncryptionConfiguration,
|
|
1083
|
+
0,
|
|
1084
|
+
128 | 0,
|
|
1085
|
+
],
|
|
1086
|
+
];
|
|
1087
|
+
var ListAssistantAssociationsRequest = [
|
|
1088
|
+
3,
|
|
1089
|
+
n0,
|
|
1090
|
+
_LAAR,
|
|
1091
|
+
0,
|
|
1092
|
+
[_nT, _mR, _aI],
|
|
1093
|
+
[
|
|
1094
|
+
[
|
|
1095
|
+
0,
|
|
1096
|
+
{
|
|
1097
|
+
[_hQ]: _nT,
|
|
1098
|
+
},
|
|
1099
|
+
],
|
|
1100
|
+
[
|
|
1101
|
+
1,
|
|
1102
|
+
{
|
|
1103
|
+
[_hQ]: _mR,
|
|
1104
|
+
},
|
|
1105
|
+
],
|
|
1106
|
+
[0, 1],
|
|
1107
|
+
],
|
|
1108
|
+
];
|
|
1109
|
+
var ListAssistantAssociationsResponse = [
|
|
1110
|
+
3,
|
|
1111
|
+
n0,
|
|
1112
|
+
_LAARi,
|
|
1113
|
+
0,
|
|
1114
|
+
[_aAS, _nT],
|
|
1115
|
+
[() => AssistantAssociationSummaryList, 0],
|
|
1116
|
+
];
|
|
1117
|
+
var ListAssistantsRequest = [
|
|
1118
|
+
3,
|
|
1119
|
+
n0,
|
|
1120
|
+
_LAR,
|
|
1121
|
+
0,
|
|
1122
|
+
[_nT, _mR],
|
|
1123
|
+
[
|
|
1124
|
+
[
|
|
1125
|
+
0,
|
|
1126
|
+
{
|
|
1127
|
+
[_hQ]: _nT,
|
|
1128
|
+
},
|
|
1129
|
+
],
|
|
1130
|
+
[
|
|
1131
|
+
1,
|
|
1132
|
+
{
|
|
1133
|
+
[_hQ]: _mR,
|
|
1134
|
+
},
|
|
1135
|
+
],
|
|
1136
|
+
],
|
|
1137
|
+
];
|
|
1138
|
+
var ListAssistantsResponse = [3, n0, _LARi, 0, [_aS, _nT], [() => AssistantList, 0]];
|
|
1139
|
+
var ListContentsRequest = [
|
|
1140
|
+
3,
|
|
1141
|
+
n0,
|
|
1142
|
+
_LCR,
|
|
1143
|
+
0,
|
|
1144
|
+
[_nT, _mR, _kBI],
|
|
1145
|
+
[
|
|
1146
|
+
[
|
|
1147
|
+
0,
|
|
1148
|
+
{
|
|
1149
|
+
[_hQ]: _nT,
|
|
1150
|
+
},
|
|
1151
|
+
],
|
|
1152
|
+
[
|
|
1153
|
+
1,
|
|
1154
|
+
{
|
|
1155
|
+
[_hQ]: _mR,
|
|
1156
|
+
},
|
|
1157
|
+
],
|
|
1158
|
+
[0, 1],
|
|
1159
|
+
],
|
|
1160
|
+
];
|
|
1161
|
+
var ListContentsResponse = [3, n0, _LCRi, 0, [_cSo, _nT], [() => ContentSummaryList, 0]];
|
|
1162
|
+
var ListImportJobsRequest = [
|
|
1163
|
+
3,
|
|
1164
|
+
n0,
|
|
1165
|
+
_LIJR,
|
|
1166
|
+
0,
|
|
1167
|
+
[_nT, _mR, _kBI],
|
|
1168
|
+
[
|
|
1169
|
+
[
|
|
1170
|
+
0,
|
|
1171
|
+
{
|
|
1172
|
+
[_hQ]: _nT,
|
|
1173
|
+
},
|
|
1174
|
+
],
|
|
1175
|
+
[
|
|
1176
|
+
1,
|
|
1177
|
+
{
|
|
1178
|
+
[_hQ]: _mR,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
[0, 1],
|
|
1182
|
+
],
|
|
1183
|
+
];
|
|
1184
|
+
var ListImportJobsResponse = [3, n0, _LIJRi, 0, [_iJS, _nT], [() => ImportJobList, 0]];
|
|
1185
|
+
var ListKnowledgeBasesRequest = [
|
|
1186
|
+
3,
|
|
1187
|
+
n0,
|
|
1188
|
+
_LKBR,
|
|
1189
|
+
0,
|
|
1190
|
+
[_nT, _mR],
|
|
1191
|
+
[
|
|
1192
|
+
[
|
|
1193
|
+
0,
|
|
1194
|
+
{
|
|
1195
|
+
[_hQ]: _nT,
|
|
1196
|
+
},
|
|
1197
|
+
],
|
|
1198
|
+
[
|
|
1199
|
+
1,
|
|
1200
|
+
{
|
|
1201
|
+
[_hQ]: _mR,
|
|
1202
|
+
},
|
|
1203
|
+
],
|
|
1204
|
+
],
|
|
1205
|
+
];
|
|
1206
|
+
var ListKnowledgeBasesResponse = [
|
|
1207
|
+
3,
|
|
1208
|
+
n0,
|
|
1209
|
+
_LKBRi,
|
|
1210
|
+
0,
|
|
1211
|
+
[_kBS, _nT],
|
|
1212
|
+
[() => KnowledgeBaseList, 0],
|
|
1213
|
+
];
|
|
1214
|
+
var ListQuickResponsesRequest = [
|
|
1215
|
+
3,
|
|
1216
|
+
n0,
|
|
1217
|
+
_LQRR,
|
|
1218
|
+
0,
|
|
1219
|
+
[_nT, _mR, _kBI],
|
|
1220
|
+
[
|
|
1221
|
+
[
|
|
1222
|
+
0,
|
|
1223
|
+
{
|
|
1224
|
+
[_hQ]: _nT,
|
|
1225
|
+
},
|
|
1226
|
+
],
|
|
1227
|
+
[
|
|
1228
|
+
1,
|
|
1229
|
+
{
|
|
1230
|
+
[_hQ]: _mR,
|
|
1231
|
+
},
|
|
1232
|
+
],
|
|
1233
|
+
[0, 1],
|
|
1234
|
+
],
|
|
1235
|
+
];
|
|
1236
|
+
var ListQuickResponsesResponse = [
|
|
1237
|
+
3,
|
|
1238
|
+
n0,
|
|
1239
|
+
_LQRRi,
|
|
1240
|
+
0,
|
|
1241
|
+
[_qRS, _nT],
|
|
1242
|
+
[[() => QuickResponseSummaryList, 0], 0],
|
|
1243
|
+
];
|
|
1244
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
1245
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1246
|
+
var NotifyRecommendationsReceivedError = [3, n0, _NRRE, 0, [_rIe, _m], [0, 0]];
|
|
1247
|
+
var NotifyRecommendationsReceivedRequest = [
|
|
1248
|
+
3,
|
|
1249
|
+
n0,
|
|
1250
|
+
_NRRR,
|
|
1251
|
+
0,
|
|
1252
|
+
[_aI, _sI, _rIec],
|
|
1253
|
+
[[0, 1], [0, 1], 64 | 0],
|
|
1254
|
+
];
|
|
1255
|
+
var NotifyRecommendationsReceivedResponse = [
|
|
1256
|
+
3,
|
|
1257
|
+
n0,
|
|
1258
|
+
_NRRRo,
|
|
1259
|
+
0,
|
|
1260
|
+
[_rIec, _er],
|
|
1261
|
+
[64 | 0, () => NotifyRecommendationsReceivedErrorList],
|
|
1262
|
+
];
|
|
1263
|
+
var PreconditionFailedException = [
|
|
1264
|
+
-3,
|
|
1265
|
+
n0,
|
|
1266
|
+
_PFE,
|
|
1267
|
+
{
|
|
1268
|
+
[_e]: _c,
|
|
1269
|
+
[_hE]: 412,
|
|
1270
|
+
},
|
|
1271
|
+
[_m],
|
|
1272
|
+
[0],
|
|
1273
|
+
];
|
|
1274
|
+
schema.TypeRegistry.for(n0).registerError(PreconditionFailedException, PreconditionFailedException$1);
|
|
1275
|
+
var QueryAssistantRequest = [
|
|
1276
|
+
3,
|
|
1277
|
+
n0,
|
|
1278
|
+
_QAR,
|
|
1279
|
+
0,
|
|
1280
|
+
[_aI, _qT, _nT, _mR],
|
|
1281
|
+
[[0, 1], [() => QueryText, 0], 0, 1],
|
|
1282
|
+
];
|
|
1283
|
+
var QueryAssistantResponse = [
|
|
1284
|
+
3,
|
|
1285
|
+
n0,
|
|
1286
|
+
_QARu,
|
|
1287
|
+
0,
|
|
1288
|
+
[_re, _nT],
|
|
1289
|
+
[[() => QueryResultsList, 0], 0],
|
|
1290
|
+
];
|
|
1291
|
+
var QueryRecommendationTriggerData = [3, n0, _QRTD, 0, [_te], [[() => QueryText, 0]]];
|
|
1292
|
+
var QuickResponseContents = [
|
|
1293
|
+
3,
|
|
1294
|
+
n0,
|
|
1295
|
+
_QRCu,
|
|
1296
|
+
0,
|
|
1297
|
+
[_pT, _ma],
|
|
1298
|
+
[
|
|
1299
|
+
[() => QuickResponseContentProvider, 0],
|
|
1300
|
+
[() => QuickResponseContentProvider, 0],
|
|
1301
|
+
],
|
|
1302
|
+
];
|
|
1303
|
+
var QuickResponseData = [
|
|
1304
|
+
3,
|
|
1305
|
+
n0,
|
|
1306
|
+
_QRD,
|
|
1307
|
+
0,
|
|
1308
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cTr, _lMT, _cont, _d, _gC, _sK, _lMB, _iA, _ch, _l, _t],
|
|
1309
|
+
[
|
|
1310
|
+
0,
|
|
1311
|
+
0,
|
|
1312
|
+
0,
|
|
1313
|
+
0,
|
|
1314
|
+
0,
|
|
1315
|
+
0,
|
|
1316
|
+
0,
|
|
1317
|
+
7,
|
|
1318
|
+
7,
|
|
1319
|
+
[() => QuickResponseContents, 0],
|
|
1320
|
+
0,
|
|
1321
|
+
[() => GroupingConfiguration, 0],
|
|
1322
|
+
0,
|
|
1323
|
+
0,
|
|
1324
|
+
2,
|
|
1325
|
+
[() => Channels, 0],
|
|
1326
|
+
0,
|
|
1327
|
+
128 | 0,
|
|
1328
|
+
],
|
|
1329
|
+
];
|
|
1330
|
+
var QuickResponseFilterField = [3, n0, _QRFF, 0, [_n, _va, _o, _iNE], [0, 64 | 0, 0, 2]];
|
|
1331
|
+
var QuickResponseOrderField = [3, n0, _QROF, 0, [_n, _or], [0, 0]];
|
|
1332
|
+
var QuickResponseQueryField = [
|
|
1333
|
+
3,
|
|
1334
|
+
n0,
|
|
1335
|
+
_QRQF,
|
|
1336
|
+
0,
|
|
1337
|
+
[_n, _va, _o, _aF, _p],
|
|
1338
|
+
[0, 64 | 0, 0, 2, 0],
|
|
1339
|
+
];
|
|
1340
|
+
var QuickResponseSearchExpression = [
|
|
1341
|
+
3,
|
|
1342
|
+
n0,
|
|
1343
|
+
_QRSE,
|
|
1344
|
+
0,
|
|
1345
|
+
[_q, _fi, _oOF],
|
|
1346
|
+
[() => QuickResponseQueryFieldList, () => QuickResponseFilterFieldList, () => QuickResponseOrderField],
|
|
1347
|
+
];
|
|
1348
|
+
var QuickResponseSearchResultData = [
|
|
1349
|
+
3,
|
|
1350
|
+
n0,
|
|
1351
|
+
_QRSRD,
|
|
1352
|
+
0,
|
|
1353
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cont, _cTr, _lMT, _iA, _d, _gC, _sK, _lMB, _ch, _l, _aNI, _aIt, _t],
|
|
1354
|
+
[
|
|
1355
|
+
0,
|
|
1356
|
+
0,
|
|
1357
|
+
0,
|
|
1358
|
+
0,
|
|
1359
|
+
0,
|
|
1360
|
+
0,
|
|
1361
|
+
0,
|
|
1362
|
+
[() => QuickResponseContents, 0],
|
|
1363
|
+
7,
|
|
1364
|
+
7,
|
|
1365
|
+
2,
|
|
1366
|
+
0,
|
|
1367
|
+
[() => GroupingConfiguration, 0],
|
|
1368
|
+
0,
|
|
1369
|
+
0,
|
|
1370
|
+
[() => Channels, 0],
|
|
1371
|
+
0,
|
|
1372
|
+
[() => ContactAttributeKeys, 0],
|
|
1373
|
+
[() => ContactAttributeKeys, 0],
|
|
1374
|
+
128 | 0,
|
|
1375
|
+
],
|
|
1376
|
+
];
|
|
1377
|
+
var QuickResponseSummary = [
|
|
1378
|
+
3,
|
|
1379
|
+
n0,
|
|
1380
|
+
_QRS,
|
|
1381
|
+
0,
|
|
1382
|
+
[_qRA, _qRI, _kBA, _kBI, _n, _cT, _s, _cTr, _lMT, _d, _lMB, _iA, _ch, _t],
|
|
1383
|
+
[0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, [() => Channels, 0], 128 | 0],
|
|
1384
|
+
];
|
|
1385
|
+
var RecommendationData = [
|
|
1386
|
+
3,
|
|
1387
|
+
n0,
|
|
1388
|
+
_RD,
|
|
1389
|
+
0,
|
|
1390
|
+
[_rIe, _do, _rS, _rL, _ty],
|
|
1391
|
+
[0, [() => Document, 0], 1, 0, 0],
|
|
1392
|
+
];
|
|
1393
|
+
var RecommendationTrigger = [
|
|
1394
|
+
3,
|
|
1395
|
+
n0,
|
|
1396
|
+
_RT,
|
|
1397
|
+
0,
|
|
1398
|
+
[_i, _ty, _so, _da, _rIec],
|
|
1399
|
+
[0, 0, 0, [() => RecommendationTriggerData, 0], 64 | 0],
|
|
1400
|
+
];
|
|
1401
|
+
var RemoveKnowledgeBaseTemplateUriRequest = [3, n0, _RKBTUR, 0, [_kBI], [[0, 1]]];
|
|
1402
|
+
var RemoveKnowledgeBaseTemplateUriResponse = [3, n0, _RKBTURe, 0, [], []];
|
|
1403
|
+
var RenderingConfiguration = [3, n0, _RC, 0, [_tU], [0]];
|
|
1404
|
+
var RequestTimeoutException = [
|
|
1405
|
+
-3,
|
|
1406
|
+
n0,
|
|
1407
|
+
_RTE,
|
|
1408
|
+
{
|
|
1409
|
+
[_e]: _c,
|
|
1410
|
+
[_hE]: 408,
|
|
1411
|
+
},
|
|
1412
|
+
[_m],
|
|
1413
|
+
[0],
|
|
1414
|
+
];
|
|
1415
|
+
schema.TypeRegistry.for(n0).registerError(RequestTimeoutException, RequestTimeoutException$1);
|
|
1416
|
+
var ResourceNotFoundException = [
|
|
1417
|
+
-3,
|
|
1418
|
+
n0,
|
|
1419
|
+
_RNFE,
|
|
1420
|
+
{
|
|
1421
|
+
[_e]: _c,
|
|
1422
|
+
[_hE]: 404,
|
|
1423
|
+
},
|
|
1424
|
+
[_m, _rN],
|
|
1425
|
+
[0, 0],
|
|
1426
|
+
];
|
|
1427
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1428
|
+
var ResultData = [3, n0, _RDe, 0, [_rIes, _do, _rS], [0, [() => Document, 0], 1]];
|
|
1429
|
+
var SearchContentRequest = [
|
|
1430
|
+
3,
|
|
1431
|
+
n0,
|
|
1432
|
+
_SCR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_nT, _mR, _kBI, _sE],
|
|
1435
|
+
[
|
|
1436
|
+
[
|
|
1437
|
+
0,
|
|
1438
|
+
{
|
|
1439
|
+
[_hQ]: _nT,
|
|
1440
|
+
},
|
|
1441
|
+
],
|
|
1442
|
+
[
|
|
1443
|
+
1,
|
|
1444
|
+
{
|
|
1445
|
+
[_hQ]: _mR,
|
|
1446
|
+
},
|
|
1447
|
+
],
|
|
1448
|
+
[0, 1],
|
|
1449
|
+
() => SearchExpression,
|
|
1450
|
+
],
|
|
1451
|
+
];
|
|
1452
|
+
var SearchContentResponse = [3, n0, _SCRe, 0, [_cSo, _nT], [() => ContentSummaryList, 0]];
|
|
1453
|
+
var SearchExpression = [3, n0, _SE, 0, [_fi], [() => FilterList]];
|
|
1454
|
+
var SearchQuickResponsesRequest = [
|
|
1455
|
+
3,
|
|
1456
|
+
n0,
|
|
1457
|
+
_SQRR,
|
|
1458
|
+
0,
|
|
1459
|
+
[_kBI, _sE, _nT, _mR, _at],
|
|
1460
|
+
[
|
|
1461
|
+
[0, 1],
|
|
1462
|
+
() => QuickResponseSearchExpression,
|
|
1463
|
+
[
|
|
1464
|
+
0,
|
|
1465
|
+
{
|
|
1466
|
+
[_hQ]: _nT,
|
|
1467
|
+
},
|
|
1468
|
+
],
|
|
1469
|
+
[
|
|
1470
|
+
1,
|
|
1471
|
+
{
|
|
1472
|
+
[_hQ]: _mR,
|
|
1473
|
+
},
|
|
1474
|
+
],
|
|
1475
|
+
[() => ContactAttributes, 0],
|
|
1476
|
+
],
|
|
1477
|
+
];
|
|
1478
|
+
var SearchQuickResponsesResponse = [
|
|
1479
|
+
3,
|
|
1480
|
+
n0,
|
|
1481
|
+
_SQRRe,
|
|
1482
|
+
0,
|
|
1483
|
+
[_re, _nT],
|
|
1484
|
+
[[() => QuickResponseSearchResultsList, 0], 0],
|
|
1485
|
+
];
|
|
1486
|
+
var SearchSessionsRequest = [
|
|
1487
|
+
3,
|
|
1488
|
+
n0,
|
|
1489
|
+
_SSR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_nT, _mR, _aI, _sE],
|
|
1492
|
+
[
|
|
1493
|
+
[
|
|
1494
|
+
0,
|
|
1495
|
+
{
|
|
1496
|
+
[_hQ]: _nT,
|
|
1497
|
+
},
|
|
1498
|
+
],
|
|
1499
|
+
[
|
|
1500
|
+
1,
|
|
1501
|
+
{
|
|
1502
|
+
[_hQ]: _mR,
|
|
1503
|
+
},
|
|
1504
|
+
],
|
|
1505
|
+
[0, 1],
|
|
1506
|
+
() => SearchExpression,
|
|
1507
|
+
],
|
|
1508
|
+
];
|
|
1509
|
+
var SearchSessionsResponse = [3, n0, _SSRe, 0, [_sS, _nT], [() => SessionSummaries, 0]];
|
|
1510
|
+
var ServerSideEncryptionConfiguration = [3, n0, _SSEC, 0, [_kKI], [0]];
|
|
1511
|
+
var ServiceQuotaExceededException = [
|
|
1512
|
+
-3,
|
|
1513
|
+
n0,
|
|
1514
|
+
_SQEE,
|
|
1515
|
+
{
|
|
1516
|
+
[_e]: _c,
|
|
1517
|
+
[_hE]: 402,
|
|
1518
|
+
},
|
|
1519
|
+
[_m],
|
|
1520
|
+
[0],
|
|
1521
|
+
];
|
|
1522
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1523
|
+
var SessionData = [
|
|
1524
|
+
3,
|
|
1525
|
+
n0,
|
|
1526
|
+
_SD,
|
|
1527
|
+
0,
|
|
1528
|
+
[_sA, _sI, _n, _d, _t, _iC],
|
|
1529
|
+
[0, 0, 0, 0, 128 | 0, () => SessionIntegrationConfiguration],
|
|
1530
|
+
];
|
|
1531
|
+
var SessionIntegrationConfiguration = [3, n0, _SIC, 0, [_tIA], [0]];
|
|
1532
|
+
var SessionSummary = [3, n0, _SSe, 0, [_sI, _sA, _aI, _aA], [0, 0, 0, 0]];
|
|
1533
|
+
var StartContentUploadRequest = [3, n0, _SCUR, 0, [_kBI, _cT, _pUTTL], [[0, 1], 0, 1]];
|
|
1534
|
+
var StartContentUploadResponse = [
|
|
1535
|
+
3,
|
|
1536
|
+
n0,
|
|
1537
|
+
_SCURt,
|
|
1538
|
+
0,
|
|
1539
|
+
[_uI, _u, _uE, _hTI],
|
|
1540
|
+
[0, [() => Url, 0], 7, 128 | 0],
|
|
1541
|
+
];
|
|
1542
|
+
var StartImportJobRequest = [
|
|
1543
|
+
3,
|
|
1544
|
+
n0,
|
|
1545
|
+
_SIJR,
|
|
1546
|
+
0,
|
|
1547
|
+
[_kBI, _iJT, _uI, _cTl, _me, _eSC],
|
|
1548
|
+
[[0, 1], 0, 0, [0, 4], 128 | 0, () => ExternalSourceConfiguration],
|
|
1549
|
+
];
|
|
1550
|
+
var StartImportJobResponse = [3, n0, _SIJRt, 0, [_iJ], [[() => ImportJobData, 0]]];
|
|
1551
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1552
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1553
|
+
var TooManyTagsException = [
|
|
1554
|
+
-3,
|
|
1555
|
+
n0,
|
|
1556
|
+
_TMTE,
|
|
1557
|
+
{
|
|
1558
|
+
[_e]: _c,
|
|
1559
|
+
[_hE]: 400,
|
|
1560
|
+
},
|
|
1561
|
+
[_m, _rN],
|
|
1562
|
+
[0, 0],
|
|
1563
|
+
];
|
|
1564
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
|
|
1565
|
+
var UntagResourceRequest = [
|
|
1566
|
+
3,
|
|
1567
|
+
n0,
|
|
1568
|
+
_URR,
|
|
1569
|
+
0,
|
|
1570
|
+
[_rA, _tK],
|
|
1571
|
+
[
|
|
1572
|
+
[0, 1],
|
|
1573
|
+
[
|
|
1574
|
+
64 | 0,
|
|
1575
|
+
{
|
|
1576
|
+
[_hQ]: _tK,
|
|
1577
|
+
},
|
|
1578
|
+
],
|
|
1579
|
+
],
|
|
1580
|
+
];
|
|
1581
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1582
|
+
var UpdateContentRequest = [
|
|
1583
|
+
3,
|
|
1584
|
+
n0,
|
|
1585
|
+
_UCR,
|
|
1586
|
+
0,
|
|
1587
|
+
[_kBI, _cI, _rI, _ti, _oLOU, _rOLOU, _me, _uI],
|
|
1588
|
+
[[0, 1], [0, 1], 0, 0, 0, 2, 128 | 0, 0],
|
|
1589
|
+
];
|
|
1590
|
+
var UpdateContentResponse = [3, n0, _UCRp, 0, [_co], [[() => ContentData, 0]]];
|
|
1591
|
+
var UpdateKnowledgeBaseTemplateUriRequest = [3, n0, _UKBTUR, 0, [_kBI, _tU], [[0, 1], 0]];
|
|
1592
|
+
var UpdateKnowledgeBaseTemplateUriResponse = [
|
|
1593
|
+
3,
|
|
1594
|
+
n0,
|
|
1595
|
+
_UKBTURp,
|
|
1596
|
+
0,
|
|
1597
|
+
[_kB],
|
|
1598
|
+
[() => KnowledgeBaseData],
|
|
1599
|
+
];
|
|
1600
|
+
var UpdateQuickResponseRequest = [
|
|
1601
|
+
3,
|
|
1602
|
+
n0,
|
|
1603
|
+
_UQRR,
|
|
1604
|
+
0,
|
|
1605
|
+
[_kBI, _qRI, _n, _co, _cT, _gC, _rGC, _d, _rD, _sK, _rSK, _iA, _ch, _l],
|
|
1606
|
+
[
|
|
1607
|
+
[0, 1],
|
|
1608
|
+
[0, 1],
|
|
1609
|
+
0,
|
|
1610
|
+
[() => QuickResponseDataProvider, 0],
|
|
1611
|
+
0,
|
|
1612
|
+
[() => GroupingConfiguration, 0],
|
|
1613
|
+
2,
|
|
1614
|
+
0,
|
|
1615
|
+
2,
|
|
1616
|
+
0,
|
|
1617
|
+
2,
|
|
1618
|
+
2,
|
|
1619
|
+
[() => Channels, 0],
|
|
1620
|
+
0,
|
|
1621
|
+
],
|
|
1622
|
+
];
|
|
1623
|
+
var UpdateQuickResponseResponse = [
|
|
1624
|
+
3,
|
|
1625
|
+
n0,
|
|
1626
|
+
_UQRRp,
|
|
1627
|
+
0,
|
|
1628
|
+
[_qR],
|
|
1629
|
+
[[() => QuickResponseData, 0]],
|
|
1630
|
+
];
|
|
1631
|
+
var ValidationException = [
|
|
1632
|
+
-3,
|
|
1633
|
+
n0,
|
|
1634
|
+
_VE,
|
|
1635
|
+
{
|
|
1636
|
+
[_e]: _c,
|
|
1637
|
+
[_hE]: 400,
|
|
1638
|
+
},
|
|
1639
|
+
[_m],
|
|
1640
|
+
[0],
|
|
1641
|
+
];
|
|
1642
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1643
|
+
var WisdomServiceException = [-3, _sm, "WisdomServiceException", 0, [], []];
|
|
1644
|
+
schema.TypeRegistry.for(_sm).registerError(WisdomServiceException, WisdomServiceException$1);
|
|
1645
|
+
var AssistantAssociationSummaryList = [1, n0, _AASL, 0, () => AssistantAssociationSummary];
|
|
1646
|
+
var AssistantList = [1, n0, _AL, 0, () => AssistantSummary];
|
|
1647
|
+
var Channels = [1, n0, _Ch, 0, [() => Channel, 0]];
|
|
1648
|
+
var ContactAttributeKeys = [1, n0, _CAK, 8, 0];
|
|
1649
|
+
var ContentSummaryList = [1, n0, _CSL, 0, () => ContentSummary];
|
|
1650
|
+
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
1651
|
+
var GroupingValues = [1, n0, _GVr, 0, [() => GroupingValue, 0]];
|
|
1652
|
+
var Highlights = [1, n0, _Hi, 0, () => Highlight];
|
|
1653
|
+
var ImportJobList = [1, n0, _IJL, 0, () => ImportJobSummary];
|
|
1654
|
+
var KnowledgeBaseList = [1, n0, _KBL, 0, () => KnowledgeBaseSummary];
|
|
1655
|
+
var NotifyRecommendationsReceivedErrorList = [
|
|
1656
|
+
1,
|
|
1657
|
+
n0,
|
|
1658
|
+
_NRREL,
|
|
1659
|
+
0,
|
|
1660
|
+
() => NotifyRecommendationsReceivedError,
|
|
1661
|
+
];
|
|
1662
|
+
var QueryResultsList = [1, n0, _QRL, 0, [() => ResultData, 0]];
|
|
1663
|
+
var QuickResponseFilterFieldList = [1, n0, _QRFFL, 0, () => QuickResponseFilterField];
|
|
1664
|
+
var QuickResponseQueryFieldList = [1, n0, _QRQFL, 0, () => QuickResponseQueryField];
|
|
1665
|
+
var QuickResponseSearchResultsList = [
|
|
1666
|
+
1,
|
|
1667
|
+
n0,
|
|
1668
|
+
_QRSRL,
|
|
1669
|
+
0,
|
|
1670
|
+
[() => QuickResponseSearchResultData, 0],
|
|
1671
|
+
];
|
|
1672
|
+
var QuickResponseSummaryList = [1, n0, _QRSL, 0, [() => QuickResponseSummary, 0]];
|
|
1673
|
+
var RecommendationList = [1, n0, _RL, 0, [() => RecommendationData, 0]];
|
|
1674
|
+
var RecommendationTriggerList = [1, n0, _RTL, 0, [() => RecommendationTrigger, 0]];
|
|
1675
|
+
var SessionSummaries = [1, n0, _SSes, 0, () => SessionSummary];
|
|
1676
|
+
var ContactAttributes = [2, n0, _CA, 8, 0, 0];
|
|
1677
|
+
var AssistantAssociationInputData = [3, n0, _AAID, 0, [_kBI], [0]];
|
|
1678
|
+
var AssistantAssociationOutputData = [
|
|
1679
|
+
3,
|
|
1680
|
+
n0,
|
|
1681
|
+
_AAOD,
|
|
1682
|
+
0,
|
|
1683
|
+
[_kBAn],
|
|
1684
|
+
[() => KnowledgeBaseAssociationData],
|
|
1685
|
+
];
|
|
1686
|
+
var Configuration = [3, n0, _Co, 0, [_cC], [() => ConnectConfiguration]];
|
|
1687
|
+
var QuickResponseContentProvider = [
|
|
1688
|
+
3,
|
|
1689
|
+
n0,
|
|
1690
|
+
_QRCP,
|
|
1691
|
+
0,
|
|
1692
|
+
[_co],
|
|
1693
|
+
[[() => QuickResponseContent, 0]],
|
|
1694
|
+
];
|
|
1695
|
+
var QuickResponseDataProvider = [
|
|
1696
|
+
3,
|
|
1697
|
+
n0,
|
|
1698
|
+
_QRDP,
|
|
1699
|
+
0,
|
|
1700
|
+
[_co],
|
|
1701
|
+
[[() => QuickResponseContent, 0]],
|
|
1702
|
+
];
|
|
1703
|
+
var RecommendationTriggerData = [
|
|
1704
|
+
3,
|
|
1705
|
+
n0,
|
|
1706
|
+
_RTD,
|
|
1707
|
+
0,
|
|
1708
|
+
[_qu],
|
|
1709
|
+
[[() => QueryRecommendationTriggerData, 0]],
|
|
1710
|
+
];
|
|
1711
|
+
var SourceConfiguration = [3, n0, _SC, 0, [_aIp], [() => AppIntegrationsConfiguration]];
|
|
1712
|
+
var CreateAssistant = [
|
|
1713
|
+
9,
|
|
1714
|
+
n0,
|
|
1715
|
+
_CAr,
|
|
1716
|
+
{
|
|
1717
|
+
[_ht]: ["POST", "/assistants", 200],
|
|
1718
|
+
},
|
|
1719
|
+
() => CreateAssistantRequest,
|
|
1720
|
+
() => CreateAssistantResponse,
|
|
1721
|
+
];
|
|
1722
|
+
var CreateAssistantAssociation = [
|
|
1723
|
+
9,
|
|
1724
|
+
n0,
|
|
1725
|
+
_CAA,
|
|
1726
|
+
{
|
|
1727
|
+
[_ht]: ["POST", "/assistants/{assistantId}/associations", 200],
|
|
1728
|
+
},
|
|
1729
|
+
() => CreateAssistantAssociationRequest,
|
|
1730
|
+
() => CreateAssistantAssociationResponse,
|
|
1731
|
+
];
|
|
1732
|
+
var CreateContent = [
|
|
1733
|
+
9,
|
|
1734
|
+
n0,
|
|
1735
|
+
_CCr,
|
|
1736
|
+
{
|
|
1737
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents", 200],
|
|
1738
|
+
},
|
|
1739
|
+
() => CreateContentRequest,
|
|
1740
|
+
() => CreateContentResponse,
|
|
1741
|
+
];
|
|
1742
|
+
var CreateKnowledgeBase = [
|
|
1743
|
+
9,
|
|
1744
|
+
n0,
|
|
1745
|
+
_CKB,
|
|
1746
|
+
{
|
|
1747
|
+
[_ht]: ["POST", "/knowledgeBases", 200],
|
|
1748
|
+
},
|
|
1749
|
+
() => CreateKnowledgeBaseRequest,
|
|
1750
|
+
() => CreateKnowledgeBaseResponse,
|
|
1751
|
+
];
|
|
1752
|
+
var CreateQuickResponse = [
|
|
1753
|
+
9,
|
|
1754
|
+
n0,
|
|
1755
|
+
_CQR,
|
|
1756
|
+
{
|
|
1757
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200],
|
|
1758
|
+
},
|
|
1759
|
+
() => CreateQuickResponseRequest,
|
|
1760
|
+
() => CreateQuickResponseResponse,
|
|
1761
|
+
];
|
|
1762
|
+
var CreateSession = [
|
|
1763
|
+
9,
|
|
1764
|
+
n0,
|
|
1765
|
+
_CSr,
|
|
1766
|
+
{
|
|
1767
|
+
[_ht]: ["POST", "/assistants/{assistantId}/sessions", 200],
|
|
1768
|
+
},
|
|
1769
|
+
() => CreateSessionRequest,
|
|
1770
|
+
() => CreateSessionResponse,
|
|
1771
|
+
];
|
|
1772
|
+
var DeleteAssistant = [
|
|
1773
|
+
9,
|
|
1774
|
+
n0,
|
|
1775
|
+
_DA,
|
|
1776
|
+
{
|
|
1777
|
+
[_ht]: ["DELETE", "/assistants/{assistantId}", 204],
|
|
1778
|
+
},
|
|
1779
|
+
() => DeleteAssistantRequest,
|
|
1780
|
+
() => DeleteAssistantResponse,
|
|
1781
|
+
];
|
|
1782
|
+
var DeleteAssistantAssociation = [
|
|
1783
|
+
9,
|
|
1784
|
+
n0,
|
|
1785
|
+
_DAA,
|
|
1786
|
+
{
|
|
1787
|
+
[_ht]: ["DELETE", "/assistants/{assistantId}/associations/{assistantAssociationId}", 204],
|
|
1788
|
+
},
|
|
1789
|
+
() => DeleteAssistantAssociationRequest,
|
|
1790
|
+
() => DeleteAssistantAssociationResponse,
|
|
1791
|
+
];
|
|
1792
|
+
var DeleteContent = [
|
|
1793
|
+
9,
|
|
1794
|
+
n0,
|
|
1795
|
+
_DC,
|
|
1796
|
+
{
|
|
1797
|
+
[_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 204],
|
|
1798
|
+
},
|
|
1799
|
+
() => DeleteContentRequest,
|
|
1800
|
+
() => DeleteContentResponse,
|
|
1801
|
+
];
|
|
1802
|
+
var DeleteImportJob = [
|
|
1803
|
+
9,
|
|
1804
|
+
n0,
|
|
1805
|
+
_DIJ,
|
|
1806
|
+
{
|
|
1807
|
+
[_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 204],
|
|
1808
|
+
},
|
|
1809
|
+
() => DeleteImportJobRequest,
|
|
1810
|
+
() => DeleteImportJobResponse,
|
|
1811
|
+
];
|
|
1812
|
+
var DeleteKnowledgeBase = [
|
|
1813
|
+
9,
|
|
1814
|
+
n0,
|
|
1815
|
+
_DKB,
|
|
1816
|
+
{
|
|
1817
|
+
[_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}", 204],
|
|
1818
|
+
},
|
|
1819
|
+
() => DeleteKnowledgeBaseRequest,
|
|
1820
|
+
() => DeleteKnowledgeBaseResponse,
|
|
1821
|
+
];
|
|
1822
|
+
var DeleteQuickResponse = [
|
|
1823
|
+
9,
|
|
1824
|
+
n0,
|
|
1825
|
+
_DQR,
|
|
1826
|
+
{
|
|
1827
|
+
[_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 204],
|
|
1828
|
+
},
|
|
1829
|
+
() => DeleteQuickResponseRequest,
|
|
1830
|
+
() => DeleteQuickResponseResponse,
|
|
1831
|
+
];
|
|
1832
|
+
var GetAssistant = [
|
|
1833
|
+
9,
|
|
1834
|
+
n0,
|
|
1835
|
+
_GA,
|
|
1836
|
+
{
|
|
1837
|
+
[_ht]: ["GET", "/assistants/{assistantId}", 200],
|
|
1838
|
+
},
|
|
1839
|
+
() => GetAssistantRequest,
|
|
1840
|
+
() => GetAssistantResponse,
|
|
1841
|
+
];
|
|
1842
|
+
var GetAssistantAssociation = [
|
|
1843
|
+
9,
|
|
1844
|
+
n0,
|
|
1845
|
+
_GAA,
|
|
1846
|
+
{
|
|
1847
|
+
[_ht]: ["GET", "/assistants/{assistantId}/associations/{assistantAssociationId}", 200],
|
|
1848
|
+
},
|
|
1849
|
+
() => GetAssistantAssociationRequest,
|
|
1850
|
+
() => GetAssistantAssociationResponse,
|
|
1851
|
+
];
|
|
1852
|
+
var GetContent = [
|
|
1853
|
+
9,
|
|
1854
|
+
n0,
|
|
1855
|
+
_GCe,
|
|
1856
|
+
{
|
|
1857
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200],
|
|
1858
|
+
},
|
|
1859
|
+
() => GetContentRequest,
|
|
1860
|
+
() => GetContentResponse,
|
|
1861
|
+
];
|
|
1862
|
+
var GetContentSummary = [
|
|
1863
|
+
9,
|
|
1864
|
+
n0,
|
|
1865
|
+
_GCS,
|
|
1866
|
+
{
|
|
1867
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary", 200],
|
|
1868
|
+
},
|
|
1869
|
+
() => GetContentSummaryRequest,
|
|
1870
|
+
() => GetContentSummaryResponse,
|
|
1871
|
+
];
|
|
1872
|
+
var GetImportJob = [
|
|
1873
|
+
9,
|
|
1874
|
+
n0,
|
|
1875
|
+
_GIJ,
|
|
1876
|
+
{
|
|
1877
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 200],
|
|
1878
|
+
},
|
|
1879
|
+
() => GetImportJobRequest,
|
|
1880
|
+
() => GetImportJobResponse,
|
|
1881
|
+
];
|
|
1882
|
+
var GetKnowledgeBase = [
|
|
1883
|
+
9,
|
|
1884
|
+
n0,
|
|
1885
|
+
_GKB,
|
|
1886
|
+
{
|
|
1887
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}", 200],
|
|
1888
|
+
},
|
|
1889
|
+
() => GetKnowledgeBaseRequest,
|
|
1890
|
+
() => GetKnowledgeBaseResponse,
|
|
1891
|
+
];
|
|
1892
|
+
var GetQuickResponse = [
|
|
1893
|
+
9,
|
|
1894
|
+
n0,
|
|
1895
|
+
_GQR,
|
|
1896
|
+
{
|
|
1897
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200],
|
|
1898
|
+
},
|
|
1899
|
+
() => GetQuickResponseRequest,
|
|
1900
|
+
() => GetQuickResponseResponse,
|
|
1901
|
+
];
|
|
1902
|
+
var GetRecommendations = [
|
|
1903
|
+
9,
|
|
1904
|
+
n0,
|
|
1905
|
+
_GR,
|
|
1906
|
+
{
|
|
1907
|
+
[_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}/recommendations", 200],
|
|
1908
|
+
},
|
|
1909
|
+
() => GetRecommendationsRequest,
|
|
1910
|
+
() => GetRecommendationsResponse,
|
|
1911
|
+
];
|
|
1912
|
+
var GetSession = [
|
|
1913
|
+
9,
|
|
1914
|
+
n0,
|
|
1915
|
+
_GS,
|
|
1916
|
+
{
|
|
1917
|
+
[_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}", 200],
|
|
1918
|
+
},
|
|
1919
|
+
() => GetSessionRequest,
|
|
1920
|
+
() => GetSessionResponse,
|
|
1921
|
+
];
|
|
1922
|
+
var ListAssistantAssociations = [
|
|
1923
|
+
9,
|
|
1924
|
+
n0,
|
|
1925
|
+
_LAA,
|
|
1926
|
+
{
|
|
1927
|
+
[_ht]: ["GET", "/assistants/{assistantId}/associations", 200],
|
|
1928
|
+
},
|
|
1929
|
+
() => ListAssistantAssociationsRequest,
|
|
1930
|
+
() => ListAssistantAssociationsResponse,
|
|
1931
|
+
];
|
|
1932
|
+
var ListAssistants = [
|
|
1933
|
+
9,
|
|
1934
|
+
n0,
|
|
1935
|
+
_LA,
|
|
1936
|
+
{
|
|
1937
|
+
[_ht]: ["GET", "/assistants", 200],
|
|
1938
|
+
},
|
|
1939
|
+
() => ListAssistantsRequest,
|
|
1940
|
+
() => ListAssistantsResponse,
|
|
1941
|
+
];
|
|
1942
|
+
var ListContents = [
|
|
1943
|
+
9,
|
|
1944
|
+
n0,
|
|
1945
|
+
_LC,
|
|
1946
|
+
{
|
|
1947
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents", 200],
|
|
1948
|
+
},
|
|
1949
|
+
() => ListContentsRequest,
|
|
1950
|
+
() => ListContentsResponse,
|
|
1951
|
+
];
|
|
1952
|
+
var ListImportJobs = [
|
|
1953
|
+
9,
|
|
1954
|
+
n0,
|
|
1955
|
+
_LIJ,
|
|
1956
|
+
{
|
|
1957
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200],
|
|
1958
|
+
},
|
|
1959
|
+
() => ListImportJobsRequest,
|
|
1960
|
+
() => ListImportJobsResponse,
|
|
1961
|
+
];
|
|
1962
|
+
var ListKnowledgeBases = [
|
|
1963
|
+
9,
|
|
1964
|
+
n0,
|
|
1965
|
+
_LKB,
|
|
1966
|
+
{
|
|
1967
|
+
[_ht]: ["GET", "/knowledgeBases", 200],
|
|
1968
|
+
},
|
|
1969
|
+
() => ListKnowledgeBasesRequest,
|
|
1970
|
+
() => ListKnowledgeBasesResponse,
|
|
1971
|
+
];
|
|
1972
|
+
var ListQuickResponses = [
|
|
1973
|
+
9,
|
|
1974
|
+
n0,
|
|
1975
|
+
_LQR,
|
|
1976
|
+
{
|
|
1977
|
+
[_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200],
|
|
1978
|
+
},
|
|
1979
|
+
() => ListQuickResponsesRequest,
|
|
1980
|
+
() => ListQuickResponsesResponse,
|
|
1981
|
+
];
|
|
1982
|
+
var ListTagsForResource = [
|
|
1983
|
+
9,
|
|
1984
|
+
n0,
|
|
1985
|
+
_LTFR,
|
|
1986
|
+
{
|
|
1987
|
+
[_ht]: ["GET", "/tags/{resourceArn}", 200],
|
|
1988
|
+
},
|
|
1989
|
+
() => ListTagsForResourceRequest,
|
|
1990
|
+
() => ListTagsForResourceResponse,
|
|
1991
|
+
];
|
|
1992
|
+
var NotifyRecommendationsReceived = [
|
|
1993
|
+
9,
|
|
1994
|
+
n0,
|
|
1995
|
+
_NRR,
|
|
1996
|
+
{
|
|
1997
|
+
[_ht]: ["POST", "/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify", 200],
|
|
1998
|
+
},
|
|
1999
|
+
() => NotifyRecommendationsReceivedRequest,
|
|
2000
|
+
() => NotifyRecommendationsReceivedResponse,
|
|
2001
|
+
];
|
|
2002
|
+
var QueryAssistant = [
|
|
2003
|
+
9,
|
|
2004
|
+
n0,
|
|
2005
|
+
_QA,
|
|
2006
|
+
{
|
|
2007
|
+
[_ht]: ["POST", "/assistants/{assistantId}/query", 200],
|
|
2008
|
+
},
|
|
2009
|
+
() => QueryAssistantRequest,
|
|
2010
|
+
() => QueryAssistantResponse,
|
|
2011
|
+
];
|
|
2012
|
+
var RemoveKnowledgeBaseTemplateUri = [
|
|
2013
|
+
9,
|
|
2014
|
+
n0,
|
|
2015
|
+
_RKBTU,
|
|
2016
|
+
{
|
|
2017
|
+
[_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/templateUri", 204],
|
|
2018
|
+
},
|
|
2019
|
+
() => RemoveKnowledgeBaseTemplateUriRequest,
|
|
2020
|
+
() => RemoveKnowledgeBaseTemplateUriResponse,
|
|
2021
|
+
];
|
|
2022
|
+
var SearchContent = [
|
|
2023
|
+
9,
|
|
2024
|
+
n0,
|
|
2025
|
+
_SCe,
|
|
2026
|
+
{
|
|
2027
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search", 200],
|
|
2028
|
+
},
|
|
2029
|
+
() => SearchContentRequest,
|
|
2030
|
+
() => SearchContentResponse,
|
|
2031
|
+
];
|
|
2032
|
+
var SearchQuickResponses = [
|
|
2033
|
+
9,
|
|
2034
|
+
n0,
|
|
2035
|
+
_SQR,
|
|
2036
|
+
{
|
|
2037
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search/quickResponses", 200],
|
|
2038
|
+
},
|
|
2039
|
+
() => SearchQuickResponsesRequest,
|
|
2040
|
+
() => SearchQuickResponsesResponse,
|
|
2041
|
+
];
|
|
2042
|
+
var SearchSessions = [
|
|
2043
|
+
9,
|
|
2044
|
+
n0,
|
|
2045
|
+
_SSea,
|
|
2046
|
+
{
|
|
2047
|
+
[_ht]: ["POST", "/assistants/{assistantId}/searchSessions", 200],
|
|
2048
|
+
},
|
|
2049
|
+
() => SearchSessionsRequest,
|
|
2050
|
+
() => SearchSessionsResponse,
|
|
2051
|
+
];
|
|
2052
|
+
var StartContentUpload = [
|
|
2053
|
+
9,
|
|
2054
|
+
n0,
|
|
2055
|
+
_SCU,
|
|
2056
|
+
{
|
|
2057
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/upload", 200],
|
|
2058
|
+
},
|
|
2059
|
+
() => StartContentUploadRequest,
|
|
2060
|
+
() => StartContentUploadResponse,
|
|
2061
|
+
];
|
|
2062
|
+
var StartImportJob = [
|
|
2063
|
+
9,
|
|
2064
|
+
n0,
|
|
2065
|
+
_SIJ,
|
|
2066
|
+
{
|
|
2067
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200],
|
|
2068
|
+
},
|
|
2069
|
+
() => StartImportJobRequest,
|
|
2070
|
+
() => StartImportJobResponse,
|
|
2071
|
+
];
|
|
2072
|
+
var TagResource = [
|
|
2073
|
+
9,
|
|
2074
|
+
n0,
|
|
2075
|
+
_TR,
|
|
2076
|
+
{
|
|
2077
|
+
[_ht]: ["POST", "/tags/{resourceArn}", 200],
|
|
2078
|
+
},
|
|
2079
|
+
() => TagResourceRequest,
|
|
2080
|
+
() => TagResourceResponse,
|
|
2081
|
+
];
|
|
2082
|
+
var UntagResource = [
|
|
2083
|
+
9,
|
|
2084
|
+
n0,
|
|
2085
|
+
_UR,
|
|
2086
|
+
{
|
|
2087
|
+
[_ht]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
2088
|
+
},
|
|
2089
|
+
() => UntagResourceRequest,
|
|
2090
|
+
() => UntagResourceResponse,
|
|
2091
|
+
];
|
|
2092
|
+
var UpdateContent = [
|
|
2093
|
+
9,
|
|
2094
|
+
n0,
|
|
2095
|
+
_UC,
|
|
2096
|
+
{
|
|
2097
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200],
|
|
2098
|
+
},
|
|
2099
|
+
() => UpdateContentRequest,
|
|
2100
|
+
() => UpdateContentResponse,
|
|
2101
|
+
];
|
|
2102
|
+
var UpdateKnowledgeBaseTemplateUri = [
|
|
2103
|
+
9,
|
|
2104
|
+
n0,
|
|
2105
|
+
_UKBTU,
|
|
2106
|
+
{
|
|
2107
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/templateUri", 200],
|
|
2108
|
+
},
|
|
2109
|
+
() => UpdateKnowledgeBaseTemplateUriRequest,
|
|
2110
|
+
() => UpdateKnowledgeBaseTemplateUriResponse,
|
|
2111
|
+
];
|
|
2112
|
+
var UpdateQuickResponse = [
|
|
2113
|
+
9,
|
|
2114
|
+
n0,
|
|
2115
|
+
_UQR,
|
|
2116
|
+
{
|
|
2117
|
+
[_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200],
|
|
2118
|
+
},
|
|
2119
|
+
() => UpdateQuickResponseRequest,
|
|
2120
|
+
() => UpdateQuickResponseResponse,
|
|
2121
|
+
];
|
|
2003
2122
|
|
|
2004
2123
|
class CreateAssistantAssociationCommand extends smithyClient.Command
|
|
2005
2124
|
.classBuilder()
|
|
2006
2125
|
.ep(commonParams)
|
|
2007
2126
|
.m(function (Command, cs, config, o) {
|
|
2008
|
-
return [
|
|
2009
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2010
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2011
|
-
];
|
|
2127
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2012
2128
|
})
|
|
2013
2129
|
.s("WisdomService", "CreateAssistantAssociation", {})
|
|
2014
2130
|
.n("WisdomClient", "CreateAssistantAssociationCommand")
|
|
2015
|
-
.
|
|
2016
|
-
.ser(se_CreateAssistantAssociationCommand)
|
|
2017
|
-
.de(de_CreateAssistantAssociationCommand)
|
|
2131
|
+
.sc(CreateAssistantAssociation)
|
|
2018
2132
|
.build() {
|
|
2019
2133
|
}
|
|
2020
2134
|
|
|
@@ -2022,16 +2136,11 @@ class CreateAssistantCommand extends smithyClient.Command
|
|
|
2022
2136
|
.classBuilder()
|
|
2023
2137
|
.ep(commonParams)
|
|
2024
2138
|
.m(function (Command, cs, config, o) {
|
|
2025
|
-
return [
|
|
2026
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2027
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2028
|
-
];
|
|
2139
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2029
2140
|
})
|
|
2030
2141
|
.s("WisdomService", "CreateAssistant", {})
|
|
2031
2142
|
.n("WisdomClient", "CreateAssistantCommand")
|
|
2032
|
-
.
|
|
2033
|
-
.ser(se_CreateAssistantCommand)
|
|
2034
|
-
.de(de_CreateAssistantCommand)
|
|
2143
|
+
.sc(CreateAssistant)
|
|
2035
2144
|
.build() {
|
|
2036
2145
|
}
|
|
2037
2146
|
|
|
@@ -2039,16 +2148,11 @@ class CreateContentCommand extends smithyClient.Command
|
|
|
2039
2148
|
.classBuilder()
|
|
2040
2149
|
.ep(commonParams)
|
|
2041
2150
|
.m(function (Command, cs, config, o) {
|
|
2042
|
-
return [
|
|
2043
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2044
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2045
|
-
];
|
|
2151
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2046
2152
|
})
|
|
2047
2153
|
.s("WisdomService", "CreateContent", {})
|
|
2048
2154
|
.n("WisdomClient", "CreateContentCommand")
|
|
2049
|
-
.
|
|
2050
|
-
.ser(se_CreateContentCommand)
|
|
2051
|
-
.de(de_CreateContentCommand)
|
|
2155
|
+
.sc(CreateContent)
|
|
2052
2156
|
.build() {
|
|
2053
2157
|
}
|
|
2054
2158
|
|
|
@@ -2056,16 +2160,11 @@ class CreateKnowledgeBaseCommand extends smithyClient.Command
|
|
|
2056
2160
|
.classBuilder()
|
|
2057
2161
|
.ep(commonParams)
|
|
2058
2162
|
.m(function (Command, cs, config, o) {
|
|
2059
|
-
return [
|
|
2060
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2061
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2062
|
-
];
|
|
2163
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2063
2164
|
})
|
|
2064
2165
|
.s("WisdomService", "CreateKnowledgeBase", {})
|
|
2065
2166
|
.n("WisdomClient", "CreateKnowledgeBaseCommand")
|
|
2066
|
-
.
|
|
2067
|
-
.ser(se_CreateKnowledgeBaseCommand)
|
|
2068
|
-
.de(de_CreateKnowledgeBaseCommand)
|
|
2167
|
+
.sc(CreateKnowledgeBase)
|
|
2069
2168
|
.build() {
|
|
2070
2169
|
}
|
|
2071
2170
|
|
|
@@ -2073,16 +2172,11 @@ class CreateQuickResponseCommand extends smithyClient.Command
|
|
|
2073
2172
|
.classBuilder()
|
|
2074
2173
|
.ep(commonParams)
|
|
2075
2174
|
.m(function (Command, cs, config, o) {
|
|
2076
|
-
return [
|
|
2077
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2078
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2079
|
-
];
|
|
2175
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2080
2176
|
})
|
|
2081
2177
|
.s("WisdomService", "CreateQuickResponse", {})
|
|
2082
2178
|
.n("WisdomClient", "CreateQuickResponseCommand")
|
|
2083
|
-
.
|
|
2084
|
-
.ser(se_CreateQuickResponseCommand)
|
|
2085
|
-
.de(de_CreateQuickResponseCommand)
|
|
2179
|
+
.sc(CreateQuickResponse)
|
|
2086
2180
|
.build() {
|
|
2087
2181
|
}
|
|
2088
2182
|
|
|
@@ -2090,16 +2184,11 @@ class CreateSessionCommand extends smithyClient.Command
|
|
|
2090
2184
|
.classBuilder()
|
|
2091
2185
|
.ep(commonParams)
|
|
2092
2186
|
.m(function (Command, cs, config, o) {
|
|
2093
|
-
return [
|
|
2094
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2095
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2096
|
-
];
|
|
2187
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2097
2188
|
})
|
|
2098
2189
|
.s("WisdomService", "CreateSession", {})
|
|
2099
2190
|
.n("WisdomClient", "CreateSessionCommand")
|
|
2100
|
-
.
|
|
2101
|
-
.ser(se_CreateSessionCommand)
|
|
2102
|
-
.de(de_CreateSessionCommand)
|
|
2191
|
+
.sc(CreateSession)
|
|
2103
2192
|
.build() {
|
|
2104
2193
|
}
|
|
2105
2194
|
|
|
@@ -2107,16 +2196,11 @@ class DeleteAssistantAssociationCommand extends smithyClient.Command
|
|
|
2107
2196
|
.classBuilder()
|
|
2108
2197
|
.ep(commonParams)
|
|
2109
2198
|
.m(function (Command, cs, config, o) {
|
|
2110
|
-
return [
|
|
2111
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2112
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2113
|
-
];
|
|
2199
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2114
2200
|
})
|
|
2115
2201
|
.s("WisdomService", "DeleteAssistantAssociation", {})
|
|
2116
2202
|
.n("WisdomClient", "DeleteAssistantAssociationCommand")
|
|
2117
|
-
.
|
|
2118
|
-
.ser(se_DeleteAssistantAssociationCommand)
|
|
2119
|
-
.de(de_DeleteAssistantAssociationCommand)
|
|
2203
|
+
.sc(DeleteAssistantAssociation)
|
|
2120
2204
|
.build() {
|
|
2121
2205
|
}
|
|
2122
2206
|
|
|
@@ -2124,16 +2208,11 @@ class DeleteAssistantCommand extends smithyClient.Command
|
|
|
2124
2208
|
.classBuilder()
|
|
2125
2209
|
.ep(commonParams)
|
|
2126
2210
|
.m(function (Command, cs, config, o) {
|
|
2127
|
-
return [
|
|
2128
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2129
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2130
|
-
];
|
|
2211
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2131
2212
|
})
|
|
2132
2213
|
.s("WisdomService", "DeleteAssistant", {})
|
|
2133
2214
|
.n("WisdomClient", "DeleteAssistantCommand")
|
|
2134
|
-
.
|
|
2135
|
-
.ser(se_DeleteAssistantCommand)
|
|
2136
|
-
.de(de_DeleteAssistantCommand)
|
|
2215
|
+
.sc(DeleteAssistant)
|
|
2137
2216
|
.build() {
|
|
2138
2217
|
}
|
|
2139
2218
|
|
|
@@ -2141,16 +2220,11 @@ class DeleteContentCommand extends smithyClient.Command
|
|
|
2141
2220
|
.classBuilder()
|
|
2142
2221
|
.ep(commonParams)
|
|
2143
2222
|
.m(function (Command, cs, config, o) {
|
|
2144
|
-
return [
|
|
2145
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2146
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2147
|
-
];
|
|
2223
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2148
2224
|
})
|
|
2149
2225
|
.s("WisdomService", "DeleteContent", {})
|
|
2150
2226
|
.n("WisdomClient", "DeleteContentCommand")
|
|
2151
|
-
.
|
|
2152
|
-
.ser(se_DeleteContentCommand)
|
|
2153
|
-
.de(de_DeleteContentCommand)
|
|
2227
|
+
.sc(DeleteContent)
|
|
2154
2228
|
.build() {
|
|
2155
2229
|
}
|
|
2156
2230
|
|
|
@@ -2158,16 +2232,11 @@ class DeleteImportJobCommand extends smithyClient.Command
|
|
|
2158
2232
|
.classBuilder()
|
|
2159
2233
|
.ep(commonParams)
|
|
2160
2234
|
.m(function (Command, cs, config, o) {
|
|
2161
|
-
return [
|
|
2162
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2163
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2164
|
-
];
|
|
2235
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2165
2236
|
})
|
|
2166
2237
|
.s("WisdomService", "DeleteImportJob", {})
|
|
2167
2238
|
.n("WisdomClient", "DeleteImportJobCommand")
|
|
2168
|
-
.
|
|
2169
|
-
.ser(se_DeleteImportJobCommand)
|
|
2170
|
-
.de(de_DeleteImportJobCommand)
|
|
2239
|
+
.sc(DeleteImportJob)
|
|
2171
2240
|
.build() {
|
|
2172
2241
|
}
|
|
2173
2242
|
|
|
@@ -2175,16 +2244,11 @@ class DeleteKnowledgeBaseCommand extends smithyClient.Command
|
|
|
2175
2244
|
.classBuilder()
|
|
2176
2245
|
.ep(commonParams)
|
|
2177
2246
|
.m(function (Command, cs, config, o) {
|
|
2178
|
-
return [
|
|
2179
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2180
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2181
|
-
];
|
|
2247
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2182
2248
|
})
|
|
2183
2249
|
.s("WisdomService", "DeleteKnowledgeBase", {})
|
|
2184
2250
|
.n("WisdomClient", "DeleteKnowledgeBaseCommand")
|
|
2185
|
-
.
|
|
2186
|
-
.ser(se_DeleteKnowledgeBaseCommand)
|
|
2187
|
-
.de(de_DeleteKnowledgeBaseCommand)
|
|
2251
|
+
.sc(DeleteKnowledgeBase)
|
|
2188
2252
|
.build() {
|
|
2189
2253
|
}
|
|
2190
2254
|
|
|
@@ -2192,16 +2256,11 @@ class DeleteQuickResponseCommand extends smithyClient.Command
|
|
|
2192
2256
|
.classBuilder()
|
|
2193
2257
|
.ep(commonParams)
|
|
2194
2258
|
.m(function (Command, cs, config, o) {
|
|
2195
|
-
return [
|
|
2196
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2197
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2198
|
-
];
|
|
2259
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2199
2260
|
})
|
|
2200
2261
|
.s("WisdomService", "DeleteQuickResponse", {})
|
|
2201
2262
|
.n("WisdomClient", "DeleteQuickResponseCommand")
|
|
2202
|
-
.
|
|
2203
|
-
.ser(se_DeleteQuickResponseCommand)
|
|
2204
|
-
.de(de_DeleteQuickResponseCommand)
|
|
2263
|
+
.sc(DeleteQuickResponse)
|
|
2205
2264
|
.build() {
|
|
2206
2265
|
}
|
|
2207
2266
|
|
|
@@ -2209,16 +2268,11 @@ class GetAssistantAssociationCommand extends smithyClient.Command
|
|
|
2209
2268
|
.classBuilder()
|
|
2210
2269
|
.ep(commonParams)
|
|
2211
2270
|
.m(function (Command, cs, config, o) {
|
|
2212
|
-
return [
|
|
2213
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2214
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2215
|
-
];
|
|
2271
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2216
2272
|
})
|
|
2217
2273
|
.s("WisdomService", "GetAssistantAssociation", {})
|
|
2218
2274
|
.n("WisdomClient", "GetAssistantAssociationCommand")
|
|
2219
|
-
.
|
|
2220
|
-
.ser(se_GetAssistantAssociationCommand)
|
|
2221
|
-
.de(de_GetAssistantAssociationCommand)
|
|
2275
|
+
.sc(GetAssistantAssociation)
|
|
2222
2276
|
.build() {
|
|
2223
2277
|
}
|
|
2224
2278
|
|
|
@@ -2226,16 +2280,11 @@ class GetAssistantCommand extends smithyClient.Command
|
|
|
2226
2280
|
.classBuilder()
|
|
2227
2281
|
.ep(commonParams)
|
|
2228
2282
|
.m(function (Command, cs, config, o) {
|
|
2229
|
-
return [
|
|
2230
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2231
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2232
|
-
];
|
|
2283
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2233
2284
|
})
|
|
2234
2285
|
.s("WisdomService", "GetAssistant", {})
|
|
2235
2286
|
.n("WisdomClient", "GetAssistantCommand")
|
|
2236
|
-
.
|
|
2237
|
-
.ser(se_GetAssistantCommand)
|
|
2238
|
-
.de(de_GetAssistantCommand)
|
|
2287
|
+
.sc(GetAssistant)
|
|
2239
2288
|
.build() {
|
|
2240
2289
|
}
|
|
2241
2290
|
|
|
@@ -2243,16 +2292,11 @@ class GetContentCommand extends smithyClient.Command
|
|
|
2243
2292
|
.classBuilder()
|
|
2244
2293
|
.ep(commonParams)
|
|
2245
2294
|
.m(function (Command, cs, config, o) {
|
|
2246
|
-
return [
|
|
2247
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2248
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2249
|
-
];
|
|
2295
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2250
2296
|
})
|
|
2251
2297
|
.s("WisdomService", "GetContent", {})
|
|
2252
2298
|
.n("WisdomClient", "GetContentCommand")
|
|
2253
|
-
.
|
|
2254
|
-
.ser(se_GetContentCommand)
|
|
2255
|
-
.de(de_GetContentCommand)
|
|
2299
|
+
.sc(GetContent)
|
|
2256
2300
|
.build() {
|
|
2257
2301
|
}
|
|
2258
2302
|
|
|
@@ -2260,16 +2304,11 @@ class GetContentSummaryCommand extends smithyClient.Command
|
|
|
2260
2304
|
.classBuilder()
|
|
2261
2305
|
.ep(commonParams)
|
|
2262
2306
|
.m(function (Command, cs, config, o) {
|
|
2263
|
-
return [
|
|
2264
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2265
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2266
|
-
];
|
|
2307
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2267
2308
|
})
|
|
2268
2309
|
.s("WisdomService", "GetContentSummary", {})
|
|
2269
2310
|
.n("WisdomClient", "GetContentSummaryCommand")
|
|
2270
|
-
.
|
|
2271
|
-
.ser(se_GetContentSummaryCommand)
|
|
2272
|
-
.de(de_GetContentSummaryCommand)
|
|
2311
|
+
.sc(GetContentSummary)
|
|
2273
2312
|
.build() {
|
|
2274
2313
|
}
|
|
2275
2314
|
|
|
@@ -2277,16 +2316,11 @@ class GetImportJobCommand extends smithyClient.Command
|
|
|
2277
2316
|
.classBuilder()
|
|
2278
2317
|
.ep(commonParams)
|
|
2279
2318
|
.m(function (Command, cs, config, o) {
|
|
2280
|
-
return [
|
|
2281
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2282
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2283
|
-
];
|
|
2319
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2284
2320
|
})
|
|
2285
2321
|
.s("WisdomService", "GetImportJob", {})
|
|
2286
2322
|
.n("WisdomClient", "GetImportJobCommand")
|
|
2287
|
-
.
|
|
2288
|
-
.ser(se_GetImportJobCommand)
|
|
2289
|
-
.de(de_GetImportJobCommand)
|
|
2323
|
+
.sc(GetImportJob)
|
|
2290
2324
|
.build() {
|
|
2291
2325
|
}
|
|
2292
2326
|
|
|
@@ -2294,16 +2328,11 @@ class GetKnowledgeBaseCommand extends smithyClient.Command
|
|
|
2294
2328
|
.classBuilder()
|
|
2295
2329
|
.ep(commonParams)
|
|
2296
2330
|
.m(function (Command, cs, config, o) {
|
|
2297
|
-
return [
|
|
2298
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2299
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2300
|
-
];
|
|
2331
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2301
2332
|
})
|
|
2302
2333
|
.s("WisdomService", "GetKnowledgeBase", {})
|
|
2303
2334
|
.n("WisdomClient", "GetKnowledgeBaseCommand")
|
|
2304
|
-
.
|
|
2305
|
-
.ser(se_GetKnowledgeBaseCommand)
|
|
2306
|
-
.de(de_GetKnowledgeBaseCommand)
|
|
2335
|
+
.sc(GetKnowledgeBase)
|
|
2307
2336
|
.build() {
|
|
2308
2337
|
}
|
|
2309
2338
|
|
|
@@ -2311,16 +2340,11 @@ class GetQuickResponseCommand extends smithyClient.Command
|
|
|
2311
2340
|
.classBuilder()
|
|
2312
2341
|
.ep(commonParams)
|
|
2313
2342
|
.m(function (Command, cs, config, o) {
|
|
2314
|
-
return [
|
|
2315
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2316
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2317
|
-
];
|
|
2343
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2318
2344
|
})
|
|
2319
2345
|
.s("WisdomService", "GetQuickResponse", {})
|
|
2320
2346
|
.n("WisdomClient", "GetQuickResponseCommand")
|
|
2321
|
-
.
|
|
2322
|
-
.ser(se_GetQuickResponseCommand)
|
|
2323
|
-
.de(de_GetQuickResponseCommand)
|
|
2347
|
+
.sc(GetQuickResponse)
|
|
2324
2348
|
.build() {
|
|
2325
2349
|
}
|
|
2326
2350
|
|
|
@@ -2328,16 +2352,11 @@ class GetRecommendationsCommand extends smithyClient.Command
|
|
|
2328
2352
|
.classBuilder()
|
|
2329
2353
|
.ep(commonParams)
|
|
2330
2354
|
.m(function (Command, cs, config, o) {
|
|
2331
|
-
return [
|
|
2332
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2333
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2334
|
-
];
|
|
2355
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2335
2356
|
})
|
|
2336
2357
|
.s("WisdomService", "GetRecommendations", {})
|
|
2337
2358
|
.n("WisdomClient", "GetRecommendationsCommand")
|
|
2338
|
-
.
|
|
2339
|
-
.ser(se_GetRecommendationsCommand)
|
|
2340
|
-
.de(de_GetRecommendationsCommand)
|
|
2359
|
+
.sc(GetRecommendations)
|
|
2341
2360
|
.build() {
|
|
2342
2361
|
}
|
|
2343
2362
|
|
|
@@ -2345,16 +2364,11 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
2345
2364
|
.classBuilder()
|
|
2346
2365
|
.ep(commonParams)
|
|
2347
2366
|
.m(function (Command, cs, config, o) {
|
|
2348
|
-
return [
|
|
2349
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2350
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2351
|
-
];
|
|
2367
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2352
2368
|
})
|
|
2353
2369
|
.s("WisdomService", "GetSession", {})
|
|
2354
2370
|
.n("WisdomClient", "GetSessionCommand")
|
|
2355
|
-
.
|
|
2356
|
-
.ser(se_GetSessionCommand)
|
|
2357
|
-
.de(de_GetSessionCommand)
|
|
2371
|
+
.sc(GetSession)
|
|
2358
2372
|
.build() {
|
|
2359
2373
|
}
|
|
2360
2374
|
|
|
@@ -2362,16 +2376,11 @@ class ListAssistantAssociationsCommand extends smithyClient.Command
|
|
|
2362
2376
|
.classBuilder()
|
|
2363
2377
|
.ep(commonParams)
|
|
2364
2378
|
.m(function (Command, cs, config, o) {
|
|
2365
|
-
return [
|
|
2366
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2367
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2368
|
-
];
|
|
2379
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2369
2380
|
})
|
|
2370
2381
|
.s("WisdomService", "ListAssistantAssociations", {})
|
|
2371
2382
|
.n("WisdomClient", "ListAssistantAssociationsCommand")
|
|
2372
|
-
.
|
|
2373
|
-
.ser(se_ListAssistantAssociationsCommand)
|
|
2374
|
-
.de(de_ListAssistantAssociationsCommand)
|
|
2383
|
+
.sc(ListAssistantAssociations)
|
|
2375
2384
|
.build() {
|
|
2376
2385
|
}
|
|
2377
2386
|
|
|
@@ -2379,16 +2388,11 @@ class ListAssistantsCommand extends smithyClient.Command
|
|
|
2379
2388
|
.classBuilder()
|
|
2380
2389
|
.ep(commonParams)
|
|
2381
2390
|
.m(function (Command, cs, config, o) {
|
|
2382
|
-
return [
|
|
2383
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2384
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2385
|
-
];
|
|
2391
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2386
2392
|
})
|
|
2387
2393
|
.s("WisdomService", "ListAssistants", {})
|
|
2388
2394
|
.n("WisdomClient", "ListAssistantsCommand")
|
|
2389
|
-
.
|
|
2390
|
-
.ser(se_ListAssistantsCommand)
|
|
2391
|
-
.de(de_ListAssistantsCommand)
|
|
2395
|
+
.sc(ListAssistants)
|
|
2392
2396
|
.build() {
|
|
2393
2397
|
}
|
|
2394
2398
|
|
|
@@ -2396,16 +2400,11 @@ class ListContentsCommand extends smithyClient.Command
|
|
|
2396
2400
|
.classBuilder()
|
|
2397
2401
|
.ep(commonParams)
|
|
2398
2402
|
.m(function (Command, cs, config, o) {
|
|
2399
|
-
return [
|
|
2400
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2401
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2402
|
-
];
|
|
2403
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2403
2404
|
})
|
|
2404
2405
|
.s("WisdomService", "ListContents", {})
|
|
2405
2406
|
.n("WisdomClient", "ListContentsCommand")
|
|
2406
|
-
.
|
|
2407
|
-
.ser(se_ListContentsCommand)
|
|
2408
|
-
.de(de_ListContentsCommand)
|
|
2407
|
+
.sc(ListContents)
|
|
2409
2408
|
.build() {
|
|
2410
2409
|
}
|
|
2411
2410
|
|
|
@@ -2413,16 +2412,11 @@ class ListImportJobsCommand extends smithyClient.Command
|
|
|
2413
2412
|
.classBuilder()
|
|
2414
2413
|
.ep(commonParams)
|
|
2415
2414
|
.m(function (Command, cs, config, o) {
|
|
2416
|
-
return [
|
|
2417
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2418
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2419
|
-
];
|
|
2415
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2420
2416
|
})
|
|
2421
2417
|
.s("WisdomService", "ListImportJobs", {})
|
|
2422
2418
|
.n("WisdomClient", "ListImportJobsCommand")
|
|
2423
|
-
.
|
|
2424
|
-
.ser(se_ListImportJobsCommand)
|
|
2425
|
-
.de(de_ListImportJobsCommand)
|
|
2419
|
+
.sc(ListImportJobs)
|
|
2426
2420
|
.build() {
|
|
2427
2421
|
}
|
|
2428
2422
|
|
|
@@ -2430,16 +2424,11 @@ class ListKnowledgeBasesCommand extends smithyClient.Command
|
|
|
2430
2424
|
.classBuilder()
|
|
2431
2425
|
.ep(commonParams)
|
|
2432
2426
|
.m(function (Command, cs, config, o) {
|
|
2433
|
-
return [
|
|
2434
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2435
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2436
|
-
];
|
|
2427
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2437
2428
|
})
|
|
2438
2429
|
.s("WisdomService", "ListKnowledgeBases", {})
|
|
2439
2430
|
.n("WisdomClient", "ListKnowledgeBasesCommand")
|
|
2440
|
-
.
|
|
2441
|
-
.ser(se_ListKnowledgeBasesCommand)
|
|
2442
|
-
.de(de_ListKnowledgeBasesCommand)
|
|
2431
|
+
.sc(ListKnowledgeBases)
|
|
2443
2432
|
.build() {
|
|
2444
2433
|
}
|
|
2445
2434
|
|
|
@@ -2447,16 +2436,11 @@ class ListQuickResponsesCommand extends smithyClient.Command
|
|
|
2447
2436
|
.classBuilder()
|
|
2448
2437
|
.ep(commonParams)
|
|
2449
2438
|
.m(function (Command, cs, config, o) {
|
|
2450
|
-
return [
|
|
2451
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2452
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2453
|
-
];
|
|
2439
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2454
2440
|
})
|
|
2455
2441
|
.s("WisdomService", "ListQuickResponses", {})
|
|
2456
2442
|
.n("WisdomClient", "ListQuickResponsesCommand")
|
|
2457
|
-
.
|
|
2458
|
-
.ser(se_ListQuickResponsesCommand)
|
|
2459
|
-
.de(de_ListQuickResponsesCommand)
|
|
2443
|
+
.sc(ListQuickResponses)
|
|
2460
2444
|
.build() {
|
|
2461
2445
|
}
|
|
2462
2446
|
|
|
@@ -2464,16 +2448,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2464
2448
|
.classBuilder()
|
|
2465
2449
|
.ep(commonParams)
|
|
2466
2450
|
.m(function (Command, cs, config, o) {
|
|
2467
|
-
return [
|
|
2468
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2469
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2470
|
-
];
|
|
2451
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2471
2452
|
})
|
|
2472
2453
|
.s("WisdomService", "ListTagsForResource", {})
|
|
2473
2454
|
.n("WisdomClient", "ListTagsForResourceCommand")
|
|
2474
|
-
.
|
|
2475
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2476
|
-
.de(de_ListTagsForResourceCommand)
|
|
2455
|
+
.sc(ListTagsForResource)
|
|
2477
2456
|
.build() {
|
|
2478
2457
|
}
|
|
2479
2458
|
|
|
@@ -2481,16 +2460,11 @@ class NotifyRecommendationsReceivedCommand extends smithyClient.Command
|
|
|
2481
2460
|
.classBuilder()
|
|
2482
2461
|
.ep(commonParams)
|
|
2483
2462
|
.m(function (Command, cs, config, o) {
|
|
2484
|
-
return [
|
|
2485
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2486
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2487
|
-
];
|
|
2463
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2488
2464
|
})
|
|
2489
2465
|
.s("WisdomService", "NotifyRecommendationsReceived", {})
|
|
2490
2466
|
.n("WisdomClient", "NotifyRecommendationsReceivedCommand")
|
|
2491
|
-
.
|
|
2492
|
-
.ser(se_NotifyRecommendationsReceivedCommand)
|
|
2493
|
-
.de(de_NotifyRecommendationsReceivedCommand)
|
|
2467
|
+
.sc(NotifyRecommendationsReceived)
|
|
2494
2468
|
.build() {
|
|
2495
2469
|
}
|
|
2496
2470
|
|
|
@@ -2498,16 +2472,11 @@ class QueryAssistantCommand extends smithyClient.Command
|
|
|
2498
2472
|
.classBuilder()
|
|
2499
2473
|
.ep(commonParams)
|
|
2500
2474
|
.m(function (Command, cs, config, o) {
|
|
2501
|
-
return [
|
|
2502
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2503
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2504
|
-
];
|
|
2475
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2505
2476
|
})
|
|
2506
2477
|
.s("WisdomService", "QueryAssistant", {})
|
|
2507
2478
|
.n("WisdomClient", "QueryAssistantCommand")
|
|
2508
|
-
.
|
|
2509
|
-
.ser(se_QueryAssistantCommand)
|
|
2510
|
-
.de(de_QueryAssistantCommand)
|
|
2479
|
+
.sc(QueryAssistant)
|
|
2511
2480
|
.build() {
|
|
2512
2481
|
}
|
|
2513
2482
|
|
|
@@ -2515,16 +2484,11 @@ class RemoveKnowledgeBaseTemplateUriCommand extends smithyClient.Command
|
|
|
2515
2484
|
.classBuilder()
|
|
2516
2485
|
.ep(commonParams)
|
|
2517
2486
|
.m(function (Command, cs, config, o) {
|
|
2518
|
-
return [
|
|
2519
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2520
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2521
|
-
];
|
|
2487
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2522
2488
|
})
|
|
2523
2489
|
.s("WisdomService", "RemoveKnowledgeBaseTemplateUri", {})
|
|
2524
2490
|
.n("WisdomClient", "RemoveKnowledgeBaseTemplateUriCommand")
|
|
2525
|
-
.
|
|
2526
|
-
.ser(se_RemoveKnowledgeBaseTemplateUriCommand)
|
|
2527
|
-
.de(de_RemoveKnowledgeBaseTemplateUriCommand)
|
|
2491
|
+
.sc(RemoveKnowledgeBaseTemplateUri)
|
|
2528
2492
|
.build() {
|
|
2529
2493
|
}
|
|
2530
2494
|
|
|
@@ -2532,16 +2496,11 @@ class SearchContentCommand extends smithyClient.Command
|
|
|
2532
2496
|
.classBuilder()
|
|
2533
2497
|
.ep(commonParams)
|
|
2534
2498
|
.m(function (Command, cs, config, o) {
|
|
2535
|
-
return [
|
|
2536
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2537
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2538
|
-
];
|
|
2499
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2539
2500
|
})
|
|
2540
2501
|
.s("WisdomService", "SearchContent", {})
|
|
2541
2502
|
.n("WisdomClient", "SearchContentCommand")
|
|
2542
|
-
.
|
|
2543
|
-
.ser(se_SearchContentCommand)
|
|
2544
|
-
.de(de_SearchContentCommand)
|
|
2503
|
+
.sc(SearchContent)
|
|
2545
2504
|
.build() {
|
|
2546
2505
|
}
|
|
2547
2506
|
|
|
@@ -2549,16 +2508,11 @@ class SearchQuickResponsesCommand extends smithyClient.Command
|
|
|
2549
2508
|
.classBuilder()
|
|
2550
2509
|
.ep(commonParams)
|
|
2551
2510
|
.m(function (Command, cs, config, o) {
|
|
2552
|
-
return [
|
|
2553
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2554
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2555
|
-
];
|
|
2511
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2556
2512
|
})
|
|
2557
2513
|
.s("WisdomService", "SearchQuickResponses", {})
|
|
2558
2514
|
.n("WisdomClient", "SearchQuickResponsesCommand")
|
|
2559
|
-
.
|
|
2560
|
-
.ser(se_SearchQuickResponsesCommand)
|
|
2561
|
-
.de(de_SearchQuickResponsesCommand)
|
|
2515
|
+
.sc(SearchQuickResponses)
|
|
2562
2516
|
.build() {
|
|
2563
2517
|
}
|
|
2564
2518
|
|
|
@@ -2566,16 +2520,11 @@ class SearchSessionsCommand extends smithyClient.Command
|
|
|
2566
2520
|
.classBuilder()
|
|
2567
2521
|
.ep(commonParams)
|
|
2568
2522
|
.m(function (Command, cs, config, o) {
|
|
2569
|
-
return [
|
|
2570
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2571
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2572
|
-
];
|
|
2523
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2573
2524
|
})
|
|
2574
2525
|
.s("WisdomService", "SearchSessions", {})
|
|
2575
2526
|
.n("WisdomClient", "SearchSessionsCommand")
|
|
2576
|
-
.
|
|
2577
|
-
.ser(se_SearchSessionsCommand)
|
|
2578
|
-
.de(de_SearchSessionsCommand)
|
|
2527
|
+
.sc(SearchSessions)
|
|
2579
2528
|
.build() {
|
|
2580
2529
|
}
|
|
2581
2530
|
|
|
@@ -2583,16 +2532,11 @@ class StartContentUploadCommand extends smithyClient.Command
|
|
|
2583
2532
|
.classBuilder()
|
|
2584
2533
|
.ep(commonParams)
|
|
2585
2534
|
.m(function (Command, cs, config, o) {
|
|
2586
|
-
return [
|
|
2587
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2588
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2589
|
-
];
|
|
2535
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2590
2536
|
})
|
|
2591
2537
|
.s("WisdomService", "StartContentUpload", {})
|
|
2592
2538
|
.n("WisdomClient", "StartContentUploadCommand")
|
|
2593
|
-
.
|
|
2594
|
-
.ser(se_StartContentUploadCommand)
|
|
2595
|
-
.de(de_StartContentUploadCommand)
|
|
2539
|
+
.sc(StartContentUpload)
|
|
2596
2540
|
.build() {
|
|
2597
2541
|
}
|
|
2598
2542
|
|
|
@@ -2600,16 +2544,11 @@ class StartImportJobCommand extends smithyClient.Command
|
|
|
2600
2544
|
.classBuilder()
|
|
2601
2545
|
.ep(commonParams)
|
|
2602
2546
|
.m(function (Command, cs, config, o) {
|
|
2603
|
-
return [
|
|
2604
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2605
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2606
|
-
];
|
|
2547
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2607
2548
|
})
|
|
2608
2549
|
.s("WisdomService", "StartImportJob", {})
|
|
2609
2550
|
.n("WisdomClient", "StartImportJobCommand")
|
|
2610
|
-
.
|
|
2611
|
-
.ser(se_StartImportJobCommand)
|
|
2612
|
-
.de(de_StartImportJobCommand)
|
|
2551
|
+
.sc(StartImportJob)
|
|
2613
2552
|
.build() {
|
|
2614
2553
|
}
|
|
2615
2554
|
|
|
@@ -2617,16 +2556,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2617
2556
|
.classBuilder()
|
|
2618
2557
|
.ep(commonParams)
|
|
2619
2558
|
.m(function (Command, cs, config, o) {
|
|
2620
|
-
return [
|
|
2621
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2622
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2623
|
-
];
|
|
2559
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2624
2560
|
})
|
|
2625
2561
|
.s("WisdomService", "TagResource", {})
|
|
2626
2562
|
.n("WisdomClient", "TagResourceCommand")
|
|
2627
|
-
.
|
|
2628
|
-
.ser(se_TagResourceCommand)
|
|
2629
|
-
.de(de_TagResourceCommand)
|
|
2563
|
+
.sc(TagResource)
|
|
2630
2564
|
.build() {
|
|
2631
2565
|
}
|
|
2632
2566
|
|
|
@@ -2634,16 +2568,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2634
2568
|
.classBuilder()
|
|
2635
2569
|
.ep(commonParams)
|
|
2636
2570
|
.m(function (Command, cs, config, o) {
|
|
2637
|
-
return [
|
|
2638
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2639
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2640
|
-
];
|
|
2571
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2641
2572
|
})
|
|
2642
2573
|
.s("WisdomService", "UntagResource", {})
|
|
2643
2574
|
.n("WisdomClient", "UntagResourceCommand")
|
|
2644
|
-
.
|
|
2645
|
-
.ser(se_UntagResourceCommand)
|
|
2646
|
-
.de(de_UntagResourceCommand)
|
|
2575
|
+
.sc(UntagResource)
|
|
2647
2576
|
.build() {
|
|
2648
2577
|
}
|
|
2649
2578
|
|
|
@@ -2651,16 +2580,11 @@ class UpdateContentCommand extends smithyClient.Command
|
|
|
2651
2580
|
.classBuilder()
|
|
2652
2581
|
.ep(commonParams)
|
|
2653
2582
|
.m(function (Command, cs, config, o) {
|
|
2654
|
-
return [
|
|
2655
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2656
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2657
|
-
];
|
|
2583
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2658
2584
|
})
|
|
2659
2585
|
.s("WisdomService", "UpdateContent", {})
|
|
2660
2586
|
.n("WisdomClient", "UpdateContentCommand")
|
|
2661
|
-
.
|
|
2662
|
-
.ser(se_UpdateContentCommand)
|
|
2663
|
-
.de(de_UpdateContentCommand)
|
|
2587
|
+
.sc(UpdateContent)
|
|
2664
2588
|
.build() {
|
|
2665
2589
|
}
|
|
2666
2590
|
|
|
@@ -2668,16 +2592,11 @@ class UpdateKnowledgeBaseTemplateUriCommand extends smithyClient.Command
|
|
|
2668
2592
|
.classBuilder()
|
|
2669
2593
|
.ep(commonParams)
|
|
2670
2594
|
.m(function (Command, cs, config, o) {
|
|
2671
|
-
return [
|
|
2672
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2673
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2674
|
-
];
|
|
2595
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2675
2596
|
})
|
|
2676
2597
|
.s("WisdomService", "UpdateKnowledgeBaseTemplateUri", {})
|
|
2677
2598
|
.n("WisdomClient", "UpdateKnowledgeBaseTemplateUriCommand")
|
|
2678
|
-
.
|
|
2679
|
-
.ser(se_UpdateKnowledgeBaseTemplateUriCommand)
|
|
2680
|
-
.de(de_UpdateKnowledgeBaseTemplateUriCommand)
|
|
2599
|
+
.sc(UpdateKnowledgeBaseTemplateUri)
|
|
2681
2600
|
.build() {
|
|
2682
2601
|
}
|
|
2683
2602
|
|
|
@@ -2685,16 +2604,11 @@ class UpdateQuickResponseCommand extends smithyClient.Command
|
|
|
2685
2604
|
.classBuilder()
|
|
2686
2605
|
.ep(commonParams)
|
|
2687
2606
|
.m(function (Command, cs, config, o) {
|
|
2688
|
-
return [
|
|
2689
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2690
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2691
|
-
];
|
|
2607
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2692
2608
|
})
|
|
2693
2609
|
.s("WisdomService", "UpdateQuickResponse", {})
|
|
2694
2610
|
.n("WisdomClient", "UpdateQuickResponseCommand")
|
|
2695
|
-
.
|
|
2696
|
-
.ser(se_UpdateQuickResponseCommand)
|
|
2697
|
-
.de(de_UpdateQuickResponseCommand)
|
|
2611
|
+
.sc(UpdateQuickResponse)
|
|
2698
2612
|
.build() {
|
|
2699
2613
|
}
|
|
2700
2614
|
|
|
@@ -2773,21 +2687,17 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2773
2687
|
enumerable: true,
|
|
2774
2688
|
get: function () { return smithyClient.Client; }
|
|
2775
2689
|
});
|
|
2776
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2690
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2777
2691
|
exports.AssistantStatus = AssistantStatus;
|
|
2778
2692
|
exports.AssistantType = AssistantType;
|
|
2779
2693
|
exports.AssociationType = AssociationType;
|
|
2780
|
-
exports.ConflictException = ConflictException;
|
|
2781
|
-
exports.ContentDataFilterSensitiveLog = ContentDataFilterSensitiveLog;
|
|
2694
|
+
exports.ConflictException = ConflictException$1;
|
|
2782
2695
|
exports.ContentStatus = ContentStatus;
|
|
2783
2696
|
exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
|
|
2784
2697
|
exports.CreateAssistantCommand = CreateAssistantCommand;
|
|
2785
2698
|
exports.CreateContentCommand = CreateContentCommand;
|
|
2786
|
-
exports.CreateContentResponseFilterSensitiveLog = CreateContentResponseFilterSensitiveLog;
|
|
2787
2699
|
exports.CreateKnowledgeBaseCommand = CreateKnowledgeBaseCommand;
|
|
2788
2700
|
exports.CreateQuickResponseCommand = CreateQuickResponseCommand;
|
|
2789
|
-
exports.CreateQuickResponseRequestFilterSensitiveLog = CreateQuickResponseRequestFilterSensitiveLog;
|
|
2790
|
-
exports.CreateQuickResponseResponseFilterSensitiveLog = CreateQuickResponseResponseFilterSensitiveLog;
|
|
2791
2701
|
exports.CreateSessionCommand = CreateSessionCommand;
|
|
2792
2702
|
exports.DeleteAssistantAssociationCommand = DeleteAssistantAssociationCommand;
|
|
2793
2703
|
exports.DeleteAssistantCommand = DeleteAssistantCommand;
|
|
@@ -2795,26 +2705,18 @@ exports.DeleteContentCommand = DeleteContentCommand;
|
|
|
2795
2705
|
exports.DeleteImportJobCommand = DeleteImportJobCommand;
|
|
2796
2706
|
exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
|
|
2797
2707
|
exports.DeleteQuickResponseCommand = DeleteQuickResponseCommand;
|
|
2798
|
-
exports.DocumentFilterSensitiveLog = DocumentFilterSensitiveLog;
|
|
2799
|
-
exports.DocumentTextFilterSensitiveLog = DocumentTextFilterSensitiveLog;
|
|
2800
2708
|
exports.ExternalSource = ExternalSource;
|
|
2801
2709
|
exports.FilterField = FilterField;
|
|
2802
2710
|
exports.FilterOperator = FilterOperator;
|
|
2803
2711
|
exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
|
|
2804
2712
|
exports.GetAssistantCommand = GetAssistantCommand;
|
|
2805
2713
|
exports.GetContentCommand = GetContentCommand;
|
|
2806
|
-
exports.GetContentResponseFilterSensitiveLog = GetContentResponseFilterSensitiveLog;
|
|
2807
2714
|
exports.GetContentSummaryCommand = GetContentSummaryCommand;
|
|
2808
2715
|
exports.GetImportJobCommand = GetImportJobCommand;
|
|
2809
|
-
exports.GetImportJobResponseFilterSensitiveLog = GetImportJobResponseFilterSensitiveLog;
|
|
2810
2716
|
exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
|
|
2811
2717
|
exports.GetQuickResponseCommand = GetQuickResponseCommand;
|
|
2812
|
-
exports.GetQuickResponseResponseFilterSensitiveLog = GetQuickResponseResponseFilterSensitiveLog;
|
|
2813
2718
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
2814
|
-
exports.GetRecommendationsResponseFilterSensitiveLog = GetRecommendationsResponseFilterSensitiveLog;
|
|
2815
2719
|
exports.GetSessionCommand = GetSessionCommand;
|
|
2816
|
-
exports.GroupingConfigurationFilterSensitiveLog = GroupingConfigurationFilterSensitiveLog;
|
|
2817
|
-
exports.ImportJobDataFilterSensitiveLog = ImportJobDataFilterSensitiveLog;
|
|
2818
2720
|
exports.ImportJobStatus = ImportJobStatus;
|
|
2819
2721
|
exports.ImportJobType = ImportJobType;
|
|
2820
2722
|
exports.KnowledgeBaseStatus = KnowledgeBaseStatus;
|
|
@@ -2825,59 +2727,38 @@ exports.ListContentsCommand = ListContentsCommand;
|
|
|
2825
2727
|
exports.ListImportJobsCommand = ListImportJobsCommand;
|
|
2826
2728
|
exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
|
|
2827
2729
|
exports.ListQuickResponsesCommand = ListQuickResponsesCommand;
|
|
2828
|
-
exports.ListQuickResponsesResponseFilterSensitiveLog = ListQuickResponsesResponseFilterSensitiveLog;
|
|
2829
2730
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2830
2731
|
exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
|
|
2831
2732
|
exports.Order = Order;
|
|
2832
|
-
exports.PreconditionFailedException = PreconditionFailedException;
|
|
2733
|
+
exports.PreconditionFailedException = PreconditionFailedException$1;
|
|
2833
2734
|
exports.Priority = Priority;
|
|
2834
2735
|
exports.QueryAssistantCommand = QueryAssistantCommand;
|
|
2835
|
-
exports.QueryAssistantRequestFilterSensitiveLog = QueryAssistantRequestFilterSensitiveLog;
|
|
2836
|
-
exports.QueryAssistantResponseFilterSensitiveLog = QueryAssistantResponseFilterSensitiveLog;
|
|
2837
|
-
exports.QueryRecommendationTriggerDataFilterSensitiveLog = QueryRecommendationTriggerDataFilterSensitiveLog;
|
|
2838
|
-
exports.QuickResponseContentProviderFilterSensitiveLog = QuickResponseContentProviderFilterSensitiveLog;
|
|
2839
|
-
exports.QuickResponseContentsFilterSensitiveLog = QuickResponseContentsFilterSensitiveLog;
|
|
2840
|
-
exports.QuickResponseDataFilterSensitiveLog = QuickResponseDataFilterSensitiveLog;
|
|
2841
|
-
exports.QuickResponseDataProviderFilterSensitiveLog = QuickResponseDataProviderFilterSensitiveLog;
|
|
2842
2736
|
exports.QuickResponseFilterOperator = QuickResponseFilterOperator;
|
|
2843
2737
|
exports.QuickResponseQueryOperator = QuickResponseQueryOperator;
|
|
2844
|
-
exports.QuickResponseSearchResultDataFilterSensitiveLog = QuickResponseSearchResultDataFilterSensitiveLog;
|
|
2845
2738
|
exports.QuickResponseStatus = QuickResponseStatus;
|
|
2846
|
-
exports.QuickResponseSummaryFilterSensitiveLog = QuickResponseSummaryFilterSensitiveLog;
|
|
2847
|
-
exports.RecommendationDataFilterSensitiveLog = RecommendationDataFilterSensitiveLog;
|
|
2848
2739
|
exports.RecommendationSourceType = RecommendationSourceType;
|
|
2849
|
-
exports.RecommendationTriggerDataFilterSensitiveLog = RecommendationTriggerDataFilterSensitiveLog;
|
|
2850
|
-
exports.RecommendationTriggerFilterSensitiveLog = RecommendationTriggerFilterSensitiveLog;
|
|
2851
2740
|
exports.RecommendationTriggerType = RecommendationTriggerType;
|
|
2852
2741
|
exports.RecommendationType = RecommendationType;
|
|
2853
2742
|
exports.RelevanceLevel = RelevanceLevel;
|
|
2854
2743
|
exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
|
|
2855
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
2856
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2857
|
-
exports.ResultDataFilterSensitiveLog = ResultDataFilterSensitiveLog;
|
|
2744
|
+
exports.RequestTimeoutException = RequestTimeoutException$1;
|
|
2745
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2858
2746
|
exports.SearchContentCommand = SearchContentCommand;
|
|
2859
2747
|
exports.SearchQuickResponsesCommand = SearchQuickResponsesCommand;
|
|
2860
|
-
exports.SearchQuickResponsesRequestFilterSensitiveLog = SearchQuickResponsesRequestFilterSensitiveLog;
|
|
2861
|
-
exports.SearchQuickResponsesResponseFilterSensitiveLog = SearchQuickResponsesResponseFilterSensitiveLog;
|
|
2862
2748
|
exports.SearchSessionsCommand = SearchSessionsCommand;
|
|
2863
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2749
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2864
2750
|
exports.StartContentUploadCommand = StartContentUploadCommand;
|
|
2865
|
-
exports.StartContentUploadResponseFilterSensitiveLog = StartContentUploadResponseFilterSensitiveLog;
|
|
2866
2751
|
exports.StartImportJobCommand = StartImportJobCommand;
|
|
2867
|
-
exports.StartImportJobResponseFilterSensitiveLog = StartImportJobResponseFilterSensitiveLog;
|
|
2868
2752
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2869
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
2753
|
+
exports.TooManyTagsException = TooManyTagsException$1;
|
|
2870
2754
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2871
2755
|
exports.UpdateContentCommand = UpdateContentCommand;
|
|
2872
|
-
exports.UpdateContentResponseFilterSensitiveLog = UpdateContentResponseFilterSensitiveLog;
|
|
2873
2756
|
exports.UpdateKnowledgeBaseTemplateUriCommand = UpdateKnowledgeBaseTemplateUriCommand;
|
|
2874
2757
|
exports.UpdateQuickResponseCommand = UpdateQuickResponseCommand;
|
|
2875
|
-
exports.
|
|
2876
|
-
exports.UpdateQuickResponseResponseFilterSensitiveLog = UpdateQuickResponseResponseFilterSensitiveLog;
|
|
2877
|
-
exports.ValidationException = ValidationException;
|
|
2758
|
+
exports.ValidationException = ValidationException$1;
|
|
2878
2759
|
exports.Wisdom = Wisdom;
|
|
2879
2760
|
exports.WisdomClient = WisdomClient;
|
|
2880
|
-
exports.WisdomServiceException = WisdomServiceException;
|
|
2761
|
+
exports.WisdomServiceException = WisdomServiceException$1;
|
|
2881
2762
|
exports.paginateListAssistantAssociations = paginateListAssistantAssociations;
|
|
2882
2763
|
exports.paginateListAssistants = paginateListAssistants;
|
|
2883
2764
|
exports.paginateListContents = paginateListContents;
|