@@ -12,6 +12,11 @@ import {
12
12
CreateAssistantCommandInput ,
13
13
CreateAssistantCommandOutput ,
14
14
} from "./commands/CreateAssistantCommand" ;
15
+ import {
16
+ CreateContentAssociationCommand ,
17
+ CreateContentAssociationCommandInput ,
18
+ CreateContentAssociationCommandOutput ,
19
+ } from "./commands/CreateContentAssociationCommand" ;
15
20
import {
16
21
CreateContentCommand ,
17
22
CreateContentCommandInput ,
@@ -42,6 +47,11 @@ import {
42
47
DeleteAssistantCommandInput ,
43
48
DeleteAssistantCommandOutput ,
44
49
} from "./commands/DeleteAssistantCommand" ;
50
+ import {
51
+ DeleteContentAssociationCommand ,
52
+ DeleteContentAssociationCommandInput ,
53
+ DeleteContentAssociationCommandOutput ,
54
+ } from "./commands/DeleteContentAssociationCommand" ;
45
55
import {
46
56
DeleteContentCommand ,
47
57
DeleteContentCommandInput ,
@@ -72,6 +82,11 @@ import {
72
82
GetAssistantCommandInput ,
73
83
GetAssistantCommandOutput ,
74
84
} from "./commands/GetAssistantCommand" ;
85
+ import {
86
+ GetContentAssociationCommand ,
87
+ GetContentAssociationCommandInput ,
88
+ GetContentAssociationCommandOutput ,
89
+ } from "./commands/GetContentAssociationCommand" ;
75
90
import { GetContentCommand , GetContentCommandInput , GetContentCommandOutput } from "./commands/GetContentCommand" ;
76
91
import {
77
92
GetContentSummaryCommand ,
@@ -109,6 +124,11 @@ import {
109
124
ListAssistantsCommandInput ,
110
125
ListAssistantsCommandOutput ,
111
126
} from "./commands/ListAssistantsCommand" ;
127
+ import {
128
+ ListContentAssociationsCommand ,
129
+ ListContentAssociationsCommandInput ,
130
+ ListContentAssociationsCommandOutput ,
131
+ } from "./commands/ListContentAssociationsCommand" ;
112
132
import {
113
133
ListContentsCommand ,
114
134
ListContentsCommandInput ,
@@ -207,18 +227,21 @@ const commands = {
207
227
CreateAssistantCommand,
208
228
CreateAssistantAssociationCommand,
209
229
CreateContentCommand,
230
+ CreateContentAssociationCommand,
210
231
CreateKnowledgeBaseCommand,
211
232
CreateQuickResponseCommand,
212
233
CreateSessionCommand,
213
234
DeleteAssistantCommand,
214
235
DeleteAssistantAssociationCommand,
215
236
DeleteContentCommand,
237
+ DeleteContentAssociationCommand,
216
238
DeleteImportJobCommand,
217
239
DeleteKnowledgeBaseCommand,
218
240
DeleteQuickResponseCommand,
219
241
GetAssistantCommand,
220
242
GetAssistantAssociationCommand,
221
243
GetContentCommand,
244
+ GetContentAssociationCommand,
222
245
GetContentSummaryCommand,
223
246
GetImportJobCommand,
224
247
GetKnowledgeBaseCommand,
@@ -227,6 +250,7 @@ const commands = {
227
250
GetSessionCommand,
228
251
ListAssistantAssociationsCommand,
229
252
ListAssistantsCommand,
253
+ ListContentAssociationsCommand,
230
254
ListContentsCommand,
231
255
ListImportJobsCommand,
232
256
ListKnowledgeBasesCommand,
@@ -292,6 +316,23 @@ export interface QConnect {
292
316
cb : ( err : any , data ?: CreateContentCommandOutput ) => void
293
317
) : void ;
294
318
319
+ /**
320
+ * @see {@link CreateContentAssociationCommand }
321
+ */
322
+ createContentAssociation (
323
+ args : CreateContentAssociationCommandInput ,
324
+ options ?: __HttpHandlerOptions
325
+ ) : Promise < CreateContentAssociationCommandOutput > ;
326
+ createContentAssociation (
327
+ args : CreateContentAssociationCommandInput ,
328
+ cb : ( err : any , data ?: CreateContentAssociationCommandOutput ) => void
329
+ ) : void ;
330
+ createContentAssociation (
331
+ args : CreateContentAssociationCommandInput ,
332
+ options : __HttpHandlerOptions ,
333
+ cb : ( err : any , data ?: CreateContentAssociationCommandOutput ) => void
334
+ ) : void ;
335
+
295
336
/**
296
337
* @see {@link CreateKnowledgeBaseCommand }
297
338
*/
@@ -379,6 +420,23 @@ export interface QConnect {
379
420
cb : ( err : any , data ?: DeleteContentCommandOutput ) => void
380
421
) : void ;
381
422
423
+ /**
424
+ * @see {@link DeleteContentAssociationCommand }
425
+ */
426
+ deleteContentAssociation (
427
+ args : DeleteContentAssociationCommandInput ,
428
+ options ?: __HttpHandlerOptions
429
+ ) : Promise < DeleteContentAssociationCommandOutput > ;
430
+ deleteContentAssociation (
431
+ args : DeleteContentAssociationCommandInput ,
432
+ cb : ( err : any , data ?: DeleteContentAssociationCommandOutput ) => void
433
+ ) : void ;
434
+ deleteContentAssociation (
435
+ args : DeleteContentAssociationCommandInput ,
436
+ options : __HttpHandlerOptions ,
437
+ cb : ( err : any , data ?: DeleteContentAssociationCommandOutput ) => void
438
+ ) : void ;
439
+
382
440
/**
383
441
* @see {@link DeleteImportJobCommand }
384
442
*/
@@ -466,6 +524,23 @@ export interface QConnect {
466
524
cb : ( err : any , data ?: GetContentCommandOutput ) => void
467
525
) : void ;
468
526
527
+ /**
528
+ * @see {@link GetContentAssociationCommand }
529
+ */
530
+ getContentAssociation (
531
+ args : GetContentAssociationCommandInput ,
532
+ options ?: __HttpHandlerOptions
533
+ ) : Promise < GetContentAssociationCommandOutput > ;
534
+ getContentAssociation (
535
+ args : GetContentAssociationCommandInput ,
536
+ cb : ( err : any , data ?: GetContentAssociationCommandOutput ) => void
537
+ ) : void ;
538
+ getContentAssociation (
539
+ args : GetContentAssociationCommandInput ,
540
+ options : __HttpHandlerOptions ,
541
+ cb : ( err : any , data ?: GetContentAssociationCommandOutput ) => void
542
+ ) : void ;
543
+
469
544
/**
470
545
* @see {@link GetContentSummaryCommand }
471
546
*/
@@ -588,6 +663,23 @@ export interface QConnect {
588
663
cb : ( err : any , data ?: ListAssistantsCommandOutput ) => void
589
664
) : void ;
590
665
666
+ /**
667
+ * @see {@link ListContentAssociationsCommand }
668
+ */
669
+ listContentAssociations (
670
+ args : ListContentAssociationsCommandInput ,
671
+ options ?: __HttpHandlerOptions
672
+ ) : Promise < ListContentAssociationsCommandOutput > ;
673
+ listContentAssociations (
674
+ args : ListContentAssociationsCommandInput ,
675
+ cb : ( err : any , data ?: ListContentAssociationsCommandOutput ) => void
676
+ ) : void ;
677
+ listContentAssociations (
678
+ args : ListContentAssociationsCommandInput ,
679
+ options : __HttpHandlerOptions ,
680
+ cb : ( err : any , data ?: ListContentAssociationsCommandOutput ) => void
681
+ ) : void ;
682
+
591
683
/**
592
684
* @see {@link ListContentsCommand }
593
685
*/
0 commit comments