@@ -73,6 +73,9 @@ import {
7373 DeletePromptCommand ,
7474 type DeletePromptCommandInput ,
7575 type DeletePromptCommandOutput ,
76+ DeleteResourcePolicyCommand ,
77+ type DeleteResourcePolicyCommandInput ,
78+ type DeleteResourcePolicyCommandOutput ,
7679 DisassociateAgentCollaboratorCommand ,
7780 type DisassociateAgentCollaboratorCommandInput ,
7881 type DisassociateAgentCollaboratorCommandOutput ,
@@ -121,6 +124,9 @@ import {
121124 GetPromptCommand ,
122125 type GetPromptCommandInput ,
123126 type GetPromptCommandOutput ,
127+ GetResourcePolicyCommand ,
128+ type GetResourcePolicyCommandInput ,
129+ type GetResourcePolicyCommandOutput ,
124130 IngestKnowledgeBaseDocumentsCommand ,
125131 type IngestKnowledgeBaseDocumentsCommandInput ,
126132 type IngestKnowledgeBaseDocumentsCommandOutput ,
@@ -189,6 +195,9 @@ import {
189195 PrepareFlowCommand ,
190196 type PrepareFlowCommandInput ,
191197 type PrepareFlowCommandOutput ,
198+ PutResourcePolicyCommand ,
199+ type PutResourcePolicyCommandInput ,
200+ type PutResourcePolicyCommandOutput ,
192201 StartIngestionJobCommand ,
193202 type StartIngestionJobCommandInput ,
194203 type StartIngestionJobCommandOutput ,
@@ -280,6 +289,7 @@ const commands = {
280289 DeleteKnowledgeBaseCommand,
281290 DeleteKnowledgeBaseDocumentsCommand,
282291 DeletePromptCommand,
292+ DeleteResourcePolicyCommand,
283293 DisassociateAgentCollaboratorCommand,
284294 DisassociateAgentKnowledgeBaseCommand,
285295 GetAgentCommand,
@@ -296,6 +306,7 @@ const commands = {
296306 GetKnowledgeBaseCommand,
297307 GetKnowledgeBaseDocumentsCommand,
298308 GetPromptCommand,
309+ GetResourcePolicyCommand,
299310 IngestKnowledgeBaseDocumentsCommand,
300311 ListAgentActionGroupsCommand,
301312 ListAgentAliasesCommand,
@@ -314,6 +325,7 @@ const commands = {
314325 ListTagsForResourceCommand,
315326 PrepareAgentCommand,
316327 PrepareFlowCommand,
328+ PutResourcePolicyCommand,
317329 StartIngestionJobCommand,
318330 StopIngestionJobCommand,
319331 TagResourceCommand,
@@ -772,6 +784,24 @@ interface BedrockAgentService$ {
772784 | ValidationError
773785 > ;
774786
787+ /**
788+ * @see {@link DeleteResourcePolicyCommand }
789+ */
790+ deleteResourcePolicy (
791+ args : DeleteResourcePolicyCommandInput ,
792+ options ?: HttpHandlerOptions ,
793+ ) : Effect . Effect <
794+ DeleteResourcePolicyCommandOutput ,
795+ | Cause . TimeoutException
796+ | SdkError
797+ | AccessDeniedError
798+ | ConflictError
799+ | InternalServerError
800+ | ResourceNotFoundError
801+ | ThrottlingError
802+ | ValidationError
803+ > ;
804+
775805 /**
776806 * @see {@link DisassociateAgentCollaboratorCommand }
777807 */
@@ -1047,6 +1077,23 @@ interface BedrockAgentService$ {
10471077 | ValidationError
10481078 > ;
10491079
1080+ /**
1081+ * @see {@link GetResourcePolicyCommand }
1082+ */
1083+ getResourcePolicy (
1084+ args : GetResourcePolicyCommandInput ,
1085+ options ?: HttpHandlerOptions ,
1086+ ) : Effect . Effect <
1087+ GetResourcePolicyCommandOutput ,
1088+ | Cause . TimeoutException
1089+ | SdkError
1090+ | AccessDeniedError
1091+ | InternalServerError
1092+ | ResourceNotFoundError
1093+ | ThrottlingError
1094+ | ValidationError
1095+ > ;
1096+
10501097 /**
10511098 * @see {@link IngestKnowledgeBaseDocumentsCommand }
10521099 */
@@ -1520,6 +1567,24 @@ interface BedrockAgentService$ {
15201567 | ValidationError
15211568 > ;
15221569
1570+ /**
1571+ * @see {@link PutResourcePolicyCommand }
1572+ */
1573+ putResourcePolicy (
1574+ args : PutResourcePolicyCommandInput ,
1575+ options ?: HttpHandlerOptions ,
1576+ ) : Effect . Effect <
1577+ PutResourcePolicyCommandOutput ,
1578+ | Cause . TimeoutException
1579+ | SdkError
1580+ | AccessDeniedError
1581+ | ConflictError
1582+ | InternalServerError
1583+ | ResourceNotFoundError
1584+ | ThrottlingError
1585+ | ValidationError
1586+ > ;
1587+
15231588 /**
15241589 * @see {@link StartIngestionJobCommand }
15251590 */
0 commit comments