@aws-sdk/client-wisdom 3.721.0 → 3.723.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 CHANGED
@@ -243,7 +243,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
243
243
  }, "resolveRuntimeExtensions");
244
244
 
245
245
  // src/WisdomClient.ts
246
- var _WisdomClient = class _WisdomClient extends import_smithy_client.Client {
246
+ var WisdomClient = class extends import_smithy_client.Client {
247
+ static {
248
+ __name(this, "WisdomClient");
249
+ }
250
+ /**
251
+ * The resolved configuration of WisdomClient class. This is resolved and normalized from the {@link WisdomClientConfig | constructor configuration interface}.
252
+ */
253
+ config;
247
254
  constructor(...[configuration]) {
248
255
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
249
256
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -253,7 +260,7 @@ var _WisdomClient = class _WisdomClient extends import_smithy_client.Client {
253
260
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
254
261
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
255
262
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
256
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
263
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
257
264
  super(_config_8);
258
265
  this.config = _config_8;
259
266
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -281,8 +288,6 @@ var _WisdomClient = class _WisdomClient extends import_smithy_client.Client {
281
288
  super.destroy();
282
289
  }
283
290
  };
284
- __name(_WisdomClient, "WisdomClient");
285
- var WisdomClient = _WisdomClient;
286
291
 
287
292
  // src/Wisdom.ts
288
293
 
@@ -303,7 +308,10 @@ var import_uuid = require("uuid");
303
308
 
304
309
  // src/models/WisdomServiceException.ts
305
310
 
306
- var _WisdomServiceException = class _WisdomServiceException extends import_smithy_client.ServiceException {
311
+ var WisdomServiceException = class _WisdomServiceException extends import_smithy_client.ServiceException {
312
+ static {
313
+ __name(this, "WisdomServiceException");
314
+ }
307
315
  /**
308
316
  * @internal
309
317
  */
@@ -312,11 +320,14 @@ var _WisdomServiceException = class _WisdomServiceException extends import_smith
312
320
  Object.setPrototypeOf(this, _WisdomServiceException.prototype);
313
321
  }
314
322
  };
315
- __name(_WisdomServiceException, "WisdomServiceException");
316
- var WisdomServiceException = _WisdomServiceException;
317
323
 
318
324
  // src/models/models_0.ts
319
- var _AccessDeniedException = class _AccessDeniedException extends WisdomServiceException {
325
+ var AccessDeniedException = class _AccessDeniedException extends WisdomServiceException {
326
+ static {
327
+ __name(this, "AccessDeniedException");
328
+ }
329
+ name = "AccessDeniedException";
330
+ $fault = "client";
320
331
  /**
321
332
  * @internal
322
333
  */
@@ -326,14 +337,15 @@ var _AccessDeniedException = class _AccessDeniedException extends WisdomServiceE
326
337
  $fault: "client",
327
338
  ...opts
328
339
  });
329
- this.name = "AccessDeniedException";
330
- this.$fault = "client";
331
340
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
332
341
  }
333
342
  };
334
- __name(_AccessDeniedException, "AccessDeniedException");
335
- var AccessDeniedException = _AccessDeniedException;
336
- var _ConflictException = class _ConflictException extends WisdomServiceException {
343
+ var ConflictException = class _ConflictException extends WisdomServiceException {
344
+ static {
345
+ __name(this, "ConflictException");
346
+ }
347
+ name = "ConflictException";
348
+ $fault = "client";
337
349
  /**
338
350
  * @internal
339
351
  */
@@ -343,13 +355,9 @@ var _ConflictException = class _ConflictException extends WisdomServiceException
343
355
  $fault: "client",
344
356
  ...opts
345
357
  });
346
- this.name = "ConflictException";
347
- this.$fault = "client";
348
358
  Object.setPrototypeOf(this, _ConflictException.prototype);
349
359
  }
350
360
  };
351
- __name(_ConflictException, "ConflictException");
352
- var ConflictException = _ConflictException;
353
361
  var AssistantAssociationInputData;
354
362
  ((AssistantAssociationInputData3) => {
355
363
  AssistantAssociationInputData3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -369,7 +377,17 @@ var AssistantAssociationOutputData;
369
377
  return visitor._(value.$unknown[0], value.$unknown[1]);
370
378
  }, "visit");
371
379
  })(AssistantAssociationOutputData || (AssistantAssociationOutputData = {}));
372
- var _ResourceNotFoundException = class _ResourceNotFoundException extends WisdomServiceException {
380
+ var ResourceNotFoundException = class _ResourceNotFoundException extends WisdomServiceException {
381
+ static {
382
+ __name(this, "ResourceNotFoundException");
383
+ }
384
+ name = "ResourceNotFoundException";
385
+ $fault = "client";
386
+ /**
387
+ * <p>The specified resource name.</p>
388
+ * @public
389
+ */
390
+ resourceName;
373
391
  /**
374
392
  * @internal
375
393
  */
@@ -379,15 +397,16 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Wisdom
379
397
  $fault: "client",
380
398
  ...opts
381
399
  });
382
- this.name = "ResourceNotFoundException";
383
- this.$fault = "client";
384
400
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
385
401
  this.resourceName = opts.resourceName;
386
402
  }
387
403
  };
388
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
389
- var ResourceNotFoundException = _ResourceNotFoundException;
390
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends WisdomServiceException {
404
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends WisdomServiceException {
405
+ static {
406
+ __name(this, "ServiceQuotaExceededException");
407
+ }
408
+ name = "ServiceQuotaExceededException";
409
+ $fault = "client";
391
410
  /**
392
411
  * @internal
393
412
  */
@@ -397,14 +416,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
397
416
  $fault: "client",
398
417
  ...opts
399
418
  });
400
- this.name = "ServiceQuotaExceededException";
401
- this.$fault = "client";
402
419
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
403
420
  }
404
421
  };
405
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
406
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
407
- var _ValidationException = class _ValidationException extends WisdomServiceException {
422
+ var ValidationException = class _ValidationException extends WisdomServiceException {
423
+ static {
424
+ __name(this, "ValidationException");
425
+ }
426
+ name = "ValidationException";
427
+ $fault = "client";
408
428
  /**
409
429
  * @internal
410
430
  */
@@ -414,13 +434,9 @@ var _ValidationException = class _ValidationException extends WisdomServiceExcep
414
434
  $fault: "client",
415
435
  ...opts
416
436
  });
417
- this.name = "ValidationException";
418
- this.$fault = "client";
419
437
  Object.setPrototypeOf(this, _ValidationException.prototype);
420
438
  }
421
439
  };
422
- __name(_ValidationException, "ValidationException");
423
- var ValidationException = _ValidationException;
424
440
  var AssistantType = {
425
441
  AGENT: "AGENT"
426
442
  };
@@ -456,7 +472,13 @@ var RecommendationSourceType = {
456
472
  var RecommendationTriggerType = {
457
473
  QUERY: "QUERY"
458
474
  };
459
- var _RequestTimeoutException = class _RequestTimeoutException extends WisdomServiceException {
475
+ var RequestTimeoutException = class _RequestTimeoutException extends WisdomServiceException {
476
+ static {
477
+ __name(this, "RequestTimeoutException");
478
+ }
479
+ name = "RequestTimeoutException";
480
+ $fault = "client";
481
+ $retryable = {};
460
482
  /**
461
483
  * @internal
462
484
  */
@@ -466,14 +488,9 @@ var _RequestTimeoutException = class _RequestTimeoutException extends WisdomServ
466
488
  $fault: "client",
467
489
  ...opts
468
490
  });
469
- this.name = "RequestTimeoutException";
470
- this.$fault = "client";
471
- this.$retryable = {};
472
491
  Object.setPrototypeOf(this, _RequestTimeoutException.prototype);
473
492
  }
474
493
  };
475
- __name(_RequestTimeoutException, "RequestTimeoutException");
476
- var RequestTimeoutException = _RequestTimeoutException;
477
494
  var FilterField = {
478
495
  NAME: "NAME"
479
496
  };
@@ -497,7 +514,12 @@ var ContentStatus = {
497
514
  DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
498
515
  UPDATE_FAILED: "UPDATE_FAILED"
499
516
  };
500
- var _PreconditionFailedException = class _PreconditionFailedException extends WisdomServiceException {
517
+ var PreconditionFailedException = class _PreconditionFailedException extends WisdomServiceException {
518
+ static {
519
+ __name(this, "PreconditionFailedException");
520
+ }
521
+ name = "PreconditionFailedException";
522
+ $fault = "client";
501
523
  /**
502
524
  * @internal
503
525
  */
@@ -507,13 +529,9 @@ var _PreconditionFailedException = class _PreconditionFailedException extends Wi
507
529
  $fault: "client",
508
530
  ...opts
509
531
  });
510
- this.name = "PreconditionFailedException";
511
- this.$fault = "client";
512
532
  Object.setPrototypeOf(this, _PreconditionFailedException.prototype);
513
533
  }
514
534
  };
515
- __name(_PreconditionFailedException, "PreconditionFailedException");
516
- var PreconditionFailedException = _PreconditionFailedException;
517
535
  var KnowledgeBaseType = {
518
536
  CUSTOM: "CUSTOM",
519
537
  EXTERNAL: "EXTERNAL",
@@ -592,7 +610,17 @@ var Priority = {
592
610
  LOW: "LOW",
593
611
  MEDIUM: "MEDIUM"
594
612
  };
595
- var _TooManyTagsException = class _TooManyTagsException extends WisdomServiceException {
613
+ var TooManyTagsException = class _TooManyTagsException extends WisdomServiceException {
614
+ static {
615
+ __name(this, "TooManyTagsException");
616
+ }
617
+ name = "TooManyTagsException";
618
+ $fault = "client";
619
+ /**
620
+ * <p>The specified resource name.</p>
621
+ * @public
622
+ */
623
+ resourceName;
596
624
  /**
597
625
  * @internal
598
626
  */
@@ -602,14 +630,10 @@ var _TooManyTagsException = class _TooManyTagsException extends WisdomServiceExc
602
630
  $fault: "client",
603
631
  ...opts
604
632
  });
605
- this.name = "TooManyTagsException";
606
- this.$fault = "client";
607
633
  Object.setPrototypeOf(this, _TooManyTagsException.prototype);
608
634
  this.resourceName = opts.resourceName;
609
635
  }
610
636
  };
611
- __name(_TooManyTagsException, "TooManyTagsException");
612
- var TooManyTagsException = _TooManyTagsException;
613
637
  var DocumentTextFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
614
638
  ...obj,
615
639
  ...obj.text && { text: import_smithy_client.SENSITIVE_STRING }
@@ -2263,575 +2287,616 @@ var _tK = "tagKeys";
2263
2287
  var _wTS = "waitTimeSeconds";
2264
2288
 
2265
2289
  // src/commands/CreateAssistantAssociationCommand.ts
2266
- var _CreateAssistantAssociationCommand = class _CreateAssistantAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2290
+ var CreateAssistantAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2267
2291
  return [
2268
2292
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2269
2293
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2270
2294
  ];
2271
2295
  }).s("WisdomService", "CreateAssistantAssociation", {}).n("WisdomClient", "CreateAssistantAssociationCommand").f(void 0, void 0).ser(se_CreateAssistantAssociationCommand).de(de_CreateAssistantAssociationCommand).build() {
2296
+ static {
2297
+ __name(this, "CreateAssistantAssociationCommand");
2298
+ }
2272
2299
  };
2273
- __name(_CreateAssistantAssociationCommand, "CreateAssistantAssociationCommand");
2274
- var CreateAssistantAssociationCommand = _CreateAssistantAssociationCommand;
2275
2300
 
2276
2301
  // src/commands/CreateAssistantCommand.ts
2277
2302
 
2278
2303
 
2279
2304
 
2280
- var _CreateAssistantCommand = class _CreateAssistantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2305
+ var CreateAssistantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2281
2306
  return [
2282
2307
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2283
2308
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2284
2309
  ];
2285
2310
  }).s("WisdomService", "CreateAssistant", {}).n("WisdomClient", "CreateAssistantCommand").f(void 0, void 0).ser(se_CreateAssistantCommand).de(de_CreateAssistantCommand).build() {
2311
+ static {
2312
+ __name(this, "CreateAssistantCommand");
2313
+ }
2286
2314
  };
2287
- __name(_CreateAssistantCommand, "CreateAssistantCommand");
2288
- var CreateAssistantCommand = _CreateAssistantCommand;
2289
2315
 
2290
2316
  // src/commands/CreateContentCommand.ts
2291
2317
 
2292
2318
 
2293
2319
 
2294
- var _CreateContentCommand = class _CreateContentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2320
+ var CreateContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2295
2321
  return [
2296
2322
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2297
2323
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2298
2324
  ];
2299
2325
  }).s("WisdomService", "CreateContent", {}).n("WisdomClient", "CreateContentCommand").f(void 0, CreateContentResponseFilterSensitiveLog).ser(se_CreateContentCommand).de(de_CreateContentCommand).build() {
2326
+ static {
2327
+ __name(this, "CreateContentCommand");
2328
+ }
2300
2329
  };
2301
- __name(_CreateContentCommand, "CreateContentCommand");
2302
- var CreateContentCommand = _CreateContentCommand;
2303
2330
 
2304
2331
  // src/commands/CreateKnowledgeBaseCommand.ts
2305
2332
 
2306
2333
 
2307
2334
 
2308
- var _CreateKnowledgeBaseCommand = class _CreateKnowledgeBaseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2335
+ var CreateKnowledgeBaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2309
2336
  return [
2310
2337
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2311
2338
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2312
2339
  ];
2313
2340
  }).s("WisdomService", "CreateKnowledgeBase", {}).n("WisdomClient", "CreateKnowledgeBaseCommand").f(void 0, void 0).ser(se_CreateKnowledgeBaseCommand).de(de_CreateKnowledgeBaseCommand).build() {
2341
+ static {
2342
+ __name(this, "CreateKnowledgeBaseCommand");
2343
+ }
2314
2344
  };
2315
- __name(_CreateKnowledgeBaseCommand, "CreateKnowledgeBaseCommand");
2316
- var CreateKnowledgeBaseCommand = _CreateKnowledgeBaseCommand;
2317
2345
 
2318
2346
  // src/commands/CreateQuickResponseCommand.ts
2319
2347
 
2320
2348
 
2321
2349
 
2322
- var _CreateQuickResponseCommand = class _CreateQuickResponseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2350
+ var CreateQuickResponseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2323
2351
  return [
2324
2352
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2325
2353
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2326
2354
  ];
2327
2355
  }).s("WisdomService", "CreateQuickResponse", {}).n("WisdomClient", "CreateQuickResponseCommand").f(CreateQuickResponseRequestFilterSensitiveLog, CreateQuickResponseResponseFilterSensitiveLog).ser(se_CreateQuickResponseCommand).de(de_CreateQuickResponseCommand).build() {
2356
+ static {
2357
+ __name(this, "CreateQuickResponseCommand");
2358
+ }
2328
2359
  };
2329
- __name(_CreateQuickResponseCommand, "CreateQuickResponseCommand");
2330
- var CreateQuickResponseCommand = _CreateQuickResponseCommand;
2331
2360
 
2332
2361
  // src/commands/CreateSessionCommand.ts
2333
2362
 
2334
2363
 
2335
2364
 
2336
- var _CreateSessionCommand = class _CreateSessionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2365
+ var CreateSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2337
2366
  return [
2338
2367
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2339
2368
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2340
2369
  ];
2341
2370
  }).s("WisdomService", "CreateSession", {}).n("WisdomClient", "CreateSessionCommand").f(void 0, void 0).ser(se_CreateSessionCommand).de(de_CreateSessionCommand).build() {
2371
+ static {
2372
+ __name(this, "CreateSessionCommand");
2373
+ }
2342
2374
  };
2343
- __name(_CreateSessionCommand, "CreateSessionCommand");
2344
- var CreateSessionCommand = _CreateSessionCommand;
2345
2375
 
2346
2376
  // src/commands/DeleteAssistantAssociationCommand.ts
2347
2377
 
2348
2378
 
2349
2379
 
2350
- var _DeleteAssistantAssociationCommand = class _DeleteAssistantAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2380
+ var DeleteAssistantAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2351
2381
  return [
2352
2382
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2353
2383
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2354
2384
  ];
2355
2385
  }).s("WisdomService", "DeleteAssistantAssociation", {}).n("WisdomClient", "DeleteAssistantAssociationCommand").f(void 0, void 0).ser(se_DeleteAssistantAssociationCommand).de(de_DeleteAssistantAssociationCommand).build() {
2386
+ static {
2387
+ __name(this, "DeleteAssistantAssociationCommand");
2388
+ }
2356
2389
  };
2357
- __name(_DeleteAssistantAssociationCommand, "DeleteAssistantAssociationCommand");
2358
- var DeleteAssistantAssociationCommand = _DeleteAssistantAssociationCommand;
2359
2390
 
2360
2391
  // src/commands/DeleteAssistantCommand.ts
2361
2392
 
2362
2393
 
2363
2394
 
2364
- var _DeleteAssistantCommand = class _DeleteAssistantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2395
+ var DeleteAssistantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2365
2396
  return [
2366
2397
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2367
2398
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2368
2399
  ];
2369
2400
  }).s("WisdomService", "DeleteAssistant", {}).n("WisdomClient", "DeleteAssistantCommand").f(void 0, void 0).ser(se_DeleteAssistantCommand).de(de_DeleteAssistantCommand).build() {
2401
+ static {
2402
+ __name(this, "DeleteAssistantCommand");
2403
+ }
2370
2404
  };
2371
- __name(_DeleteAssistantCommand, "DeleteAssistantCommand");
2372
- var DeleteAssistantCommand = _DeleteAssistantCommand;
2373
2405
 
2374
2406
  // src/commands/DeleteContentCommand.ts
2375
2407
 
2376
2408
 
2377
2409
 
2378
- var _DeleteContentCommand = class _DeleteContentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2410
+ var DeleteContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2379
2411
  return [
2380
2412
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2381
2413
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2382
2414
  ];
2383
2415
  }).s("WisdomService", "DeleteContent", {}).n("WisdomClient", "DeleteContentCommand").f(void 0, void 0).ser(se_DeleteContentCommand).de(de_DeleteContentCommand).build() {
2416
+ static {
2417
+ __name(this, "DeleteContentCommand");
2418
+ }
2384
2419
  };
2385
- __name(_DeleteContentCommand, "DeleteContentCommand");
2386
- var DeleteContentCommand = _DeleteContentCommand;
2387
2420
 
2388
2421
  // src/commands/DeleteImportJobCommand.ts
2389
2422
 
2390
2423
 
2391
2424
 
2392
- var _DeleteImportJobCommand = class _DeleteImportJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2425
+ var DeleteImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2393
2426
  return [
2394
2427
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2395
2428
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2396
2429
  ];
2397
2430
  }).s("WisdomService", "DeleteImportJob", {}).n("WisdomClient", "DeleteImportJobCommand").f(void 0, void 0).ser(se_DeleteImportJobCommand).de(de_DeleteImportJobCommand).build() {
2431
+ static {
2432
+ __name(this, "DeleteImportJobCommand");
2433
+ }
2398
2434
  };
2399
- __name(_DeleteImportJobCommand, "DeleteImportJobCommand");
2400
- var DeleteImportJobCommand = _DeleteImportJobCommand;
2401
2435
 
2402
2436
  // src/commands/DeleteKnowledgeBaseCommand.ts
2403
2437
 
2404
2438
 
2405
2439
 
2406
- var _DeleteKnowledgeBaseCommand = class _DeleteKnowledgeBaseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2440
+ var DeleteKnowledgeBaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2407
2441
  return [
2408
2442
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2409
2443
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2410
2444
  ];
2411
2445
  }).s("WisdomService", "DeleteKnowledgeBase", {}).n("WisdomClient", "DeleteKnowledgeBaseCommand").f(void 0, void 0).ser(se_DeleteKnowledgeBaseCommand).de(de_DeleteKnowledgeBaseCommand).build() {
2446
+ static {
2447
+ __name(this, "DeleteKnowledgeBaseCommand");
2448
+ }
2412
2449
  };
2413
- __name(_DeleteKnowledgeBaseCommand, "DeleteKnowledgeBaseCommand");
2414
- var DeleteKnowledgeBaseCommand = _DeleteKnowledgeBaseCommand;
2415
2450
 
2416
2451
  // src/commands/DeleteQuickResponseCommand.ts
2417
2452
 
2418
2453
 
2419
2454
 
2420
- var _DeleteQuickResponseCommand = class _DeleteQuickResponseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2455
+ var DeleteQuickResponseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2421
2456
  return [
2422
2457
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2423
2458
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2424
2459
  ];
2425
2460
  }).s("WisdomService", "DeleteQuickResponse", {}).n("WisdomClient", "DeleteQuickResponseCommand").f(void 0, void 0).ser(se_DeleteQuickResponseCommand).de(de_DeleteQuickResponseCommand).build() {
2461
+ static {
2462
+ __name(this, "DeleteQuickResponseCommand");
2463
+ }
2426
2464
  };
2427
- __name(_DeleteQuickResponseCommand, "DeleteQuickResponseCommand");
2428
- var DeleteQuickResponseCommand = _DeleteQuickResponseCommand;
2429
2465
 
2430
2466
  // src/commands/GetAssistantAssociationCommand.ts
2431
2467
 
2432
2468
 
2433
2469
 
2434
- var _GetAssistantAssociationCommand = class _GetAssistantAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2470
+ var GetAssistantAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2435
2471
  return [
2436
2472
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2437
2473
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2438
2474
  ];
2439
2475
  }).s("WisdomService", "GetAssistantAssociation", {}).n("WisdomClient", "GetAssistantAssociationCommand").f(void 0, void 0).ser(se_GetAssistantAssociationCommand).de(de_GetAssistantAssociationCommand).build() {
2476
+ static {
2477
+ __name(this, "GetAssistantAssociationCommand");
2478
+ }
2440
2479
  };
2441
- __name(_GetAssistantAssociationCommand, "GetAssistantAssociationCommand");
2442
- var GetAssistantAssociationCommand = _GetAssistantAssociationCommand;
2443
2480
 
2444
2481
  // src/commands/GetAssistantCommand.ts
2445
2482
 
2446
2483
 
2447
2484
 
2448
- var _GetAssistantCommand = class _GetAssistantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2485
+ var GetAssistantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2449
2486
  return [
2450
2487
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2451
2488
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2452
2489
  ];
2453
2490
  }).s("WisdomService", "GetAssistant", {}).n("WisdomClient", "GetAssistantCommand").f(void 0, void 0).ser(se_GetAssistantCommand).de(de_GetAssistantCommand).build() {
2491
+ static {
2492
+ __name(this, "GetAssistantCommand");
2493
+ }
2454
2494
  };
2455
- __name(_GetAssistantCommand, "GetAssistantCommand");
2456
- var GetAssistantCommand = _GetAssistantCommand;
2457
2495
 
2458
2496
  // src/commands/GetContentCommand.ts
2459
2497
 
2460
2498
 
2461
2499
 
2462
- var _GetContentCommand = class _GetContentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2500
+ var GetContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2463
2501
  return [
2464
2502
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2465
2503
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2466
2504
  ];
2467
2505
  }).s("WisdomService", "GetContent", {}).n("WisdomClient", "GetContentCommand").f(void 0, GetContentResponseFilterSensitiveLog).ser(se_GetContentCommand).de(de_GetContentCommand).build() {
2506
+ static {
2507
+ __name(this, "GetContentCommand");
2508
+ }
2468
2509
  };
2469
- __name(_GetContentCommand, "GetContentCommand");
2470
- var GetContentCommand = _GetContentCommand;
2471
2510
 
2472
2511
  // src/commands/GetContentSummaryCommand.ts
2473
2512
 
2474
2513
 
2475
2514
 
2476
- var _GetContentSummaryCommand = class _GetContentSummaryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2515
+ var GetContentSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2477
2516
  return [
2478
2517
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2479
2518
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2480
2519
  ];
2481
2520
  }).s("WisdomService", "GetContentSummary", {}).n("WisdomClient", "GetContentSummaryCommand").f(void 0, void 0).ser(se_GetContentSummaryCommand).de(de_GetContentSummaryCommand).build() {
2521
+ static {
2522
+ __name(this, "GetContentSummaryCommand");
2523
+ }
2482
2524
  };
2483
- __name(_GetContentSummaryCommand, "GetContentSummaryCommand");
2484
- var GetContentSummaryCommand = _GetContentSummaryCommand;
2485
2525
 
2486
2526
  // src/commands/GetImportJobCommand.ts
2487
2527
 
2488
2528
 
2489
2529
 
2490
- var _GetImportJobCommand = class _GetImportJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2530
+ var GetImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2491
2531
  return [
2492
2532
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2493
2533
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2494
2534
  ];
2495
2535
  }).s("WisdomService", "GetImportJob", {}).n("WisdomClient", "GetImportJobCommand").f(void 0, GetImportJobResponseFilterSensitiveLog).ser(se_GetImportJobCommand).de(de_GetImportJobCommand).build() {
2536
+ static {
2537
+ __name(this, "GetImportJobCommand");
2538
+ }
2496
2539
  };
2497
- __name(_GetImportJobCommand, "GetImportJobCommand");
2498
- var GetImportJobCommand = _GetImportJobCommand;
2499
2540
 
2500
2541
  // src/commands/GetKnowledgeBaseCommand.ts
2501
2542
 
2502
2543
 
2503
2544
 
2504
- var _GetKnowledgeBaseCommand = class _GetKnowledgeBaseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2545
+ var GetKnowledgeBaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2505
2546
  return [
2506
2547
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2507
2548
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2508
2549
  ];
2509
2550
  }).s("WisdomService", "GetKnowledgeBase", {}).n("WisdomClient", "GetKnowledgeBaseCommand").f(void 0, void 0).ser(se_GetKnowledgeBaseCommand).de(de_GetKnowledgeBaseCommand).build() {
2551
+ static {
2552
+ __name(this, "GetKnowledgeBaseCommand");
2553
+ }
2510
2554
  };
2511
- __name(_GetKnowledgeBaseCommand, "GetKnowledgeBaseCommand");
2512
- var GetKnowledgeBaseCommand = _GetKnowledgeBaseCommand;
2513
2555
 
2514
2556
  // src/commands/GetQuickResponseCommand.ts
2515
2557
 
2516
2558
 
2517
2559
 
2518
- var _GetQuickResponseCommand = class _GetQuickResponseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2560
+ var GetQuickResponseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2519
2561
  return [
2520
2562
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2521
2563
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2522
2564
  ];
2523
2565
  }).s("WisdomService", "GetQuickResponse", {}).n("WisdomClient", "GetQuickResponseCommand").f(void 0, GetQuickResponseResponseFilterSensitiveLog).ser(se_GetQuickResponseCommand).de(de_GetQuickResponseCommand).build() {
2566
+ static {
2567
+ __name(this, "GetQuickResponseCommand");
2568
+ }
2524
2569
  };
2525
- __name(_GetQuickResponseCommand, "GetQuickResponseCommand");
2526
- var GetQuickResponseCommand = _GetQuickResponseCommand;
2527
2570
 
2528
2571
  // src/commands/GetRecommendationsCommand.ts
2529
2572
 
2530
2573
 
2531
2574
 
2532
- var _GetRecommendationsCommand = class _GetRecommendationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2575
+ var GetRecommendationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2533
2576
  return [
2534
2577
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2535
2578
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2536
2579
  ];
2537
2580
  }).s("WisdomService", "GetRecommendations", {}).n("WisdomClient", "GetRecommendationsCommand").f(void 0, GetRecommendationsResponseFilterSensitiveLog).ser(se_GetRecommendationsCommand).de(de_GetRecommendationsCommand).build() {
2581
+ static {
2582
+ __name(this, "GetRecommendationsCommand");
2583
+ }
2538
2584
  };
2539
- __name(_GetRecommendationsCommand, "GetRecommendationsCommand");
2540
- var GetRecommendationsCommand = _GetRecommendationsCommand;
2541
2585
 
2542
2586
  // src/commands/GetSessionCommand.ts
2543
2587
 
2544
2588
 
2545
2589
 
2546
- var _GetSessionCommand = class _GetSessionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2590
+ var GetSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2547
2591
  return [
2548
2592
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2549
2593
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2550
2594
  ];
2551
2595
  }).s("WisdomService", "GetSession", {}).n("WisdomClient", "GetSessionCommand").f(void 0, void 0).ser(se_GetSessionCommand).de(de_GetSessionCommand).build() {
2596
+ static {
2597
+ __name(this, "GetSessionCommand");
2598
+ }
2552
2599
  };
2553
- __name(_GetSessionCommand, "GetSessionCommand");
2554
- var GetSessionCommand = _GetSessionCommand;
2555
2600
 
2556
2601
  // src/commands/ListAssistantAssociationsCommand.ts
2557
2602
 
2558
2603
 
2559
2604
 
2560
- var _ListAssistantAssociationsCommand = class _ListAssistantAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2605
+ var ListAssistantAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2561
2606
  return [
2562
2607
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2563
2608
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2564
2609
  ];
2565
2610
  }).s("WisdomService", "ListAssistantAssociations", {}).n("WisdomClient", "ListAssistantAssociationsCommand").f(void 0, void 0).ser(se_ListAssistantAssociationsCommand).de(de_ListAssistantAssociationsCommand).build() {
2611
+ static {
2612
+ __name(this, "ListAssistantAssociationsCommand");
2613
+ }
2566
2614
  };
2567
- __name(_ListAssistantAssociationsCommand, "ListAssistantAssociationsCommand");
2568
- var ListAssistantAssociationsCommand = _ListAssistantAssociationsCommand;
2569
2615
 
2570
2616
  // src/commands/ListAssistantsCommand.ts
2571
2617
 
2572
2618
 
2573
2619
 
2574
- var _ListAssistantsCommand = class _ListAssistantsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2620
+ var ListAssistantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2575
2621
  return [
2576
2622
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2577
2623
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2578
2624
  ];
2579
2625
  }).s("WisdomService", "ListAssistants", {}).n("WisdomClient", "ListAssistantsCommand").f(void 0, void 0).ser(se_ListAssistantsCommand).de(de_ListAssistantsCommand).build() {
2626
+ static {
2627
+ __name(this, "ListAssistantsCommand");
2628
+ }
2580
2629
  };
2581
- __name(_ListAssistantsCommand, "ListAssistantsCommand");
2582
- var ListAssistantsCommand = _ListAssistantsCommand;
2583
2630
 
2584
2631
  // src/commands/ListContentsCommand.ts
2585
2632
 
2586
2633
 
2587
2634
 
2588
- var _ListContentsCommand = class _ListContentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2635
+ var ListContentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2589
2636
  return [
2590
2637
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2591
2638
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2592
2639
  ];
2593
2640
  }).s("WisdomService", "ListContents", {}).n("WisdomClient", "ListContentsCommand").f(void 0, void 0).ser(se_ListContentsCommand).de(de_ListContentsCommand).build() {
2641
+ static {
2642
+ __name(this, "ListContentsCommand");
2643
+ }
2594
2644
  };
2595
- __name(_ListContentsCommand, "ListContentsCommand");
2596
- var ListContentsCommand = _ListContentsCommand;
2597
2645
 
2598
2646
  // src/commands/ListImportJobsCommand.ts
2599
2647
 
2600
2648
 
2601
2649
 
2602
- var _ListImportJobsCommand = class _ListImportJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2650
+ var ListImportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2603
2651
  return [
2604
2652
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2605
2653
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2606
2654
  ];
2607
2655
  }).s("WisdomService", "ListImportJobs", {}).n("WisdomClient", "ListImportJobsCommand").f(void 0, void 0).ser(se_ListImportJobsCommand).de(de_ListImportJobsCommand).build() {
2656
+ static {
2657
+ __name(this, "ListImportJobsCommand");
2658
+ }
2608
2659
  };
2609
- __name(_ListImportJobsCommand, "ListImportJobsCommand");
2610
- var ListImportJobsCommand = _ListImportJobsCommand;
2611
2660
 
2612
2661
  // src/commands/ListKnowledgeBasesCommand.ts
2613
2662
 
2614
2663
 
2615
2664
 
2616
- var _ListKnowledgeBasesCommand = class _ListKnowledgeBasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2665
+ var ListKnowledgeBasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2617
2666
  return [
2618
2667
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2619
2668
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2620
2669
  ];
2621
2670
  }).s("WisdomService", "ListKnowledgeBases", {}).n("WisdomClient", "ListKnowledgeBasesCommand").f(void 0, void 0).ser(se_ListKnowledgeBasesCommand).de(de_ListKnowledgeBasesCommand).build() {
2671
+ static {
2672
+ __name(this, "ListKnowledgeBasesCommand");
2673
+ }
2622
2674
  };
2623
- __name(_ListKnowledgeBasesCommand, "ListKnowledgeBasesCommand");
2624
- var ListKnowledgeBasesCommand = _ListKnowledgeBasesCommand;
2625
2675
 
2626
2676
  // src/commands/ListQuickResponsesCommand.ts
2627
2677
 
2628
2678
 
2629
2679
 
2630
- var _ListQuickResponsesCommand = class _ListQuickResponsesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2680
+ var ListQuickResponsesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2631
2681
  return [
2632
2682
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2633
2683
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2634
2684
  ];
2635
2685
  }).s("WisdomService", "ListQuickResponses", {}).n("WisdomClient", "ListQuickResponsesCommand").f(void 0, ListQuickResponsesResponseFilterSensitiveLog).ser(se_ListQuickResponsesCommand).de(de_ListQuickResponsesCommand).build() {
2686
+ static {
2687
+ __name(this, "ListQuickResponsesCommand");
2688
+ }
2636
2689
  };
2637
- __name(_ListQuickResponsesCommand, "ListQuickResponsesCommand");
2638
- var ListQuickResponsesCommand = _ListQuickResponsesCommand;
2639
2690
 
2640
2691
  // src/commands/ListTagsForResourceCommand.ts
2641
2692
 
2642
2693
 
2643
2694
 
2644
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2695
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2645
2696
  return [
2646
2697
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2647
2698
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2648
2699
  ];
2649
2700
  }).s("WisdomService", "ListTagsForResource", {}).n("WisdomClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2701
+ static {
2702
+ __name(this, "ListTagsForResourceCommand");
2703
+ }
2650
2704
  };
2651
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2652
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2653
2705
 
2654
2706
  // src/commands/NotifyRecommendationsReceivedCommand.ts
2655
2707
 
2656
2708
 
2657
2709
 
2658
- var _NotifyRecommendationsReceivedCommand = class _NotifyRecommendationsReceivedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2710
+ var NotifyRecommendationsReceivedCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2659
2711
  return [
2660
2712
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2661
2713
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2662
2714
  ];
2663
2715
  }).s("WisdomService", "NotifyRecommendationsReceived", {}).n("WisdomClient", "NotifyRecommendationsReceivedCommand").f(void 0, void 0).ser(se_NotifyRecommendationsReceivedCommand).de(de_NotifyRecommendationsReceivedCommand).build() {
2716
+ static {
2717
+ __name(this, "NotifyRecommendationsReceivedCommand");
2718
+ }
2664
2719
  };
2665
- __name(_NotifyRecommendationsReceivedCommand, "NotifyRecommendationsReceivedCommand");
2666
- var NotifyRecommendationsReceivedCommand = _NotifyRecommendationsReceivedCommand;
2667
2720
 
2668
2721
  // src/commands/QueryAssistantCommand.ts
2669
2722
 
2670
2723
 
2671
2724
 
2672
- var _QueryAssistantCommand = class _QueryAssistantCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2725
+ var QueryAssistantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2673
2726
  return [
2674
2727
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2675
2728
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2676
2729
  ];
2677
2730
  }).s("WisdomService", "QueryAssistant", {}).n("WisdomClient", "QueryAssistantCommand").f(QueryAssistantRequestFilterSensitiveLog, QueryAssistantResponseFilterSensitiveLog).ser(se_QueryAssistantCommand).de(de_QueryAssistantCommand).build() {
2731
+ static {
2732
+ __name(this, "QueryAssistantCommand");
2733
+ }
2678
2734
  };
2679
- __name(_QueryAssistantCommand, "QueryAssistantCommand");
2680
- var QueryAssistantCommand = _QueryAssistantCommand;
2681
2735
 
2682
2736
  // src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts
2683
2737
 
2684
2738
 
2685
2739
 
2686
- var _RemoveKnowledgeBaseTemplateUriCommand = class _RemoveKnowledgeBaseTemplateUriCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2740
+ var RemoveKnowledgeBaseTemplateUriCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2687
2741
  return [
2688
2742
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2689
2743
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2690
2744
  ];
2691
2745
  }).s("WisdomService", "RemoveKnowledgeBaseTemplateUri", {}).n("WisdomClient", "RemoveKnowledgeBaseTemplateUriCommand").f(void 0, void 0).ser(se_RemoveKnowledgeBaseTemplateUriCommand).de(de_RemoveKnowledgeBaseTemplateUriCommand).build() {
2746
+ static {
2747
+ __name(this, "RemoveKnowledgeBaseTemplateUriCommand");
2748
+ }
2692
2749
  };
2693
- __name(_RemoveKnowledgeBaseTemplateUriCommand, "RemoveKnowledgeBaseTemplateUriCommand");
2694
- var RemoveKnowledgeBaseTemplateUriCommand = _RemoveKnowledgeBaseTemplateUriCommand;
2695
2750
 
2696
2751
  // src/commands/SearchContentCommand.ts
2697
2752
 
2698
2753
 
2699
2754
 
2700
- var _SearchContentCommand = class _SearchContentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2755
+ var SearchContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2701
2756
  return [
2702
2757
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2703
2758
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2704
2759
  ];
2705
2760
  }).s("WisdomService", "SearchContent", {}).n("WisdomClient", "SearchContentCommand").f(void 0, void 0).ser(se_SearchContentCommand).de(de_SearchContentCommand).build() {
2761
+ static {
2762
+ __name(this, "SearchContentCommand");
2763
+ }
2706
2764
  };
2707
- __name(_SearchContentCommand, "SearchContentCommand");
2708
- var SearchContentCommand = _SearchContentCommand;
2709
2765
 
2710
2766
  // src/commands/SearchQuickResponsesCommand.ts
2711
2767
 
2712
2768
 
2713
2769
 
2714
- var _SearchQuickResponsesCommand = class _SearchQuickResponsesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2770
+ var SearchQuickResponsesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2715
2771
  return [
2716
2772
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2717
2773
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2718
2774
  ];
2719
2775
  }).s("WisdomService", "SearchQuickResponses", {}).n("WisdomClient", "SearchQuickResponsesCommand").f(SearchQuickResponsesRequestFilterSensitiveLog, SearchQuickResponsesResponseFilterSensitiveLog).ser(se_SearchQuickResponsesCommand).de(de_SearchQuickResponsesCommand).build() {
2776
+ static {
2777
+ __name(this, "SearchQuickResponsesCommand");
2778
+ }
2720
2779
  };
2721
- __name(_SearchQuickResponsesCommand, "SearchQuickResponsesCommand");
2722
- var SearchQuickResponsesCommand = _SearchQuickResponsesCommand;
2723
2780
 
2724
2781
  // src/commands/SearchSessionsCommand.ts
2725
2782
 
2726
2783
 
2727
2784
 
2728
- var _SearchSessionsCommand = class _SearchSessionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2785
+ var SearchSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2729
2786
  return [
2730
2787
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2731
2788
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2732
2789
  ];
2733
2790
  }).s("WisdomService", "SearchSessions", {}).n("WisdomClient", "SearchSessionsCommand").f(void 0, void 0).ser(se_SearchSessionsCommand).de(de_SearchSessionsCommand).build() {
2791
+ static {
2792
+ __name(this, "SearchSessionsCommand");
2793
+ }
2734
2794
  };
2735
- __name(_SearchSessionsCommand, "SearchSessionsCommand");
2736
- var SearchSessionsCommand = _SearchSessionsCommand;
2737
2795
 
2738
2796
  // src/commands/StartContentUploadCommand.ts
2739
2797
 
2740
2798
 
2741
2799
 
2742
- var _StartContentUploadCommand = class _StartContentUploadCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2800
+ var StartContentUploadCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2743
2801
  return [
2744
2802
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2745
2803
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2746
2804
  ];
2747
2805
  }).s("WisdomService", "StartContentUpload", {}).n("WisdomClient", "StartContentUploadCommand").f(void 0, StartContentUploadResponseFilterSensitiveLog).ser(se_StartContentUploadCommand).de(de_StartContentUploadCommand).build() {
2806
+ static {
2807
+ __name(this, "StartContentUploadCommand");
2808
+ }
2748
2809
  };
2749
- __name(_StartContentUploadCommand, "StartContentUploadCommand");
2750
- var StartContentUploadCommand = _StartContentUploadCommand;
2751
2810
 
2752
2811
  // src/commands/StartImportJobCommand.ts
2753
2812
 
2754
2813
 
2755
2814
 
2756
- var _StartImportJobCommand = class _StartImportJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2815
+ var StartImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2757
2816
  return [
2758
2817
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2759
2818
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2760
2819
  ];
2761
2820
  }).s("WisdomService", "StartImportJob", {}).n("WisdomClient", "StartImportJobCommand").f(void 0, StartImportJobResponseFilterSensitiveLog).ser(se_StartImportJobCommand).de(de_StartImportJobCommand).build() {
2821
+ static {
2822
+ __name(this, "StartImportJobCommand");
2823
+ }
2762
2824
  };
2763
- __name(_StartImportJobCommand, "StartImportJobCommand");
2764
- var StartImportJobCommand = _StartImportJobCommand;
2765
2825
 
2766
2826
  // src/commands/TagResourceCommand.ts
2767
2827
 
2768
2828
 
2769
2829
 
2770
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2830
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2771
2831
  return [
2772
2832
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2773
2833
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2774
2834
  ];
2775
2835
  }).s("WisdomService", "TagResource", {}).n("WisdomClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
2836
+ static {
2837
+ __name(this, "TagResourceCommand");
2838
+ }
2776
2839
  };
2777
- __name(_TagResourceCommand, "TagResourceCommand");
2778
- var TagResourceCommand = _TagResourceCommand;
2779
2840
 
2780
2841
  // src/commands/UntagResourceCommand.ts
2781
2842
 
2782
2843
 
2783
2844
 
2784
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2845
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2785
2846
  return [
2786
2847
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2787
2848
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2788
2849
  ];
2789
2850
  }).s("WisdomService", "UntagResource", {}).n("WisdomClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
2851
+ static {
2852
+ __name(this, "UntagResourceCommand");
2853
+ }
2790
2854
  };
2791
- __name(_UntagResourceCommand, "UntagResourceCommand");
2792
- var UntagResourceCommand = _UntagResourceCommand;
2793
2855
 
2794
2856
  // src/commands/UpdateContentCommand.ts
2795
2857
 
2796
2858
 
2797
2859
 
2798
- var _UpdateContentCommand = class _UpdateContentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2860
+ var UpdateContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2799
2861
  return [
2800
2862
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2801
2863
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2802
2864
  ];
2803
2865
  }).s("WisdomService", "UpdateContent", {}).n("WisdomClient", "UpdateContentCommand").f(void 0, UpdateContentResponseFilterSensitiveLog).ser(se_UpdateContentCommand).de(de_UpdateContentCommand).build() {
2866
+ static {
2867
+ __name(this, "UpdateContentCommand");
2868
+ }
2804
2869
  };
2805
- __name(_UpdateContentCommand, "UpdateContentCommand");
2806
- var UpdateContentCommand = _UpdateContentCommand;
2807
2870
 
2808
2871
  // src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts
2809
2872
 
2810
2873
 
2811
2874
 
2812
- var _UpdateKnowledgeBaseTemplateUriCommand = class _UpdateKnowledgeBaseTemplateUriCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2875
+ var UpdateKnowledgeBaseTemplateUriCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2813
2876
  return [
2814
2877
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2815
2878
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2816
2879
  ];
2817
2880
  }).s("WisdomService", "UpdateKnowledgeBaseTemplateUri", {}).n("WisdomClient", "UpdateKnowledgeBaseTemplateUriCommand").f(void 0, void 0).ser(se_UpdateKnowledgeBaseTemplateUriCommand).de(de_UpdateKnowledgeBaseTemplateUriCommand).build() {
2881
+ static {
2882
+ __name(this, "UpdateKnowledgeBaseTemplateUriCommand");
2883
+ }
2818
2884
  };
2819
- __name(_UpdateKnowledgeBaseTemplateUriCommand, "UpdateKnowledgeBaseTemplateUriCommand");
2820
- var UpdateKnowledgeBaseTemplateUriCommand = _UpdateKnowledgeBaseTemplateUriCommand;
2821
2885
 
2822
2886
  // src/commands/UpdateQuickResponseCommand.ts
2823
2887
 
2824
2888
 
2825
2889
 
2826
- var _UpdateQuickResponseCommand = class _UpdateQuickResponseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2890
+ var UpdateQuickResponseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2827
2891
  return [
2828
2892
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2829
2893
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2830
2894
  ];
2831
2895
  }).s("WisdomService", "UpdateQuickResponse", {}).n("WisdomClient", "UpdateQuickResponseCommand").f(UpdateQuickResponseRequestFilterSensitiveLog, UpdateQuickResponseResponseFilterSensitiveLog).ser(se_UpdateQuickResponseCommand).de(de_UpdateQuickResponseCommand).build() {
2896
+ static {
2897
+ __name(this, "UpdateQuickResponseCommand");
2898
+ }
2832
2899
  };
2833
- __name(_UpdateQuickResponseCommand, "UpdateQuickResponseCommand");
2834
- var UpdateQuickResponseCommand = _UpdateQuickResponseCommand;
2835
2900
 
2836
2901
  // src/Wisdom.ts
2837
2902
  var commands = {
@@ -2877,10 +2942,11 @@ var commands = {
2877
2942
  UpdateKnowledgeBaseTemplateUriCommand,
2878
2943
  UpdateQuickResponseCommand
2879
2944
  };
2880
- var _Wisdom = class _Wisdom extends WisdomClient {
2945
+ var Wisdom = class extends WisdomClient {
2946
+ static {
2947
+ __name(this, "Wisdom");
2948
+ }
2881
2949
  };
2882
- __name(_Wisdom, "Wisdom");
2883
- var Wisdom = _Wisdom;
2884
2950
  (0, import_smithy_client.createAggregatedClient)(commands, Wisdom);
2885
2951
 
2886
2952
  // src/pagination/ListAssistantAssociationsPaginator.ts