@@ -87,6 +87,11 @@ import {
87
87
DeleteKnowledgeBaseCommandInput ,
88
88
DeleteKnowledgeBaseCommandOutput ,
89
89
} from "./commands/DeleteKnowledgeBaseCommand" ;
90
+ import {
91
+ DeleteKnowledgeBaseDocumentsCommand ,
92
+ DeleteKnowledgeBaseDocumentsCommandInput ,
93
+ DeleteKnowledgeBaseDocumentsCommandOutput ,
94
+ } from "./commands/DeleteKnowledgeBaseDocumentsCommand" ;
90
95
import {
91
96
DeletePromptCommand ,
92
97
DeletePromptCommandInput ,
@@ -144,7 +149,17 @@ import {
144
149
GetKnowledgeBaseCommandInput ,
145
150
GetKnowledgeBaseCommandOutput ,
146
151
} from "./commands/GetKnowledgeBaseCommand" ;
152
+ import {
153
+ GetKnowledgeBaseDocumentsCommand ,
154
+ GetKnowledgeBaseDocumentsCommandInput ,
155
+ GetKnowledgeBaseDocumentsCommandOutput ,
156
+ } from "./commands/GetKnowledgeBaseDocumentsCommand" ;
147
157
import { GetPromptCommand , GetPromptCommandInput , GetPromptCommandOutput } from "./commands/GetPromptCommand" ;
158
+ import {
159
+ IngestKnowledgeBaseDocumentsCommand ,
160
+ IngestKnowledgeBaseDocumentsCommandInput ,
161
+ IngestKnowledgeBaseDocumentsCommandOutput ,
162
+ } from "./commands/IngestKnowledgeBaseDocumentsCommand" ;
148
163
import {
149
164
ListAgentActionGroupsCommand ,
150
165
ListAgentActionGroupsCommandInput ,
@@ -187,6 +202,11 @@ import {
187
202
ListIngestionJobsCommandInput ,
188
203
ListIngestionJobsCommandOutput ,
189
204
} from "./commands/ListIngestionJobsCommand" ;
205
+ import {
206
+ ListKnowledgeBaseDocumentsCommand ,
207
+ ListKnowledgeBaseDocumentsCommandInput ,
208
+ ListKnowledgeBaseDocumentsCommandOutput ,
209
+ } from "./commands/ListKnowledgeBaseDocumentsCommand" ;
190
210
import {
191
211
ListKnowledgeBasesCommand ,
192
212
ListKnowledgeBasesCommandInput ,
@@ -284,6 +304,7 @@ const commands = {
284
304
DeleteFlowAliasCommand,
285
305
DeleteFlowVersionCommand,
286
306
DeleteKnowledgeBaseCommand,
307
+ DeleteKnowledgeBaseDocumentsCommand,
287
308
DeletePromptCommand,
288
309
DisassociateAgentKnowledgeBaseCommand,
289
310
GetAgentCommand,
@@ -297,7 +318,9 @@ const commands = {
297
318
GetFlowVersionCommand,
298
319
GetIngestionJobCommand,
299
320
GetKnowledgeBaseCommand,
321
+ GetKnowledgeBaseDocumentsCommand,
300
322
GetPromptCommand,
323
+ IngestKnowledgeBaseDocumentsCommand,
301
324
ListAgentActionGroupsCommand,
302
325
ListAgentAliasesCommand,
303
326
ListAgentKnowledgeBasesCommand,
@@ -308,6 +331,7 @@ const commands = {
308
331
ListFlowsCommand,
309
332
ListFlowVersionsCommand,
310
333
ListIngestionJobsCommand,
334
+ ListKnowledgeBaseDocumentsCommand,
311
335
ListKnowledgeBasesCommand,
312
336
ListPromptsCommand,
313
337
ListTagsForResourceCommand,
@@ -634,6 +658,23 @@ export interface BedrockAgent {
634
658
cb : ( err : any , data ?: DeleteKnowledgeBaseCommandOutput ) => void
635
659
) : void ;
636
660
661
+ /**
662
+ * @see {@link DeleteKnowledgeBaseDocumentsCommand }
663
+ */
664
+ deleteKnowledgeBaseDocuments (
665
+ args : DeleteKnowledgeBaseDocumentsCommandInput ,
666
+ options ?: __HttpHandlerOptions
667
+ ) : Promise < DeleteKnowledgeBaseDocumentsCommandOutput > ;
668
+ deleteKnowledgeBaseDocuments (
669
+ args : DeleteKnowledgeBaseDocumentsCommandInput ,
670
+ cb : ( err : any , data ?: DeleteKnowledgeBaseDocumentsCommandOutput ) => void
671
+ ) : void ;
672
+ deleteKnowledgeBaseDocuments (
673
+ args : DeleteKnowledgeBaseDocumentsCommandInput ,
674
+ options : __HttpHandlerOptions ,
675
+ cb : ( err : any , data ?: DeleteKnowledgeBaseDocumentsCommandOutput ) => void
676
+ ) : void ;
677
+
637
678
/**
638
679
* @see {@link DeletePromptCommand }
639
680
*/
@@ -810,6 +851,23 @@ export interface BedrockAgent {
810
851
cb : ( err : any , data ?: GetKnowledgeBaseCommandOutput ) => void
811
852
) : void ;
812
853
854
+ /**
855
+ * @see {@link GetKnowledgeBaseDocumentsCommand }
856
+ */
857
+ getKnowledgeBaseDocuments (
858
+ args : GetKnowledgeBaseDocumentsCommandInput ,
859
+ options ?: __HttpHandlerOptions
860
+ ) : Promise < GetKnowledgeBaseDocumentsCommandOutput > ;
861
+ getKnowledgeBaseDocuments (
862
+ args : GetKnowledgeBaseDocumentsCommandInput ,
863
+ cb : ( err : any , data ?: GetKnowledgeBaseDocumentsCommandOutput ) => void
864
+ ) : void ;
865
+ getKnowledgeBaseDocuments (
866
+ args : GetKnowledgeBaseDocumentsCommandInput ,
867
+ options : __HttpHandlerOptions ,
868
+ cb : ( err : any , data ?: GetKnowledgeBaseDocumentsCommandOutput ) => void
869
+ ) : void ;
870
+
813
871
/**
814
872
* @see {@link GetPromptCommand }
815
873
*/
@@ -821,6 +879,23 @@ export interface BedrockAgent {
821
879
cb : ( err : any , data ?: GetPromptCommandOutput ) => void
822
880
) : void ;
823
881
882
+ /**
883
+ * @see {@link IngestKnowledgeBaseDocumentsCommand }
884
+ */
885
+ ingestKnowledgeBaseDocuments (
886
+ args : IngestKnowledgeBaseDocumentsCommandInput ,
887
+ options ?: __HttpHandlerOptions
888
+ ) : Promise < IngestKnowledgeBaseDocumentsCommandOutput > ;
889
+ ingestKnowledgeBaseDocuments (
890
+ args : IngestKnowledgeBaseDocumentsCommandInput ,
891
+ cb : ( err : any , data ?: IngestKnowledgeBaseDocumentsCommandOutput ) => void
892
+ ) : void ;
893
+ ingestKnowledgeBaseDocuments (
894
+ args : IngestKnowledgeBaseDocumentsCommandInput ,
895
+ options : __HttpHandlerOptions ,
896
+ cb : ( err : any , data ?: IngestKnowledgeBaseDocumentsCommandOutput ) => void
897
+ ) : void ;
898
+
824
899
/**
825
900
* @see {@link ListAgentActionGroupsCommand }
826
901
*/
@@ -975,6 +1050,23 @@ export interface BedrockAgent {
975
1050
cb : ( err : any , data ?: ListIngestionJobsCommandOutput ) => void
976
1051
) : void ;
977
1052
1053
+ /**
1054
+ * @see {@link ListKnowledgeBaseDocumentsCommand }
1055
+ */
1056
+ listKnowledgeBaseDocuments (
1057
+ args : ListKnowledgeBaseDocumentsCommandInput ,
1058
+ options ?: __HttpHandlerOptions
1059
+ ) : Promise < ListKnowledgeBaseDocumentsCommandOutput > ;
1060
+ listKnowledgeBaseDocuments (
1061
+ args : ListKnowledgeBaseDocumentsCommandInput ,
1062
+ cb : ( err : any , data ?: ListKnowledgeBaseDocumentsCommandOutput ) => void
1063
+ ) : void ;
1064
+ listKnowledgeBaseDocuments (
1065
+ args : ListKnowledgeBaseDocumentsCommandInput ,
1066
+ options : __HttpHandlerOptions ,
1067
+ cb : ( err : any , data ?: ListKnowledgeBaseDocumentsCommandOutput ) => void
1068
+ ) : void ;
1069
+
978
1070
/**
979
1071
* @see {@link ListKnowledgeBasesCommand }
980
1072
*/
0 commit comments