@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.946.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (242) hide show
  1. package/README.md +216 -0
  2. package/dist-cjs/index.js +2060 -545
  3. package/dist-cjs/runtimeConfig.browser.js +2 -2
  4. package/dist-cjs/runtimeConfig.js +3 -4
  5. package/dist-es/BedrockAgentCoreControl.js +54 -0
  6. package/dist-es/BedrockAgentCoreControlClient.js +2 -2
  7. package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
  8. package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
  9. package/dist-es/commands/CreatePolicyCommand.js +16 -0
  10. package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
  11. package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
  12. package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
  13. package/dist-es/commands/DeletePolicyCommand.js +16 -0
  14. package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
  15. package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
  16. package/dist-es/commands/GetEvaluatorCommand.js +16 -0
  17. package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
  18. package/dist-es/commands/GetPolicyCommand.js +16 -0
  19. package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
  20. package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
  21. package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
  22. package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
  23. package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
  24. package/dist-es/commands/ListPoliciesCommand.js +16 -0
  25. package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
  26. package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
  27. package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
  28. package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
  29. package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
  30. package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
  31. package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
  32. package/dist-es/commands/UpdatePolicyCommand.js +16 -0
  33. package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
  34. package/dist-es/commands/index.js +27 -0
  35. package/dist-es/models/enums.js +104 -0
  36. package/dist-es/models/models_1.js +1 -0
  37. package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
  38. package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
  39. package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
  40. package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
  41. package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
  42. package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
  43. package/dist-es/pagination/index.js +6 -0
  44. package/dist-es/runtimeConfig.browser.js +2 -2
  45. package/dist-es/runtimeConfig.js +2 -3
  46. package/dist-es/schemas/schemas_0.js +1276 -535
  47. package/dist-es/waiters/index.js +5 -0
  48. package/dist-es/waiters/waitForPolicyActive.js +58 -0
  49. package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
  50. package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
  51. package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
  52. package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
  53. package/dist-types/BedrockAgentCoreControl.d.ts +193 -1
  54. package/dist-types/BedrockAgentCoreControlClient.d.ts +39 -12
  55. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  56. package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
  57. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +21 -3
  58. package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +3 -3
  59. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -3
  60. package/dist-types/commands/CreateBrowserCommand.d.ts +3 -3
  61. package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +3 -3
  62. package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
  63. package/dist-types/commands/CreateGatewayCommand.d.ts +47 -3
  64. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +51 -3
  65. package/dist-types/commands/CreateMemoryCommand.d.ts +55 -8
  66. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +3 -3
  67. package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
  68. package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
  69. package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
  70. package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -3
  71. package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -3
  72. package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +3 -3
  73. package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +3 -3
  74. package/dist-types/commands/DeleteBrowserCommand.d.ts +3 -3
  75. package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +3 -3
  76. package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
  77. package/dist-types/commands/DeleteGatewayCommand.d.ts +3 -3
  78. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +3 -3
  79. package/dist-types/commands/DeleteMemoryCommand.d.ts +6 -3
  80. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -3
  81. package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
  82. package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
  83. package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
  84. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
  85. package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +3 -3
  86. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +22 -3
  87. package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +3 -3
  88. package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +3 -3
  89. package/dist-types/commands/GetBrowserCommand.d.ts +3 -3
  90. package/dist-types/commands/GetCodeInterpreterCommand.d.ts +3 -3
  91. package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
  92. package/dist-types/commands/GetGatewayCommand.d.ts +25 -3
  93. package/dist-types/commands/GetGatewayTargetCommand.d.ts +28 -3
  94. package/dist-types/commands/GetMemoryCommand.d.ts +30 -8
  95. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +3 -3
  96. package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
  97. package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
  98. package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
  99. package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
  100. package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
  101. package/dist-types/commands/GetTokenVaultCommand.d.ts +3 -3
  102. package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +3 -3
  103. package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +3 -3
  104. package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +3 -3
  105. package/dist-types/commands/ListAgentRuntimesCommand.d.ts +3 -3
  106. package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +3 -3
  107. package/dist-types/commands/ListBrowsersCommand.d.ts +3 -3
  108. package/dist-types/commands/ListCodeInterpretersCommand.d.ts +3 -3
  109. package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
  110. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +3 -3
  111. package/dist-types/commands/ListGatewaysCommand.d.ts +3 -3
  112. package/dist-types/commands/ListMemoriesCommand.d.ts +3 -3
  113. package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +3 -3
  114. package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
  115. package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
  116. package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
  117. package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
  118. package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
  119. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
  120. package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +3 -3
  121. package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
  122. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +3 -3
  123. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
  124. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +28 -3
  125. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  126. package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
  127. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +21 -3
  128. package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +3 -3
  129. package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +3 -3
  130. package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
  131. package/dist-types/commands/UpdateGatewayCommand.d.ts +47 -3
  132. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +51 -3
  133. package/dist-types/commands/UpdateMemoryCommand.d.ts +76 -11
  134. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +3 -3
  135. package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
  136. package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
  137. package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
  138. package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +3 -3
  139. package/dist-types/commands/index.d.ts +27 -0
  140. package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  141. package/dist-types/endpoint/endpointResolver.d.ts +5 -2
  142. package/dist-types/extensionConfiguration.d.ts +4 -4
  143. package/dist-types/index.d.ts +1 -0
  144. package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
  145. package/dist-types/models/enums.d.ts +232 -0
  146. package/dist-types/models/errors.d.ts +1 -1
  147. package/dist-types/models/models_0.d.ts +4160 -2169
  148. package/dist-types/models/models_1.d.ts +1009 -0
  149. package/dist-types/pagination/Interfaces.d.ts +1 -1
  150. package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +1 -1
  151. package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +1 -1
  152. package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +1 -1
  153. package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +1 -1
  154. package/dist-types/pagination/ListBrowsersPaginator.d.ts +1 -1
  155. package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +1 -1
  156. package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +1 -1
  158. package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
  159. package/dist-types/pagination/ListMemoriesPaginator.d.ts +1 -1
  160. package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +1 -1
  161. package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
  162. package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
  163. package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
  164. package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
  165. package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
  166. package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +1 -1
  167. package/dist-types/pagination/index.d.ts +6 -0
  168. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  169. package/dist-types/runtimeConfig.d.ts +1 -1
  170. package/dist-types/runtimeConfig.native.d.ts +1 -1
  171. package/dist-types/runtimeConfig.shared.d.ts +1 -1
  172. package/dist-types/runtimeExtensions.d.ts +1 -1
  173. package/dist-types/schemas/schemas_0.d.ts +157 -1
  174. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
  175. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +165 -3
  176. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  177. package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
  178. package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
  181. package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
  184. package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
  189. package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
  190. package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
  191. package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
  192. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
  193. package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
  194. package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
  195. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
  196. package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
  197. package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
  198. package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
  199. package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
  200. package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
  201. package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
  202. package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
  203. package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
  204. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
  205. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  206. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
  208. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  209. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  210. package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
  211. package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
  212. package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
  213. package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
  214. package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
  216. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  217. package/dist-types/ts3.4/index.d.ts +1 -0
  218. package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
  219. package/dist-types/ts3.4/models/enums.d.ts +132 -0
  220. package/dist-types/ts3.4/models/models_0.d.ts +835 -188
  221. package/dist-types/ts3.4/models/models_1.d.ts +331 -0
  222. package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
  223. package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
  224. package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
  225. package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
  226. package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
  227. package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
  228. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  229. package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
  230. package/dist-types/ts3.4/waiters/index.d.ts +5 -0
  231. package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
  232. package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
  233. package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
  234. package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
  235. package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
  236. package/dist-types/waiters/index.d.ts +5 -0
  237. package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
  238. package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
  239. package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
  240. package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
  241. package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
  242. package/package.json +13 -12
package/dist-cjs/index.js CHANGED
@@ -294,7 +294,14 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
294
294
  };
295
295
 
296
296
  const _AC = "AuthorizerConfiguration";
297
+ const _ACMVT = "AuthorizingClaimMatchValueType";
297
298
  const _ADE = "AccessDeniedException";
299
+ const _AGTC = "ApiGatewayTargetConfiguration";
300
+ const _AGTCp = "ApiGatewayToolConfiguration";
301
+ const _AGTF = "ApiGatewayToolFilter";
302
+ const _AGTFp = "ApiGatewayToolFilters";
303
+ const _AGTO = "ApiGatewayToolOverride";
304
+ const _AGTOp = "ApiGatewayToolOverrides";
298
305
  const _AKCP = "ApiKeyCredentialProviders";
299
306
  const _AKCPI = "ApiKeyCredentialProviderItem";
300
307
  const _AKT = "ApiKeyType";
@@ -306,6 +313,7 @@ const _ARE = "AgentRuntimeEndpoint";
306
313
  const _AREg = "AgentRuntimeEndpoints";
307
314
  const _ARg = "AgentRuntimes";
308
315
  const _ASC = "ApiSchemaConfiguration";
316
+ const _BEMC = "BedrockEvaluatorModelConfig";
309
317
  const _BNC = "BrowserNetworkConfiguration";
310
318
  const _BS = "BrowserSummary";
311
319
  const _BSCI = "BrowserSigningConfigInput";
@@ -331,11 +339,16 @@ const _CCI = "CustomConfigurationInput";
331
339
  const _CCIR = "CreateCodeInterpreterRequest";
332
340
  const _CCIRr = "CreateCodeInterpreterResponse";
333
341
  const _CCIr = "CreateCodeInterpreter";
342
+ const _CCVT = "CustomClaimValidationType";
343
+ const _CCVTu = "CustomClaimValidationsType";
334
344
  const _CCo = "ContainerConfiguration";
335
345
  const _CCon = "ConsolidationConfiguration";
336
346
  const _CE = "ConflictException";
337
347
  const _CEC = "CustomExtractionConfiguration";
338
348
  const _CECI = "CustomExtractionConfigurationInput";
349
+ const _CER = "CreateEvaluatorRequest";
350
+ const _CERr = "CreateEvaluatorResponse";
351
+ const _CEr = "CreateEvaluator";
339
352
  const _CG = "CreateGateway";
340
353
  const _CGR = "CreateGatewayRequest";
341
354
  const _CGRr = "CreateGatewayResponse";
@@ -351,18 +364,36 @@ const _CME = "ConcurrentModificationException";
351
364
  const _CMI = "CreateMemoryInput";
352
365
  const _CMO = "CreateMemoryOutput";
353
366
  const _CMSI = "CustomMemoryStrategyInput";
367
+ const _CMVT = "ClaimMatchValueType";
354
368
  const _COCP = "CreateOauth2CredentialProvider";
355
369
  const _COCPR = "CreateOauth2CredentialProviderRequest";
356
370
  const _COCPRr = "CreateOauth2CredentialProviderResponse";
371
+ const _COEC = "CreateOnlineEvaluationConfig";
372
+ const _COECR = "CreateOnlineEvaluationConfigRequest";
373
+ const _COECRr = "CreateOnlineEvaluationConfigResponse";
357
374
  const _COPCI = "CustomOauth2ProviderConfigInput";
358
375
  const _COPCO = "CustomOauth2ProviderConfigOutput";
359
- const _CP = "CredentialProvider";
376
+ const _CP = "CedarPolicy";
360
377
  const _CPC = "CredentialProviderConfiguration";
361
378
  const _CPCr = "CredentialProviderConfigurations";
379
+ const _CPE = "CreatePolicyEngine";
380
+ const _CPER = "CreatePolicyEngineRequest";
381
+ const _CPERr = "CreatePolicyEngineResponse";
382
+ const _CPR = "CreatePolicyRequest";
383
+ const _CPRr = "CreatePolicyResponse";
384
+ const _CPr = "CredentialProvider";
385
+ const _CPre = "CreatePolicy";
386
+ const _CRC = "CustomReflectionConfiguration";
387
+ const _CRCI = "CustomReflectionConfigurationInput";
388
+ const _CSD = "CategoricalScaleDefinition";
389
+ const _CSDa = "CategoricalScaleDefinitions";
362
390
  const _CST = "ClientSecretType";
363
391
  const _CWI = "CreateWorkloadIdentity";
364
392
  const _CWIR = "CreateWorkloadIdentityRequest";
365
393
  const _CWIRr = "CreateWorkloadIdentityResponse";
394
+ const _CWLIC = "CloudWatchLogsInputConfig";
395
+ const _CWOC = "CloudWatchOutputConfig";
396
+ const _Co = "Content";
366
397
  const _D = "Description";
367
398
  const _DAKCP = "DeleteApiKeyCredentialProvider";
368
399
  const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
@@ -379,6 +410,9 @@ const _DBRe = "DeleteBrowserResponse";
379
410
  const _DCI = "DeleteCodeInterpreter";
380
411
  const _DCIR = "DeleteCodeInterpreterRequest";
381
412
  const _DCIRe = "DeleteCodeInterpreterResponse";
413
+ const _DE = "DeleteEvaluator";
414
+ const _DER = "DeleteEvaluatorRequest";
415
+ const _DERe = "DeleteEvaluatorResponse";
382
416
  const _DF = "DecryptionFailure";
383
417
  const _DG = "DeleteGateway";
384
418
  const _DGR = "DeleteGatewayRequest";
@@ -394,13 +428,50 @@ const _DMSL = "DeleteMemoryStrategiesList";
394
428
  const _DOCP = "DeleteOauth2CredentialProvider";
395
429
  const _DOCPR = "DeleteOauth2CredentialProviderRequest";
396
430
  const _DOCPRe = "DeleteOauth2CredentialProviderResponse";
431
+ const _DOEC = "DeleteOnlineEvaluationConfig";
432
+ const _DOECR = "DeleteOnlineEvaluationConfigRequest";
433
+ const _DOECRe = "DeleteOnlineEvaluationConfigResponse";
434
+ const _DP = "DeletePolicy";
435
+ const _DPE = "DeletePolicyEngine";
436
+ const _DPER = "DeletePolicyEngineRequest";
437
+ const _DPERe = "DeletePolicyEngineResponse";
438
+ const _DPR = "DeletePolicyRequest";
439
+ const _DPRe = "DeletePolicyResponse";
440
+ const _DRP = "DeleteResourcePolicy";
441
+ const _DRPR = "DeleteResourcePolicyRequest";
442
+ const _DRPRe = "DeleteResourcePolicyResponse";
443
+ const _DSC = "DataSourceConfig";
397
444
  const _DWI = "DeleteWorkloadIdentity";
398
445
  const _DWIR = "DeleteWorkloadIdentityRequest";
399
446
  const _DWIRe = "DeleteWorkloadIdentityResponse";
400
- const _EC = "ExtractionConfiguration";
447
+ const _EC = "EvaluatorConfig";
448
+ const _ECD = "EvaluationConfigDescription";
449
+ const _ECO = "EpisodicConsolidationOverride";
450
+ const _ECx = "ExtractionConfiguration";
451
+ const _ED = "EvaluatorDescription";
452
+ const _EEO = "EpisodicExtractionOverride";
401
453
  const _EF = "EncryptionFailure";
454
+ const _EI = "EvaluatorInstructions";
455
+ const _EL = "EvaluatorList";
456
+ const _EMC = "EvaluatorModelConfig";
457
+ const _EMSI = "EpisodicMemoryStrategyInput";
402
458
  const _EN = "EndpointName";
459
+ const _EOCCI = "EpisodicOverrideConsolidationConfigurationInput";
460
+ const _EOCI = "EpisodicOverrideConfigurationInput";
461
+ const _EOECI = "EpisodicOverrideExtractionConfigurationInput";
462
+ const _EORCI = "EpisodicOverrideReflectionConfigurationInput";
463
+ const _ER = "EvaluatorReference";
464
+ const _ERC = "EpisodicReflectionConfiguration";
465
+ const _ERCI = "EpisodicReflectionConfigurationInput";
466
+ const _ERO = "EpisodicReflectionOverride";
467
+ const _ES = "EvaluatorSummary";
468
+ const _ESL = "EvaluatorSummaryList";
403
469
  const _EVM = "EnvironmentVariablesMap";
470
+ const _F = "Filter";
471
+ const _FL = "FilterList";
472
+ const _FV = "FilterValue";
473
+ const _Fi = "Finding";
474
+ const _Fin = "Findings";
404
475
  const _GAKCP = "GatewayApiKeyCredentialProvider";
405
476
  const _GAKCPR = "GetApiKeyCredentialProviderRequest";
406
477
  const _GAKCPRe = "GetApiKeyCredentialProviderResponse";
@@ -418,6 +489,9 @@ const _GCI = "GetCodeInterpreter";
418
489
  const _GCIR = "GetCodeInterpreterRequest";
419
490
  const _GCIRe = "GetCodeInterpreterResponse";
420
491
  const _GD = "GatewayDescription";
492
+ const _GE = "GetEvaluator";
493
+ const _GER = "GetEvaluatorRequest";
494
+ const _GERe = "GetEvaluatorResponse";
421
495
  const _GG = "GetGateway";
422
496
  const _GGR = "GetGatewayRequest";
423
497
  const _GGRe = "GetGatewayResponse";
@@ -433,11 +507,27 @@ const _GN = "GatewayName";
433
507
  const _GOCP = "GetOauth2CredentialProvider";
434
508
  const _GOCPR = "GetOauth2CredentialProviderRequest";
435
509
  const _GOCPRe = "GetOauth2CredentialProviderResponse";
510
+ const _GOEC = "GetOnlineEvaluationConfig";
511
+ const _GOECR = "GetOnlineEvaluationConfigRequest";
512
+ const _GOECRe = "GetOnlineEvaluationConfigResponse";
436
513
  const _GOPCI = "GithubOauth2ProviderConfigInput";
437
514
  const _GOPCIo = "GoogleOauth2ProviderConfigInput";
438
515
  const _GOPCO = "GithubOauth2ProviderConfigOutput";
439
516
  const _GOPCOo = "GoogleOauth2ProviderConfigOutput";
517
+ const _GP = "GetPolicy";
440
518
  const _GPC = "GatewayProtocolConfiguration";
519
+ const _GPE = "GetPolicyEngine";
520
+ const _GPEC = "GatewayPolicyEngineConfiguration";
521
+ const _GPER = "GetPolicyEngineRequest";
522
+ const _GPERe = "GetPolicyEngineResponse";
523
+ const _GPG = "GetPolicyGeneration";
524
+ const _GPGR = "GetPolicyGenerationRequest";
525
+ const _GPGRe = "GetPolicyGenerationResponse";
526
+ const _GPR = "GetPolicyRequest";
527
+ const _GPRe = "GetPolicyResponse";
528
+ const _GRP = "GetResourcePolicy";
529
+ const _GRPR = "GetResourcePolicyRequest";
530
+ const _GRPRe = "GetResourcePolicyResponse";
441
531
  const _GS = "GatewaySummary";
442
532
  const _GSa = "GatewaySummaries";
443
533
  const _GT = "GatewayTarget";
@@ -448,15 +538,17 @@ const _GTVRe = "GetTokenVaultResponse";
448
538
  const _GWI = "GetWorkloadIdentity";
449
539
  const _GWIR = "GetWorkloadIdentityRequest";
450
540
  const _GWIRe = "GetWorkloadIdentityResponse";
451
- const _IC = "InvocationConfiguration";
541
+ const _IC = "InferenceConfiguration";
452
542
  const _ICI = "InvocationConfigurationInput";
453
- const _ICn = "InterceptorConfiguration";
543
+ const _ICn = "InvocationConfiguration";
544
+ const _ICnt = "InterceptorConfiguration";
454
545
  const _IIC = "InterceptorInputConfiguration";
455
546
  const _IOPCI = "IncludedOauth2ProviderConfigInput";
456
547
  const _IOPCO = "IncludedOauth2ProviderConfigOutput";
457
548
  const _IP = "InlinePayload";
458
549
  const _ISE = "InternalServerException";
459
550
  const _KC = "KmsConfiguration";
551
+ const _LAAJEC = "LlmAsAJudgeEvaluatorConfig";
460
552
  const _LAKCP = "ListApiKeyCredentialProviders";
461
553
  const _LAKCPR = "ListApiKeyCredentialProvidersRequest";
462
554
  const _LAKCPRi = "ListApiKeyCredentialProvidersResponse";
@@ -476,6 +568,9 @@ const _LC = "LifecycleConfiguration";
476
568
  const _LCI = "ListCodeInterpreters";
477
569
  const _LCIR = "ListCodeInterpretersRequest";
478
570
  const _LCIRi = "ListCodeInterpretersResponse";
571
+ const _LE = "ListEvaluators";
572
+ const _LER = "ListEvaluatorsRequest";
573
+ const _LERi = "ListEvaluatorsResponse";
479
574
  const _LG = "ListGateways";
480
575
  const _LGR = "ListGatewaysRequest";
481
576
  const _LGRi = "ListGatewaysResponse";
@@ -489,8 +584,23 @@ const _LMO = "ListMemoriesOutput";
489
584
  const _LOCP = "ListOauth2CredentialProviders";
490
585
  const _LOCPR = "ListOauth2CredentialProvidersRequest";
491
586
  const _LOCPRi = "ListOauth2CredentialProvidersResponse";
587
+ const _LOEC = "ListOnlineEvaluationConfigs";
588
+ const _LOECR = "ListOnlineEvaluationConfigsRequest";
589
+ const _LOECRi = "ListOnlineEvaluationConfigsResponse";
492
590
  const _LOPCI = "LinkedinOauth2ProviderConfigInput";
493
591
  const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
592
+ const _LP = "ListPolicies";
593
+ const _LPE = "ListPolicyEngines";
594
+ const _LPER = "ListPolicyEnginesRequest";
595
+ const _LPERi = "ListPolicyEnginesResponse";
596
+ const _LPG = "ListPolicyGenerations";
597
+ const _LPGA = "ListPolicyGenerationAssets";
598
+ const _LPGAR = "ListPolicyGenerationAssetsRequest";
599
+ const _LPGARi = "ListPolicyGenerationAssetsResponse";
600
+ const _LPGR = "ListPolicyGenerationsRequest";
601
+ const _LPGRi = "ListPolicyGenerationsResponse";
602
+ const _LPR = "ListPoliciesRequest";
603
+ const _LPRi = "ListPoliciesResponse";
494
604
  const _LTFR = "ListTagsForResource";
495
605
  const _LTFRR = "ListTagsForResourceRequest";
496
606
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -510,6 +620,7 @@ const _MMSI = "ModifyMemoryStrategyInput";
510
620
  const _MMSL = "ModifyMemoryStrategiesList";
511
621
  const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
512
622
  const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
623
+ const _MRC = "ModifyReflectionConfiguration";
513
624
  const _MS = "MemoryStrategy";
514
625
  const _MSC = "ModifyStrategyConfiguration";
515
626
  const _MSI = "MemoryStrategyInput";
@@ -521,25 +632,48 @@ const _MSTC = "McpServerTargetConfiguration";
521
632
  const _MSe = "MemorySummary";
522
633
  const _MTC = "McpTargetConfiguration";
523
634
  const _NC = "NetworkConfiguration";
635
+ const _NSD = "NumericalScaleDefinition";
636
+ const _NSDu = "NumericalScaleDefinitions";
524
637
  const _OACP = "OAuthCredentialProvider";
525
638
  const _OACPV = "OAuthCustomParametersValue";
526
639
  const _OACPu = "OAuthCustomParameters";
527
640
  const _OASM = "Oauth2AuthorizationServerMetadata";
641
+ const _OC = "OutputConfig";
528
642
  const _OCP = "Oauth2CredentialProviders";
529
643
  const _OCPI = "Oauth2CredentialProviderItem";
530
644
  const _OD = "Oauth2Discovery";
645
+ const _OECS = "OnlineEvaluationConfigSummary";
646
+ const _OECSL = "OnlineEvaluationConfigSummaryList";
531
647
  const _OPCI = "Oauth2ProviderConfigInput";
532
648
  const _OPCO = "Oauth2ProviderConfigOutput";
533
649
  const _P = "Prompt";
534
650
  const _PC = "ProtocolConfiguration";
651
+ const _PD = "PolicyDefinition";
652
+ const _PE = "PolicyEngine";
653
+ const _PEo = "PolicyEngines";
654
+ const _PG = "PolicyGeneration";
655
+ const _PGA = "PolicyGenerationAsset";
656
+ const _PGAo = "PolicyGenerationAssets";
657
+ const _PGo = "PolicyGenerations";
658
+ const _PRP = "PutResourcePolicy";
659
+ const _PRPR = "PutResourcePolicyRequest";
660
+ const _PRPRu = "PutResourcePolicyResponse";
661
+ const _Po = "Policy";
662
+ const _Pol = "Policies";
663
+ const _R = "Rule";
535
664
  const _RC = "RecordingConfig";
665
+ const _RCe = "ReflectionConfiguration";
536
666
  const _RHC = "RequestHeaderConfiguration";
537
667
  const _RLEE = "ResourceLimitExceededException";
538
668
  const _RNFE = "ResourceNotFoundException";
669
+ const _RS = "RatingScale";
670
+ const _Re = "Resource";
539
671
  const _S = "Secret";
540
672
  const _SC = "S3Configuration";
541
673
  const _SCO = "SemanticConsolidationOverride";
542
674
  const _SCOu = "SummaryConsolidationOverride";
675
+ const _SCa = "SamplingConfig";
676
+ const _SCe = "SessionConfig";
543
677
  const _SCt = "StrategyConfiguration";
544
678
  const _SD = "SchemaDefinition";
545
679
  const _SE = "ServiceException";
@@ -562,6 +696,9 @@ const _SOPCIl = "SlackOauth2ProviderConfigInput";
562
696
  const _SOPCO = "SalesforceOauth2ProviderConfigOutput";
563
697
  const _SOPCOl = "SlackOauth2ProviderConfigOutput";
564
698
  const _SP = "SchemaProperties";
699
+ const _SPG = "StartPolicyGeneration";
700
+ const _SPGR = "StartPolicyGenerationRequest";
701
+ const _SPGRt = "StartPolicyGenerationResponse";
565
702
  const _SQEE = "ServiceQuotaExceededException";
566
703
  const _STVCMK = "SetTokenVaultCMK";
567
704
  const _STVCMKR = "SetTokenVaultCMKRequest";
@@ -597,6 +734,9 @@ const _UARERp = "UpdateAgentRuntimeEndpointResponse";
597
734
  const _UARR = "UpdateAgentRuntimeRequest";
598
735
  const _UARRp = "UpdateAgentRuntimeResponse";
599
736
  const _UE = "UnauthorizedException";
737
+ const _UER = "UpdateEvaluatorRequest";
738
+ const _UERp = "UpdateEvaluatorResponse";
739
+ const _UEp = "UpdateEvaluator";
600
740
  const _UG = "UpdateGateway";
601
741
  const _UGR = "UpdateGatewayRequest";
602
742
  const _UGRp = "UpdateGatewayResponse";
@@ -609,12 +749,21 @@ const _UMO = "UpdateMemoryOutput";
609
749
  const _UOCP = "UpdateOauth2CredentialProvider";
610
750
  const _UOCPR = "UpdateOauth2CredentialProviderRequest";
611
751
  const _UOCPRp = "UpdateOauth2CredentialProviderResponse";
752
+ const _UOEC = "UpdateOnlineEvaluationConfig";
753
+ const _UOECR = "UpdateOnlineEvaluationConfigRequest";
754
+ const _UOECRp = "UpdateOnlineEvaluationConfigResponse";
755
+ const _UP = "UpdatePolicy";
612
756
  const _UPCO = "UserPreferenceConsolidationOverride";
757
+ const _UPE = "UpdatePolicyEngine";
613
758
  const _UPEO = "UserPreferenceExtractionOverride";
759
+ const _UPER = "UpdatePolicyEngineRequest";
760
+ const _UPERp = "UpdatePolicyEngineResponse";
614
761
  const _UPMSI = "UserPreferenceMemoryStrategyInput";
615
762
  const _UPOCCI = "UserPreferenceOverrideConsolidationConfigurationInput";
616
763
  const _UPOCI = "UserPreferenceOverrideConfigurationInput";
617
764
  const _UPOECI = "UserPreferenceOverrideExtractionConfigurationInput";
765
+ const _UPR = "UpdatePolicyRequest";
766
+ const _UPRp = "UpdatePolicyResponse";
618
767
  const _UR = "UntagResource";
619
768
  const _URR = "UntagResourceRequest";
620
769
  const _URRn = "UntagResourceResponse";
@@ -631,11 +780,15 @@ const _WIT = "WorkloadIdentityType";
631
780
  const _a = "arn";
632
781
  const _aA = "allowedAudience";
633
782
  const _aC = "authorizerConfiguration";
783
+ const _aCMV = "authorizingClaimMatchValue";
634
784
  const _aCl = "allowedClients";
635
785
  const _aE = "authorizationEndpoint";
786
+ const _aG = "apiGateway";
787
+ const _aGTC = "apiGatewayToolConfiguration";
636
788
  const _aK = "apiKey";
637
789
  const _aKCP = "apiKeyCredentialProvider";
638
790
  const _aKSA = "apiKeySecretArn";
791
+ const _aMRF = "additionalModelRequestFields";
639
792
  const _aMS = "addMemoryStrategies";
640
793
  const _aOPC = "atlassianOauth2ProviderConfig";
641
794
  const _aR = "agentRuntimes";
@@ -646,20 +799,24 @@ const _aRI = "agentRuntimeId";
646
799
  const _aRN = "agentRuntimeName";
647
800
  const _aRORU = "allowedResourceOauth2ReturnUrls";
648
801
  const _aRV = "agentRuntimeVersion";
802
+ const _aS = "allowedScopes";
649
803
  const _aSM = "authorizationServerMetadata";
650
804
  const _aT = "authorizerType";
651
805
  const _aTP = "appendToPrompt";
652
806
  const _b = "bucket";
653
807
  const _bA = "browserArn";
808
+ const _bEMC = "bedrockEvaluatorModelConfig";
654
809
  const _bI = "browserId";
655
810
  const _bOAI = "bucketOwnerAccountId";
656
811
  const _bS = "browserSigning";
657
812
  const _bSr = "browserSummaries";
813
+ const _bV = "booleanValue";
658
814
  const _c = "client";
659
815
  const _cA = "createdAt";
660
- const _cC = "containerConfiguration";
816
+ const _cC = "customClaims";
661
817
  const _cCC = "customConsolidationConfiguration";
662
- const _cCo = "codeConfiguration";
818
+ const _cCo = "containerConfiguration";
819
+ const _cCod = "codeConfiguration";
663
820
  const _cEC = "customExtractionConfiguration";
664
821
  const _cI = "clientId";
665
822
  const _cIA = "codeInterpreterArn";
@@ -667,7 +824,9 @@ const _cII = "codeInterpreterId";
667
824
  const _cIS = "codeInterpreterSummaries";
668
825
  const _cJWTA = "customJWTAuthorizer";
669
826
  const _cL = "credentialLocation";
827
+ const _cMO = "claimMatchOperator";
670
828
  const _cMS = "customMemoryStrategy";
829
+ const _cMV = "claimMatchValue";
671
830
  const _cOPC = "customOauth2ProviderConfig";
672
831
  const _cP = "credentialProvider";
673
832
  const _cPA = "credentialProviderArn";
@@ -678,44 +837,74 @@ const _cPV = "credentialProviderVendor";
678
837
  const _cPr = "credentialPrefix";
679
838
  const _cPre = "credentialProviders";
680
839
  const _cPu = "customParameters";
840
+ const _cRC = "customReflectionConfiguration";
681
841
  const _cS = "clientSecret";
682
842
  const _cSA = "clientSecretArn";
683
843
  const _cT = "createdTime";
684
844
  const _cTl = "clientToken";
685
845
  const _cU = "containerUri";
686
846
  const _cUa = "callbackUrl";
847
+ const _cWC = "cloudWatchConfig";
848
+ const _cWL = "cloudWatchLogs";
849
+ const _ca = "categorical";
850
+ const _ce = "cedar";
687
851
  const _co = "code";
688
852
  const _con = "configuration";
689
853
  const _cons = "consolidation";
854
+ const _cont = "content";
690
855
  const _d = "description";
691
856
  const _dMS = "deleteMemoryStrategies";
857
+ const _dRU = "defaultReturnUrl";
858
+ const _dSC = "dataSourceConfig";
692
859
  const _dU = "discoveryUrl";
860
+ const _dV = "doubleValue";
861
+ const _de = "definition";
693
862
  const _e = "error";
863
+ const _eA = "evaluatorArn";
864
+ const _eC = "evaluatorConfig";
865
+ const _eCO = "episodicConsolidationOverride";
694
866
  const _eED = "eventExpiryDuration";
867
+ const _eEO = "episodicExtractionOverride";
868
+ const _eERA = "evaluationExecutionRoleArn";
869
+ const _eI = "evaluatorId";
695
870
  const _eKA = "encryptionKeyArn";
696
871
  const _eL = "exceptionLevel";
872
+ const _eMS = "episodicMemoryStrategy";
697
873
  const _eN = "endpointName";
874
+ const _eNv = "evaluatorName";
875
+ const _eO = "episodicOverride";
876
+ const _eOC = "enableOnCreate";
698
877
  const _eP = "entryPoint";
699
878
  const _eRA = "executionRoleArn";
879
+ const _eRC = "episodicReflectionConfiguration";
880
+ const _eRO = "episodicReflectionOverride";
881
+ const _eS = "executionStatus";
882
+ const _eT = "evaluatorType";
700
883
  const _eV = "environmentVariables";
701
884
  const _en = "enabled";
702
885
  const _end = "endpoint";
886
+ const _ev = "evaluators";
703
887
  const _ex = "extraction";
888
+ const _f = "findings";
704
889
  const _fL = "fieldList";
890
+ const _fP = "filterPath";
705
891
  const _fR = "failureReason";
892
+ const _fi = "filters";
706
893
  const _gA = "gatewayArn";
707
894
  const _gI = "gatewayId";
708
895
  const _gIa = "gatewayIdentifier";
709
896
  const _gOPC = "googleOauth2ProviderConfig";
710
897
  const _gOPCi = "githubOauth2ProviderConfig";
898
+ const _gT = "grantType";
711
899
  const _gU = "gatewayUrl";
712
900
  const _h = "http";
713
901
  const _hCWS = "historicalContextWindowSize";
714
902
  const _hE = "httpError";
715
903
  const _hQ = "httpQuery";
716
904
  const _i = "id";
717
- const _iC = "interceptorConfigurations";
718
- const _iCn = "inputConfiguration";
905
+ const _iC = "inferenceConfig";
906
+ const _iCn = "interceptorConfigurations";
907
+ const _iCnp = "inputConfiguration";
719
908
  const _iCnv = "invocationConfiguration";
720
909
  const _iOPC = "includedOauth2ProviderConfig";
721
910
  const _iP = "interceptionPoints";
@@ -724,28 +913,38 @@ const _iRST = "idleRuntimeSessionTimeout";
724
913
  const _iS = "inputSchema";
725
914
  const _iST = "idleSessionTimeout";
726
915
  const _iT = "idempotencyToken";
916
+ const _iTCN = "inboundTokenClaimName";
917
+ const _iTCVT = "inboundTokenClaimValueType";
727
918
  const _in = "interceptor";
728
919
  const _ins = "instructions";
729
920
  const _is = "issuer";
730
921
  const _it = "items";
922
+ const _k = "key";
731
923
  const _kC = "kmsConfiguration";
732
924
  const _kKA = "kmsKeyArn";
733
925
  const _kT = "keyType";
734
- const _l = "lambda";
926
+ const _l = "label";
735
927
  const _lA = "lambdaArn";
928
+ const _lAAJ = "llmAsAJudge";
736
929
  const _lC = "lifecycleConfiguration";
930
+ const _lFM = "lockedForModification";
931
+ const _lGN = "logGroupNames";
932
+ const _lGNo = "logGroupName";
737
933
  const _lMD = "lastModifiedDate";
738
934
  const _lOPC = "linkedinOauth2ProviderConfig";
739
935
  const _lSA = "lastSynchronizedAt";
740
936
  const _lUA = "lastUpdatedAt";
741
937
  const _lUT = "lastUpdatedTime";
742
938
  const _lV = "liveVersion";
939
+ const _la = "lambda";
940
+ const _le = "level";
743
941
  const _m = "message";
744
942
  const _mBT = "messageBasedTrigger";
745
- const _mC = "messageCount";
943
+ const _mC = "modelConfig";
944
+ const _mCe = "messageCount";
746
945
  const _mERA = "memoryExecutionRoleArn";
747
- const _mI = "memoryId";
748
- const _mIo = "modelId";
946
+ const _mI = "modelId";
947
+ const _mIe = "memoryId";
749
948
  const _mL = "maxLifetime";
750
949
  const _mMS = "modifyMemoryStrategies";
751
950
  const _mOPC = "microsoftOauth2ProviderConfig";
@@ -753,42 +952,79 @@ const _mR = "maxResults";
753
952
  const _mS = "memoryStrategies";
754
953
  const _mSI = "memoryStrategyId";
755
954
  const _mSc = "mcpServer";
955
+ const _mT = "maxTokens";
956
+ const _mVS = "matchValueString";
957
+ const _mVSL = "matchValueStringList";
756
958
  const _mc = "mcp";
757
- const _me = "memory";
758
- const _mem = "memories";
959
+ const _me = "methods";
960
+ const _mem = "memory";
961
+ const _memo = "memories";
962
+ const _met = "method";
963
+ const _mo = "mode";
759
964
  const _n = "name";
760
965
  const _nC = "networkConfiguration";
761
966
  const _nM = "networkMode";
762
967
  const _nMC = "networkModeConfig";
763
968
  const _nT = "nextToken";
764
969
  const _na = "namespaces";
970
+ const _nu = "numerical";
971
+ const _o = "operator";
765
972
  const _oAS = "openApiSchema";
973
+ const _oC = "outputConfig";
766
974
  const _oCP = "oauthCredentialProvider";
767
975
  const _oD = "oauthDiscovery";
976
+ const _oEC = "onlineEvaluationConfigs";
977
+ const _oECA = "onlineEvaluationConfigArn";
978
+ const _oECI = "onlineEvaluationConfigId";
979
+ const _oECN = "onlineEvaluationConfigName";
768
980
  const _oPCI = "oauth2ProviderConfigInput";
769
981
  const _oPCO = "oauth2ProviderConfigOutput";
770
982
  const _oS = "outputSchema";
771
- const _p = "prefix";
772
- const _pA = "providerArn";
983
+ const _p = "path";
984
+ const _pA = "policyArn";
985
+ const _pAr = "providerArn";
773
986
  const _pC = "protocolConfiguration";
774
987
  const _pDBN = "payloadDeliveryBucketName";
988
+ const _pE = "policyEngines";
989
+ const _pEA = "policyEngineArn";
990
+ const _pEC = "policyEngineConfiguration";
991
+ const _pEI = "policyEngineId";
992
+ const _pG = "policyGenerations";
993
+ const _pGA = "policyGenerationArn";
994
+ const _pGAI = "policyGenerationAssetId";
995
+ const _pGAo = "policyGenerationAssets";
996
+ const _pGI = "policyGenerationId";
997
+ const _pI = "policyId";
775
998
  const _pRH = "passRequestHeaders";
776
999
  const _pT = "protocolType";
777
- const _pr = "properties";
1000
+ const _po = "policy";
1001
+ const _pol = "policies";
1002
+ const _pr = "prefix";
1003
+ const _pro = "properties";
778
1004
  const _r = "runtime";
779
1005
  const _rA = "roleArn";
1006
+ const _rAI = "restApiId";
780
1007
  const _rAe = "resourceArn";
1008
+ const _rC = "reflectionConfiguration";
781
1009
  const _rE = "runtimeEndpoints";
782
1010
  const _rHA = "requestHeaderAllowlist";
783
1011
  const _rHC = "requestHeaderConfiguration";
1012
+ const _rS = "ratingScale";
784
1013
  const _rT = "responseTypes";
1014
+ const _rTF = "rawTextFragment";
1015
+ const _rTa = "rawText";
785
1016
  const _re = "recording";
786
1017
  const _rea = "reason";
1018
+ const _ref = "reflection";
787
1019
  const _req = "required";
1020
+ const _res = "resource";
1021
+ const _ru = "rule";
788
1022
  const _s = "status";
789
1023
  const _sA = "secretArn";
1024
+ const _sC = "samplingConfig";
790
1025
  const _sCO = "semanticConsolidationOverride";
791
1026
  const _sCOu = "summaryConsolidationOverride";
1027
+ const _sCe = "sessionConfig";
792
1028
  const _sEO = "semanticExtractionOverride";
793
1029
  const _sG = "securityGroups";
794
1030
  const _sI = "strategyId";
@@ -797,19 +1033,26 @@ const _sM = "smithyModel";
797
1033
  const _sMC = "selfManagedConfiguration";
798
1034
  const _sMS = "semanticMemoryStrategy";
799
1035
  const _sMSu = "summaryMemoryStrategy";
1036
+ const _sN = "serviceNames";
800
1037
  const _sO = "semanticOverride";
801
1038
  const _sOPC = "slackOauth2ProviderConfig";
802
1039
  const _sOPCa = "salesforceOauth2ProviderConfig";
803
1040
  const _sOu = "summaryOverride";
804
1041
  const _sP = "serverProtocol";
1042
+ const _sPa = "samplingPercentage";
805
1043
  const _sR = "statusReasons";
1044
+ const _sS = "stopSequences";
806
1045
  const _sT = "searchType";
1046
+ const _sTM = "sessionTimeoutMinutes";
807
1047
  const _sV = "supportedVersions";
1048
+ const _sVt = "stringValue";
808
1049
  const _s_ = "s3";
809
1050
  const _sc = "scopes";
810
1051
  const _se = "server";
811
1052
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcorecontrol";
812
- const _st = "strategies";
1053
+ const _st = "stage";
1054
+ const _sta = "statement";
1055
+ const _str = "strategies";
813
1056
  const _su = "subnets";
814
1057
  const _t = "tags";
815
1058
  const _tA = "topicArn";
@@ -820,14 +1063,19 @@ const _tCo = "tokenCount";
820
1063
  const _tCr = "triggerConditions";
821
1064
  const _tE = "tokenEndpoint";
822
1065
  const _tEAM = "tokenEndpointAuthMethods";
1066
+ const _tF = "toolFilters";
823
1067
  const _tI = "targetId";
824
1068
  const _tIL = "targetIdList";
825
1069
  const _tIe = "tenantId";
826
1070
  const _tK = "tagKeys";
1071
+ const _tO = "toolOverrides";
1072
+ const _tP = "topP";
1073
+ const _tRS = "targetResourceScope";
827
1074
  const _tS = "toolSchema";
828
1075
  const _tV = "targetVersion";
829
1076
  const _tVI = "tokenVaultId";
830
1077
  const _ta = "targets";
1078
+ const _te = "temperature";
831
1079
  const _ty = "type";
832
1080
  const _u = "uri";
833
1081
  const _uA = "updatedAt";
@@ -835,9 +1083,11 @@ const _uPCO = "userPreferenceConsolidationOverride";
835
1083
  const _uPEO = "userPreferenceExtractionOverride";
836
1084
  const _uPMS = "userPreferenceMemoryStrategy";
837
1085
  const _uPO = "userPreferenceOverride";
838
- const _v = "version";
1086
+ const _v = "value";
839
1087
  const _vC = "vpcConfig";
840
1088
  const _vI = "versionId";
1089
+ const _vM = "validationMode";
1090
+ const _ve = "version";
841
1091
  const _wI = "workloadIdentities";
842
1092
  const _wIA = "workloadIdentityArn";
843
1093
  const _wID = "workloadIdentityDetails";
@@ -846,6 +1096,9 @@ var ApiKeyType = [0, n0, _AKT, 8, 0];
846
1096
  var ClientSecretType = [0, n0, _CST, 8, 0];
847
1097
  var Description = [0, n0, _D, 8, 0];
848
1098
  var EndpointName = [0, n0, _EN, 8, 0];
1099
+ var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
1100
+ var EvaluatorDescription = [0, n0, _ED, 8, 0];
1101
+ var EvaluatorInstructions = [0, n0, _EI, 8, 0];
849
1102
  var GatewayDescription = [0, n0, _GD, 8, 0];
850
1103
  var GatewayName = [0, n0, _GN, 8, 0];
851
1104
  var InlinePayload = [0, n0, _IP, 8, 0];
@@ -853,17 +1106,7 @@ var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
853
1106
  var Prompt = [0, n0, _P, 8, 0];
854
1107
  var TargetDescription = [0, n0, _TD, 8, 0];
855
1108
  var TargetName = [0, n0, _TN, 8, 0];
856
- var AccessDeniedException = [
857
- -3,
858
- n0,
859
- _ADE,
860
- {
861
- [_e]: _c,
862
- [_hE]: 403,
863
- },
864
- [_m],
865
- [0],
866
- ];
1109
+ var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
867
1110
  schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
868
1111
  var AgentRuntime = [
869
1112
  3,
@@ -881,6 +1124,24 @@ var AgentRuntimeEndpoint = [
881
1124
  [_n, _lV, _tV, _aREA, _aRA, _s, _i, _d, _cA, _lUA],
882
1125
  [[() => EndpointName, 0], 0, 0, 0, 0, 0, 0, 0, 5, 5],
883
1126
  ];
1127
+ var ApiGatewayTargetConfiguration = [
1128
+ 3,
1129
+ n0,
1130
+ _AGTC,
1131
+ 0,
1132
+ [_rAI, _st, _aGTC],
1133
+ [0, 0, () => ApiGatewayToolConfiguration],
1134
+ ];
1135
+ var ApiGatewayToolConfiguration = [
1136
+ 3,
1137
+ n0,
1138
+ _AGTCp,
1139
+ 0,
1140
+ [_tO, _tF],
1141
+ [() => ApiGatewayToolOverrides, () => ApiGatewayToolFilters],
1142
+ ];
1143
+ var ApiGatewayToolFilter = [3, n0, _AGTF, 0, [_fP, _me], [0, 64 | 0]];
1144
+ var ApiGatewayToolOverride = [3, n0, _AGTO, 0, [_n, _d, _p, _met], [0, 0, 0, 0]];
884
1145
  var ApiKeyCredentialProviderItem = [
885
1146
  3,
886
1147
  n0,
@@ -905,6 +1166,22 @@ var AtlassianOauth2ProviderConfigOutput = [
905
1166
  [_oD, _cI],
906
1167
  [() => Oauth2Discovery, 0],
907
1168
  ];
1169
+ var AuthorizingClaimMatchValueType = [
1170
+ 3,
1171
+ n0,
1172
+ _ACMVT,
1173
+ 0,
1174
+ [_cMV, _cMO],
1175
+ [() => ClaimMatchValueType, 0],
1176
+ ];
1177
+ var BedrockEvaluatorModelConfig = [
1178
+ 3,
1179
+ n0,
1180
+ _BEMC,
1181
+ 0,
1182
+ [_mI, _iC, _aMRF],
1183
+ [0, () => InferenceConfiguration, 15],
1184
+ ];
908
1185
  var BrowserNetworkConfiguration = [3, n0, _BNC, 0, [_nM, _vC], [0, () => VpcConfig]];
909
1186
  var BrowserSigningConfigInput = [3, n0, _BSCI, 0, [_en], [2]];
910
1187
  var BrowserSigningConfigOutput = [3, n0, _BSCO, 0, [_en], [2]];
@@ -916,6 +1193,10 @@ var BrowserSummary = [
916
1193
  [_bI, _bA, _n, _d, _s, _cA, _lUA],
917
1194
  [0, 0, 0, [() => Description, 0], 0, 5, 5],
918
1195
  ];
1196
+ var CategoricalScaleDefinition = [3, n0, _CSD, 0, [_de, _l], [0, 0]];
1197
+ var CedarPolicy = [3, n0, _CP, 0, [_sta], [0]];
1198
+ var CloudWatchLogsInputConfig = [3, n0, _CWLIC, 0, [_lGN, _sN], [64 | 0, 64 | 0]];
1199
+ var CloudWatchOutputConfig = [3, n0, _CWOC, 0, [_lGNo], [0]];
919
1200
  var CodeConfiguration = [3, n0, _CC, 0, [_co, _r, _eP], [() => Code, 0, 64 | 0]];
920
1201
  var CodeInterpreterNetworkConfiguration = [
921
1202
  3,
@@ -933,29 +1214,9 @@ var CodeInterpreterSummary = [
933
1214
  [_cII, _cIA, _n, _d, _s, _cA, _lUA],
934
1215
  [0, 0, 0, [() => Description, 0], 0, 5, 5],
935
1216
  ];
936
- var ConcurrentModificationException = [
937
- -3,
938
- n0,
939
- _CME,
940
- {
941
- [_e]: _c,
942
- [_hE]: 409,
943
- },
944
- [_m],
945
- [0],
946
- ];
1217
+ var ConcurrentModificationException = [-3, n0, _CME, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
947
1218
  schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
948
- var ConflictException = [
949
- -3,
950
- n0,
951
- _CE,
952
- {
953
- [_e]: _c,
954
- [_hE]: 409,
955
- },
956
- [_m],
957
- [0],
958
- ];
1219
+ var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
959
1220
  schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
960
1221
  var ContainerConfiguration = [3, n0, _CCo, 0, [_cU], [0]];
961
1222
  var CreateAgentRuntimeEndpointRequest = [
@@ -1053,12 +1314,21 @@ var CreateCodeInterpreterResponse = [
1053
1314
  [_cII, _cIA, _cA, _s],
1054
1315
  [0, 0, 5, 0],
1055
1316
  ];
1317
+ var CreateEvaluatorRequest = [
1318
+ 3,
1319
+ n0,
1320
+ _CER,
1321
+ 0,
1322
+ [_cTl, _eNv, _d, _eC, _le],
1323
+ [[0, 4], 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
1324
+ ];
1325
+ var CreateEvaluatorResponse = [3, n0, _CERr, 0, [_eA, _eI, _cA, _s], [0, 0, 4, 0]];
1056
1326
  var CreateGatewayRequest = [
1057
1327
  3,
1058
1328
  n0,
1059
1329
  _CGR,
1060
1330
  0,
1061
- [_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _eL, _t],
1331
+ [_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL, _t],
1062
1332
  [
1063
1333
  [() => GatewayName, 0],
1064
1334
  [() => GatewayDescription, 0],
@@ -1070,6 +1340,7 @@ var CreateGatewayRequest = [
1070
1340
  () => AuthorizerConfiguration,
1071
1341
  0,
1072
1342
  () => GatewayInterceptorConfigurations,
1343
+ () => GatewayPolicyEngineConfiguration,
1073
1344
  0,
1074
1345
  128 | 0,
1075
1346
  ],
@@ -1079,7 +1350,7 @@ var CreateGatewayResponse = [
1079
1350
  n0,
1080
1351
  _CGRr,
1081
1352
  0,
1082
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
1353
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
1083
1354
  [
1084
1355
  0,
1085
1356
  0,
@@ -1097,6 +1368,7 @@ var CreateGatewayResponse = [
1097
1368
  () => AuthorizerConfiguration,
1098
1369
  0,
1099
1370
  () => GatewayInterceptorConfigurations,
1371
+ () => GatewayPolicyEngineConfiguration,
1100
1372
  () => WorkloadIdentityDetails,
1101
1373
  0,
1102
1374
  ],
@@ -1144,7 +1416,7 @@ var CreateMemoryInput = [
1144
1416
  [_cTl, _n, _d, _eKA, _mERA, _eED, _mS, _t],
1145
1417
  [[0, 4], 0, [() => Description, 0], 0, 0, 1, [() => MemoryStrategyInputList, 0], 128 | 0],
1146
1418
  ];
1147
- var CreateMemoryOutput = [3, n0, _CMO, 0, [_me], [[() => Memory, 0]]];
1419
+ var CreateMemoryOutput = [3, n0, _CMO, 0, [_mem], [[() => Memory, 0]]];
1148
1420
  var CreateOauth2CredentialProviderRequest = [
1149
1421
  3,
1150
1422
  n0,
@@ -1161,6 +1433,54 @@ var CreateOauth2CredentialProviderResponse = [
1161
1433
  [_cSA, _n, _cPA, _cUa, _oPCO],
1162
1434
  [() => Secret, 0, 0, 0, () => Oauth2ProviderConfigOutput],
1163
1435
  ];
1436
+ var CreateOnlineEvaluationConfigRequest = [
1437
+ 3,
1438
+ n0,
1439
+ _COECR,
1440
+ 0,
1441
+ [_cTl, _oECN, _d, _ru, _dSC, _ev, _eERA, _eOC],
1442
+ [[0, 4], 0, [() => EvaluationConfigDescription, 0], () => Rule, () => DataSourceConfig, () => EvaluatorList, 0, 2],
1443
+ ];
1444
+ var CreateOnlineEvaluationConfigResponse = [
1445
+ 3,
1446
+ n0,
1447
+ _COECRr,
1448
+ 0,
1449
+ [_oECA, _oECI, _cA, _oC, _s, _eS, _fR],
1450
+ [0, 0, 4, () => OutputConfig, 0, 0, 0],
1451
+ ];
1452
+ var CreatePolicyEngineRequest = [
1453
+ 3,
1454
+ n0,
1455
+ _CPER,
1456
+ 0,
1457
+ [_n, _d, _cTl],
1458
+ [0, [() => Description, 0], [0, 4]],
1459
+ ];
1460
+ var CreatePolicyEngineResponse = [
1461
+ 3,
1462
+ n0,
1463
+ _CPERr,
1464
+ 0,
1465
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
1466
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1467
+ ];
1468
+ var CreatePolicyRequest = [
1469
+ 3,
1470
+ n0,
1471
+ _CPR,
1472
+ 0,
1473
+ [_n, _de, _d, _vM, _pEI, _cTl],
1474
+ [0, () => PolicyDefinition, [() => Description, 0], 0, [0, 1], [0, 4]],
1475
+ ];
1476
+ var CreatePolicyResponse = [
1477
+ 3,
1478
+ n0,
1479
+ _CPRr,
1480
+ 0,
1481
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
1482
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1483
+ ];
1164
1484
  var CreateWorkloadIdentityRequest = [
1165
1485
  3,
1166
1486
  n0,
@@ -1185,13 +1505,21 @@ var CredentialProviderConfiguration = [
1185
1505
  [_cPT, _cP],
1186
1506
  [0, [() => CredentialProvider, 0]],
1187
1507
  ];
1508
+ var CustomClaimValidationType = [
1509
+ 3,
1510
+ n0,
1511
+ _CCVT,
1512
+ 0,
1513
+ [_iTCN, _iTCVT, _aCMV],
1514
+ [0, 0, () => AuthorizingClaimMatchValueType],
1515
+ ];
1188
1516
  var CustomJWTAuthorizerConfiguration = [
1189
1517
  3,
1190
1518
  n0,
1191
1519
  _CJWTAC,
1192
1520
  0,
1193
- [_dU, _aA, _aCl],
1194
- [0, 64 | 0, 64 | 0],
1521
+ [_dU, _aA, _aCl, _aS, _cC],
1522
+ [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType],
1195
1523
  ];
1196
1524
  var CustomMemoryStrategyInput = [
1197
1525
  3,
@@ -1217,17 +1545,7 @@ var CustomOauth2ProviderConfigOutput = [
1217
1545
  [_oD, _cI],
1218
1546
  [() => Oauth2Discovery, 0],
1219
1547
  ];
1220
- var DecryptionFailure = [
1221
- -3,
1222
- n0,
1223
- _DF,
1224
- {
1225
- [_e]: _c,
1226
- [_hE]: 400,
1227
- },
1228
- [_m],
1229
- [0],
1230
- ];
1548
+ var DecryptionFailure = [-3, n0, _DF, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1231
1549
  schema.TypeRegistry.for(n0).registerError(DecryptionFailure, DecryptionFailure$1);
1232
1550
  var DeleteAgentRuntimeEndpointRequest = [
1233
1551
  3,
@@ -1238,13 +1556,7 @@ var DeleteAgentRuntimeEndpointRequest = [
1238
1556
  [
1239
1557
  [0, 1],
1240
1558
  [() => EndpointName, 1],
1241
- [
1242
- 0,
1243
- {
1244
- [_iT]: 1,
1245
- [_hQ]: _cTl,
1246
- },
1247
- ],
1559
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1248
1560
  ],
1249
1561
  ];
1250
1562
  var DeleteAgentRuntimeEndpointResponse = [
@@ -1263,13 +1575,7 @@ var DeleteAgentRuntimeRequest = [
1263
1575
  [_aRI, _cTl],
1264
1576
  [
1265
1577
  [0, 1],
1266
- [
1267
- 0,
1268
- {
1269
- [_iT]: 1,
1270
- [_hQ]: _cTl,
1271
- },
1272
- ],
1578
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1273
1579
  ],
1274
1580
  ];
1275
1581
  var DeleteAgentRuntimeResponse = [3, n0, _DARRe, 0, [_s, _aRI], [0, 0]];
@@ -1283,13 +1589,7 @@ var DeleteBrowserRequest = [
1283
1589
  [_bI, _cTl],
1284
1590
  [
1285
1591
  [0, 1],
1286
- [
1287
- 0,
1288
- {
1289
- [_iT]: 1,
1290
- [_hQ]: _cTl,
1291
- },
1292
- ],
1592
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1293
1593
  ],
1294
1594
  ];
1295
1595
  var DeleteBrowserResponse = [3, n0, _DBRe, 0, [_bI, _s, _lUA], [0, 0, 5]];
@@ -1301,16 +1601,12 @@ var DeleteCodeInterpreterRequest = [
1301
1601
  [_cII, _cTl],
1302
1602
  [
1303
1603
  [0, 1],
1304
- [
1305
- 0,
1306
- {
1307
- [_iT]: 1,
1308
- [_hQ]: _cTl,
1309
- },
1310
- ],
1604
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1311
1605
  ],
1312
1606
  ];
1313
1607
  var DeleteCodeInterpreterResponse = [3, n0, _DCIRe, 0, [_cII, _s, _lUA], [0, 0, 5]];
1608
+ var DeleteEvaluatorRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
1609
+ var DeleteEvaluatorResponse = [3, n0, _DERe, 0, [_eA, _eI, _s], [0, 0, 0]];
1314
1610
  var DeleteGatewayRequest = [3, n0, _DGR, 0, [_gIa], [[0, 1]]];
1315
1611
  var DeleteGatewayResponse = [3, n0, _DGRe, 0, [_gI, _s, _sR], [0, 0, 64 | 0]];
1316
1612
  var DeleteGatewayTargetRequest = [
@@ -1337,42 +1633,131 @@ var DeleteMemoryInput = [
1337
1633
  n0,
1338
1634
  _DMI,
1339
1635
  0,
1340
- [_cTl, _mI],
1636
+ [_cTl, _mIe],
1341
1637
  [
1342
- [
1343
- 0,
1344
- {
1345
- [_iT]: 1,
1346
- [_hQ]: _cTl,
1347
- },
1348
- ],
1638
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1349
1639
  [0, 1],
1350
1640
  ],
1351
1641
  ];
1352
- var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mI, _s], [0, 0]];
1642
+ var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mIe, _s], [0, 0]];
1353
1643
  var DeleteMemoryStrategyInput = [3, n0, _DMSI, 0, [_mSI], [0]];
1354
1644
  var DeleteOauth2CredentialProviderRequest = [3, n0, _DOCPR, 0, [_n], [0]];
1355
1645
  var DeleteOauth2CredentialProviderResponse = [3, n0, _DOCPRe, 0, [], []];
1646
+ var DeleteOnlineEvaluationConfigRequest = [3, n0, _DOECR, 0, [_oECI], [[0, 1]]];
1647
+ var DeleteOnlineEvaluationConfigResponse = [
1648
+ 3,
1649
+ n0,
1650
+ _DOECRe,
1651
+ 0,
1652
+ [_oECA, _oECI, _s],
1653
+ [0, 0, 0],
1654
+ ];
1655
+ var DeletePolicyEngineRequest = [3, n0, _DPER, 0, [_pEI], [[0, 1]]];
1656
+ var DeletePolicyEngineResponse = [
1657
+ 3,
1658
+ n0,
1659
+ _DPERe,
1660
+ 0,
1661
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
1662
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1663
+ ];
1664
+ var DeletePolicyRequest = [
1665
+ 3,
1666
+ n0,
1667
+ _DPR,
1668
+ 0,
1669
+ [_pEI, _pI],
1670
+ [
1671
+ [0, 1],
1672
+ [0, 1],
1673
+ ],
1674
+ ];
1675
+ var DeletePolicyResponse = [
1676
+ 3,
1677
+ n0,
1678
+ _DPRe,
1679
+ 0,
1680
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
1681
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1682
+ ];
1683
+ var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_rAe], [[0, 1]]];
1684
+ var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
1356
1685
  var DeleteWorkloadIdentityRequest = [3, n0, _DWIR, 0, [_n], [0]];
1357
1686
  var DeleteWorkloadIdentityResponse = [3, n0, _DWIRe, 0, [], []];
1358
- var EncryptionFailure = [
1359
- -3,
1687
+ var EncryptionFailure = [-3, n0, _EF, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1688
+ schema.TypeRegistry.for(n0).registerError(EncryptionFailure, EncryptionFailure$1);
1689
+ var EpisodicConsolidationOverride = [3, n0, _ECO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1690
+ var EpisodicExtractionOverride = [3, n0, _EEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1691
+ var EpisodicMemoryStrategyInput = [
1692
+ 3,
1360
1693
  n0,
1361
- _EF,
1362
- {
1363
- [_e]: _c,
1364
- [_hE]: 400,
1365
- },
1366
- [_m],
1367
- [0],
1694
+ _EMSI,
1695
+ 0,
1696
+ [_n, _d, _na, _rC],
1697
+ [0, [() => Description, 0], 64 | 0, () => EpisodicReflectionConfigurationInput],
1368
1698
  ];
1369
- schema.TypeRegistry.for(n0).registerError(EncryptionFailure, EncryptionFailure$1);
1699
+ var EpisodicOverrideConfigurationInput = [
1700
+ 3,
1701
+ n0,
1702
+ _EOCI,
1703
+ 0,
1704
+ [_ex, _cons, _ref],
1705
+ [
1706
+ [() => EpisodicOverrideExtractionConfigurationInput, 0],
1707
+ [() => EpisodicOverrideConsolidationConfigurationInput, 0],
1708
+ [() => EpisodicOverrideReflectionConfigurationInput, 0],
1709
+ ],
1710
+ ];
1711
+ var EpisodicOverrideConsolidationConfigurationInput = [
1712
+ 3,
1713
+ n0,
1714
+ _EOCCI,
1715
+ 0,
1716
+ [_aTP, _mI],
1717
+ [[() => Prompt, 0], 0],
1718
+ ];
1719
+ var EpisodicOverrideExtractionConfigurationInput = [
1720
+ 3,
1721
+ n0,
1722
+ _EOECI,
1723
+ 0,
1724
+ [_aTP, _mI],
1725
+ [[() => Prompt, 0], 0],
1726
+ ];
1727
+ var EpisodicOverrideReflectionConfigurationInput = [
1728
+ 3,
1729
+ n0,
1730
+ _EORCI,
1731
+ 0,
1732
+ [_aTP, _mI, _na],
1733
+ [[() => Prompt, 0], 0, 64 | 0],
1734
+ ];
1735
+ var EpisodicReflectionConfiguration = [3, n0, _ERC, 0, [_na], [64 | 0]];
1736
+ var EpisodicReflectionConfigurationInput = [3, n0, _ERCI, 0, [_na], [64 | 0]];
1737
+ var EpisodicReflectionOverride = [
1738
+ 3,
1739
+ n0,
1740
+ _ERO,
1741
+ 0,
1742
+ [_aTP, _mI, _na],
1743
+ [[() => Prompt, 0], 0, 64 | 0],
1744
+ ];
1745
+ var EvaluatorSummary = [
1746
+ 3,
1747
+ n0,
1748
+ _ES,
1749
+ 0,
1750
+ [_eA, _eI, _eNv, _d, _eT, _le, _s, _cA, _uA, _lFM],
1751
+ [0, 0, 0, [() => EvaluatorDescription, 0], 0, 0, 0, 4, 4, 2],
1752
+ ];
1753
+ var Filter = [3, n0, _F, 0, [_k, _o, _v], [0, 0, () => FilterValue]];
1754
+ var Finding = [3, n0, _Fi, 0, [_ty, _d], [0, 0]];
1370
1755
  var GatewayApiKeyCredentialProvider = [
1371
1756
  3,
1372
1757
  n0,
1373
1758
  _GAKCP,
1374
1759
  0,
1375
- [_pA, _cPN, _cPr, _cL],
1760
+ [_pAr, _cPN, _cPr, _cL],
1376
1761
  [0, 0, 0, 0],
1377
1762
  ];
1378
1763
  var GatewayInterceptorConfiguration = [
@@ -1380,9 +1765,10 @@ var GatewayInterceptorConfiguration = [
1380
1765
  n0,
1381
1766
  _GIC,
1382
1767
  0,
1383
- [_in, _iP, _iCn],
1768
+ [_in, _iP, _iCnp],
1384
1769
  [() => InterceptorConfiguration, 64 | 0, () => InterceptorInputConfiguration],
1385
1770
  ];
1771
+ var GatewayPolicyEngineConfiguration = [3, n0, _GPEC, 0, [_a, _mo], [0, 0]];
1386
1772
  var GatewaySummary = [
1387
1773
  3,
1388
1774
  n0,
@@ -1438,12 +1824,7 @@ var GetAgentRuntimeRequest = [
1438
1824
  [_aRI, _aRV],
1439
1825
  [
1440
1826
  [0, 1],
1441
- [
1442
- 0,
1443
- {
1444
- [_hQ]: _v,
1445
- },
1446
- ],
1827
+ [0, { [_hQ]: _ve }],
1447
1828
  ],
1448
1829
  ];
1449
1830
  var GetAgentRuntimeResponse = [
@@ -1451,7 +1832,7 @@ var GetAgentRuntimeResponse = [
1451
1832
  n0,
1452
1833
  _GARRe,
1453
1834
  0,
1454
- [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
1835
+ [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
1455
1836
  [
1456
1837
  0,
1457
1838
  0,
@@ -1463,6 +1844,7 @@ var GetAgentRuntimeResponse = [
1463
1844
  () => NetworkConfiguration,
1464
1845
  0,
1465
1846
  () => LifecycleConfiguration,
1847
+ 0,
1466
1848
  [() => Description, 0],
1467
1849
  () => WorkloadIdentityDetails,
1468
1850
  () => AgentRuntimeArtifact,
@@ -1512,13 +1894,22 @@ var GetCodeInterpreterResponse = [
1512
1894
  [_cII, _cIA, _n, _d, _eRA, _nC, _s, _fR, _cA, _lUA],
1513
1895
  [0, 0, 0, [() => Description, 0], 0, () => CodeInterpreterNetworkConfiguration, 0, 0, 5, 5],
1514
1896
  ];
1897
+ var GetEvaluatorRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
1898
+ var GetEvaluatorResponse = [
1899
+ 3,
1900
+ n0,
1901
+ _GERe,
1902
+ 0,
1903
+ [_eA, _eI, _eNv, _d, _eC, _le, _s, _cA, _uA, _lFM],
1904
+ [0, 0, 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0, 0, 4, 4, 2],
1905
+ ];
1515
1906
  var GetGatewayRequest = [3, n0, _GGR, 0, [_gIa], [[0, 1]]];
1516
1907
  var GetGatewayResponse = [
1517
1908
  3,
1518
1909
  n0,
1519
1910
  _GGRe,
1520
1911
  0,
1521
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
1912
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
1522
1913
  [
1523
1914
  0,
1524
1915
  0,
@@ -1536,6 +1927,7 @@ var GetGatewayResponse = [
1536
1927
  () => AuthorizerConfiguration,
1537
1928
  0,
1538
1929
  () => GatewayInterceptorConfigurations,
1930
+ () => GatewayPolicyEngineConfiguration,
1539
1931
  () => WorkloadIdentityDetails,
1540
1932
  0,
1541
1933
  ],
@@ -1571,8 +1963,8 @@ var GetGatewayTargetResponse = [
1571
1963
  5,
1572
1964
  ],
1573
1965
  ];
1574
- var GetMemoryInput = [3, n0, _GMI, 0, [_mI], [[0, 1]]];
1575
- var GetMemoryOutput = [3, n0, _GMO, 0, [_me], [[() => Memory, 0]]];
1966
+ var GetMemoryInput = [3, n0, _GMI, 0, [_mIe], [[0, 1]]];
1967
+ var GetMemoryOutput = [3, n0, _GMO, 0, [_mem], [[() => Memory, 0]]];
1576
1968
  var GetOauth2CredentialProviderRequest = [3, n0, _GOCPR, 0, [_n], [0]];
1577
1969
  var GetOauth2CredentialProviderResponse = [
1578
1970
  3,
@@ -1582,6 +1974,79 @@ var GetOauth2CredentialProviderResponse = [
1582
1974
  [_cSA, _n, _cPA, _cPV, _cUa, _oPCO, _cT, _lUT],
1583
1975
  [() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
1584
1976
  ];
1977
+ var GetOnlineEvaluationConfigRequest = [3, n0, _GOECR, 0, [_oECI], [[0, 1]]];
1978
+ var GetOnlineEvaluationConfigResponse = [
1979
+ 3,
1980
+ n0,
1981
+ _GOECRe,
1982
+ 0,
1983
+ [_oECA, _oECI, _oECN, _d, _ru, _dSC, _ev, _oC, _eERA, _s, _eS, _cA, _uA, _fR],
1984
+ [
1985
+ 0,
1986
+ 0,
1987
+ 0,
1988
+ [() => EvaluationConfigDescription, 0],
1989
+ () => Rule,
1990
+ () => DataSourceConfig,
1991
+ () => EvaluatorList,
1992
+ () => OutputConfig,
1993
+ 0,
1994
+ 0,
1995
+ 0,
1996
+ 4,
1997
+ 4,
1998
+ 0,
1999
+ ],
2000
+ ];
2001
+ var GetPolicyEngineRequest = [3, n0, _GPER, 0, [_pEI], [[0, 1]]];
2002
+ var GetPolicyEngineResponse = [
2003
+ 3,
2004
+ n0,
2005
+ _GPERe,
2006
+ 0,
2007
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
2008
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2009
+ ];
2010
+ var GetPolicyGenerationRequest = [
2011
+ 3,
2012
+ n0,
2013
+ _GPGR,
2014
+ 0,
2015
+ [_pGI, _pEI],
2016
+ [
2017
+ [0, 1],
2018
+ [0, 1],
2019
+ ],
2020
+ ];
2021
+ var GetPolicyGenerationResponse = [
2022
+ 3,
2023
+ n0,
2024
+ _GPGRe,
2025
+ 0,
2026
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
2027
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
2028
+ ];
2029
+ var GetPolicyRequest = [
2030
+ 3,
2031
+ n0,
2032
+ _GPR,
2033
+ 0,
2034
+ [_pEI, _pI],
2035
+ [
2036
+ [0, 1],
2037
+ [0, 1],
2038
+ ],
2039
+ ];
2040
+ var GetPolicyResponse = [
2041
+ 3,
2042
+ n0,
2043
+ _GPRe,
2044
+ 0,
2045
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
2046
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2047
+ ];
2048
+ var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rAe], [[0, 1]]];
2049
+ var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_po], [0]];
1585
2050
  var GetTokenVaultRequest = [3, n0, _GTVR, 0, [_tVI], [0]];
1586
2051
  var GetTokenVaultResponse = [
1587
2052
  3,
@@ -1648,20 +2113,11 @@ var IncludedOauth2ProviderConfigOutput = [
1648
2113
  [_oD, _cI],
1649
2114
  [() => Oauth2Discovery, 0],
1650
2115
  ];
2116
+ var InferenceConfiguration = [3, n0, _IC, 0, [_mT, _te, _tP, _sS], [1, 1, 1, 64 | 0]];
1651
2117
  var InterceptorInputConfiguration = [3, n0, _IIC, 0, [_pRH], [2]];
1652
- var InternalServerException = [
1653
- -3,
1654
- n0,
1655
- _ISE,
1656
- {
1657
- [_e]: _se,
1658
- [_hE]: 500,
1659
- },
1660
- [_m],
1661
- [0],
1662
- ];
2118
+ var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1663
2119
  schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1664
- var InvocationConfiguration = [3, n0, _IC, 0, [_tA, _pDBN], [0, 0]];
2120
+ var InvocationConfiguration = [3, n0, _ICn, 0, [_tA, _pDBN], [0, 0]];
1665
2121
  var InvocationConfigurationInput = [3, n0, _ICI, 0, [_tA, _pDBN], [0, 0]];
1666
2122
  var KmsConfiguration = [3, n0, _KC, 0, [_kT, _kKA], [0, 0]];
1667
2123
  var LambdaInterceptorConfiguration = [3, n0, _LIC, 0, [_a], [0]];
@@ -1690,18 +2146,8 @@ var ListAgentRuntimeEndpointsRequest = [
1690
2146
  [_aRI, _mR, _nT],
1691
2147
  [
1692
2148
  [0, 1],
1693
- [
1694
- 1,
1695
- {
1696
- [_hQ]: _mR,
1697
- },
1698
- ],
1699
- [
1700
- 0,
1701
- {
1702
- [_hQ]: _nT,
1703
- },
1704
- ],
2149
+ [1, { [_hQ]: _mR }],
2150
+ [0, { [_hQ]: _nT }],
1705
2151
  ],
1706
2152
  ];
1707
2153
  var ListAgentRuntimeEndpointsResponse = [
@@ -1719,18 +2165,8 @@ var ListAgentRuntimesRequest = [
1719
2165
  0,
1720
2166
  [_mR, _nT],
1721
2167
  [
1722
- [
1723
- 1,
1724
- {
1725
- [_hQ]: _mR,
1726
- },
1727
- ],
1728
- [
1729
- 0,
1730
- {
1731
- [_hQ]: _nT,
1732
- },
1733
- ],
2168
+ [1, { [_hQ]: _mR }],
2169
+ [0, { [_hQ]: _nT }],
1734
2170
  ],
1735
2171
  ];
1736
2172
  var ListAgentRuntimesResponse = [
@@ -1749,18 +2185,8 @@ var ListAgentRuntimeVersionsRequest = [
1749
2185
  [_aRI, _mR, _nT],
1750
2186
  [
1751
2187
  [0, 1],
1752
- [
1753
- 1,
1754
- {
1755
- [_hQ]: _mR,
1756
- },
1757
- ],
1758
- [
1759
- 0,
1760
- {
1761
- [_hQ]: _nT,
1762
- },
1763
- ],
2188
+ [1, { [_hQ]: _mR }],
2189
+ [0, { [_hQ]: _nT }],
1764
2190
  ],
1765
2191
  ];
1766
2192
  var ListAgentRuntimeVersionsResponse = [
@@ -1787,24 +2213,9 @@ var ListBrowsersRequest = [
1787
2213
  0,
1788
2214
  [_mR, _nT, _ty],
1789
2215
  [
1790
- [
1791
- 1,
1792
- {
1793
- [_hQ]: _mR,
1794
- },
1795
- ],
1796
- [
1797
- 0,
1798
- {
1799
- [_hQ]: _nT,
1800
- },
1801
- ],
1802
- [
1803
- 0,
1804
- {
1805
- [_hQ]: _ty,
1806
- },
1807
- ],
2216
+ [1, { [_hQ]: _mR }],
2217
+ [0, { [_hQ]: _nT }],
2218
+ [0, { [_hQ]: _ty }],
1808
2219
  ],
1809
2220
  ];
1810
2221
  var ListBrowsersResponse = [
@@ -1822,24 +2233,9 @@ var ListCodeInterpretersRequest = [
1822
2233
  0,
1823
2234
  [_mR, _nT, _ty],
1824
2235
  [
1825
- [
1826
- 1,
1827
- {
1828
- [_hQ]: _mR,
1829
- },
1830
- ],
1831
- [
1832
- 0,
1833
- {
1834
- [_hQ]: _nT,
1835
- },
1836
- ],
1837
- [
1838
- 0,
1839
- {
1840
- [_hQ]: _ty,
1841
- },
1842
- ],
2236
+ [1, { [_hQ]: _mR }],
2237
+ [0, { [_hQ]: _nT }],
2238
+ [0, { [_hQ]: _ty }],
1843
2239
  ],
1844
2240
  ];
1845
2241
  var ListCodeInterpretersResponse = [
@@ -1850,6 +2246,25 @@ var ListCodeInterpretersResponse = [
1850
2246
  [_cIS, _nT],
1851
2247
  [[() => CodeInterpreterSummaries, 0], 0],
1852
2248
  ];
2249
+ var ListEvaluatorsRequest = [
2250
+ 3,
2251
+ n0,
2252
+ _LER,
2253
+ 0,
2254
+ [_nT, _mR],
2255
+ [
2256
+ [0, { [_hQ]: _nT }],
2257
+ [1, { [_hQ]: _mR }],
2258
+ ],
2259
+ ];
2260
+ var ListEvaluatorsResponse = [
2261
+ 3,
2262
+ n0,
2263
+ _LERi,
2264
+ 0,
2265
+ [_ev, _nT],
2266
+ [[() => EvaluatorSummaryList, 0], 0],
2267
+ ];
1853
2268
  var ListGatewaysRequest = [
1854
2269
  3,
1855
2270
  n0,
@@ -1857,18 +2272,8 @@ var ListGatewaysRequest = [
1857
2272
  0,
1858
2273
  [_mR, _nT],
1859
2274
  [
1860
- [
1861
- 1,
1862
- {
1863
- [_hQ]: _mR,
1864
- },
1865
- ],
1866
- [
1867
- 0,
1868
- {
1869
- [_hQ]: _nT,
1870
- },
1871
- ],
2275
+ [1, { [_hQ]: _mR }],
2276
+ [0, { [_hQ]: _nT }],
1872
2277
  ],
1873
2278
  ];
1874
2279
  var ListGatewaysResponse = [
@@ -1887,18 +2292,8 @@ var ListGatewayTargetsRequest = [
1887
2292
  [_gIa, _mR, _nT],
1888
2293
  [
1889
2294
  [0, 1],
1890
- [
1891
- 1,
1892
- {
1893
- [_hQ]: _mR,
1894
- },
1895
- ],
1896
- [
1897
- 0,
1898
- {
1899
- [_hQ]: _nT,
1900
- },
1901
- ],
2295
+ [1, { [_hQ]: _mR }],
2296
+ [0, { [_hQ]: _nT }],
1902
2297
  ],
1903
2298
  ];
1904
2299
  var ListGatewayTargetsResponse = [
@@ -1910,7 +2305,7 @@ var ListGatewayTargetsResponse = [
1910
2305
  [[() => TargetSummaries, 0], 0],
1911
2306
  ];
1912
2307
  var ListMemoriesInput = [3, n0, _LMI, 0, [_mR, _nT], [1, 0]];
1913
- var ListMemoriesOutput = [3, n0, _LMO, 0, [_mem, _nT], [() => MemorySummaryList, 0]];
2308
+ var ListMemoriesOutput = [3, n0, _LMO, 0, [_memo, _nT], [() => MemorySummaryList, 0]];
1914
2309
  var ListOauth2CredentialProvidersRequest = [3, n0, _LOCPR, 0, [_nT, _mR], [0, 1]];
1915
2310
  var ListOauth2CredentialProvidersResponse = [
1916
2311
  3,
@@ -1920,6 +2315,99 @@ var ListOauth2CredentialProvidersResponse = [
1920
2315
  [_cPre, _nT],
1921
2316
  [() => Oauth2CredentialProviders, 0],
1922
2317
  ];
2318
+ var ListOnlineEvaluationConfigsRequest = [
2319
+ 3,
2320
+ n0,
2321
+ _LOECR,
2322
+ 0,
2323
+ [_nT, _mR],
2324
+ [
2325
+ [0, { [_hQ]: _nT }],
2326
+ [1, { [_hQ]: _mR }],
2327
+ ],
2328
+ ];
2329
+ var ListOnlineEvaluationConfigsResponse = [
2330
+ 3,
2331
+ n0,
2332
+ _LOECRi,
2333
+ 0,
2334
+ [_oEC, _nT],
2335
+ [[() => OnlineEvaluationConfigSummaryList, 0], 0],
2336
+ ];
2337
+ var ListPoliciesRequest = [
2338
+ 3,
2339
+ n0,
2340
+ _LPR,
2341
+ 0,
2342
+ [_nT, _mR, _pEI, _tRS],
2343
+ [
2344
+ [0, { [_hQ]: _nT }],
2345
+ [1, { [_hQ]: _mR }],
2346
+ [0, 1],
2347
+ [0, { [_hQ]: _tRS }],
2348
+ ],
2349
+ ];
2350
+ var ListPoliciesResponse = [3, n0, _LPRi, 0, [_pol, _nT], [[() => Policies, 0], 0]];
2351
+ var ListPolicyEnginesRequest = [
2352
+ 3,
2353
+ n0,
2354
+ _LPER,
2355
+ 0,
2356
+ [_nT, _mR],
2357
+ [
2358
+ [0, { [_hQ]: _nT }],
2359
+ [1, { [_hQ]: _mR }],
2360
+ ],
2361
+ ];
2362
+ var ListPolicyEnginesResponse = [
2363
+ 3,
2364
+ n0,
2365
+ _LPERi,
2366
+ 0,
2367
+ [_pE, _nT],
2368
+ [[() => PolicyEngines, 0], 0],
2369
+ ];
2370
+ var ListPolicyGenerationAssetsRequest = [
2371
+ 3,
2372
+ n0,
2373
+ _LPGAR,
2374
+ 0,
2375
+ [_pGI, _pEI, _nT, _mR],
2376
+ [
2377
+ [0, 1],
2378
+ [0, 1],
2379
+ [0, { [_hQ]: _nT }],
2380
+ [1, { [_hQ]: _mR }],
2381
+ ],
2382
+ ];
2383
+ var ListPolicyGenerationAssetsResponse = [
2384
+ 3,
2385
+ n0,
2386
+ _LPGARi,
2387
+ 0,
2388
+ [_pGAo, _nT],
2389
+ [() => PolicyGenerationAssets, 0],
2390
+ ];
2391
+ var ListPolicyGenerationsRequest = [
2392
+ 3,
2393
+ n0,
2394
+ _LPGR,
2395
+ 0,
2396
+ [_nT, _mR, _pEI],
2397
+ [
2398
+ [0, { [_hQ]: _nT }],
2399
+ [1, { [_hQ]: _mR }],
2400
+ [0, 1],
2401
+ ],
2402
+ ];
2403
+ var ListPolicyGenerationsResponse = [
2404
+ 3,
2405
+ n0,
2406
+ _LPGRi,
2407
+ 0,
2408
+ [_pG, _nT],
2409
+ [() => PolicyGenerations, 0],
2410
+ ];
1923
2411
  var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
1924
2412
  var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1925
2413
  var ListWorkloadIdentitiesRequest = [3, n0, _LWIR, 0, [_nT, _mR], [0, 1]];
@@ -1931,6 +2419,14 @@ var ListWorkloadIdentitiesResponse = [
1931
2419
  [_wI, _nT],
1932
2420
  [() => WorkloadIdentityList, 0],
1933
2421
  ];
2422
+ var LlmAsAJudgeEvaluatorConfig = [
2423
+ 3,
2424
+ n0,
2425
+ _LAAJEC,
2426
+ 0,
2427
+ [_ins, _rS, _mC],
2428
+ [[() => EvaluatorInstructions, 0], () => RatingScale, () => EvaluatorModelConfig],
2429
+ ];
1934
2430
  var MCPGatewayConfiguration = [3, n0, _MCPGC, 0, [_sV, _ins, _sT], [64 | 0, 0, 0]];
1935
2431
  var McpLambdaTargetConfiguration = [3, n0, _MLTC, 0, [_lA, _tS], [0, () => ToolSchema]];
1936
2432
  var McpServerTargetConfiguration = [3, n0, _MSTC, 0, [_end], [0]];
@@ -1939,7 +2435,7 @@ var Memory = [
1939
2435
  n0,
1940
2436
  _M,
1941
2437
  0,
1942
- [_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _st],
2438
+ [_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _str],
1943
2439
  [0, 0, 0, [() => Description, 0], 0, 0, 1, 0, 0, 4, 4, [() => MemoryStrategyList, 0]],
1944
2440
  ];
1945
2441
  var MemoryStrategy = [
@@ -1951,8 +2447,8 @@ var MemoryStrategy = [
1951
2447
  [0, 0, [() => Description, 0], [() => StrategyConfiguration, 0], 0, 64 | 0, 4, 4, 0],
1952
2448
  ];
1953
2449
  var MemorySummary = [3, n0, _MSe, 0, [_a, _i, _s, _cA, _uA], [0, 0, 0, 4, 4]];
1954
- var MessageBasedTrigger = [3, n0, _MBT, 0, [_mC], [1]];
1955
- var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mC], [1]];
2450
+ var MessageBasedTrigger = [3, n0, _MBT, 0, [_mCe], [1]];
2451
+ var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mCe], [1]];
1956
2452
  var MicrosoftOauth2ProviderConfigInput = [
1957
2453
  3,
1958
2454
  n0,
@@ -1999,14 +2495,16 @@ var ModifyStrategyConfiguration = [
1999
2495
  n0,
2000
2496
  _MSC,
2001
2497
  0,
2002
- [_ex, _cons, _sMC],
2498
+ [_ex, _cons, _ref, _sMC],
2003
2499
  [
2004
2500
  [() => ModifyExtractionConfiguration, 0],
2005
2501
  [() => ModifyConsolidationConfiguration, 0],
2502
+ [() => ModifyReflectionConfiguration, 0],
2006
2503
  () => ModifySelfManagedConfiguration,
2007
2504
  ],
2008
2505
  ];
2009
2506
  var NetworkConfiguration = [3, n0, _NC, 0, [_nM, _nMC], [0, () => VpcConfig]];
2507
+ var NumericalScaleDefinition = [3, n0, _NSD, 0, [_de, _v, _l], [0, 1, 0]];
2010
2508
  var Oauth2AuthorizationServerMetadata = [
2011
2509
  3,
2012
2510
  n0,
@@ -2028,37 +2526,68 @@ var OAuthCredentialProvider = [
2028
2526
  n0,
2029
2527
  _OACP,
2030
2528
  0,
2031
- [_pA, _sc, _cPu],
2032
- [0, 64 | 0, [() => OAuthCustomParameters, 0]],
2529
+ [_pAr, _sc, _cPu, _gT, _dRU],
2530
+ [0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0],
2033
2531
  ];
2034
- var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
2035
- var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
2036
- var ResourceLimitExceededException = [
2037
- -3,
2532
+ var OnlineEvaluationConfigSummary = [
2533
+ 3,
2038
2534
  n0,
2039
- _RLEE,
2040
- {
2041
- [_e]: _c,
2042
- [_hE]: 400,
2043
- },
2044
- [_m],
2045
- [0],
2535
+ _OECS,
2536
+ 0,
2537
+ [_oECA, _oECI, _oECN, _d, _s, _eS, _cA, _uA, _fR],
2538
+ [0, 0, 0, [() => EvaluationConfigDescription, 0], 0, 0, 4, 4, 0],
2046
2539
  ];
2047
- schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException, ResourceLimitExceededException$1);
2048
- var ResourceNotFoundException = [
2049
- -3,
2540
+ var OutputConfig = [3, n0, _OC, 0, [_cWC], [() => CloudWatchOutputConfig]];
2541
+ var Policy = [
2542
+ 3,
2543
+ n0,
2544
+ _Po,
2545
+ 0,
2546
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
2547
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2548
+ ];
2549
+ var PolicyEngine = [
2550
+ 3,
2551
+ n0,
2552
+ _PE,
2553
+ 0,
2554
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
2555
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2556
+ ];
2557
+ var PolicyGeneration = [
2558
+ 3,
2559
+ n0,
2560
+ _PG,
2561
+ 0,
2562
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
2563
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
2564
+ ];
2565
+ var PolicyGenerationAsset = [
2566
+ 3,
2050
2567
  n0,
2051
- _RNFE,
2052
- {
2053
- [_e]: _c,
2054
- [_hE]: 404,
2055
- },
2056
- [_m],
2057
- [0],
2568
+ _PGA,
2569
+ 0,
2570
+ [_pGAI, _de, _rTF, _f],
2571
+ [0, () => PolicyDefinition, 0, () => Findings],
2058
2572
  ];
2573
+ var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
2574
+ var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_rAe, _po], [[0, 1], 0]];
2575
+ var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [_po], [0]];
2576
+ var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
2577
+ var ResourceLimitExceededException = [-3, n0, _RLEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
2578
+ schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException, ResourceLimitExceededException$1);
2579
+ var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
2059
2580
  schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
2581
+ var Rule = [
2582
+ 3,
2583
+ n0,
2584
+ _R,
2585
+ 0,
2586
+ [_sC, _fi, _sCe],
2587
+ [() => SamplingConfig, () => FilterList, () => SessionConfig],
2588
+ ];
2060
2589
  var S3Configuration = [3, n0, _SC, 0, [_u, _bOAI], [0, 0]];
2061
- var S3Location = [3, n0, _SL, 0, [_b, _p, _vI], [0, 0, 0]];
2590
+ var S3Location = [3, n0, _SL, 0, [_b, _pr, _vI], [0, 0, 0]];
2062
2591
  var SalesforceOauth2ProviderConfigInput = [
2063
2592
  3,
2064
2593
  n0,
@@ -2075,12 +2604,13 @@ var SalesforceOauth2ProviderConfigOutput = [
2075
2604
  [_oD, _cI],
2076
2605
  [() => Oauth2Discovery, 0],
2077
2606
  ];
2607
+ var SamplingConfig = [3, n0, _SCa, 0, [_sPa], [1]];
2078
2608
  var SchemaDefinition = [
2079
2609
  3,
2080
2610
  n0,
2081
2611
  _SD,
2082
2612
  0,
2083
- [_ty, _pr, _req, _it, _d],
2613
+ [_ty, _pro, _req, _it, _d],
2084
2614
  [0, () => SchemaProperties, 64 | 0, () => SchemaDefinition, 0],
2085
2615
  ];
2086
2616
  var Secret = [3, n0, _S, 0, [_sA], [0]];
@@ -2100,19 +2630,12 @@ var SelfManagedConfigurationInput = [
2100
2630
  [_tCr, _iCnv, _hCWS],
2101
2631
  [() => TriggerConditionInputList, () => InvocationConfigurationInput, 1],
2102
2632
  ];
2103
- var SemanticConsolidationOverride = [
2633
+ var SemanticConsolidationOverride = [3, n0, _SCO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
2634
+ var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
2635
+ var SemanticMemoryStrategyInput = [
2104
2636
  3,
2105
2637
  n0,
2106
- _SCO,
2107
- 0,
2108
- [_aTP, _mIo],
2109
- [[() => Prompt, 0], 0],
2110
- ];
2111
- var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mIo], [[() => Prompt, 0], 0]];
2112
- var SemanticMemoryStrategyInput = [
2113
- 3,
2114
- n0,
2115
- _SMSI,
2638
+ _SMSI,
2116
2639
  0,
2117
2640
  [_n, _d, _na],
2118
2641
  [0, [() => Description, 0], 64 | 0],
@@ -2133,7 +2656,7 @@ var SemanticOverrideConsolidationConfigurationInput = [
2133
2656
  n0,
2134
2657
  _SOCCI,
2135
2658
  0,
2136
- [_aTP, _mIo],
2659
+ [_aTP, _mI],
2137
2660
  [[() => Prompt, 0], 0],
2138
2661
  ];
2139
2662
  var SemanticOverrideExtractionConfigurationInput = [
@@ -2141,33 +2664,14 @@ var SemanticOverrideExtractionConfigurationInput = [
2141
2664
  n0,
2142
2665
  _SOECI,
2143
2666
  0,
2144
- [_aTP, _mIo],
2667
+ [_aTP, _mI],
2145
2668
  [[() => Prompt, 0], 0],
2146
2669
  ];
2147
- var ServiceException = [
2148
- -3,
2149
- n0,
2150
- _SE,
2151
- {
2152
- [_e]: _se,
2153
- [_hE]: 500,
2154
- },
2155
- [_m],
2156
- [0],
2157
- ];
2670
+ var ServiceException = [-3, n0, _SE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
2158
2671
  schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
2159
- var ServiceQuotaExceededException = [
2160
- -3,
2161
- n0,
2162
- _SQEE,
2163
- {
2164
- [_e]: _c,
2165
- [_hE]: 402,
2166
- },
2167
- [_m],
2168
- [0],
2169
- ];
2672
+ var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
2170
2673
  schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
2674
+ var SessionConfig = [3, n0, _SCe, 0, [_sTM], [1]];
2171
2675
  var SetTokenVaultCMKRequest = [
2172
2676
  3,
2173
2677
  n0,
@@ -2200,22 +2704,37 @@ var SlackOauth2ProviderConfigOutput = [
2200
2704
  [_oD, _cI],
2201
2705
  [() => Oauth2Discovery, 0],
2202
2706
  ];
2203
- var StrategyConfiguration = [
2707
+ var StartPolicyGenerationRequest = [
2204
2708
  3,
2205
2709
  n0,
2206
- _SCt,
2710
+ _SPGR,
2207
2711
  0,
2208
- [_ty, _ex, _cons, _sMC],
2209
- [0, [() => ExtractionConfiguration, 0], [() => ConsolidationConfiguration, 0], () => SelfManagedConfiguration],
2712
+ [_pEI, _res, _cont, _n, _cTl],
2713
+ [[0, 1], () => Resource, () => Content, 0, [0, 4]],
2210
2714
  ];
2211
- var SummaryConsolidationOverride = [
2715
+ var StartPolicyGenerationResponse = [
2212
2716
  3,
2213
2717
  n0,
2214
- _SCOu,
2718
+ _SPGRt,
2215
2719
  0,
2216
- [_aTP, _mIo],
2217
- [[() => Prompt, 0], 0],
2720
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
2721
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
2218
2722
  ];
2723
+ var StrategyConfiguration = [
2724
+ 3,
2725
+ n0,
2726
+ _SCt,
2727
+ 0,
2728
+ [_ty, _ex, _cons, _ref, _sMC],
2729
+ [
2730
+ 0,
2731
+ [() => ExtractionConfiguration, 0],
2732
+ [() => ConsolidationConfiguration, 0],
2733
+ [() => ReflectionConfiguration, 0],
2734
+ () => SelfManagedConfiguration,
2735
+ ],
2736
+ ];
2737
+ var SummaryConsolidationOverride = [3, n0, _SCOu, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
2219
2738
  var SummaryMemoryStrategyInput = [
2220
2739
  3,
2221
2740
  n0,
@@ -2237,7 +2756,7 @@ var SummaryOverrideConsolidationConfigurationInput = [
2237
2756
  n0,
2238
2757
  _SOCCIu,
2239
2758
  0,
2240
- [_aTP, _mIo],
2759
+ [_aTP, _mI],
2241
2760
  [[() => Prompt, 0], 0],
2242
2761
  ];
2243
2762
  var SynchronizeGatewayTargetsRequest = [3, n0, _SGTR, 0, [_gIa, _tIL], [[0, 1], 64 | 0]];
@@ -2259,29 +2778,9 @@ var TargetSummary = [
2259
2778
  [_tI, _n, _s, _d, _cA, _uA],
2260
2779
  [0, [() => TargetName, 0], 0, [() => TargetDescription, 0], 5, 5],
2261
2780
  ];
2262
- var ThrottledException = [
2263
- -3,
2264
- n0,
2265
- _TE,
2266
- {
2267
- [_e]: _c,
2268
- [_hE]: 429,
2269
- },
2270
- [_m],
2271
- [0],
2272
- ];
2781
+ var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
2273
2782
  schema.TypeRegistry.for(n0).registerError(ThrottledException, ThrottledException$1);
2274
- var ThrottlingException = [
2275
- -3,
2276
- n0,
2277
- _TEh,
2278
- {
2279
- [_e]: _c,
2280
- [_hE]: 429,
2281
- },
2282
- [_m],
2283
- [0],
2284
- ];
2783
+ var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
2285
2784
  schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
2286
2785
  var TimeBasedTrigger = [3, n0, _TBT, 0, [_iST], [1]];
2287
2786
  var TimeBasedTriggerInput = [3, n0, _TBTI, 0, [_iST], [1]];
@@ -2295,17 +2794,7 @@ var ToolDefinition = [
2295
2794
  [_n, _d, _iS, _oS],
2296
2795
  [0, 0, () => SchemaDefinition, () => SchemaDefinition],
2297
2796
  ];
2298
- var UnauthorizedException = [
2299
- -3,
2300
- n0,
2301
- _UE,
2302
- {
2303
- [_e]: _c,
2304
- [_hE]: 401,
2305
- },
2306
- [_m],
2307
- [0],
2308
- ];
2797
+ var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
2309
2798
  schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
2310
2799
  var UntagResourceRequest = [
2311
2800
  3,
@@ -2315,12 +2804,7 @@ var UntagResourceRequest = [
2315
2804
  [_rAe, _tK],
2316
2805
  [
2317
2806
  [0, 1],
2318
- [
2319
- 64 | 0,
2320
- {
2321
- [_hQ]: _tK,
2322
- },
2323
- ],
2807
+ [64 | 0, { [_hQ]: _tK }],
2324
2808
  ],
2325
2809
  ];
2326
2810
  var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
@@ -2384,12 +2868,21 @@ var UpdateApiKeyCredentialProviderResponse = [
2384
2868
  [_aKSA, _n, _cPA, _cT, _lUT],
2385
2869
  [() => Secret, 0, 0, 4, 4],
2386
2870
  ];
2871
+ var UpdateEvaluatorRequest = [
2872
+ 3,
2873
+ n0,
2874
+ _UER,
2875
+ 0,
2876
+ [_cTl, _eI, _d, _eC, _le],
2877
+ [[0, 4], [0, 1], [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
2878
+ ];
2879
+ var UpdateEvaluatorResponse = [3, n0, _UERp, 0, [_eA, _eI, _uA, _s], [0, 0, 4, 0]];
2387
2880
  var UpdateGatewayRequest = [
2388
2881
  3,
2389
2882
  n0,
2390
2883
  _UGR,
2391
2884
  0,
2392
- [_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _eL],
2885
+ [_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL],
2393
2886
  [
2394
2887
  [0, 1],
2395
2888
  [() => GatewayName, 0],
@@ -2401,6 +2894,7 @@ var UpdateGatewayRequest = [
2401
2894
  () => AuthorizerConfiguration,
2402
2895
  0,
2403
2896
  () => GatewayInterceptorConfigurations,
2897
+ () => GatewayPolicyEngineConfiguration,
2404
2898
  0,
2405
2899
  ],
2406
2900
  ];
@@ -2409,7 +2903,7 @@ var UpdateGatewayResponse = [
2409
2903
  n0,
2410
2904
  _UGRp,
2411
2905
  0,
2412
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
2906
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
2413
2907
  [
2414
2908
  0,
2415
2909
  0,
@@ -2427,6 +2921,7 @@ var UpdateGatewayResponse = [
2427
2921
  () => AuthorizerConfiguration,
2428
2922
  0,
2429
2923
  () => GatewayInterceptorConfigurations,
2924
+ () => GatewayPolicyEngineConfiguration,
2430
2925
  () => WorkloadIdentityDetails,
2431
2926
  0,
2432
2927
  ],
@@ -2471,10 +2966,10 @@ var UpdateMemoryInput = [
2471
2966
  n0,
2472
2967
  _UMI,
2473
2968
  0,
2474
- [_cTl, _mI, _d, _eED, _mERA, _mS],
2969
+ [_cTl, _mIe, _d, _eED, _mERA, _mS],
2475
2970
  [[0, 4], [0, 1], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies, 0]],
2476
2971
  ];
2477
- var UpdateMemoryOutput = [3, n0, _UMO, 0, [_me], [[() => Memory, 0]]];
2972
+ var UpdateMemoryOutput = [3, n0, _UMO, 0, [_mem], [[() => Memory, 0]]];
2478
2973
  var UpdateOauth2CredentialProviderRequest = [
2479
2974
  3,
2480
2975
  n0,
@@ -2491,6 +2986,66 @@ var UpdateOauth2CredentialProviderResponse = [
2491
2986
  [_cSA, _n, _cPV, _cPA, _cUa, _oPCO, _cT, _lUT],
2492
2987
  [() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
2493
2988
  ];
2989
+ var UpdateOnlineEvaluationConfigRequest = [
2990
+ 3,
2991
+ n0,
2992
+ _UOECR,
2993
+ 0,
2994
+ [_cTl, _oECI, _d, _ru, _dSC, _ev, _eERA, _eS],
2995
+ [
2996
+ [0, 4],
2997
+ [0, 1],
2998
+ [() => EvaluationConfigDescription, 0],
2999
+ () => Rule,
3000
+ () => DataSourceConfig,
3001
+ () => EvaluatorList,
3002
+ 0,
3003
+ 0,
3004
+ ],
3005
+ ];
3006
+ var UpdateOnlineEvaluationConfigResponse = [
3007
+ 3,
3008
+ n0,
3009
+ _UOECRp,
3010
+ 0,
3011
+ [_oECA, _oECI, _uA, _s, _eS, _fR],
3012
+ [0, 0, 4, 0, 0, 0],
3013
+ ];
3014
+ var UpdatePolicyEngineRequest = [
3015
+ 3,
3016
+ n0,
3017
+ _UPER,
3018
+ 0,
3019
+ [_pEI, _d],
3020
+ [
3021
+ [0, 1],
3022
+ [() => Description, 0],
3023
+ ],
3024
+ ];
3025
+ var UpdatePolicyEngineResponse = [
3026
+ 3,
3027
+ n0,
3028
+ _UPERp,
3029
+ 0,
3030
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
3031
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
3032
+ ];
3033
+ var UpdatePolicyRequest = [
3034
+ 3,
3035
+ n0,
3036
+ _UPR,
3037
+ 0,
3038
+ [_pEI, _pI, _d, _de, _vM],
3039
+ [[0, 1], [0, 1], [() => Description, 0], () => PolicyDefinition, 0],
3040
+ ];
3041
+ var UpdatePolicyResponse = [
3042
+ 3,
3043
+ n0,
3044
+ _UPRp,
3045
+ 0,
3046
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
3047
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
3048
+ ];
2494
3049
  var UpdateWorkloadIdentityRequest = [3, n0, _UWIR, 0, [_n, _aRORU], [0, 64 | 0]];
2495
3050
  var UpdateWorkloadIdentityResponse = [
2496
3051
  3,
@@ -2505,7 +3060,7 @@ var UserPreferenceConsolidationOverride = [
2505
3060
  n0,
2506
3061
  _UPCO,
2507
3062
  0,
2508
- [_aTP, _mIo],
3063
+ [_aTP, _mI],
2509
3064
  [[() => Prompt, 0], 0],
2510
3065
  ];
2511
3066
  var UserPreferenceExtractionOverride = [
@@ -2513,7 +3068,7 @@ var UserPreferenceExtractionOverride = [
2513
3068
  n0,
2514
3069
  _UPEO,
2515
3070
  0,
2516
- [_aTP, _mIo],
3071
+ [_aTP, _mI],
2517
3072
  [[() => Prompt, 0], 0],
2518
3073
  ];
2519
3074
  var UserPreferenceMemoryStrategyInput = [
@@ -2540,7 +3095,7 @@ var UserPreferenceOverrideConsolidationConfigurationInput = [
2540
3095
  n0,
2541
3096
  _UPOCCI,
2542
3097
  0,
2543
- [_aTP, _mIo],
3098
+ [_aTP, _mI],
2544
3099
  [[() => Prompt, 0], 0],
2545
3100
  ];
2546
3101
  var UserPreferenceOverrideExtractionConfigurationInput = [
@@ -2548,17 +3103,14 @@ var UserPreferenceOverrideExtractionConfigurationInput = [
2548
3103
  n0,
2549
3104
  _UPOECI,
2550
3105
  0,
2551
- [_aTP, _mIo],
3106
+ [_aTP, _mI],
2552
3107
  [[() => Prompt, 0], 0],
2553
3108
  ];
2554
3109
  var ValidationException = [
2555
3110
  -3,
2556
3111
  n0,
2557
3112
  _VE,
2558
- {
2559
- [_e]: _c,
2560
- [_hE]: 400,
2561
- },
3113
+ { [_e]: _c, [_hE]: 400 },
2562
3114
  [_m, _rea, _fL],
2563
3115
  [0, 0, () => ValidationExceptionFieldList],
2564
3116
  ];
@@ -2578,8 +3130,11 @@ var BedrockAgentCoreControlServiceException = [
2578
3130
  schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreControlServiceException, BedrockAgentCoreControlServiceException$1);
2579
3131
  var AgentRuntimeEndpoints = [1, n0, _AREg, 0, [() => AgentRuntimeEndpoint, 0]];
2580
3132
  var AgentRuntimes = [1, n0, _ARg, 0, [() => AgentRuntime, 0]];
3133
+ var ApiGatewayToolFilters = [1, n0, _AGTFp, 0, () => ApiGatewayToolFilter];
3134
+ var ApiGatewayToolOverrides = [1, n0, _AGTOp, 0, () => ApiGatewayToolOverride];
2581
3135
  var ApiKeyCredentialProviders = [1, n0, _AKCP, 0, () => ApiKeyCredentialProviderItem];
2582
3136
  var BrowserSummaries = [1, n0, _BSr, 0, [() => BrowserSummary, 0]];
3137
+ var CategoricalScaleDefinitions = [1, n0, _CSDa, 0, () => CategoricalScaleDefinition];
2583
3138
  var CodeInterpreterSummaries = [1, n0, _CISo, 0, [() => CodeInterpreterSummary, 0]];
2584
3139
  var CredentialProviderConfigurations = [
2585
3140
  1,
@@ -2588,7 +3143,12 @@ var CredentialProviderConfigurations = [
2588
3143
  0,
2589
3144
  [() => CredentialProviderConfiguration, 0],
2590
3145
  ];
3146
+ var CustomClaimValidationsType = [1, n0, _CCVTu, 0, () => CustomClaimValidationType];
2591
3147
  var DeleteMemoryStrategiesList = [1, n0, _DMSL, 0, () => DeleteMemoryStrategyInput];
3148
+ var EvaluatorList = [1, n0, _EL, 0, () => EvaluatorReference];
3149
+ var EvaluatorSummaryList = [1, n0, _ESL, 0, [() => EvaluatorSummary, 0]];
3150
+ var FilterList = [1, n0, _FL, 0, () => Filter];
3151
+ var Findings = [1, n0, _Fin, 0, () => Finding];
2592
3152
  var GatewayInterceptorConfigurations = [
2593
3153
  1,
2594
3154
  n0,
@@ -2602,7 +3162,19 @@ var MemoryStrategyInputList = [1, n0, _MSIL, 0, [() => MemoryStrategyInput, 0]];
2602
3162
  var MemoryStrategyList = [1, n0, _MSL, 0, [() => MemoryStrategy, 0]];
2603
3163
  var MemorySummaryList = [1, n0, _MSLe, 0, () => MemorySummary];
2604
3164
  var ModifyMemoryStrategiesList = [1, n0, _MMSL, 0, [() => ModifyMemoryStrategyInput, 0]];
3165
+ var NumericalScaleDefinitions = [1, n0, _NSDu, 0, () => NumericalScaleDefinition];
2605
3166
  var Oauth2CredentialProviders = [1, n0, _OCP, 0, () => Oauth2CredentialProviderItem];
3167
+ var OnlineEvaluationConfigSummaryList = [
3168
+ 1,
3169
+ n0,
3170
+ _OECSL,
3171
+ 0,
3172
+ [() => OnlineEvaluationConfigSummary, 0],
3173
+ ];
3174
+ var Policies = [1, n0, _Pol, 0, [() => Policy, 0]];
3175
+ var PolicyEngines = [1, n0, _PEo, 0, [() => PolicyEngine, 0]];
3176
+ var PolicyGenerationAssets = [1, n0, _PGAo, 0, () => PolicyGenerationAsset];
3177
+ var PolicyGenerations = [1, n0, _PGo, 0, () => PolicyGeneration];
2606
3178
  var TargetSummaries = [1, n0, _TSa, 0, [() => TargetSummary, 0]];
2607
3179
  var ToolDefinitions = [1, n0, _TDoo, 0, () => ToolDefinition];
2608
3180
  var TriggerConditionInputList = [1, n0, _TCIL, 0, () => TriggerConditionInput];
@@ -2617,7 +3189,7 @@ var AgentRuntimeArtifact = [
2617
3189
  n0,
2618
3190
  _ARA,
2619
3191
  0,
2620
- [_cC, _cCo],
3192
+ [_cCo, _cCod],
2621
3193
  [() => ContainerConfiguration, () => CodeConfiguration],
2622
3194
  ];
2623
3195
  var ApiSchemaConfiguration = [
@@ -2636,6 +3208,7 @@ var AuthorizerConfiguration = [
2636
3208
  [_cJWTA],
2637
3209
  [() => CustomJWTAuthorizerConfiguration],
2638
3210
  ];
3211
+ var ClaimMatchValueType = [3, n0, _CMVT, 0, [_mVS, _mVSL], [0, 64 | 0]];
2639
3212
  var Code = [3, n0, _C, 0, [_s_], [() => S3Location]];
2640
3213
  var ConsolidationConfiguration = [
2641
3214
  3,
@@ -2645,10 +3218,11 @@ var ConsolidationConfiguration = [
2645
3218
  [_cCC],
2646
3219
  [[() => CustomConsolidationConfiguration, 0]],
2647
3220
  ];
3221
+ var Content = [3, n0, _Co, 0, [_rTa], [0]];
2648
3222
  var CredentialProvider = [
2649
3223
  3,
2650
3224
  n0,
2651
- _CP,
3225
+ _CPr,
2652
3226
  0,
2653
3227
  [_oCP, _aKCP],
2654
3228
  [[() => OAuthCredentialProvider, 0], () => GatewayApiKeyCredentialProvider],
@@ -2658,11 +3232,12 @@ var CustomConfigurationInput = [
2658
3232
  n0,
2659
3233
  _CCI,
2660
3234
  0,
2661
- [_sO, _sOu, _uPO, _sMC],
3235
+ [_sO, _sOu, _uPO, _eO, _sMC],
2662
3236
  [
2663
3237
  [() => SemanticOverrideConfigurationInput, 0],
2664
3238
  [() => SummaryOverrideConfigurationInput, 0],
2665
3239
  [() => UserPreferenceOverrideConfigurationInput, 0],
3240
+ [() => EpisodicOverrideConfigurationInput, 0],
2666
3241
  () => SelfManagedConfigurationInput,
2667
3242
  ],
2668
3243
  ];
@@ -2671,11 +3246,12 @@ var CustomConsolidationConfiguration = [
2671
3246
  n0,
2672
3247
  _CCC,
2673
3248
  0,
2674
- [_sCO, _sCOu, _uPCO],
3249
+ [_sCO, _sCOu, _uPCO, _eCO],
2675
3250
  [
2676
3251
  [() => SemanticConsolidationOverride, 0],
2677
3252
  [() => SummaryConsolidationOverride, 0],
2678
3253
  [() => UserPreferenceConsolidationOverride, 0],
3254
+ [() => EpisodicConsolidationOverride, 0],
2679
3255
  ],
2680
3256
  ];
2681
3257
  var CustomConsolidationConfigurationInput = [
@@ -2683,11 +3259,12 @@ var CustomConsolidationConfigurationInput = [
2683
3259
  n0,
2684
3260
  _CCCI,
2685
3261
  0,
2686
- [_sCO, _sCOu, _uPCO],
3262
+ [_sCO, _sCOu, _uPCO, _eCO],
2687
3263
  [
2688
3264
  [() => SemanticOverrideConsolidationConfigurationInput, 0],
2689
3265
  [() => SummaryOverrideConsolidationConfigurationInput, 0],
2690
3266
  [() => UserPreferenceOverrideConsolidationConfigurationInput, 0],
3267
+ [() => EpisodicOverrideConsolidationConfigurationInput, 0],
2691
3268
  ],
2692
3269
  ];
2693
3270
  var CustomExtractionConfiguration = [
@@ -2695,10 +3272,11 @@ var CustomExtractionConfiguration = [
2695
3272
  n0,
2696
3273
  _CEC,
2697
3274
  0,
2698
- [_sEO, _uPEO],
3275
+ [_sEO, _uPEO, _eEO],
2699
3276
  [
2700
3277
  [() => SemanticExtractionOverride, 0],
2701
3278
  [() => UserPreferenceExtractionOverride, 0],
3279
+ [() => EpisodicExtractionOverride, 0],
2702
3280
  ],
2703
3281
  ];
2704
3282
  var CustomExtractionConfigurationInput = [
@@ -2706,20 +3284,42 @@ var CustomExtractionConfigurationInput = [
2706
3284
  n0,
2707
3285
  _CECI,
2708
3286
  0,
2709
- [_sEO, _uPEO],
3287
+ [_sEO, _uPEO, _eEO],
2710
3288
  [
2711
3289
  [() => SemanticOverrideExtractionConfigurationInput, 0],
2712
3290
  [() => UserPreferenceOverrideExtractionConfigurationInput, 0],
3291
+ [() => EpisodicOverrideExtractionConfigurationInput, 0],
2713
3292
  ],
2714
3293
  ];
3294
+ var CustomReflectionConfiguration = [
3295
+ 3,
3296
+ n0,
3297
+ _CRC,
3298
+ 0,
3299
+ [_eRO],
3300
+ [[() => EpisodicReflectionOverride, 0]],
3301
+ ];
3302
+ var CustomReflectionConfigurationInput = [
3303
+ 3,
3304
+ n0,
3305
+ _CRCI,
3306
+ 0,
3307
+ [_eRO],
3308
+ [[() => EpisodicOverrideReflectionConfigurationInput, 0]],
3309
+ ];
3310
+ var DataSourceConfig = [3, n0, _DSC, 0, [_cWL], [() => CloudWatchLogsInputConfig]];
3311
+ var EvaluatorConfig = [3, n0, _EC, 0, [_lAAJ], [[() => LlmAsAJudgeEvaluatorConfig, 0]]];
3312
+ var EvaluatorModelConfig = [3, n0, _EMC, 0, [_bEMC], [() => BedrockEvaluatorModelConfig]];
3313
+ var EvaluatorReference = [3, n0, _ER, 0, [_eI], [0]];
2715
3314
  var ExtractionConfiguration = [
2716
3315
  3,
2717
3316
  n0,
2718
- _EC,
3317
+ _ECx,
2719
3318
  0,
2720
3319
  [_cEC],
2721
3320
  [[() => CustomExtractionConfiguration, 0]],
2722
3321
  ];
3322
+ var FilterValue = [3, n0, _FV, 0, [_sVt, _dV, _bV], [0, 1, 2]];
2723
3323
  var GatewayProtocolConfiguration = [
2724
3324
  3,
2725
3325
  n0,
@@ -2731,9 +3331,9 @@ var GatewayProtocolConfiguration = [
2731
3331
  var InterceptorConfiguration = [
2732
3332
  3,
2733
3333
  n0,
2734
- _ICn,
3334
+ _ICnt,
2735
3335
  0,
2736
- [_l],
3336
+ [_la],
2737
3337
  [() => LambdaInterceptorConfiguration],
2738
3338
  ];
2739
3339
  var McpTargetConfiguration = [
@@ -2741,12 +3341,13 @@ var McpTargetConfiguration = [
2741
3341
  n0,
2742
3342
  _MTC,
2743
3343
  0,
2744
- [_oAS, _sM, _l, _mSc],
3344
+ [_oAS, _sM, _la, _mSc, _aG],
2745
3345
  [
2746
3346
  [() => ApiSchemaConfiguration, 0],
2747
3347
  [() => ApiSchemaConfiguration, 0],
2748
3348
  () => McpLambdaTargetConfiguration,
2749
3349
  () => McpServerTargetConfiguration,
3350
+ () => ApiGatewayTargetConfiguration,
2750
3351
  ],
2751
3352
  ];
2752
3353
  var MemoryStrategyInput = [
@@ -2754,12 +3355,13 @@ var MemoryStrategyInput = [
2754
3355
  n0,
2755
3356
  _MSI,
2756
3357
  0,
2757
- [_sMS, _sMSu, _uPMS, _cMS],
3358
+ [_sMS, _sMSu, _uPMS, _cMS, _eMS],
2758
3359
  [
2759
3360
  [() => SemanticMemoryStrategyInput, 0],
2760
3361
  [() => SummaryMemoryStrategyInput, 0],
2761
3362
  [() => UserPreferenceMemoryStrategyInput, 0],
2762
3363
  [() => CustomMemoryStrategyInput, 0],
3364
+ [() => EpisodicMemoryStrategyInput, 0],
2763
3365
  ],
2764
3366
  ];
2765
3367
  var ModifyConsolidationConfiguration = [
@@ -2778,6 +3380,14 @@ var ModifyExtractionConfiguration = [
2778
3380
  [_cEC],
2779
3381
  [[() => CustomExtractionConfigurationInput, 0]],
2780
3382
  ];
3383
+ var ModifyReflectionConfiguration = [
3384
+ 3,
3385
+ n0,
3386
+ _MRC,
3387
+ 0,
3388
+ [_eRC, _cRC],
3389
+ [() => EpisodicReflectionConfigurationInput, [() => CustomReflectionConfigurationInput, 0]],
3390
+ ];
2781
3391
  var Oauth2Discovery = [
2782
3392
  3,
2783
3393
  n0,
@@ -2822,7 +3432,25 @@ var Oauth2ProviderConfigOutput = [
2822
3432
  () => IncludedOauth2ProviderConfigOutput,
2823
3433
  ],
2824
3434
  ];
3435
+ var PolicyDefinition = [3, n0, _PD, 0, [_ce], [() => CedarPolicy]];
3436
+ var RatingScale = [
3437
+ 3,
3438
+ n0,
3439
+ _RS,
3440
+ 0,
3441
+ [_nu, _ca],
3442
+ [() => NumericalScaleDefinitions, () => CategoricalScaleDefinitions],
3443
+ ];
3444
+ var ReflectionConfiguration = [
3445
+ 3,
3446
+ n0,
3447
+ _RCe,
3448
+ 0,
3449
+ [_cRC, _eRC],
3450
+ [[() => CustomReflectionConfiguration, 0], () => EpisodicReflectionConfiguration],
3451
+ ];
2825
3452
  var RequestHeaderConfiguration = [3, n0, _RHC, 0, [_rHA], [64 | 0]];
3453
+ var Resource = [3, n0, _Re, 0, [_a], [0]];
2826
3454
  var TargetConfiguration = [3, n0, _TC, 0, [_mc], [[() => McpTargetConfiguration, 0]]];
2827
3455
  var ToolSchema = [
2828
3456
  3,
@@ -2852,9 +3480,7 @@ var CreateAgentRuntime = [
2852
3480
  9,
2853
3481
  n0,
2854
3482
  _CAR,
2855
- {
2856
- [_h]: ["PUT", "/runtimes/", 202],
2857
- },
3483
+ { [_h]: ["PUT", "/runtimes/", 202] },
2858
3484
  () => CreateAgentRuntimeRequest,
2859
3485
  () => CreateAgentRuntimeResponse,
2860
3486
  ];
@@ -2862,9 +3488,7 @@ var CreateAgentRuntimeEndpoint = [
2862
3488
  9,
2863
3489
  n0,
2864
3490
  _CARE,
2865
- {
2866
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 202],
2867
- },
3491
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 202] },
2868
3492
  () => CreateAgentRuntimeEndpointRequest,
2869
3493
  () => CreateAgentRuntimeEndpointResponse,
2870
3494
  ];
@@ -2872,9 +3496,7 @@ var CreateApiKeyCredentialProvider = [
2872
3496
  9,
2873
3497
  n0,
2874
3498
  _CAKCP,
2875
- {
2876
- [_h]: ["POST", "/identities/CreateApiKeyCredentialProvider", 201],
2877
- },
3499
+ { [_h]: ["POST", "/identities/CreateApiKeyCredentialProvider", 201] },
2878
3500
  () => CreateApiKeyCredentialProviderRequest,
2879
3501
  () => CreateApiKeyCredentialProviderResponse,
2880
3502
  ];
@@ -2882,9 +3504,7 @@ var CreateBrowser = [
2882
3504
  9,
2883
3505
  n0,
2884
3506
  _CB,
2885
- {
2886
- [_h]: ["PUT", "/browsers", 202],
2887
- },
3507
+ { [_h]: ["PUT", "/browsers", 202] },
2888
3508
  () => CreateBrowserRequest,
2889
3509
  () => CreateBrowserResponse,
2890
3510
  ];
@@ -2892,19 +3512,23 @@ var CreateCodeInterpreter = [
2892
3512
  9,
2893
3513
  n0,
2894
3514
  _CCIr,
2895
- {
2896
- [_h]: ["PUT", "/code-interpreters", 202],
2897
- },
3515
+ { [_h]: ["PUT", "/code-interpreters", 202] },
2898
3516
  () => CreateCodeInterpreterRequest,
2899
3517
  () => CreateCodeInterpreterResponse,
2900
3518
  ];
3519
+ var CreateEvaluator = [
3520
+ 9,
3521
+ n0,
3522
+ _CEr,
3523
+ { [_h]: ["POST", "/evaluators/create", 202] },
3524
+ () => CreateEvaluatorRequest,
3525
+ () => CreateEvaluatorResponse,
3526
+ ];
2901
3527
  var CreateGateway = [
2902
3528
  9,
2903
3529
  n0,
2904
3530
  _CG,
2905
- {
2906
- [_h]: ["POST", "/gateways/", 202],
2907
- },
3531
+ { [_h]: ["POST", "/gateways/", 202] },
2908
3532
  () => CreateGatewayRequest,
2909
3533
  () => CreateGatewayResponse,
2910
3534
  ];
@@ -2912,9 +3536,7 @@ var CreateGatewayTarget = [
2912
3536
  9,
2913
3537
  n0,
2914
3538
  _CGT,
2915
- {
2916
- [_h]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202],
2917
- },
3539
+ { [_h]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202] },
2918
3540
  () => CreateGatewayTargetRequest,
2919
3541
  () => CreateGatewayTargetResponse,
2920
3542
  ];
@@ -2922,9 +3544,7 @@ var CreateMemory = [
2922
3544
  9,
2923
3545
  n0,
2924
3546
  _CM,
2925
- {
2926
- [_h]: ["POST", "/memories/create", 202],
2927
- },
3547
+ { [_h]: ["POST", "/memories/create", 202] },
2928
3548
  () => CreateMemoryInput,
2929
3549
  () => CreateMemoryOutput,
2930
3550
  ];
@@ -2932,19 +3552,39 @@ var CreateOauth2CredentialProvider = [
2932
3552
  9,
2933
3553
  n0,
2934
3554
  _COCP,
2935
- {
2936
- [_h]: ["POST", "/identities/CreateOauth2CredentialProvider", 201],
2937
- },
3555
+ { [_h]: ["POST", "/identities/CreateOauth2CredentialProvider", 201] },
2938
3556
  () => CreateOauth2CredentialProviderRequest,
2939
3557
  () => CreateOauth2CredentialProviderResponse,
2940
3558
  ];
3559
+ var CreateOnlineEvaluationConfig = [
3560
+ 9,
3561
+ n0,
3562
+ _COEC,
3563
+ { [_h]: ["POST", "/online-evaluation-configs/create", 202] },
3564
+ () => CreateOnlineEvaluationConfigRequest,
3565
+ () => CreateOnlineEvaluationConfigResponse,
3566
+ ];
3567
+ var CreatePolicy = [
3568
+ 9,
3569
+ n0,
3570
+ _CPre,
3571
+ { [_h]: ["POST", "/policy-engines/{policyEngineId}/policies", 202] },
3572
+ () => CreatePolicyRequest,
3573
+ () => CreatePolicyResponse,
3574
+ ];
3575
+ var CreatePolicyEngine = [
3576
+ 9,
3577
+ n0,
3578
+ _CPE,
3579
+ { [_h]: ["POST", "/policy-engines", 202] },
3580
+ () => CreatePolicyEngineRequest,
3581
+ () => CreatePolicyEngineResponse,
3582
+ ];
2941
3583
  var CreateWorkloadIdentity = [
2942
3584
  9,
2943
3585
  n0,
2944
3586
  _CWI,
2945
- {
2946
- [_h]: ["POST", "/identities/CreateWorkloadIdentity", 201],
2947
- },
3587
+ { [_h]: ["POST", "/identities/CreateWorkloadIdentity", 201] },
2948
3588
  () => CreateWorkloadIdentityRequest,
2949
3589
  () => CreateWorkloadIdentityResponse,
2950
3590
  ];
@@ -2952,9 +3592,7 @@ var DeleteAgentRuntime = [
2952
3592
  9,
2953
3593
  n0,
2954
3594
  _DAR,
2955
- {
2956
- [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/", 202],
2957
- },
3595
+ { [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/", 202] },
2958
3596
  () => DeleteAgentRuntimeRequest,
2959
3597
  () => DeleteAgentRuntimeResponse,
2960
3598
  ];
@@ -2962,9 +3600,7 @@ var DeleteAgentRuntimeEndpoint = [
2962
3600
  9,
2963
3601
  n0,
2964
3602
  _DARE,
2965
- {
2966
- [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202],
2967
- },
3603
+ { [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202] },
2968
3604
  () => DeleteAgentRuntimeEndpointRequest,
2969
3605
  () => DeleteAgentRuntimeEndpointResponse,
2970
3606
  ];
@@ -2972,9 +3608,7 @@ var DeleteApiKeyCredentialProvider = [
2972
3608
  9,
2973
3609
  n0,
2974
3610
  _DAKCP,
2975
- {
2976
- [_h]: ["POST", "/identities/DeleteApiKeyCredentialProvider", 204],
2977
- },
3611
+ { [_h]: ["POST", "/identities/DeleteApiKeyCredentialProvider", 204] },
2978
3612
  () => DeleteApiKeyCredentialProviderRequest,
2979
3613
  () => DeleteApiKeyCredentialProviderResponse,
2980
3614
  ];
@@ -2982,9 +3616,7 @@ var DeleteBrowser = [
2982
3616
  9,
2983
3617
  n0,
2984
3618
  _DB,
2985
- {
2986
- [_h]: ["DELETE", "/browsers/{browserId}", 202],
2987
- },
3619
+ { [_h]: ["DELETE", "/browsers/{browserId}", 202] },
2988
3620
  () => DeleteBrowserRequest,
2989
3621
  () => DeleteBrowserResponse,
2990
3622
  ];
@@ -2992,19 +3624,23 @@ var DeleteCodeInterpreter = [
2992
3624
  9,
2993
3625
  n0,
2994
3626
  _DCI,
2995
- {
2996
- [_h]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202],
2997
- },
3627
+ { [_h]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] },
2998
3628
  () => DeleteCodeInterpreterRequest,
2999
3629
  () => DeleteCodeInterpreterResponse,
3000
3630
  ];
3631
+ var DeleteEvaluator = [
3632
+ 9,
3633
+ n0,
3634
+ _DE,
3635
+ { [_h]: ["DELETE", "/evaluators/{evaluatorId}", 202] },
3636
+ () => DeleteEvaluatorRequest,
3637
+ () => DeleteEvaluatorResponse,
3638
+ ];
3001
3639
  var DeleteGateway = [
3002
3640
  9,
3003
3641
  n0,
3004
3642
  _DG,
3005
- {
3006
- [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202],
3007
- },
3643
+ { [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] },
3008
3644
  () => DeleteGatewayRequest,
3009
3645
  () => DeleteGatewayResponse,
3010
3646
  ];
@@ -3012,9 +3648,7 @@ var DeleteGatewayTarget = [
3012
3648
  9,
3013
3649
  n0,
3014
3650
  _DGT,
3015
- {
3016
- [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202],
3017
- },
3651
+ { [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] },
3018
3652
  () => DeleteGatewayTargetRequest,
3019
3653
  () => DeleteGatewayTargetResponse,
3020
3654
  ];
@@ -3022,9 +3656,7 @@ var DeleteMemory = [
3022
3656
  9,
3023
3657
  n0,
3024
3658
  _DM,
3025
- {
3026
- [_h]: ["DELETE", "/memories/{memoryId}/delete", 202],
3027
- },
3659
+ { [_h]: ["DELETE", "/memories/{memoryId}/delete", 202] },
3028
3660
  () => DeleteMemoryInput,
3029
3661
  () => DeleteMemoryOutput,
3030
3662
  ];
@@ -3032,19 +3664,47 @@ var DeleteOauth2CredentialProvider = [
3032
3664
  9,
3033
3665
  n0,
3034
3666
  _DOCP,
3035
- {
3036
- [_h]: ["POST", "/identities/DeleteOauth2CredentialProvider", 204],
3037
- },
3667
+ { [_h]: ["POST", "/identities/DeleteOauth2CredentialProvider", 204] },
3038
3668
  () => DeleteOauth2CredentialProviderRequest,
3039
3669
  () => DeleteOauth2CredentialProviderResponse,
3040
3670
  ];
3671
+ var DeleteOnlineEvaluationConfig = [
3672
+ 9,
3673
+ n0,
3674
+ _DOEC,
3675
+ { [_h]: ["DELETE", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] },
3676
+ () => DeleteOnlineEvaluationConfigRequest,
3677
+ () => DeleteOnlineEvaluationConfigResponse,
3678
+ ];
3679
+ var DeletePolicy = [
3680
+ 9,
3681
+ n0,
3682
+ _DP,
3683
+ { [_h]: ["DELETE", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] },
3684
+ () => DeletePolicyRequest,
3685
+ () => DeletePolicyResponse,
3686
+ ];
3687
+ var DeletePolicyEngine = [
3688
+ 9,
3689
+ n0,
3690
+ _DPE,
3691
+ { [_h]: ["DELETE", "/policy-engines/{policyEngineId}", 202] },
3692
+ () => DeletePolicyEngineRequest,
3693
+ () => DeletePolicyEngineResponse,
3694
+ ];
3695
+ var DeleteResourcePolicy = [
3696
+ 9,
3697
+ n0,
3698
+ _DRP,
3699
+ { [_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204] },
3700
+ () => DeleteResourcePolicyRequest,
3701
+ () => DeleteResourcePolicyResponse,
3702
+ ];
3041
3703
  var DeleteWorkloadIdentity = [
3042
3704
  9,
3043
3705
  n0,
3044
3706
  _DWI,
3045
- {
3046
- [_h]: ["POST", "/identities/DeleteWorkloadIdentity", 204],
3047
- },
3707
+ { [_h]: ["POST", "/identities/DeleteWorkloadIdentity", 204] },
3048
3708
  () => DeleteWorkloadIdentityRequest,
3049
3709
  () => DeleteWorkloadIdentityResponse,
3050
3710
  ];
@@ -3052,9 +3712,7 @@ var GetAgentRuntime = [
3052
3712
  9,
3053
3713
  n0,
3054
3714
  _GAR,
3055
- {
3056
- [_h]: ["GET", "/runtimes/{agentRuntimeId}/", 200],
3057
- },
3715
+ { [_h]: ["GET", "/runtimes/{agentRuntimeId}/", 200] },
3058
3716
  () => GetAgentRuntimeRequest,
3059
3717
  () => GetAgentRuntimeResponse,
3060
3718
  ];
@@ -3062,9 +3720,7 @@ var GetAgentRuntimeEndpoint = [
3062
3720
  9,
3063
3721
  n0,
3064
3722
  _GARE,
3065
- {
3066
- [_h]: ["GET", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 200],
3067
- },
3723
+ { [_h]: ["GET", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 200] },
3068
3724
  () => GetAgentRuntimeEndpointRequest,
3069
3725
  () => GetAgentRuntimeEndpointResponse,
3070
3726
  ];
@@ -3072,9 +3728,7 @@ var GetApiKeyCredentialProvider = [
3072
3728
  9,
3073
3729
  n0,
3074
3730
  _GAKCPe,
3075
- {
3076
- [_h]: ["POST", "/identities/GetApiKeyCredentialProvider", 200],
3077
- },
3731
+ { [_h]: ["POST", "/identities/GetApiKeyCredentialProvider", 200] },
3078
3732
  () => GetApiKeyCredentialProviderRequest,
3079
3733
  () => GetApiKeyCredentialProviderResponse,
3080
3734
  ];
@@ -3082,9 +3736,7 @@ var GetBrowser = [
3082
3736
  9,
3083
3737
  n0,
3084
3738
  _GB,
3085
- {
3086
- [_h]: ["GET", "/browsers/{browserId}", 200],
3087
- },
3739
+ { [_h]: ["GET", "/browsers/{browserId}", 200] },
3088
3740
  () => GetBrowserRequest,
3089
3741
  () => GetBrowserResponse,
3090
3742
  ];
@@ -3092,19 +3744,23 @@ var GetCodeInterpreter = [
3092
3744
  9,
3093
3745
  n0,
3094
3746
  _GCI,
3095
- {
3096
- [_h]: ["GET", "/code-interpreters/{codeInterpreterId}", 200],
3097
- },
3747
+ { [_h]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] },
3098
3748
  () => GetCodeInterpreterRequest,
3099
3749
  () => GetCodeInterpreterResponse,
3100
3750
  ];
3751
+ var GetEvaluator = [
3752
+ 9,
3753
+ n0,
3754
+ _GE,
3755
+ { [_h]: ["GET", "/evaluators/{evaluatorId}", 200] },
3756
+ () => GetEvaluatorRequest,
3757
+ () => GetEvaluatorResponse,
3758
+ ];
3101
3759
  var GetGateway = [
3102
3760
  9,
3103
3761
  n0,
3104
3762
  _GG,
3105
- {
3106
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/", 200],
3107
- },
3763
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/", 200] },
3108
3764
  () => GetGatewayRequest,
3109
3765
  () => GetGatewayResponse,
3110
3766
  ];
@@ -3112,9 +3768,7 @@ var GetGatewayTarget = [
3112
3768
  9,
3113
3769
  n0,
3114
3770
  _GGT,
3115
- {
3116
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200],
3117
- },
3771
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200] },
3118
3772
  () => GetGatewayTargetRequest,
3119
3773
  () => GetGatewayTargetResponse,
3120
3774
  ];
@@ -3122,9 +3776,7 @@ var GetMemory = [
3122
3776
  9,
3123
3777
  n0,
3124
3778
  _GM,
3125
- {
3126
- [_h]: ["GET", "/memories/{memoryId}/details", 200],
3127
- },
3779
+ { [_h]: ["GET", "/memories/{memoryId}/details", 200] },
3128
3780
  () => GetMemoryInput,
3129
3781
  () => GetMemoryOutput,
3130
3782
  ];
@@ -3132,19 +3784,55 @@ var GetOauth2CredentialProvider = [
3132
3784
  9,
3133
3785
  n0,
3134
3786
  _GOCP,
3135
- {
3136
- [_h]: ["POST", "/identities/GetOauth2CredentialProvider", 200],
3137
- },
3787
+ { [_h]: ["POST", "/identities/GetOauth2CredentialProvider", 200] },
3138
3788
  () => GetOauth2CredentialProviderRequest,
3139
3789
  () => GetOauth2CredentialProviderResponse,
3140
3790
  ];
3791
+ var GetOnlineEvaluationConfig = [
3792
+ 9,
3793
+ n0,
3794
+ _GOEC,
3795
+ { [_h]: ["GET", "/online-evaluation-configs/{onlineEvaluationConfigId}", 200] },
3796
+ () => GetOnlineEvaluationConfigRequest,
3797
+ () => GetOnlineEvaluationConfigResponse,
3798
+ ];
3799
+ var GetPolicy = [
3800
+ 9,
3801
+ n0,
3802
+ _GP,
3803
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policies/{policyId}", 200] },
3804
+ () => GetPolicyRequest,
3805
+ () => GetPolicyResponse,
3806
+ ];
3807
+ var GetPolicyEngine = [
3808
+ 9,
3809
+ n0,
3810
+ _GPE,
3811
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}", 200] },
3812
+ () => GetPolicyEngineRequest,
3813
+ () => GetPolicyEngineResponse,
3814
+ ];
3815
+ var GetPolicyGeneration = [
3816
+ 9,
3817
+ n0,
3818
+ _GPG,
3819
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200] },
3820
+ () => GetPolicyGenerationRequest,
3821
+ () => GetPolicyGenerationResponse,
3822
+ ];
3823
+ var GetResourcePolicy = [
3824
+ 9,
3825
+ n0,
3826
+ _GRP,
3827
+ { [_h]: ["GET", "/resourcepolicy/{resourceArn}", 200] },
3828
+ () => GetResourcePolicyRequest,
3829
+ () => GetResourcePolicyResponse,
3830
+ ];
3141
3831
  var GetTokenVault = [
3142
3832
  9,
3143
3833
  n0,
3144
3834
  _GTV,
3145
- {
3146
- [_h]: ["POST", "/identities/get-token-vault", 200],
3147
- },
3835
+ { [_h]: ["POST", "/identities/get-token-vault", 200] },
3148
3836
  () => GetTokenVaultRequest,
3149
3837
  () => GetTokenVaultResponse,
3150
3838
  ];
@@ -3152,9 +3840,7 @@ var GetWorkloadIdentity = [
3152
3840
  9,
3153
3841
  n0,
3154
3842
  _GWI,
3155
- {
3156
- [_h]: ["POST", "/identities/GetWorkloadIdentity", 200],
3157
- },
3843
+ { [_h]: ["POST", "/identities/GetWorkloadIdentity", 200] },
3158
3844
  () => GetWorkloadIdentityRequest,
3159
3845
  () => GetWorkloadIdentityResponse,
3160
3846
  ];
@@ -3162,9 +3848,7 @@ var ListAgentRuntimeEndpoints = [
3162
3848
  9,
3163
3849
  n0,
3164
3850
  _LARE,
3165
- {
3166
- [_h]: ["POST", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 200],
3167
- },
3851
+ { [_h]: ["POST", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 200] },
3168
3852
  () => ListAgentRuntimeEndpointsRequest,
3169
3853
  () => ListAgentRuntimeEndpointsResponse,
3170
3854
  ];
@@ -3172,9 +3856,7 @@ var ListAgentRuntimes = [
3172
3856
  9,
3173
3857
  n0,
3174
3858
  _LAR,
3175
- {
3176
- [_h]: ["POST", "/runtimes/", 200],
3177
- },
3859
+ { [_h]: ["POST", "/runtimes/", 200] },
3178
3860
  () => ListAgentRuntimesRequest,
3179
3861
  () => ListAgentRuntimesResponse,
3180
3862
  ];
@@ -3182,9 +3864,7 @@ var ListAgentRuntimeVersions = [
3182
3864
  9,
3183
3865
  n0,
3184
3866
  _LARV,
3185
- {
3186
- [_h]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200],
3187
- },
3867
+ { [_h]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200] },
3188
3868
  () => ListAgentRuntimeVersionsRequest,
3189
3869
  () => ListAgentRuntimeVersionsResponse,
3190
3870
  ];
@@ -3192,9 +3872,7 @@ var ListApiKeyCredentialProviders = [
3192
3872
  9,
3193
3873
  n0,
3194
3874
  _LAKCP,
3195
- {
3196
- [_h]: ["POST", "/identities/ListApiKeyCredentialProviders", 200],
3197
- },
3875
+ { [_h]: ["POST", "/identities/ListApiKeyCredentialProviders", 200] },
3198
3876
  () => ListApiKeyCredentialProvidersRequest,
3199
3877
  () => ListApiKeyCredentialProvidersResponse,
3200
3878
  ];
@@ -3202,9 +3880,7 @@ var ListBrowsers = [
3202
3880
  9,
3203
3881
  n0,
3204
3882
  _LB,
3205
- {
3206
- [_h]: ["POST", "/browsers", 200],
3207
- },
3883
+ { [_h]: ["POST", "/browsers", 200] },
3208
3884
  () => ListBrowsersRequest,
3209
3885
  () => ListBrowsersResponse,
3210
3886
  ];
@@ -3212,19 +3888,23 @@ var ListCodeInterpreters = [
3212
3888
  9,
3213
3889
  n0,
3214
3890
  _LCI,
3215
- {
3216
- [_h]: ["POST", "/code-interpreters", 200],
3217
- },
3891
+ { [_h]: ["POST", "/code-interpreters", 200] },
3218
3892
  () => ListCodeInterpretersRequest,
3219
3893
  () => ListCodeInterpretersResponse,
3220
3894
  ];
3895
+ var ListEvaluators = [
3896
+ 9,
3897
+ n0,
3898
+ _LE,
3899
+ { [_h]: ["POST", "/evaluators", 200] },
3900
+ () => ListEvaluatorsRequest,
3901
+ () => ListEvaluatorsResponse,
3902
+ ];
3221
3903
  var ListGateways = [
3222
3904
  9,
3223
3905
  n0,
3224
3906
  _LG,
3225
- {
3226
- [_h]: ["GET", "/gateways/", 200],
3227
- },
3907
+ { [_h]: ["GET", "/gateways/", 200] },
3228
3908
  () => ListGatewaysRequest,
3229
3909
  () => ListGatewaysResponse,
3230
3910
  ];
@@ -3232,9 +3912,7 @@ var ListGatewayTargets = [
3232
3912
  9,
3233
3913
  n0,
3234
3914
  _LGT,
3235
- {
3236
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/", 200],
3237
- },
3915
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/", 200] },
3238
3916
  () => ListGatewayTargetsRequest,
3239
3917
  () => ListGatewayTargetsResponse,
3240
3918
  ];
@@ -3242,9 +3920,7 @@ var ListMemories = [
3242
3920
  9,
3243
3921
  n0,
3244
3922
  _LM,
3245
- {
3246
- [_h]: ["POST", "/memories/", 200],
3247
- },
3923
+ { [_h]: ["POST", "/memories/", 200] },
3248
3924
  () => ListMemoriesInput,
3249
3925
  () => ListMemoriesOutput,
3250
3926
  ];
@@ -3252,19 +3928,55 @@ var ListOauth2CredentialProviders = [
3252
3928
  9,
3253
3929
  n0,
3254
3930
  _LOCP,
3255
- {
3256
- [_h]: ["POST", "/identities/ListOauth2CredentialProviders", 200],
3257
- },
3931
+ { [_h]: ["POST", "/identities/ListOauth2CredentialProviders", 200] },
3258
3932
  () => ListOauth2CredentialProvidersRequest,
3259
3933
  () => ListOauth2CredentialProvidersResponse,
3260
3934
  ];
3935
+ var ListOnlineEvaluationConfigs = [
3936
+ 9,
3937
+ n0,
3938
+ _LOEC,
3939
+ { [_h]: ["POST", "/online-evaluation-configs", 200] },
3940
+ () => ListOnlineEvaluationConfigsRequest,
3941
+ () => ListOnlineEvaluationConfigsResponse,
3942
+ ];
3943
+ var ListPolicies = [
3944
+ 9,
3945
+ n0,
3946
+ _LP,
3947
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policies", 200] },
3948
+ () => ListPoliciesRequest,
3949
+ () => ListPoliciesResponse,
3950
+ ];
3951
+ var ListPolicyEngines = [
3952
+ 9,
3953
+ n0,
3954
+ _LPE,
3955
+ { [_h]: ["GET", "/policy-engines", 200] },
3956
+ () => ListPolicyEnginesRequest,
3957
+ () => ListPolicyEnginesResponse,
3958
+ ];
3959
+ var ListPolicyGenerationAssets = [
3960
+ 9,
3961
+ n0,
3962
+ _LPGA,
3963
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}/assets", 200] },
3964
+ () => ListPolicyGenerationAssetsRequest,
3965
+ () => ListPolicyGenerationAssetsResponse,
3966
+ ];
3967
+ var ListPolicyGenerations = [
3968
+ 9,
3969
+ n0,
3970
+ _LPG,
3971
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations", 200] },
3972
+ () => ListPolicyGenerationsRequest,
3973
+ () => ListPolicyGenerationsResponse,
3974
+ ];
3261
3975
  var ListTagsForResource = [
3262
3976
  9,
3263
3977
  n0,
3264
3978
  _LTFR,
3265
- {
3266
- [_h]: ["GET", "/tags/{resourceArn}", 200],
3267
- },
3979
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] },
3268
3980
  () => ListTagsForResourceRequest,
3269
3981
  () => ListTagsForResourceResponse,
3270
3982
  ];
@@ -3272,29 +3984,39 @@ var ListWorkloadIdentities = [
3272
3984
  9,
3273
3985
  n0,
3274
3986
  _LWI,
3275
- {
3276
- [_h]: ["POST", "/identities/ListWorkloadIdentities", 200],
3277
- },
3987
+ { [_h]: ["POST", "/identities/ListWorkloadIdentities", 200] },
3278
3988
  () => ListWorkloadIdentitiesRequest,
3279
3989
  () => ListWorkloadIdentitiesResponse,
3280
3990
  ];
3991
+ var PutResourcePolicy = [
3992
+ 9,
3993
+ n0,
3994
+ _PRP,
3995
+ { [_h]: ["PUT", "/resourcepolicy/{resourceArn}", 201] },
3996
+ () => PutResourcePolicyRequest,
3997
+ () => PutResourcePolicyResponse,
3998
+ ];
3281
3999
  var SetTokenVaultCMK = [
3282
4000
  9,
3283
4001
  n0,
3284
4002
  _STVCMK,
3285
- {
3286
- [_h]: ["POST", "/identities/set-token-vault-cmk", 200],
3287
- },
4003
+ { [_h]: ["POST", "/identities/set-token-vault-cmk", 200] },
3288
4004
  () => SetTokenVaultCMKRequest,
3289
4005
  () => SetTokenVaultCMKResponse,
3290
4006
  ];
4007
+ var StartPolicyGeneration = [
4008
+ 9,
4009
+ n0,
4010
+ _SPG,
4011
+ { [_h]: ["POST", "/policy-engines/{policyEngineId}/policy-generations", 202] },
4012
+ () => StartPolicyGenerationRequest,
4013
+ () => StartPolicyGenerationResponse,
4014
+ ];
3291
4015
  var SynchronizeGatewayTargets = [
3292
4016
  9,
3293
4017
  n0,
3294
4018
  _SGT,
3295
- {
3296
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/synchronizeTargets", 202],
3297
- },
4019
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/synchronizeTargets", 202] },
3298
4020
  () => SynchronizeGatewayTargetsRequest,
3299
4021
  () => SynchronizeGatewayTargetsResponse,
3300
4022
  ];
@@ -3302,9 +4024,7 @@ var TagResource = [
3302
4024
  9,
3303
4025
  n0,
3304
4026
  _TR,
3305
- {
3306
- [_h]: ["POST", "/tags/{resourceArn}", 204],
3307
- },
4027
+ { [_h]: ["POST", "/tags/{resourceArn}", 204] },
3308
4028
  () => TagResourceRequest,
3309
4029
  () => TagResourceResponse,
3310
4030
  ];
@@ -3312,9 +4032,7 @@ var UntagResource = [
3312
4032
  9,
3313
4033
  n0,
3314
4034
  _UR,
3315
- {
3316
- [_h]: ["DELETE", "/tags/{resourceArn}", 204],
3317
- },
4035
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 204] },
3318
4036
  () => UntagResourceRequest,
3319
4037
  () => UntagResourceResponse,
3320
4038
  ];
@@ -3322,9 +4040,7 @@ var UpdateAgentRuntime = [
3322
4040
  9,
3323
4041
  n0,
3324
4042
  _UAR,
3325
- {
3326
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/", 202],
3327
- },
4043
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/", 202] },
3328
4044
  () => UpdateAgentRuntimeRequest,
3329
4045
  () => UpdateAgentRuntimeResponse,
3330
4046
  ];
@@ -3332,9 +4048,7 @@ var UpdateAgentRuntimeEndpoint = [
3332
4048
  9,
3333
4049
  n0,
3334
4050
  _UARE,
3335
- {
3336
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202],
3337
- },
4051
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202] },
3338
4052
  () => UpdateAgentRuntimeEndpointRequest,
3339
4053
  () => UpdateAgentRuntimeEndpointResponse,
3340
4054
  ];
@@ -3342,19 +4056,23 @@ var UpdateApiKeyCredentialProvider = [
3342
4056
  9,
3343
4057
  n0,
3344
4058
  _UAKCP,
3345
- {
3346
- [_h]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200],
3347
- },
4059
+ { [_h]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] },
3348
4060
  () => UpdateApiKeyCredentialProviderRequest,
3349
4061
  () => UpdateApiKeyCredentialProviderResponse,
3350
4062
  ];
4063
+ var UpdateEvaluator = [
4064
+ 9,
4065
+ n0,
4066
+ _UEp,
4067
+ { [_h]: ["PUT", "/evaluators/{evaluatorId}", 202] },
4068
+ () => UpdateEvaluatorRequest,
4069
+ () => UpdateEvaluatorResponse,
4070
+ ];
3351
4071
  var UpdateGateway = [
3352
4072
  9,
3353
4073
  n0,
3354
4074
  _UG,
3355
- {
3356
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/", 202],
3357
- },
4075
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] },
3358
4076
  () => UpdateGatewayRequest,
3359
4077
  () => UpdateGatewayResponse,
3360
4078
  ];
@@ -3362,9 +4080,7 @@ var UpdateGatewayTarget = [
3362
4080
  9,
3363
4081
  n0,
3364
4082
  _UGT,
3365
- {
3366
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202],
3367
- },
4083
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] },
3368
4084
  () => UpdateGatewayTargetRequest,
3369
4085
  () => UpdateGatewayTargetResponse,
3370
4086
  ];
@@ -3372,9 +4088,7 @@ var UpdateMemory = [
3372
4088
  9,
3373
4089
  n0,
3374
4090
  _UM,
3375
- {
3376
- [_h]: ["PUT", "/memories/{memoryId}/update", 202],
3377
- },
4091
+ { [_h]: ["PUT", "/memories/{memoryId}/update", 202] },
3378
4092
  () => UpdateMemoryInput,
3379
4093
  () => UpdateMemoryOutput,
3380
4094
  ];
@@ -3382,19 +4096,39 @@ var UpdateOauth2CredentialProvider = [
3382
4096
  9,
3383
4097
  n0,
3384
4098
  _UOCP,
3385
- {
3386
- [_h]: ["POST", "/identities/UpdateOauth2CredentialProvider", 200],
3387
- },
4099
+ { [_h]: ["POST", "/identities/UpdateOauth2CredentialProvider", 200] },
3388
4100
  () => UpdateOauth2CredentialProviderRequest,
3389
4101
  () => UpdateOauth2CredentialProviderResponse,
3390
4102
  ];
4103
+ var UpdateOnlineEvaluationConfig = [
4104
+ 9,
4105
+ n0,
4106
+ _UOEC,
4107
+ { [_h]: ["PUT", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] },
4108
+ () => UpdateOnlineEvaluationConfigRequest,
4109
+ () => UpdateOnlineEvaluationConfigResponse,
4110
+ ];
4111
+ var UpdatePolicy = [
4112
+ 9,
4113
+ n0,
4114
+ _UP,
4115
+ { [_h]: ["PUT", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] },
4116
+ () => UpdatePolicyRequest,
4117
+ () => UpdatePolicyResponse,
4118
+ ];
4119
+ var UpdatePolicyEngine = [
4120
+ 9,
4121
+ n0,
4122
+ _UPE,
4123
+ { [_h]: ["PUT", "/policy-engines/{policyEngineId}", 202] },
4124
+ () => UpdatePolicyEngineRequest,
4125
+ () => UpdatePolicyEngineResponse,
4126
+ ];
3391
4127
  var UpdateWorkloadIdentity = [
3392
4128
  9,
3393
4129
  n0,
3394
4130
  _UWI,
3395
- {
3396
- [_h]: ["POST", "/identities/UpdateWorkloadIdentity", 200],
3397
- },
4131
+ { [_h]: ["POST", "/identities/UpdateWorkloadIdentity", 200] },
3398
4132
  () => UpdateWorkloadIdentityRequest,
3399
4133
  () => UpdateWorkloadIdentityResponse,
3400
4134
  ];
@@ -3459,6 +4193,18 @@ class CreateCodeInterpreterCommand extends smithyClient.Command
3459
4193
  .build() {
3460
4194
  }
3461
4195
 
4196
+ class CreateEvaluatorCommand extends smithyClient.Command
4197
+ .classBuilder()
4198
+ .ep(commonParams)
4199
+ .m(function (Command, cs, config, o) {
4200
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4201
+ })
4202
+ .s("AmazonBedrockAgentCoreControl", "CreateEvaluator", {})
4203
+ .n("BedrockAgentCoreControlClient", "CreateEvaluatorCommand")
4204
+ .sc(CreateEvaluator)
4205
+ .build() {
4206
+ }
4207
+
3462
4208
  class CreateGatewayCommand extends smithyClient.Command
3463
4209
  .classBuilder()
3464
4210
  .ep(commonParams)
@@ -3507,6 +4253,42 @@ class CreateOauth2CredentialProviderCommand extends smithyClient.Command
3507
4253
  .build() {
3508
4254
  }
3509
4255
 
4256
+ class CreateOnlineEvaluationConfigCommand extends smithyClient.Command
4257
+ .classBuilder()
4258
+ .ep(commonParams)
4259
+ .m(function (Command, cs, config, o) {
4260
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4261
+ })
4262
+ .s("AmazonBedrockAgentCoreControl", "CreateOnlineEvaluationConfig", {})
4263
+ .n("BedrockAgentCoreControlClient", "CreateOnlineEvaluationConfigCommand")
4264
+ .sc(CreateOnlineEvaluationConfig)
4265
+ .build() {
4266
+ }
4267
+
4268
+ class CreatePolicyCommand extends smithyClient.Command
4269
+ .classBuilder()
4270
+ .ep(commonParams)
4271
+ .m(function (Command, cs, config, o) {
4272
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4273
+ })
4274
+ .s("AmazonBedrockAgentCoreControl", "CreatePolicy", {})
4275
+ .n("BedrockAgentCoreControlClient", "CreatePolicyCommand")
4276
+ .sc(CreatePolicy)
4277
+ .build() {
4278
+ }
4279
+
4280
+ class CreatePolicyEngineCommand extends smithyClient.Command
4281
+ .classBuilder()
4282
+ .ep(commonParams)
4283
+ .m(function (Command, cs, config, o) {
4284
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4285
+ })
4286
+ .s("AmazonBedrockAgentCoreControl", "CreatePolicyEngine", {})
4287
+ .n("BedrockAgentCoreControlClient", "CreatePolicyEngineCommand")
4288
+ .sc(CreatePolicyEngine)
4289
+ .build() {
4290
+ }
4291
+
3510
4292
  class CreateWorkloadIdentityCommand extends smithyClient.Command
3511
4293
  .classBuilder()
3512
4294
  .ep(commonParams)
@@ -3579,6 +4361,18 @@ class DeleteCodeInterpreterCommand extends smithyClient.Command
3579
4361
  .build() {
3580
4362
  }
3581
4363
 
4364
+ class DeleteEvaluatorCommand extends smithyClient.Command
4365
+ .classBuilder()
4366
+ .ep(commonParams)
4367
+ .m(function (Command, cs, config, o) {
4368
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4369
+ })
4370
+ .s("AmazonBedrockAgentCoreControl", "DeleteEvaluator", {})
4371
+ .n("BedrockAgentCoreControlClient", "DeleteEvaluatorCommand")
4372
+ .sc(DeleteEvaluator)
4373
+ .build() {
4374
+ }
4375
+
3582
4376
  class DeleteGatewayCommand extends smithyClient.Command
3583
4377
  .classBuilder()
3584
4378
  .ep(commonParams)
@@ -3627,6 +4421,54 @@ class DeleteOauth2CredentialProviderCommand extends smithyClient.Command
3627
4421
  .build() {
3628
4422
  }
3629
4423
 
4424
+ class DeleteOnlineEvaluationConfigCommand extends smithyClient.Command
4425
+ .classBuilder()
4426
+ .ep(commonParams)
4427
+ .m(function (Command, cs, config, o) {
4428
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4429
+ })
4430
+ .s("AmazonBedrockAgentCoreControl", "DeleteOnlineEvaluationConfig", {})
4431
+ .n("BedrockAgentCoreControlClient", "DeleteOnlineEvaluationConfigCommand")
4432
+ .sc(DeleteOnlineEvaluationConfig)
4433
+ .build() {
4434
+ }
4435
+
4436
+ class DeletePolicyCommand extends smithyClient.Command
4437
+ .classBuilder()
4438
+ .ep(commonParams)
4439
+ .m(function (Command, cs, config, o) {
4440
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4441
+ })
4442
+ .s("AmazonBedrockAgentCoreControl", "DeletePolicy", {})
4443
+ .n("BedrockAgentCoreControlClient", "DeletePolicyCommand")
4444
+ .sc(DeletePolicy)
4445
+ .build() {
4446
+ }
4447
+
4448
+ class DeletePolicyEngineCommand extends smithyClient.Command
4449
+ .classBuilder()
4450
+ .ep(commonParams)
4451
+ .m(function (Command, cs, config, o) {
4452
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4453
+ })
4454
+ .s("AmazonBedrockAgentCoreControl", "DeletePolicyEngine", {})
4455
+ .n("BedrockAgentCoreControlClient", "DeletePolicyEngineCommand")
4456
+ .sc(DeletePolicyEngine)
4457
+ .build() {
4458
+ }
4459
+
4460
+ class DeleteResourcePolicyCommand extends smithyClient.Command
4461
+ .classBuilder()
4462
+ .ep(commonParams)
4463
+ .m(function (Command, cs, config, o) {
4464
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4465
+ })
4466
+ .s("AmazonBedrockAgentCoreControl", "DeleteResourcePolicy", {})
4467
+ .n("BedrockAgentCoreControlClient", "DeleteResourcePolicyCommand")
4468
+ .sc(DeleteResourcePolicy)
4469
+ .build() {
4470
+ }
4471
+
3630
4472
  class DeleteWorkloadIdentityCommand extends smithyClient.Command
3631
4473
  .classBuilder()
3632
4474
  .ep(commonParams)
@@ -3699,25 +4541,37 @@ class GetCodeInterpreterCommand extends smithyClient.Command
3699
4541
  .build() {
3700
4542
  }
3701
4543
 
3702
- class GetGatewayCommand extends smithyClient.Command
4544
+ class GetEvaluatorCommand extends smithyClient.Command
3703
4545
  .classBuilder()
3704
4546
  .ep(commonParams)
3705
4547
  .m(function (Command, cs, config, o) {
3706
4548
  return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3707
4549
  })
3708
- .s("AmazonBedrockAgentCoreControl", "GetGateway", {})
3709
- .n("BedrockAgentCoreControlClient", "GetGatewayCommand")
3710
- .sc(GetGateway)
4550
+ .s("AmazonBedrockAgentCoreControl", "GetEvaluator", {})
4551
+ .n("BedrockAgentCoreControlClient", "GetEvaluatorCommand")
4552
+ .sc(GetEvaluator)
3711
4553
  .build() {
3712
4554
  }
3713
4555
 
3714
- class GetGatewayTargetCommand extends smithyClient.Command
4556
+ class GetGatewayCommand extends smithyClient.Command
3715
4557
  .classBuilder()
3716
4558
  .ep(commonParams)
3717
4559
  .m(function (Command, cs, config, o) {
3718
4560
  return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3719
4561
  })
3720
- .s("AmazonBedrockAgentCoreControl", "GetGatewayTarget", {})
4562
+ .s("AmazonBedrockAgentCoreControl", "GetGateway", {})
4563
+ .n("BedrockAgentCoreControlClient", "GetGatewayCommand")
4564
+ .sc(GetGateway)
4565
+ .build() {
4566
+ }
4567
+
4568
+ class GetGatewayTargetCommand extends smithyClient.Command
4569
+ .classBuilder()
4570
+ .ep(commonParams)
4571
+ .m(function (Command, cs, config, o) {
4572
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4573
+ })
4574
+ .s("AmazonBedrockAgentCoreControl", "GetGatewayTarget", {})
3721
4575
  .n("BedrockAgentCoreControlClient", "GetGatewayTargetCommand")
3722
4576
  .sc(GetGatewayTarget)
3723
4577
  .build() {
@@ -3747,6 +4601,66 @@ class GetOauth2CredentialProviderCommand extends smithyClient.Command
3747
4601
  .build() {
3748
4602
  }
3749
4603
 
4604
+ class GetOnlineEvaluationConfigCommand extends smithyClient.Command
4605
+ .classBuilder()
4606
+ .ep(commonParams)
4607
+ .m(function (Command, cs, config, o) {
4608
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4609
+ })
4610
+ .s("AmazonBedrockAgentCoreControl", "GetOnlineEvaluationConfig", {})
4611
+ .n("BedrockAgentCoreControlClient", "GetOnlineEvaluationConfigCommand")
4612
+ .sc(GetOnlineEvaluationConfig)
4613
+ .build() {
4614
+ }
4615
+
4616
+ class GetPolicyCommand extends smithyClient.Command
4617
+ .classBuilder()
4618
+ .ep(commonParams)
4619
+ .m(function (Command, cs, config, o) {
4620
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4621
+ })
4622
+ .s("AmazonBedrockAgentCoreControl", "GetPolicy", {})
4623
+ .n("BedrockAgentCoreControlClient", "GetPolicyCommand")
4624
+ .sc(GetPolicy)
4625
+ .build() {
4626
+ }
4627
+
4628
+ class GetPolicyEngineCommand extends smithyClient.Command
4629
+ .classBuilder()
4630
+ .ep(commonParams)
4631
+ .m(function (Command, cs, config, o) {
4632
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4633
+ })
4634
+ .s("AmazonBedrockAgentCoreControl", "GetPolicyEngine", {})
4635
+ .n("BedrockAgentCoreControlClient", "GetPolicyEngineCommand")
4636
+ .sc(GetPolicyEngine)
4637
+ .build() {
4638
+ }
4639
+
4640
+ class GetPolicyGenerationCommand extends smithyClient.Command
4641
+ .classBuilder()
4642
+ .ep(commonParams)
4643
+ .m(function (Command, cs, config, o) {
4644
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4645
+ })
4646
+ .s("AmazonBedrockAgentCoreControl", "GetPolicyGeneration", {})
4647
+ .n("BedrockAgentCoreControlClient", "GetPolicyGenerationCommand")
4648
+ .sc(GetPolicyGeneration)
4649
+ .build() {
4650
+ }
4651
+
4652
+ class GetResourcePolicyCommand extends smithyClient.Command
4653
+ .classBuilder()
4654
+ .ep(commonParams)
4655
+ .m(function (Command, cs, config, o) {
4656
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4657
+ })
4658
+ .s("AmazonBedrockAgentCoreControl", "GetResourcePolicy", {})
4659
+ .n("BedrockAgentCoreControlClient", "GetResourcePolicyCommand")
4660
+ .sc(GetResourcePolicy)
4661
+ .build() {
4662
+ }
4663
+
3750
4664
  class GetTokenVaultCommand extends smithyClient.Command
3751
4665
  .classBuilder()
3752
4666
  .ep(commonParams)
@@ -3843,6 +4757,18 @@ class ListCodeInterpretersCommand extends smithyClient.Command
3843
4757
  .build() {
3844
4758
  }
3845
4759
 
4760
+ class ListEvaluatorsCommand extends smithyClient.Command
4761
+ .classBuilder()
4762
+ .ep(commonParams)
4763
+ .m(function (Command, cs, config, o) {
4764
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4765
+ })
4766
+ .s("AmazonBedrockAgentCoreControl", "ListEvaluators", {})
4767
+ .n("BedrockAgentCoreControlClient", "ListEvaluatorsCommand")
4768
+ .sc(ListEvaluators)
4769
+ .build() {
4770
+ }
4771
+
3846
4772
  class ListGatewaysCommand extends smithyClient.Command
3847
4773
  .classBuilder()
3848
4774
  .ep(commonParams)
@@ -3891,6 +4817,66 @@ class ListOauth2CredentialProvidersCommand extends smithyClient.Command
3891
4817
  .build() {
3892
4818
  }
3893
4819
 
4820
+ class ListOnlineEvaluationConfigsCommand extends smithyClient.Command
4821
+ .classBuilder()
4822
+ .ep(commonParams)
4823
+ .m(function (Command, cs, config, o) {
4824
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4825
+ })
4826
+ .s("AmazonBedrockAgentCoreControl", "ListOnlineEvaluationConfigs", {})
4827
+ .n("BedrockAgentCoreControlClient", "ListOnlineEvaluationConfigsCommand")
4828
+ .sc(ListOnlineEvaluationConfigs)
4829
+ .build() {
4830
+ }
4831
+
4832
+ class ListPoliciesCommand extends smithyClient.Command
4833
+ .classBuilder()
4834
+ .ep(commonParams)
4835
+ .m(function (Command, cs, config, o) {
4836
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4837
+ })
4838
+ .s("AmazonBedrockAgentCoreControl", "ListPolicies", {})
4839
+ .n("BedrockAgentCoreControlClient", "ListPoliciesCommand")
4840
+ .sc(ListPolicies)
4841
+ .build() {
4842
+ }
4843
+
4844
+ class ListPolicyEnginesCommand extends smithyClient.Command
4845
+ .classBuilder()
4846
+ .ep(commonParams)
4847
+ .m(function (Command, cs, config, o) {
4848
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4849
+ })
4850
+ .s("AmazonBedrockAgentCoreControl", "ListPolicyEngines", {})
4851
+ .n("BedrockAgentCoreControlClient", "ListPolicyEnginesCommand")
4852
+ .sc(ListPolicyEngines)
4853
+ .build() {
4854
+ }
4855
+
4856
+ class ListPolicyGenerationAssetsCommand extends smithyClient.Command
4857
+ .classBuilder()
4858
+ .ep(commonParams)
4859
+ .m(function (Command, cs, config, o) {
4860
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4861
+ })
4862
+ .s("AmazonBedrockAgentCoreControl", "ListPolicyGenerationAssets", {})
4863
+ .n("BedrockAgentCoreControlClient", "ListPolicyGenerationAssetsCommand")
4864
+ .sc(ListPolicyGenerationAssets)
4865
+ .build() {
4866
+ }
4867
+
4868
+ class ListPolicyGenerationsCommand extends smithyClient.Command
4869
+ .classBuilder()
4870
+ .ep(commonParams)
4871
+ .m(function (Command, cs, config, o) {
4872
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4873
+ })
4874
+ .s("AmazonBedrockAgentCoreControl", "ListPolicyGenerations", {})
4875
+ .n("BedrockAgentCoreControlClient", "ListPolicyGenerationsCommand")
4876
+ .sc(ListPolicyGenerations)
4877
+ .build() {
4878
+ }
4879
+
3894
4880
  class ListTagsForResourceCommand extends smithyClient.Command
3895
4881
  .classBuilder()
3896
4882
  .ep(commonParams)
@@ -3915,6 +4901,18 @@ class ListWorkloadIdentitiesCommand extends smithyClient.Command
3915
4901
  .build() {
3916
4902
  }
3917
4903
 
4904
+ class PutResourcePolicyCommand extends smithyClient.Command
4905
+ .classBuilder()
4906
+ .ep(commonParams)
4907
+ .m(function (Command, cs, config, o) {
4908
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4909
+ })
4910
+ .s("AmazonBedrockAgentCoreControl", "PutResourcePolicy", {})
4911
+ .n("BedrockAgentCoreControlClient", "PutResourcePolicyCommand")
4912
+ .sc(PutResourcePolicy)
4913
+ .build() {
4914
+ }
4915
+
3918
4916
  class SetTokenVaultCMKCommand extends smithyClient.Command
3919
4917
  .classBuilder()
3920
4918
  .ep(commonParams)
@@ -3927,6 +4925,18 @@ class SetTokenVaultCMKCommand extends smithyClient.Command
3927
4925
  .build() {
3928
4926
  }
3929
4927
 
4928
+ class StartPolicyGenerationCommand extends smithyClient.Command
4929
+ .classBuilder()
4930
+ .ep(commonParams)
4931
+ .m(function (Command, cs, config, o) {
4932
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
4933
+ })
4934
+ .s("AmazonBedrockAgentCoreControl", "StartPolicyGeneration", {})
4935
+ .n("BedrockAgentCoreControlClient", "StartPolicyGenerationCommand")
4936
+ .sc(StartPolicyGeneration)
4937
+ .build() {
4938
+ }
4939
+
3930
4940
  class SynchronizeGatewayTargetsCommand extends smithyClient.Command
3931
4941
  .classBuilder()
3932
4942
  .ep(commonParams)
@@ -3999,6 +5009,18 @@ class UpdateApiKeyCredentialProviderCommand extends smithyClient.Command
3999
5009
  .build() {
4000
5010
  }
4001
5011
 
5012
+ class UpdateEvaluatorCommand extends smithyClient.Command
5013
+ .classBuilder()
5014
+ .ep(commonParams)
5015
+ .m(function (Command, cs, config, o) {
5016
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5017
+ })
5018
+ .s("AmazonBedrockAgentCoreControl", "UpdateEvaluator", {})
5019
+ .n("BedrockAgentCoreControlClient", "UpdateEvaluatorCommand")
5020
+ .sc(UpdateEvaluator)
5021
+ .build() {
5022
+ }
5023
+
4002
5024
  class UpdateGatewayCommand extends smithyClient.Command
4003
5025
  .classBuilder()
4004
5026
  .ep(commonParams)
@@ -4047,6 +5069,42 @@ class UpdateOauth2CredentialProviderCommand extends smithyClient.Command
4047
5069
  .build() {
4048
5070
  }
4049
5071
 
5072
+ class UpdateOnlineEvaluationConfigCommand extends smithyClient.Command
5073
+ .classBuilder()
5074
+ .ep(commonParams)
5075
+ .m(function (Command, cs, config, o) {
5076
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5077
+ })
5078
+ .s("AmazonBedrockAgentCoreControl", "UpdateOnlineEvaluationConfig", {})
5079
+ .n("BedrockAgentCoreControlClient", "UpdateOnlineEvaluationConfigCommand")
5080
+ .sc(UpdateOnlineEvaluationConfig)
5081
+ .build() {
5082
+ }
5083
+
5084
+ class UpdatePolicyCommand extends smithyClient.Command
5085
+ .classBuilder()
5086
+ .ep(commonParams)
5087
+ .m(function (Command, cs, config, o) {
5088
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5089
+ })
5090
+ .s("AmazonBedrockAgentCoreControl", "UpdatePolicy", {})
5091
+ .n("BedrockAgentCoreControlClient", "UpdatePolicyCommand")
5092
+ .sc(UpdatePolicy)
5093
+ .build() {
5094
+ }
5095
+
5096
+ class UpdatePolicyEngineCommand extends smithyClient.Command
5097
+ .classBuilder()
5098
+ .ep(commonParams)
5099
+ .m(function (Command, cs, config, o) {
5100
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
5101
+ })
5102
+ .s("AmazonBedrockAgentCoreControl", "UpdatePolicyEngine", {})
5103
+ .n("BedrockAgentCoreControlClient", "UpdatePolicyEngineCommand")
5104
+ .sc(UpdatePolicyEngine)
5105
+ .build() {
5106
+ }
5107
+
4050
5108
  class UpdateWorkloadIdentityCommand extends smithyClient.Command
4051
5109
  .classBuilder()
4052
5110
  .ep(commonParams)
@@ -4065,30 +5123,45 @@ const commands = {
4065
5123
  CreateApiKeyCredentialProviderCommand,
4066
5124
  CreateBrowserCommand,
4067
5125
  CreateCodeInterpreterCommand,
5126
+ CreateEvaluatorCommand,
4068
5127
  CreateGatewayCommand,
4069
5128
  CreateGatewayTargetCommand,
4070
5129
  CreateMemoryCommand,
4071
5130
  CreateOauth2CredentialProviderCommand,
5131
+ CreateOnlineEvaluationConfigCommand,
5132
+ CreatePolicyCommand,
5133
+ CreatePolicyEngineCommand,
4072
5134
  CreateWorkloadIdentityCommand,
4073
5135
  DeleteAgentRuntimeCommand,
4074
5136
  DeleteAgentRuntimeEndpointCommand,
4075
5137
  DeleteApiKeyCredentialProviderCommand,
4076
5138
  DeleteBrowserCommand,
4077
5139
  DeleteCodeInterpreterCommand,
5140
+ DeleteEvaluatorCommand,
4078
5141
  DeleteGatewayCommand,
4079
5142
  DeleteGatewayTargetCommand,
4080
5143
  DeleteMemoryCommand,
4081
5144
  DeleteOauth2CredentialProviderCommand,
5145
+ DeleteOnlineEvaluationConfigCommand,
5146
+ DeletePolicyCommand,
5147
+ DeletePolicyEngineCommand,
5148
+ DeleteResourcePolicyCommand,
4082
5149
  DeleteWorkloadIdentityCommand,
4083
5150
  GetAgentRuntimeCommand,
4084
5151
  GetAgentRuntimeEndpointCommand,
4085
5152
  GetApiKeyCredentialProviderCommand,
4086
5153
  GetBrowserCommand,
4087
5154
  GetCodeInterpreterCommand,
5155
+ GetEvaluatorCommand,
4088
5156
  GetGatewayCommand,
4089
5157
  GetGatewayTargetCommand,
4090
5158
  GetMemoryCommand,
4091
5159
  GetOauth2CredentialProviderCommand,
5160
+ GetOnlineEvaluationConfigCommand,
5161
+ GetPolicyCommand,
5162
+ GetPolicyEngineCommand,
5163
+ GetPolicyGenerationCommand,
5164
+ GetResourcePolicyCommand,
4092
5165
  GetTokenVaultCommand,
4093
5166
  GetWorkloadIdentityCommand,
4094
5167
  ListAgentRuntimeEndpointsCommand,
@@ -4097,23 +5170,35 @@ const commands = {
4097
5170
  ListApiKeyCredentialProvidersCommand,
4098
5171
  ListBrowsersCommand,
4099
5172
  ListCodeInterpretersCommand,
5173
+ ListEvaluatorsCommand,
4100
5174
  ListGatewaysCommand,
4101
5175
  ListGatewayTargetsCommand,
4102
5176
  ListMemoriesCommand,
4103
5177
  ListOauth2CredentialProvidersCommand,
5178
+ ListOnlineEvaluationConfigsCommand,
5179
+ ListPoliciesCommand,
5180
+ ListPolicyEnginesCommand,
5181
+ ListPolicyGenerationAssetsCommand,
5182
+ ListPolicyGenerationsCommand,
4104
5183
  ListTagsForResourceCommand,
4105
5184
  ListWorkloadIdentitiesCommand,
5185
+ PutResourcePolicyCommand,
4106
5186
  SetTokenVaultCMKCommand,
5187
+ StartPolicyGenerationCommand,
4107
5188
  SynchronizeGatewayTargetsCommand,
4108
5189
  TagResourceCommand,
4109
5190
  UntagResourceCommand,
4110
5191
  UpdateAgentRuntimeCommand,
4111
5192
  UpdateAgentRuntimeEndpointCommand,
4112
5193
  UpdateApiKeyCredentialProviderCommand,
5194
+ UpdateEvaluatorCommand,
4113
5195
  UpdateGatewayCommand,
4114
5196
  UpdateGatewayTargetCommand,
4115
5197
  UpdateMemoryCommand,
4116
5198
  UpdateOauth2CredentialProviderCommand,
5199
+ UpdateOnlineEvaluationConfigCommand,
5200
+ UpdatePolicyCommand,
5201
+ UpdatePolicyEngineCommand,
4117
5202
  UpdateWorkloadIdentityCommand,
4118
5203
  };
4119
5204
  class BedrockAgentCoreControl extends BedrockAgentCoreControlClient {
@@ -4132,6 +5217,8 @@ const paginateListBrowsers = core.createPaginator(BedrockAgentCoreControlClient,
4132
5217
 
4133
5218
  const paginateListCodeInterpreters = core.createPaginator(BedrockAgentCoreControlClient, ListCodeInterpretersCommand, "nextToken", "nextToken", "maxResults");
4134
5219
 
5220
+ const paginateListEvaluators = core.createPaginator(BedrockAgentCoreControlClient, ListEvaluatorsCommand, "nextToken", "nextToken", "maxResults");
5221
+
4135
5222
  const paginateListGatewayTargets = core.createPaginator(BedrockAgentCoreControlClient, ListGatewayTargetsCommand, "nextToken", "nextToken", "maxResults");
4136
5223
 
4137
5224
  const paginateListGateways = core.createPaginator(BedrockAgentCoreControlClient, ListGatewaysCommand, "nextToken", "nextToken", "maxResults");
@@ -4140,9 +5227,19 @@ const paginateListMemories = core.createPaginator(BedrockAgentCoreControlClient,
4140
5227
 
4141
5228
  const paginateListOauth2CredentialProviders = core.createPaginator(BedrockAgentCoreControlClient, ListOauth2CredentialProvidersCommand, "nextToken", "nextToken", "maxResults");
4142
5229
 
5230
+ const paginateListOnlineEvaluationConfigs = core.createPaginator(BedrockAgentCoreControlClient, ListOnlineEvaluationConfigsCommand, "nextToken", "nextToken", "maxResults");
5231
+
5232
+ const paginateListPolicies = core.createPaginator(BedrockAgentCoreControlClient, ListPoliciesCommand, "nextToken", "nextToken", "maxResults");
5233
+
5234
+ const paginateListPolicyEngines = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyEnginesCommand, "nextToken", "nextToken", "maxResults");
5235
+
5236
+ const paginateListPolicyGenerationAssets = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationAssetsCommand, "nextToken", "nextToken", "maxResults");
5237
+
5238
+ const paginateListPolicyGenerations = core.createPaginator(BedrockAgentCoreControlClient, ListPolicyGenerationsCommand, "nextToken", "nextToken", "maxResults");
5239
+
4143
5240
  const paginateListWorkloadIdentities = core.createPaginator(BedrockAgentCoreControlClient, ListWorkloadIdentitiesCommand, "nextToken", "nextToken", "maxResults");
4144
5241
 
4145
- const checkState = async (client, input) => {
5242
+ const checkState$5 = async (client, input) => {
4146
5243
  let reason;
4147
5244
  try {
4148
5245
  const result = await client.send(new GetMemoryCommand(input));
@@ -4182,9 +5279,264 @@ const checkState = async (client, input) => {
4182
5279
  };
4183
5280
  const waitForMemoryCreated = async (params, input) => {
4184
5281
  const serviceDefaults = { minDelay: 2, maxDelay: 120 };
4185
- return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
5282
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
4186
5283
  };
4187
5284
  const waitUntilMemoryCreated = async (params, input) => {
5285
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5286
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
5287
+ return utilWaiter.checkExceptions(result);
5288
+ };
5289
+
5290
+ const checkState$4 = async (client, input) => {
5291
+ let reason;
5292
+ try {
5293
+ const result = await client.send(new GetPolicyCommand(input));
5294
+ reason = result;
5295
+ try {
5296
+ const returnComparator = () => {
5297
+ return result.status;
5298
+ };
5299
+ if (returnComparator() === "ACTIVE") {
5300
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
5301
+ }
5302
+ }
5303
+ catch (e) { }
5304
+ try {
5305
+ const returnComparator = () => {
5306
+ return result.status;
5307
+ };
5308
+ if (returnComparator() === "CREATE_FAILED") {
5309
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5310
+ }
5311
+ }
5312
+ catch (e) { }
5313
+ try {
5314
+ const returnComparator = () => {
5315
+ return result.status;
5316
+ };
5317
+ if (returnComparator() === "UPDATE_FAILED") {
5318
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5319
+ }
5320
+ }
5321
+ catch (e) { }
5322
+ try {
5323
+ const returnComparator = () => {
5324
+ return result.status;
5325
+ };
5326
+ if (returnComparator() === "DELETE_FAILED") {
5327
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5328
+ }
5329
+ }
5330
+ catch (e) { }
5331
+ }
5332
+ catch (exception) {
5333
+ reason = exception;
5334
+ }
5335
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5336
+ };
5337
+ const waitForPolicyActive = async (params, input) => {
5338
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5339
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
5340
+ };
5341
+ const waitUntilPolicyActive = async (params, input) => {
5342
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5343
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
5344
+ return utilWaiter.checkExceptions(result);
5345
+ };
5346
+
5347
+ const checkState$3 = async (client, input) => {
5348
+ let reason;
5349
+ try {
5350
+ const result = await client.send(new GetPolicyCommand(input));
5351
+ reason = result;
5352
+ try {
5353
+ const returnComparator = () => {
5354
+ return result.status;
5355
+ };
5356
+ if (returnComparator() === "DELETING") {
5357
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5358
+ }
5359
+ }
5360
+ catch (e) { }
5361
+ try {
5362
+ const returnComparator = () => {
5363
+ return result.status;
5364
+ };
5365
+ if (returnComparator() === "DELETE_FAILED") {
5366
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5367
+ }
5368
+ }
5369
+ catch (e) { }
5370
+ }
5371
+ catch (exception) {
5372
+ reason = exception;
5373
+ if (exception.name && exception.name == "ResourceNotFoundException") {
5374
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
5375
+ }
5376
+ }
5377
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5378
+ };
5379
+ const waitForPolicyDeleted = async (params, input) => {
5380
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5381
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
5382
+ };
5383
+ const waitUntilPolicyDeleted = async (params, input) => {
5384
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5385
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
5386
+ return utilWaiter.checkExceptions(result);
5387
+ };
5388
+
5389
+ const checkState$2 = async (client, input) => {
5390
+ let reason;
5391
+ try {
5392
+ const result = await client.send(new GetPolicyEngineCommand(input));
5393
+ reason = result;
5394
+ try {
5395
+ const returnComparator = () => {
5396
+ return result.status;
5397
+ };
5398
+ if (returnComparator() === "ACTIVE") {
5399
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
5400
+ }
5401
+ }
5402
+ catch (e) { }
5403
+ try {
5404
+ const returnComparator = () => {
5405
+ return result.status;
5406
+ };
5407
+ if (returnComparator() === "CREATE_FAILED") {
5408
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5409
+ }
5410
+ }
5411
+ catch (e) { }
5412
+ try {
5413
+ const returnComparator = () => {
5414
+ return result.status;
5415
+ };
5416
+ if (returnComparator() === "UPDATE_FAILED") {
5417
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5418
+ }
5419
+ }
5420
+ catch (e) { }
5421
+ try {
5422
+ const returnComparator = () => {
5423
+ return result.status;
5424
+ };
5425
+ if (returnComparator() === "DELETE_FAILED") {
5426
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5427
+ }
5428
+ }
5429
+ catch (e) { }
5430
+ }
5431
+ catch (exception) {
5432
+ reason = exception;
5433
+ }
5434
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5435
+ };
5436
+ const waitForPolicyEngineActive = async (params, input) => {
5437
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5438
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
5439
+ };
5440
+ const waitUntilPolicyEngineActive = async (params, input) => {
5441
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5442
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
5443
+ return utilWaiter.checkExceptions(result);
5444
+ };
5445
+
5446
+ const checkState$1 = async (client, input) => {
5447
+ let reason;
5448
+ try {
5449
+ const result = await client.send(new GetPolicyEngineCommand(input));
5450
+ reason = result;
5451
+ try {
5452
+ const returnComparator = () => {
5453
+ return result.status;
5454
+ };
5455
+ if (returnComparator() === "DELETING") {
5456
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5457
+ }
5458
+ }
5459
+ catch (e) { }
5460
+ try {
5461
+ const returnComparator = () => {
5462
+ return result.status;
5463
+ };
5464
+ if (returnComparator() === "DELETE_FAILED") {
5465
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5466
+ }
5467
+ }
5468
+ catch (e) { }
5469
+ }
5470
+ catch (exception) {
5471
+ reason = exception;
5472
+ if (exception.name && exception.name == "ResourceNotFoundException") {
5473
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
5474
+ }
5475
+ }
5476
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5477
+ };
5478
+ const waitForPolicyEngineDeleted = async (params, input) => {
5479
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5480
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
5481
+ };
5482
+ const waitUntilPolicyEngineDeleted = async (params, input) => {
5483
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5484
+ const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
5485
+ return utilWaiter.checkExceptions(result);
5486
+ };
5487
+
5488
+ const checkState = async (client, input) => {
5489
+ let reason;
5490
+ try {
5491
+ const result = await client.send(new GetPolicyGenerationCommand(input));
5492
+ reason = result;
5493
+ try {
5494
+ const returnComparator = () => {
5495
+ return result.status;
5496
+ };
5497
+ if (returnComparator() === "GENERATED") {
5498
+ return { state: utilWaiter.WaiterState.SUCCESS, reason };
5499
+ }
5500
+ }
5501
+ catch (e) { }
5502
+ try {
5503
+ const returnComparator = () => {
5504
+ return result.status;
5505
+ };
5506
+ if (returnComparator() === "GENERATING") {
5507
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5508
+ }
5509
+ }
5510
+ catch (e) { }
5511
+ try {
5512
+ const returnComparator = () => {
5513
+ return result.status;
5514
+ };
5515
+ if (returnComparator() === "GENERATE_FAILED") {
5516
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5517
+ }
5518
+ }
5519
+ catch (e) { }
5520
+ try {
5521
+ const returnComparator = () => {
5522
+ return result.status;
5523
+ };
5524
+ if (returnComparator() === "DELETE_FAILED") {
5525
+ return { state: utilWaiter.WaiterState.FAILURE, reason };
5526
+ }
5527
+ }
5528
+ catch (e) { }
5529
+ }
5530
+ catch (exception) {
5531
+ reason = exception;
5532
+ }
5533
+ return { state: utilWaiter.WaiterState.RETRY, reason };
5534
+ };
5535
+ const waitForPolicyGenerationCompleted = async (params, input) => {
5536
+ const serviceDefaults = { minDelay: 2, maxDelay: 120 };
5537
+ return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
5538
+ };
5539
+ const waitUntilPolicyGenerationCompleted = async (params, input) => {
4188
5540
  const serviceDefaults = { minDelay: 2, maxDelay: 120 };
4189
5541
  const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
4190
5542
  return utilWaiter.checkExceptions(result);
@@ -4211,6 +5563,15 @@ const AgentManagedRuntimeType = {
4211
5563
  PYTHON_3_12: "PYTHON_3_12",
4212
5564
  PYTHON_3_13: "PYTHON_3_13",
4213
5565
  };
5566
+ const ClaimMatchOperatorType = {
5567
+ CONTAINS: "CONTAINS",
5568
+ CONTAINS_ANY: "CONTAINS_ANY",
5569
+ EQUALS: "EQUALS",
5570
+ };
5571
+ const InboundTokenClaimValueType = {
5572
+ STRING: "STRING",
5573
+ STRING_ARRAY: "STRING_ARRAY",
5574
+ };
4214
5575
  const NetworkMode = {
4215
5576
  PUBLIC: "PUBLIC",
4216
5577
  VPC: "VPC",
@@ -4257,6 +5618,23 @@ const CodeInterpreterStatus = {
4257
5618
  DELETING: "DELETING",
4258
5619
  READY: "READY",
4259
5620
  };
5621
+ const EvaluatorLevel = {
5622
+ SESSION: "SESSION",
5623
+ TOOL_CALL: "TOOL_CALL",
5624
+ TRACE: "TRACE",
5625
+ };
5626
+ const EvaluatorStatus = {
5627
+ ACTIVE: "ACTIVE",
5628
+ CREATE_FAILED: "CREATE_FAILED",
5629
+ CREATING: "CREATING",
5630
+ DELETING: "DELETING",
5631
+ UPDATE_FAILED: "UPDATE_FAILED",
5632
+ UPDATING: "UPDATING",
5633
+ };
5634
+ const EvaluatorType = {
5635
+ BUILTIN: "Builtin",
5636
+ CUSTOM: "Custom",
5637
+ };
4260
5638
  const AuthorizerType = {
4261
5639
  AWS_IAM: "AWS_IAM",
4262
5640
  CUSTOM_JWT: "CUSTOM_JWT",
@@ -4269,6 +5647,10 @@ const GatewayInterceptionPoint = {
4269
5647
  REQUEST: "REQUEST",
4270
5648
  RESPONSE: "RESPONSE",
4271
5649
  };
5650
+ const GatewayPolicyEngineMode = {
5651
+ ENFORCE: "ENFORCE",
5652
+ LOG_ONLY: "LOG_ONLY",
5653
+ };
4272
5654
  const SearchType = {
4273
5655
  SEMANTIC: "SEMANTIC",
4274
5656
  };
@@ -4287,11 +5669,24 @@ const ApiKeyCredentialLocation = {
4287
5669
  HEADER: "HEADER",
4288
5670
  QUERY_PARAMETER: "QUERY_PARAMETER",
4289
5671
  };
5672
+ const OAuthGrantType = {
5673
+ AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
5674
+ CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
5675
+ };
4290
5676
  const CredentialProviderType = {
4291
5677
  API_KEY: "API_KEY",
4292
5678
  GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
4293
5679
  OAUTH: "OAUTH",
4294
5680
  };
5681
+ const RestApiMethod = {
5682
+ DELETE: "DELETE",
5683
+ GET: "GET",
5684
+ HEAD: "HEAD",
5685
+ OPTIONS: "OPTIONS",
5686
+ PATCH: "PATCH",
5687
+ POST: "POST",
5688
+ PUT: "PUT",
5689
+ };
4295
5690
  const SchemaType = {
4296
5691
  ARRAY: "array",
4297
5692
  BOOLEAN: "boolean",
@@ -4321,6 +5716,7 @@ const MemoryStatus = {
4321
5716
  FAILED: "FAILED",
4322
5717
  };
4323
5718
  const OverrideType = {
5719
+ EPISODIC_OVERRIDE: "EPISODIC_OVERRIDE",
4324
5720
  SELF_MANAGED: "SELF_MANAGED",
4325
5721
  SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE",
4326
5722
  SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE",
@@ -4334,6 +5730,7 @@ const MemoryStrategyStatus = {
4334
5730
  };
4335
5731
  const MemoryStrategyType = {
4336
5732
  CUSTOM: "CUSTOM",
5733
+ EPISODIC: "EPISODIC",
4337
5734
  SEMANTIC: "SEMANTIC",
4338
5735
  SUMMARIZATION: "SUMMARIZATION",
4339
5736
  USER_PREFERENCE: "USER_PREFERENCE",
@@ -4365,6 +5762,65 @@ const CredentialProviderVendorType = {
4365
5762
  YandexOauth2: "YandexOauth2",
4366
5763
  ZoomOauth2: "ZoomOauth2",
4367
5764
  };
5765
+ const FilterOperator = {
5766
+ CONTAINS: "Contains",
5767
+ EQUALS: "Equals",
5768
+ GREATER_THAN: "GreaterThan",
5769
+ GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual",
5770
+ LESS_THAN: "LessThan",
5771
+ LESS_THAN_OR_EQUAL: "LessThanOrEqual",
5772
+ NOT_CONTAINS: "NotContains",
5773
+ NOT_EQUALS: "NotEquals",
5774
+ };
5775
+ const OnlineEvaluationExecutionStatus = {
5776
+ DISABLED: "DISABLED",
5777
+ ENABLED: "ENABLED",
5778
+ };
5779
+ const OnlineEvaluationConfigStatus = {
5780
+ ACTIVE: "ACTIVE",
5781
+ CREATE_FAILED: "CREATE_FAILED",
5782
+ CREATING: "CREATING",
5783
+ DELETING: "DELETING",
5784
+ UPDATE_FAILED: "UPDATE_FAILED",
5785
+ UPDATING: "UPDATING",
5786
+ };
5787
+ const PolicyEngineStatus = {
5788
+ ACTIVE: "ACTIVE",
5789
+ CREATE_FAILED: "CREATE_FAILED",
5790
+ CREATING: "CREATING",
5791
+ DELETE_FAILED: "DELETE_FAILED",
5792
+ DELETING: "DELETING",
5793
+ UPDATE_FAILED: "UPDATE_FAILED",
5794
+ UPDATING: "UPDATING",
5795
+ };
5796
+ const PolicyGenerationStatus = {
5797
+ DELETE_FAILED: "DELETE_FAILED",
5798
+ GENERATED: "GENERATED",
5799
+ GENERATE_FAILED: "GENERATE_FAILED",
5800
+ GENERATING: "GENERATING",
5801
+ };
5802
+ const FindingType = {
5803
+ ALLOW_ALL: "ALLOW_ALL",
5804
+ ALLOW_NONE: "ALLOW_NONE",
5805
+ DENY_ALL: "DENY_ALL",
5806
+ DENY_NONE: "DENY_NONE",
5807
+ INVALID: "INVALID",
5808
+ NOT_TRANSLATABLE: "NOT_TRANSLATABLE",
5809
+ VALID: "VALID",
5810
+ };
5811
+ const PolicyValidationMode = {
5812
+ FAIL_ON_ANY_FINDINGS: "FAIL_ON_ANY_FINDINGS",
5813
+ IGNORE_ALL_FINDINGS: "IGNORE_ALL_FINDINGS",
5814
+ };
5815
+ const PolicyStatus = {
5816
+ ACTIVE: "ACTIVE",
5817
+ CREATE_FAILED: "CREATE_FAILED",
5818
+ CREATING: "CREATING",
5819
+ DELETE_FAILED: "DELETE_FAILED",
5820
+ DELETING: "DELETING",
5821
+ UPDATE_FAILED: "UPDATE_FAILED",
5822
+ UPDATING: "UPDATING",
5823
+ };
4368
5824
 
4369
5825
  Object.defineProperty(exports, "$Command", {
4370
5826
  enumerable: true,
@@ -4385,6 +5841,7 @@ exports.BedrockAgentCoreControlClient = BedrockAgentCoreControlClient;
4385
5841
  exports.BedrockAgentCoreControlServiceException = BedrockAgentCoreControlServiceException$1;
4386
5842
  exports.BrowserNetworkMode = BrowserNetworkMode;
4387
5843
  exports.BrowserStatus = BrowserStatus;
5844
+ exports.ClaimMatchOperatorType = ClaimMatchOperatorType;
4388
5845
  exports.CodeInterpreterNetworkMode = CodeInterpreterNetworkMode;
4389
5846
  exports.CodeInterpreterStatus = CodeInterpreterStatus;
4390
5847
  exports.ConcurrentModificationException = ConcurrentModificationException$1;
@@ -4394,10 +5851,14 @@ exports.CreateAgentRuntimeEndpointCommand = CreateAgentRuntimeEndpointCommand;
4394
5851
  exports.CreateApiKeyCredentialProviderCommand = CreateApiKeyCredentialProviderCommand;
4395
5852
  exports.CreateBrowserCommand = CreateBrowserCommand;
4396
5853
  exports.CreateCodeInterpreterCommand = CreateCodeInterpreterCommand;
5854
+ exports.CreateEvaluatorCommand = CreateEvaluatorCommand;
4397
5855
  exports.CreateGatewayCommand = CreateGatewayCommand;
4398
5856
  exports.CreateGatewayTargetCommand = CreateGatewayTargetCommand;
4399
5857
  exports.CreateMemoryCommand = CreateMemoryCommand;
4400
5858
  exports.CreateOauth2CredentialProviderCommand = CreateOauth2CredentialProviderCommand;
5859
+ exports.CreateOnlineEvaluationConfigCommand = CreateOnlineEvaluationConfigCommand;
5860
+ exports.CreatePolicyCommand = CreatePolicyCommand;
5861
+ exports.CreatePolicyEngineCommand = CreatePolicyEngineCommand;
4401
5862
  exports.CreateWorkloadIdentityCommand = CreateWorkloadIdentityCommand;
4402
5863
  exports.CredentialProviderType = CredentialProviderType;
4403
5864
  exports.CredentialProviderVendorType = CredentialProviderVendorType;
@@ -4407,14 +5868,25 @@ exports.DeleteAgentRuntimeEndpointCommand = DeleteAgentRuntimeEndpointCommand;
4407
5868
  exports.DeleteApiKeyCredentialProviderCommand = DeleteApiKeyCredentialProviderCommand;
4408
5869
  exports.DeleteBrowserCommand = DeleteBrowserCommand;
4409
5870
  exports.DeleteCodeInterpreterCommand = DeleteCodeInterpreterCommand;
5871
+ exports.DeleteEvaluatorCommand = DeleteEvaluatorCommand;
4410
5872
  exports.DeleteGatewayCommand = DeleteGatewayCommand;
4411
5873
  exports.DeleteGatewayTargetCommand = DeleteGatewayTargetCommand;
4412
5874
  exports.DeleteMemoryCommand = DeleteMemoryCommand;
4413
5875
  exports.DeleteOauth2CredentialProviderCommand = DeleteOauth2CredentialProviderCommand;
5876
+ exports.DeleteOnlineEvaluationConfigCommand = DeleteOnlineEvaluationConfigCommand;
5877
+ exports.DeletePolicyCommand = DeletePolicyCommand;
5878
+ exports.DeletePolicyEngineCommand = DeletePolicyEngineCommand;
5879
+ exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
4414
5880
  exports.DeleteWorkloadIdentityCommand = DeleteWorkloadIdentityCommand;
4415
5881
  exports.EncryptionFailure = EncryptionFailure$1;
5882
+ exports.EvaluatorLevel = EvaluatorLevel;
5883
+ exports.EvaluatorStatus = EvaluatorStatus;
5884
+ exports.EvaluatorType = EvaluatorType;
4416
5885
  exports.ExceptionLevel = ExceptionLevel;
5886
+ exports.FilterOperator = FilterOperator;
5887
+ exports.FindingType = FindingType;
4417
5888
  exports.GatewayInterceptionPoint = GatewayInterceptionPoint;
5889
+ exports.GatewayPolicyEngineMode = GatewayPolicyEngineMode;
4418
5890
  exports.GatewayProtocolType = GatewayProtocolType;
4419
5891
  exports.GatewayStatus = GatewayStatus;
4420
5892
  exports.GetAgentRuntimeCommand = GetAgentRuntimeCommand;
@@ -4422,12 +5894,19 @@ exports.GetAgentRuntimeEndpointCommand = GetAgentRuntimeEndpointCommand;
4422
5894
  exports.GetApiKeyCredentialProviderCommand = GetApiKeyCredentialProviderCommand;
4423
5895
  exports.GetBrowserCommand = GetBrowserCommand;
4424
5896
  exports.GetCodeInterpreterCommand = GetCodeInterpreterCommand;
5897
+ exports.GetEvaluatorCommand = GetEvaluatorCommand;
4425
5898
  exports.GetGatewayCommand = GetGatewayCommand;
4426
5899
  exports.GetGatewayTargetCommand = GetGatewayTargetCommand;
4427
5900
  exports.GetMemoryCommand = GetMemoryCommand;
4428
5901
  exports.GetOauth2CredentialProviderCommand = GetOauth2CredentialProviderCommand;
5902
+ exports.GetOnlineEvaluationConfigCommand = GetOnlineEvaluationConfigCommand;
5903
+ exports.GetPolicyCommand = GetPolicyCommand;
5904
+ exports.GetPolicyEngineCommand = GetPolicyEngineCommand;
5905
+ exports.GetPolicyGenerationCommand = GetPolicyGenerationCommand;
5906
+ exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
4429
5907
  exports.GetTokenVaultCommand = GetTokenVaultCommand;
4430
5908
  exports.GetWorkloadIdentityCommand = GetWorkloadIdentityCommand;
5909
+ exports.InboundTokenClaimValueType = InboundTokenClaimValueType;
4431
5910
  exports.InternalServerException = InternalServerException$1;
4432
5911
  exports.KeyType = KeyType;
4433
5912
  exports.ListAgentRuntimeEndpointsCommand = ListAgentRuntimeEndpointsCommand;
@@ -4436,26 +5915,42 @@ exports.ListAgentRuntimesCommand = ListAgentRuntimesCommand;
4436
5915
  exports.ListApiKeyCredentialProvidersCommand = ListApiKeyCredentialProvidersCommand;
4437
5916
  exports.ListBrowsersCommand = ListBrowsersCommand;
4438
5917
  exports.ListCodeInterpretersCommand = ListCodeInterpretersCommand;
5918
+ exports.ListEvaluatorsCommand = ListEvaluatorsCommand;
4439
5919
  exports.ListGatewayTargetsCommand = ListGatewayTargetsCommand;
4440
5920
  exports.ListGatewaysCommand = ListGatewaysCommand;
4441
5921
  exports.ListMemoriesCommand = ListMemoriesCommand;
4442
5922
  exports.ListOauth2CredentialProvidersCommand = ListOauth2CredentialProvidersCommand;
5923
+ exports.ListOnlineEvaluationConfigsCommand = ListOnlineEvaluationConfigsCommand;
5924
+ exports.ListPoliciesCommand = ListPoliciesCommand;
5925
+ exports.ListPolicyEnginesCommand = ListPolicyEnginesCommand;
5926
+ exports.ListPolicyGenerationAssetsCommand = ListPolicyGenerationAssetsCommand;
5927
+ exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
4443
5928
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4444
5929
  exports.ListWorkloadIdentitiesCommand = ListWorkloadIdentitiesCommand;
4445
5930
  exports.MemoryStatus = MemoryStatus;
4446
5931
  exports.MemoryStrategyStatus = MemoryStrategyStatus;
4447
5932
  exports.MemoryStrategyType = MemoryStrategyType;
4448
5933
  exports.NetworkMode = NetworkMode;
5934
+ exports.OAuthGrantType = OAuthGrantType;
5935
+ exports.OnlineEvaluationConfigStatus = OnlineEvaluationConfigStatus;
5936
+ exports.OnlineEvaluationExecutionStatus = OnlineEvaluationExecutionStatus;
4449
5937
  exports.OverrideType = OverrideType;
5938
+ exports.PolicyEngineStatus = PolicyEngineStatus;
5939
+ exports.PolicyGenerationStatus = PolicyGenerationStatus;
5940
+ exports.PolicyStatus = PolicyStatus;
5941
+ exports.PolicyValidationMode = PolicyValidationMode;
5942
+ exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
4450
5943
  exports.ResourceLimitExceededException = ResourceLimitExceededException$1;
4451
5944
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
4452
5945
  exports.ResourceType = ResourceType;
5946
+ exports.RestApiMethod = RestApiMethod;
4453
5947
  exports.SchemaType = SchemaType;
4454
5948
  exports.SearchType = SearchType;
4455
5949
  exports.ServerProtocol = ServerProtocol;
4456
5950
  exports.ServiceException = ServiceException$1;
4457
5951
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
4458
5952
  exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
5953
+ exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
4459
5954
  exports.SynchronizeGatewayTargetsCommand = SynchronizeGatewayTargetsCommand;
4460
5955
  exports.TagResourceCommand = TagResourceCommand;
4461
5956
  exports.TargetStatus = TargetStatus;
@@ -4466,10 +5961,14 @@ exports.UntagResourceCommand = UntagResourceCommand;
4466
5961
  exports.UpdateAgentRuntimeCommand = UpdateAgentRuntimeCommand;
4467
5962
  exports.UpdateAgentRuntimeEndpointCommand = UpdateAgentRuntimeEndpointCommand;
4468
5963
  exports.UpdateApiKeyCredentialProviderCommand = UpdateApiKeyCredentialProviderCommand;
5964
+ exports.UpdateEvaluatorCommand = UpdateEvaluatorCommand;
4469
5965
  exports.UpdateGatewayCommand = UpdateGatewayCommand;
4470
5966
  exports.UpdateGatewayTargetCommand = UpdateGatewayTargetCommand;
4471
5967
  exports.UpdateMemoryCommand = UpdateMemoryCommand;
4472
5968
  exports.UpdateOauth2CredentialProviderCommand = UpdateOauth2CredentialProviderCommand;
5969
+ exports.UpdateOnlineEvaluationConfigCommand = UpdateOnlineEvaluationConfigCommand;
5970
+ exports.UpdatePolicyCommand = UpdatePolicyCommand;
5971
+ exports.UpdatePolicyEngineCommand = UpdatePolicyEngineCommand;
4473
5972
  exports.UpdateWorkloadIdentityCommand = UpdateWorkloadIdentityCommand;
4474
5973
  exports.ValidationException = ValidationException$1;
4475
5974
  exports.ValidationExceptionReason = ValidationExceptionReason;
@@ -4479,10 +5978,26 @@ exports.paginateListAgentRuntimes = paginateListAgentRuntimes;
4479
5978
  exports.paginateListApiKeyCredentialProviders = paginateListApiKeyCredentialProviders;
4480
5979
  exports.paginateListBrowsers = paginateListBrowsers;
4481
5980
  exports.paginateListCodeInterpreters = paginateListCodeInterpreters;
5981
+ exports.paginateListEvaluators = paginateListEvaluators;
4482
5982
  exports.paginateListGatewayTargets = paginateListGatewayTargets;
4483
5983
  exports.paginateListGateways = paginateListGateways;
4484
5984
  exports.paginateListMemories = paginateListMemories;
4485
5985
  exports.paginateListOauth2CredentialProviders = paginateListOauth2CredentialProviders;
5986
+ exports.paginateListOnlineEvaluationConfigs = paginateListOnlineEvaluationConfigs;
5987
+ exports.paginateListPolicies = paginateListPolicies;
5988
+ exports.paginateListPolicyEngines = paginateListPolicyEngines;
5989
+ exports.paginateListPolicyGenerationAssets = paginateListPolicyGenerationAssets;
5990
+ exports.paginateListPolicyGenerations = paginateListPolicyGenerations;
4486
5991
  exports.paginateListWorkloadIdentities = paginateListWorkloadIdentities;
4487
5992
  exports.waitForMemoryCreated = waitForMemoryCreated;
5993
+ exports.waitForPolicyActive = waitForPolicyActive;
5994
+ exports.waitForPolicyDeleted = waitForPolicyDeleted;
5995
+ exports.waitForPolicyEngineActive = waitForPolicyEngineActive;
5996
+ exports.waitForPolicyEngineDeleted = waitForPolicyEngineDeleted;
5997
+ exports.waitForPolicyGenerationCompleted = waitForPolicyGenerationCompleted;
4488
5998
  exports.waitUntilMemoryCreated = waitUntilMemoryCreated;
5999
+ exports.waitUntilPolicyActive = waitUntilPolicyActive;
6000
+ exports.waitUntilPolicyDeleted = waitUntilPolicyDeleted;
6001
+ exports.waitUntilPolicyEngineActive = waitUntilPolicyEngineActive;
6002
+ exports.waitUntilPolicyEngineDeleted = waitUntilPolicyEngineDeleted;
6003
+ exports.waitUntilPolicyGenerationCompleted = waitUntilPolicyGenerationCompleted;