@@ -12,6 +12,11 @@ import {
1212 CreateAssistantCommandInput ,
1313 CreateAssistantCommandOutput ,
1414} from "./commands/CreateAssistantCommand" ;
15+ import {
16+ CreateContentAssociationCommand ,
17+ CreateContentAssociationCommandInput ,
18+ CreateContentAssociationCommandOutput ,
19+ } from "./commands/CreateContentAssociationCommand" ;
1520import {
1621 CreateContentCommand ,
1722 CreateContentCommandInput ,
@@ -42,6 +47,11 @@ import {
4247 DeleteAssistantCommandInput ,
4348 DeleteAssistantCommandOutput ,
4449} from "./commands/DeleteAssistantCommand" ;
50+ import {
51+ DeleteContentAssociationCommand ,
52+ DeleteContentAssociationCommandInput ,
53+ DeleteContentAssociationCommandOutput ,
54+ } from "./commands/DeleteContentAssociationCommand" ;
4555import {
4656 DeleteContentCommand ,
4757 DeleteContentCommandInput ,
@@ -72,6 +82,11 @@ import {
7282 GetAssistantCommandInput ,
7383 GetAssistantCommandOutput ,
7484} from "./commands/GetAssistantCommand" ;
85+ import {
86+ GetContentAssociationCommand ,
87+ GetContentAssociationCommandInput ,
88+ GetContentAssociationCommandOutput ,
89+ } from "./commands/GetContentAssociationCommand" ;
7590import { GetContentCommand , GetContentCommandInput , GetContentCommandOutput } from "./commands/GetContentCommand" ;
7691import {
7792 GetContentSummaryCommand ,
@@ -109,6 +124,11 @@ import {
109124 ListAssistantsCommandInput ,
110125 ListAssistantsCommandOutput ,
111126} from "./commands/ListAssistantsCommand" ;
127+ import {
128+ ListContentAssociationsCommand ,
129+ ListContentAssociationsCommandInput ,
130+ ListContentAssociationsCommandOutput ,
131+ } from "./commands/ListContentAssociationsCommand" ;
112132import {
113133 ListContentsCommand ,
114134 ListContentsCommandInput ,
@@ -207,18 +227,21 @@ const commands = {
207227 CreateAssistantCommand,
208228 CreateAssistantAssociationCommand,
209229 CreateContentCommand,
230+ CreateContentAssociationCommand,
210231 CreateKnowledgeBaseCommand,
211232 CreateQuickResponseCommand,
212233 CreateSessionCommand,
213234 DeleteAssistantCommand,
214235 DeleteAssistantAssociationCommand,
215236 DeleteContentCommand,
237+ DeleteContentAssociationCommand,
216238 DeleteImportJobCommand,
217239 DeleteKnowledgeBaseCommand,
218240 DeleteQuickResponseCommand,
219241 GetAssistantCommand,
220242 GetAssistantAssociationCommand,
221243 GetContentCommand,
244+ GetContentAssociationCommand,
222245 GetContentSummaryCommand,
223246 GetImportJobCommand,
224247 GetKnowledgeBaseCommand,
@@ -227,6 +250,7 @@ const commands = {
227250 GetSessionCommand,
228251 ListAssistantAssociationsCommand,
229252 ListAssistantsCommand,
253+ ListContentAssociationsCommand,
230254 ListContentsCommand,
231255 ListImportJobsCommand,
232256 ListKnowledgeBasesCommand,
@@ -292,6 +316,23 @@ export interface QConnect {
292316 cb : ( err : any , data ?: CreateContentCommandOutput ) => void
293317 ) : void ;
294318
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+
295336 /**
296337 * @see {@link CreateKnowledgeBaseCommand }
297338 */
@@ -379,6 +420,23 @@ export interface QConnect {
379420 cb : ( err : any , data ?: DeleteContentCommandOutput ) => void
380421 ) : void ;
381422
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+
382440 /**
383441 * @see {@link DeleteImportJobCommand }
384442 */
@@ -466,6 +524,23 @@ export interface QConnect {
466524 cb : ( err : any , data ?: GetContentCommandOutput ) => void
467525 ) : void ;
468526
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+
469544 /**
470545 * @see {@link GetContentSummaryCommand }
471546 */
@@ -588,6 +663,23 @@ export interface QConnect {
588663 cb : ( err : any , data ?: ListAssistantsCommandOutput ) => void
589664 ) : void ;
590665
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+
591683 /**
592684 * @see {@link ListContentsCommand }
593685 */
0 commit comments