@@ -3,6 +3,11 @@ import { createAggregatedClient } from "@smithy/smithy-client";
3
3
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types" ;
4
4
5
5
import { BedrockAgentClient , BedrockAgentClientConfig } from "./BedrockAgentClient" ;
6
+ import {
7
+ AssociateAgentCollaboratorCommand ,
8
+ AssociateAgentCollaboratorCommandInput ,
9
+ AssociateAgentCollaboratorCommandOutput ,
10
+ } from "./commands/AssociateAgentCollaboratorCommand" ;
6
11
import {
7
12
AssociateAgentKnowledgeBaseCommand ,
8
13
AssociateAgentKnowledgeBaseCommandInput ,
@@ -97,6 +102,11 @@ import {
97
102
DeletePromptCommandInput ,
98
103
DeletePromptCommandOutput ,
99
104
} from "./commands/DeletePromptCommand" ;
105
+ import {
106
+ DisassociateAgentCollaboratorCommand ,
107
+ DisassociateAgentCollaboratorCommandInput ,
108
+ DisassociateAgentCollaboratorCommandOutput ,
109
+ } from "./commands/DisassociateAgentCollaboratorCommand" ;
100
110
import {
101
111
DisassociateAgentKnowledgeBaseCommand ,
102
112
DisassociateAgentKnowledgeBaseCommandInput ,
@@ -112,6 +122,11 @@ import {
112
122
GetAgentAliasCommandInput ,
113
123
GetAgentAliasCommandOutput ,
114
124
} from "./commands/GetAgentAliasCommand" ;
125
+ import {
126
+ GetAgentCollaboratorCommand ,
127
+ GetAgentCollaboratorCommandInput ,
128
+ GetAgentCollaboratorCommandOutput ,
129
+ } from "./commands/GetAgentCollaboratorCommand" ;
115
130
import { GetAgentCommand , GetAgentCommandInput , GetAgentCommandOutput } from "./commands/GetAgentCommand" ;
116
131
import {
117
132
GetAgentKnowledgeBaseCommand ,
@@ -170,6 +185,11 @@ import {
170
185
ListAgentAliasesCommandInput ,
171
186
ListAgentAliasesCommandOutput ,
172
187
} from "./commands/ListAgentAliasesCommand" ;
188
+ import {
189
+ ListAgentCollaboratorsCommand ,
190
+ ListAgentCollaboratorsCommandInput ,
191
+ ListAgentCollaboratorsCommandOutput ,
192
+ } from "./commands/ListAgentCollaboratorsCommand" ;
173
193
import {
174
194
ListAgentKnowledgeBasesCommand ,
175
195
ListAgentKnowledgeBasesCommandInput ,
@@ -250,6 +270,11 @@ import {
250
270
UpdateAgentAliasCommandInput ,
251
271
UpdateAgentAliasCommandOutput ,
252
272
} from "./commands/UpdateAgentAliasCommand" ;
273
+ import {
274
+ UpdateAgentCollaboratorCommand ,
275
+ UpdateAgentCollaboratorCommandInput ,
276
+ UpdateAgentCollaboratorCommandOutput ,
277
+ } from "./commands/UpdateAgentCollaboratorCommand" ;
253
278
import { UpdateAgentCommand , UpdateAgentCommandInput , UpdateAgentCommandOutput } from "./commands/UpdateAgentCommand" ;
254
279
import {
255
280
UpdateAgentKnowledgeBaseCommand ,
@@ -284,6 +309,7 @@ import {
284
309
} from "./commands/ValidateFlowDefinitionCommand" ;
285
310
286
311
const commands = {
312
+ AssociateAgentCollaboratorCommand,
287
313
AssociateAgentKnowledgeBaseCommand,
288
314
CreateAgentCommand,
289
315
CreateAgentActionGroupCommand,
@@ -306,10 +332,12 @@ const commands = {
306
332
DeleteKnowledgeBaseCommand,
307
333
DeleteKnowledgeBaseDocumentsCommand,
308
334
DeletePromptCommand,
335
+ DisassociateAgentCollaboratorCommand,
309
336
DisassociateAgentKnowledgeBaseCommand,
310
337
GetAgentCommand,
311
338
GetAgentActionGroupCommand,
312
339
GetAgentAliasCommand,
340
+ GetAgentCollaboratorCommand,
313
341
GetAgentKnowledgeBaseCommand,
314
342
GetAgentVersionCommand,
315
343
GetDataSourceCommand,
@@ -323,6 +351,7 @@ const commands = {
323
351
IngestKnowledgeBaseDocumentsCommand,
324
352
ListAgentActionGroupsCommand,
325
353
ListAgentAliasesCommand,
354
+ ListAgentCollaboratorsCommand,
326
355
ListAgentKnowledgeBasesCommand,
327
356
ListAgentsCommand,
328
357
ListAgentVersionsCommand,
@@ -344,6 +373,7 @@ const commands = {
344
373
UpdateAgentCommand,
345
374
UpdateAgentActionGroupCommand,
346
375
UpdateAgentAliasCommand,
376
+ UpdateAgentCollaboratorCommand,
347
377
UpdateAgentKnowledgeBaseCommand,
348
378
UpdateDataSourceCommand,
349
379
UpdateFlowCommand,
@@ -354,6 +384,23 @@ const commands = {
354
384
} ;
355
385
356
386
export interface BedrockAgent {
387
+ /**
388
+ * @see {@link AssociateAgentCollaboratorCommand }
389
+ */
390
+ associateAgentCollaborator (
391
+ args : AssociateAgentCollaboratorCommandInput ,
392
+ options ?: __HttpHandlerOptions
393
+ ) : Promise < AssociateAgentCollaboratorCommandOutput > ;
394
+ associateAgentCollaborator (
395
+ args : AssociateAgentCollaboratorCommandInput ,
396
+ cb : ( err : any , data ?: AssociateAgentCollaboratorCommandOutput ) => void
397
+ ) : void ;
398
+ associateAgentCollaborator (
399
+ args : AssociateAgentCollaboratorCommandInput ,
400
+ options : __HttpHandlerOptions ,
401
+ cb : ( err : any , data ?: AssociateAgentCollaboratorCommandOutput ) => void
402
+ ) : void ;
403
+
357
404
/**
358
405
* @see {@link AssociateAgentKnowledgeBaseCommand }
359
406
*/
@@ -686,6 +733,23 @@ export interface BedrockAgent {
686
733
cb : ( err : any , data ?: DeletePromptCommandOutput ) => void
687
734
) : void ;
688
735
736
+ /**
737
+ * @see {@link DisassociateAgentCollaboratorCommand }
738
+ */
739
+ disassociateAgentCollaborator (
740
+ args : DisassociateAgentCollaboratorCommandInput ,
741
+ options ?: __HttpHandlerOptions
742
+ ) : Promise < DisassociateAgentCollaboratorCommandOutput > ;
743
+ disassociateAgentCollaborator (
744
+ args : DisassociateAgentCollaboratorCommandInput ,
745
+ cb : ( err : any , data ?: DisassociateAgentCollaboratorCommandOutput ) => void
746
+ ) : void ;
747
+ disassociateAgentCollaborator (
748
+ args : DisassociateAgentCollaboratorCommandInput ,
749
+ options : __HttpHandlerOptions ,
750
+ cb : ( err : any , data ?: DisassociateAgentCollaboratorCommandOutput ) => void
751
+ ) : void ;
752
+
689
753
/**
690
754
* @see {@link DisassociateAgentKnowledgeBaseCommand }
691
755
*/
@@ -742,6 +806,23 @@ export interface BedrockAgent {
742
806
cb : ( err : any , data ?: GetAgentAliasCommandOutput ) => void
743
807
) : void ;
744
808
809
+ /**
810
+ * @see {@link GetAgentCollaboratorCommand }
811
+ */
812
+ getAgentCollaborator (
813
+ args : GetAgentCollaboratorCommandInput ,
814
+ options ?: __HttpHandlerOptions
815
+ ) : Promise < GetAgentCollaboratorCommandOutput > ;
816
+ getAgentCollaborator (
817
+ args : GetAgentCollaboratorCommandInput ,
818
+ cb : ( err : any , data ?: GetAgentCollaboratorCommandOutput ) => void
819
+ ) : void ;
820
+ getAgentCollaborator (
821
+ args : GetAgentCollaboratorCommandInput ,
822
+ options : __HttpHandlerOptions ,
823
+ cb : ( err : any , data ?: GetAgentCollaboratorCommandOutput ) => void
824
+ ) : void ;
825
+
745
826
/**
746
827
* @see {@link GetAgentKnowledgeBaseCommand }
747
828
*/
@@ -930,6 +1011,23 @@ export interface BedrockAgent {
930
1011
cb : ( err : any , data ?: ListAgentAliasesCommandOutput ) => void
931
1012
) : void ;
932
1013
1014
+ /**
1015
+ * @see {@link ListAgentCollaboratorsCommand }
1016
+ */
1017
+ listAgentCollaborators (
1018
+ args : ListAgentCollaboratorsCommandInput ,
1019
+ options ?: __HttpHandlerOptions
1020
+ ) : Promise < ListAgentCollaboratorsCommandOutput > ;
1021
+ listAgentCollaborators (
1022
+ args : ListAgentCollaboratorsCommandInput ,
1023
+ cb : ( err : any , data ?: ListAgentCollaboratorsCommandOutput ) => void
1024
+ ) : void ;
1025
+ listAgentCollaborators (
1026
+ args : ListAgentCollaboratorsCommandInput ,
1027
+ options : __HttpHandlerOptions ,
1028
+ cb : ( err : any , data ?: ListAgentCollaboratorsCommandOutput ) => void
1029
+ ) : void ;
1030
+
933
1031
/**
934
1032
* @see {@link ListAgentKnowledgeBasesCommand }
935
1033
*/
@@ -1237,6 +1335,23 @@ export interface BedrockAgent {
1237
1335
cb : ( err : any , data ?: UpdateAgentAliasCommandOutput ) => void
1238
1336
) : void ;
1239
1337
1338
+ /**
1339
+ * @see {@link UpdateAgentCollaboratorCommand }
1340
+ */
1341
+ updateAgentCollaborator (
1342
+ args : UpdateAgentCollaboratorCommandInput ,
1343
+ options ?: __HttpHandlerOptions
1344
+ ) : Promise < UpdateAgentCollaboratorCommandOutput > ;
1345
+ updateAgentCollaborator (
1346
+ args : UpdateAgentCollaboratorCommandInput ,
1347
+ cb : ( err : any , data ?: UpdateAgentCollaboratorCommandOutput ) => void
1348
+ ) : void ;
1349
+ updateAgentCollaborator (
1350
+ args : UpdateAgentCollaboratorCommandInput ,
1351
+ options : __HttpHandlerOptions ,
1352
+ cb : ( err : any , data ?: UpdateAgentCollaboratorCommandOutput ) => void
1353
+ ) : void ;
1354
+
1240
1355
/**
1241
1356
* @see {@link UpdateAgentKnowledgeBaseCommand }
1242
1357
*/
0 commit comments