@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
@@ -1,5 +1,12 @@
1
1
  const _AC = "AuthorizerConfiguration";
2
+ const _ACMVT = "AuthorizingClaimMatchValueType";
2
3
  const _ADE = "AccessDeniedException";
4
+ const _AGTC = "ApiGatewayTargetConfiguration";
5
+ const _AGTCp = "ApiGatewayToolConfiguration";
6
+ const _AGTF = "ApiGatewayToolFilter";
7
+ const _AGTFp = "ApiGatewayToolFilters";
8
+ const _AGTO = "ApiGatewayToolOverride";
9
+ const _AGTOp = "ApiGatewayToolOverrides";
3
10
  const _AKCP = "ApiKeyCredentialProviders";
4
11
  const _AKCPI = "ApiKeyCredentialProviderItem";
5
12
  const _AKT = "ApiKeyType";
@@ -11,6 +18,7 @@ const _ARE = "AgentRuntimeEndpoint";
11
18
  const _AREg = "AgentRuntimeEndpoints";
12
19
  const _ARg = "AgentRuntimes";
13
20
  const _ASC = "ApiSchemaConfiguration";
21
+ const _BEMC = "BedrockEvaluatorModelConfig";
14
22
  const _BNC = "BrowserNetworkConfiguration";
15
23
  const _BS = "BrowserSummary";
16
24
  const _BSCI = "BrowserSigningConfigInput";
@@ -36,11 +44,16 @@ const _CCI = "CustomConfigurationInput";
36
44
  const _CCIR = "CreateCodeInterpreterRequest";
37
45
  const _CCIRr = "CreateCodeInterpreterResponse";
38
46
  const _CCIr = "CreateCodeInterpreter";
47
+ const _CCVT = "CustomClaimValidationType";
48
+ const _CCVTu = "CustomClaimValidationsType";
39
49
  const _CCo = "ContainerConfiguration";
40
50
  const _CCon = "ConsolidationConfiguration";
41
51
  const _CE = "ConflictException";
42
52
  const _CEC = "CustomExtractionConfiguration";
43
53
  const _CECI = "CustomExtractionConfigurationInput";
54
+ const _CER = "CreateEvaluatorRequest";
55
+ const _CERr = "CreateEvaluatorResponse";
56
+ const _CEr = "CreateEvaluator";
44
57
  const _CG = "CreateGateway";
45
58
  const _CGR = "CreateGatewayRequest";
46
59
  const _CGRr = "CreateGatewayResponse";
@@ -56,18 +69,36 @@ const _CME = "ConcurrentModificationException";
56
69
  const _CMI = "CreateMemoryInput";
57
70
  const _CMO = "CreateMemoryOutput";
58
71
  const _CMSI = "CustomMemoryStrategyInput";
72
+ const _CMVT = "ClaimMatchValueType";
59
73
  const _COCP = "CreateOauth2CredentialProvider";
60
74
  const _COCPR = "CreateOauth2CredentialProviderRequest";
61
75
  const _COCPRr = "CreateOauth2CredentialProviderResponse";
76
+ const _COEC = "CreateOnlineEvaluationConfig";
77
+ const _COECR = "CreateOnlineEvaluationConfigRequest";
78
+ const _COECRr = "CreateOnlineEvaluationConfigResponse";
62
79
  const _COPCI = "CustomOauth2ProviderConfigInput";
63
80
  const _COPCO = "CustomOauth2ProviderConfigOutput";
64
- const _CP = "CredentialProvider";
81
+ const _CP = "CedarPolicy";
65
82
  const _CPC = "CredentialProviderConfiguration";
66
83
  const _CPCr = "CredentialProviderConfigurations";
84
+ const _CPE = "CreatePolicyEngine";
85
+ const _CPER = "CreatePolicyEngineRequest";
86
+ const _CPERr = "CreatePolicyEngineResponse";
87
+ const _CPR = "CreatePolicyRequest";
88
+ const _CPRr = "CreatePolicyResponse";
89
+ const _CPr = "CredentialProvider";
90
+ const _CPre = "CreatePolicy";
91
+ const _CRC = "CustomReflectionConfiguration";
92
+ const _CRCI = "CustomReflectionConfigurationInput";
93
+ const _CSD = "CategoricalScaleDefinition";
94
+ const _CSDa = "CategoricalScaleDefinitions";
67
95
  const _CST = "ClientSecretType";
68
96
  const _CWI = "CreateWorkloadIdentity";
69
97
  const _CWIR = "CreateWorkloadIdentityRequest";
70
98
  const _CWIRr = "CreateWorkloadIdentityResponse";
99
+ const _CWLIC = "CloudWatchLogsInputConfig";
100
+ const _CWOC = "CloudWatchOutputConfig";
101
+ const _Co = "Content";
71
102
  const _D = "Description";
72
103
  const _DAKCP = "DeleteApiKeyCredentialProvider";
73
104
  const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
@@ -84,6 +115,9 @@ const _DBRe = "DeleteBrowserResponse";
84
115
  const _DCI = "DeleteCodeInterpreter";
85
116
  const _DCIR = "DeleteCodeInterpreterRequest";
86
117
  const _DCIRe = "DeleteCodeInterpreterResponse";
118
+ const _DE = "DeleteEvaluator";
119
+ const _DER = "DeleteEvaluatorRequest";
120
+ const _DERe = "DeleteEvaluatorResponse";
87
121
  const _DF = "DecryptionFailure";
88
122
  const _DG = "DeleteGateway";
89
123
  const _DGR = "DeleteGatewayRequest";
@@ -99,13 +133,50 @@ const _DMSL = "DeleteMemoryStrategiesList";
99
133
  const _DOCP = "DeleteOauth2CredentialProvider";
100
134
  const _DOCPR = "DeleteOauth2CredentialProviderRequest";
101
135
  const _DOCPRe = "DeleteOauth2CredentialProviderResponse";
136
+ const _DOEC = "DeleteOnlineEvaluationConfig";
137
+ const _DOECR = "DeleteOnlineEvaluationConfigRequest";
138
+ const _DOECRe = "DeleteOnlineEvaluationConfigResponse";
139
+ const _DP = "DeletePolicy";
140
+ const _DPE = "DeletePolicyEngine";
141
+ const _DPER = "DeletePolicyEngineRequest";
142
+ const _DPERe = "DeletePolicyEngineResponse";
143
+ const _DPR = "DeletePolicyRequest";
144
+ const _DPRe = "DeletePolicyResponse";
145
+ const _DRP = "DeleteResourcePolicy";
146
+ const _DRPR = "DeleteResourcePolicyRequest";
147
+ const _DRPRe = "DeleteResourcePolicyResponse";
148
+ const _DSC = "DataSourceConfig";
102
149
  const _DWI = "DeleteWorkloadIdentity";
103
150
  const _DWIR = "DeleteWorkloadIdentityRequest";
104
151
  const _DWIRe = "DeleteWorkloadIdentityResponse";
105
- const _EC = "ExtractionConfiguration";
152
+ const _EC = "EvaluatorConfig";
153
+ const _ECD = "EvaluationConfigDescription";
154
+ const _ECO = "EpisodicConsolidationOverride";
155
+ const _ECx = "ExtractionConfiguration";
156
+ const _ED = "EvaluatorDescription";
157
+ const _EEO = "EpisodicExtractionOverride";
106
158
  const _EF = "EncryptionFailure";
159
+ const _EI = "EvaluatorInstructions";
160
+ const _EL = "EvaluatorList";
161
+ const _EMC = "EvaluatorModelConfig";
162
+ const _EMSI = "EpisodicMemoryStrategyInput";
107
163
  const _EN = "EndpointName";
164
+ const _EOCCI = "EpisodicOverrideConsolidationConfigurationInput";
165
+ const _EOCI = "EpisodicOverrideConfigurationInput";
166
+ const _EOECI = "EpisodicOverrideExtractionConfigurationInput";
167
+ const _EORCI = "EpisodicOverrideReflectionConfigurationInput";
168
+ const _ER = "EvaluatorReference";
169
+ const _ERC = "EpisodicReflectionConfiguration";
170
+ const _ERCI = "EpisodicReflectionConfigurationInput";
171
+ const _ERO = "EpisodicReflectionOverride";
172
+ const _ES = "EvaluatorSummary";
173
+ const _ESL = "EvaluatorSummaryList";
108
174
  const _EVM = "EnvironmentVariablesMap";
175
+ const _F = "Filter";
176
+ const _FL = "FilterList";
177
+ const _FV = "FilterValue";
178
+ const _Fi = "Finding";
179
+ const _Fin = "Findings";
109
180
  const _GAKCP = "GatewayApiKeyCredentialProvider";
110
181
  const _GAKCPR = "GetApiKeyCredentialProviderRequest";
111
182
  const _GAKCPRe = "GetApiKeyCredentialProviderResponse";
@@ -123,6 +194,9 @@ const _GCI = "GetCodeInterpreter";
123
194
  const _GCIR = "GetCodeInterpreterRequest";
124
195
  const _GCIRe = "GetCodeInterpreterResponse";
125
196
  const _GD = "GatewayDescription";
197
+ const _GE = "GetEvaluator";
198
+ const _GER = "GetEvaluatorRequest";
199
+ const _GERe = "GetEvaluatorResponse";
126
200
  const _GG = "GetGateway";
127
201
  const _GGR = "GetGatewayRequest";
128
202
  const _GGRe = "GetGatewayResponse";
@@ -138,11 +212,27 @@ const _GN = "GatewayName";
138
212
  const _GOCP = "GetOauth2CredentialProvider";
139
213
  const _GOCPR = "GetOauth2CredentialProviderRequest";
140
214
  const _GOCPRe = "GetOauth2CredentialProviderResponse";
215
+ const _GOEC = "GetOnlineEvaluationConfig";
216
+ const _GOECR = "GetOnlineEvaluationConfigRequest";
217
+ const _GOECRe = "GetOnlineEvaluationConfigResponse";
141
218
  const _GOPCI = "GithubOauth2ProviderConfigInput";
142
219
  const _GOPCIo = "GoogleOauth2ProviderConfigInput";
143
220
  const _GOPCO = "GithubOauth2ProviderConfigOutput";
144
221
  const _GOPCOo = "GoogleOauth2ProviderConfigOutput";
222
+ const _GP = "GetPolicy";
145
223
  const _GPC = "GatewayProtocolConfiguration";
224
+ const _GPE = "GetPolicyEngine";
225
+ const _GPEC = "GatewayPolicyEngineConfiguration";
226
+ const _GPER = "GetPolicyEngineRequest";
227
+ const _GPERe = "GetPolicyEngineResponse";
228
+ const _GPG = "GetPolicyGeneration";
229
+ const _GPGR = "GetPolicyGenerationRequest";
230
+ const _GPGRe = "GetPolicyGenerationResponse";
231
+ const _GPR = "GetPolicyRequest";
232
+ const _GPRe = "GetPolicyResponse";
233
+ const _GRP = "GetResourcePolicy";
234
+ const _GRPR = "GetResourcePolicyRequest";
235
+ const _GRPRe = "GetResourcePolicyResponse";
146
236
  const _GS = "GatewaySummary";
147
237
  const _GSa = "GatewaySummaries";
148
238
  const _GT = "GatewayTarget";
@@ -153,15 +243,17 @@ const _GTVRe = "GetTokenVaultResponse";
153
243
  const _GWI = "GetWorkloadIdentity";
154
244
  const _GWIR = "GetWorkloadIdentityRequest";
155
245
  const _GWIRe = "GetWorkloadIdentityResponse";
156
- const _IC = "InvocationConfiguration";
246
+ const _IC = "InferenceConfiguration";
157
247
  const _ICI = "InvocationConfigurationInput";
158
- const _ICn = "InterceptorConfiguration";
248
+ const _ICn = "InvocationConfiguration";
249
+ const _ICnt = "InterceptorConfiguration";
159
250
  const _IIC = "InterceptorInputConfiguration";
160
251
  const _IOPCI = "IncludedOauth2ProviderConfigInput";
161
252
  const _IOPCO = "IncludedOauth2ProviderConfigOutput";
162
253
  const _IP = "InlinePayload";
163
254
  const _ISE = "InternalServerException";
164
255
  const _KC = "KmsConfiguration";
256
+ const _LAAJEC = "LlmAsAJudgeEvaluatorConfig";
165
257
  const _LAKCP = "ListApiKeyCredentialProviders";
166
258
  const _LAKCPR = "ListApiKeyCredentialProvidersRequest";
167
259
  const _LAKCPRi = "ListApiKeyCredentialProvidersResponse";
@@ -181,6 +273,9 @@ const _LC = "LifecycleConfiguration";
181
273
  const _LCI = "ListCodeInterpreters";
182
274
  const _LCIR = "ListCodeInterpretersRequest";
183
275
  const _LCIRi = "ListCodeInterpretersResponse";
276
+ const _LE = "ListEvaluators";
277
+ const _LER = "ListEvaluatorsRequest";
278
+ const _LERi = "ListEvaluatorsResponse";
184
279
  const _LG = "ListGateways";
185
280
  const _LGR = "ListGatewaysRequest";
186
281
  const _LGRi = "ListGatewaysResponse";
@@ -194,8 +289,23 @@ const _LMO = "ListMemoriesOutput";
194
289
  const _LOCP = "ListOauth2CredentialProviders";
195
290
  const _LOCPR = "ListOauth2CredentialProvidersRequest";
196
291
  const _LOCPRi = "ListOauth2CredentialProvidersResponse";
292
+ const _LOEC = "ListOnlineEvaluationConfigs";
293
+ const _LOECR = "ListOnlineEvaluationConfigsRequest";
294
+ const _LOECRi = "ListOnlineEvaluationConfigsResponse";
197
295
  const _LOPCI = "LinkedinOauth2ProviderConfigInput";
198
296
  const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
297
+ const _LP = "ListPolicies";
298
+ const _LPE = "ListPolicyEngines";
299
+ const _LPER = "ListPolicyEnginesRequest";
300
+ const _LPERi = "ListPolicyEnginesResponse";
301
+ const _LPG = "ListPolicyGenerations";
302
+ const _LPGA = "ListPolicyGenerationAssets";
303
+ const _LPGAR = "ListPolicyGenerationAssetsRequest";
304
+ const _LPGARi = "ListPolicyGenerationAssetsResponse";
305
+ const _LPGR = "ListPolicyGenerationsRequest";
306
+ const _LPGRi = "ListPolicyGenerationsResponse";
307
+ const _LPR = "ListPoliciesRequest";
308
+ const _LPRi = "ListPoliciesResponse";
199
309
  const _LTFR = "ListTagsForResource";
200
310
  const _LTFRR = "ListTagsForResourceRequest";
201
311
  const _LTFRRi = "ListTagsForResourceResponse";
@@ -215,6 +325,7 @@ const _MMSI = "ModifyMemoryStrategyInput";
215
325
  const _MMSL = "ModifyMemoryStrategiesList";
216
326
  const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
217
327
  const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
328
+ const _MRC = "ModifyReflectionConfiguration";
218
329
  const _MS = "MemoryStrategy";
219
330
  const _MSC = "ModifyStrategyConfiguration";
220
331
  const _MSI = "MemoryStrategyInput";
@@ -226,25 +337,48 @@ const _MSTC = "McpServerTargetConfiguration";
226
337
  const _MSe = "MemorySummary";
227
338
  const _MTC = "McpTargetConfiguration";
228
339
  const _NC = "NetworkConfiguration";
340
+ const _NSD = "NumericalScaleDefinition";
341
+ const _NSDu = "NumericalScaleDefinitions";
229
342
  const _OACP = "OAuthCredentialProvider";
230
343
  const _OACPV = "OAuthCustomParametersValue";
231
344
  const _OACPu = "OAuthCustomParameters";
232
345
  const _OASM = "Oauth2AuthorizationServerMetadata";
346
+ const _OC = "OutputConfig";
233
347
  const _OCP = "Oauth2CredentialProviders";
234
348
  const _OCPI = "Oauth2CredentialProviderItem";
235
349
  const _OD = "Oauth2Discovery";
350
+ const _OECS = "OnlineEvaluationConfigSummary";
351
+ const _OECSL = "OnlineEvaluationConfigSummaryList";
236
352
  const _OPCI = "Oauth2ProviderConfigInput";
237
353
  const _OPCO = "Oauth2ProviderConfigOutput";
238
354
  const _P = "Prompt";
239
355
  const _PC = "ProtocolConfiguration";
356
+ const _PD = "PolicyDefinition";
357
+ const _PE = "PolicyEngine";
358
+ const _PEo = "PolicyEngines";
359
+ const _PG = "PolicyGeneration";
360
+ const _PGA = "PolicyGenerationAsset";
361
+ const _PGAo = "PolicyGenerationAssets";
362
+ const _PGo = "PolicyGenerations";
363
+ const _PRP = "PutResourcePolicy";
364
+ const _PRPR = "PutResourcePolicyRequest";
365
+ const _PRPRu = "PutResourcePolicyResponse";
366
+ const _Po = "Policy";
367
+ const _Pol = "Policies";
368
+ const _R = "Rule";
240
369
  const _RC = "RecordingConfig";
370
+ const _RCe = "ReflectionConfiguration";
241
371
  const _RHC = "RequestHeaderConfiguration";
242
372
  const _RLEE = "ResourceLimitExceededException";
243
373
  const _RNFE = "ResourceNotFoundException";
374
+ const _RS = "RatingScale";
375
+ const _Re = "Resource";
244
376
  const _S = "Secret";
245
377
  const _SC = "S3Configuration";
246
378
  const _SCO = "SemanticConsolidationOverride";
247
379
  const _SCOu = "SummaryConsolidationOverride";
380
+ const _SCa = "SamplingConfig";
381
+ const _SCe = "SessionConfig";
248
382
  const _SCt = "StrategyConfiguration";
249
383
  const _SD = "SchemaDefinition";
250
384
  const _SE = "ServiceException";
@@ -267,6 +401,9 @@ const _SOPCIl = "SlackOauth2ProviderConfigInput";
267
401
  const _SOPCO = "SalesforceOauth2ProviderConfigOutput";
268
402
  const _SOPCOl = "SlackOauth2ProviderConfigOutput";
269
403
  const _SP = "SchemaProperties";
404
+ const _SPG = "StartPolicyGeneration";
405
+ const _SPGR = "StartPolicyGenerationRequest";
406
+ const _SPGRt = "StartPolicyGenerationResponse";
270
407
  const _SQEE = "ServiceQuotaExceededException";
271
408
  const _STVCMK = "SetTokenVaultCMK";
272
409
  const _STVCMKR = "SetTokenVaultCMKRequest";
@@ -302,6 +439,9 @@ const _UARERp = "UpdateAgentRuntimeEndpointResponse";
302
439
  const _UARR = "UpdateAgentRuntimeRequest";
303
440
  const _UARRp = "UpdateAgentRuntimeResponse";
304
441
  const _UE = "UnauthorizedException";
442
+ const _UER = "UpdateEvaluatorRequest";
443
+ const _UERp = "UpdateEvaluatorResponse";
444
+ const _UEp = "UpdateEvaluator";
305
445
  const _UG = "UpdateGateway";
306
446
  const _UGR = "UpdateGatewayRequest";
307
447
  const _UGRp = "UpdateGatewayResponse";
@@ -314,12 +454,21 @@ const _UMO = "UpdateMemoryOutput";
314
454
  const _UOCP = "UpdateOauth2CredentialProvider";
315
455
  const _UOCPR = "UpdateOauth2CredentialProviderRequest";
316
456
  const _UOCPRp = "UpdateOauth2CredentialProviderResponse";
457
+ const _UOEC = "UpdateOnlineEvaluationConfig";
458
+ const _UOECR = "UpdateOnlineEvaluationConfigRequest";
459
+ const _UOECRp = "UpdateOnlineEvaluationConfigResponse";
460
+ const _UP = "UpdatePolicy";
317
461
  const _UPCO = "UserPreferenceConsolidationOverride";
462
+ const _UPE = "UpdatePolicyEngine";
318
463
  const _UPEO = "UserPreferenceExtractionOverride";
464
+ const _UPER = "UpdatePolicyEngineRequest";
465
+ const _UPERp = "UpdatePolicyEngineResponse";
319
466
  const _UPMSI = "UserPreferenceMemoryStrategyInput";
320
467
  const _UPOCCI = "UserPreferenceOverrideConsolidationConfigurationInput";
321
468
  const _UPOCI = "UserPreferenceOverrideConfigurationInput";
322
469
  const _UPOECI = "UserPreferenceOverrideExtractionConfigurationInput";
470
+ const _UPR = "UpdatePolicyRequest";
471
+ const _UPRp = "UpdatePolicyResponse";
323
472
  const _UR = "UntagResource";
324
473
  const _URR = "UntagResourceRequest";
325
474
  const _URRn = "UntagResourceResponse";
@@ -336,11 +485,15 @@ const _WIT = "WorkloadIdentityType";
336
485
  const _a = "arn";
337
486
  const _aA = "allowedAudience";
338
487
  const _aC = "authorizerConfiguration";
488
+ const _aCMV = "authorizingClaimMatchValue";
339
489
  const _aCl = "allowedClients";
340
490
  const _aE = "authorizationEndpoint";
491
+ const _aG = "apiGateway";
492
+ const _aGTC = "apiGatewayToolConfiguration";
341
493
  const _aK = "apiKey";
342
494
  const _aKCP = "apiKeyCredentialProvider";
343
495
  const _aKSA = "apiKeySecretArn";
496
+ const _aMRF = "additionalModelRequestFields";
344
497
  const _aMS = "addMemoryStrategies";
345
498
  const _aOPC = "atlassianOauth2ProviderConfig";
346
499
  const _aR = "agentRuntimes";
@@ -351,20 +504,24 @@ const _aRI = "agentRuntimeId";
351
504
  const _aRN = "agentRuntimeName";
352
505
  const _aRORU = "allowedResourceOauth2ReturnUrls";
353
506
  const _aRV = "agentRuntimeVersion";
507
+ const _aS = "allowedScopes";
354
508
  const _aSM = "authorizationServerMetadata";
355
509
  const _aT = "authorizerType";
356
510
  const _aTP = "appendToPrompt";
357
511
  const _b = "bucket";
358
512
  const _bA = "browserArn";
513
+ const _bEMC = "bedrockEvaluatorModelConfig";
359
514
  const _bI = "browserId";
360
515
  const _bOAI = "bucketOwnerAccountId";
361
516
  const _bS = "browserSigning";
362
517
  const _bSr = "browserSummaries";
518
+ const _bV = "booleanValue";
363
519
  const _c = "client";
364
520
  const _cA = "createdAt";
365
- const _cC = "containerConfiguration";
521
+ const _cC = "customClaims";
366
522
  const _cCC = "customConsolidationConfiguration";
367
- const _cCo = "codeConfiguration";
523
+ const _cCo = "containerConfiguration";
524
+ const _cCod = "codeConfiguration";
368
525
  const _cEC = "customExtractionConfiguration";
369
526
  const _cI = "clientId";
370
527
  const _cIA = "codeInterpreterArn";
@@ -372,7 +529,9 @@ const _cII = "codeInterpreterId";
372
529
  const _cIS = "codeInterpreterSummaries";
373
530
  const _cJWTA = "customJWTAuthorizer";
374
531
  const _cL = "credentialLocation";
532
+ const _cMO = "claimMatchOperator";
375
533
  const _cMS = "customMemoryStrategy";
534
+ const _cMV = "claimMatchValue";
376
535
  const _cOPC = "customOauth2ProviderConfig";
377
536
  const _cP = "credentialProvider";
378
537
  const _cPA = "credentialProviderArn";
@@ -383,44 +542,74 @@ const _cPV = "credentialProviderVendor";
383
542
  const _cPr = "credentialPrefix";
384
543
  const _cPre = "credentialProviders";
385
544
  const _cPu = "customParameters";
545
+ const _cRC = "customReflectionConfiguration";
386
546
  const _cS = "clientSecret";
387
547
  const _cSA = "clientSecretArn";
388
548
  const _cT = "createdTime";
389
549
  const _cTl = "clientToken";
390
550
  const _cU = "containerUri";
391
551
  const _cUa = "callbackUrl";
552
+ const _cWC = "cloudWatchConfig";
553
+ const _cWL = "cloudWatchLogs";
554
+ const _ca = "categorical";
555
+ const _ce = "cedar";
392
556
  const _co = "code";
393
557
  const _con = "configuration";
394
558
  const _cons = "consolidation";
559
+ const _cont = "content";
395
560
  const _d = "description";
396
561
  const _dMS = "deleteMemoryStrategies";
562
+ const _dRU = "defaultReturnUrl";
563
+ const _dSC = "dataSourceConfig";
397
564
  const _dU = "discoveryUrl";
565
+ const _dV = "doubleValue";
566
+ const _de = "definition";
398
567
  const _e = "error";
568
+ const _eA = "evaluatorArn";
569
+ const _eC = "evaluatorConfig";
570
+ const _eCO = "episodicConsolidationOverride";
399
571
  const _eED = "eventExpiryDuration";
572
+ const _eEO = "episodicExtractionOverride";
573
+ const _eERA = "evaluationExecutionRoleArn";
574
+ const _eI = "evaluatorId";
400
575
  const _eKA = "encryptionKeyArn";
401
576
  const _eL = "exceptionLevel";
577
+ const _eMS = "episodicMemoryStrategy";
402
578
  const _eN = "endpointName";
579
+ const _eNv = "evaluatorName";
580
+ const _eO = "episodicOverride";
581
+ const _eOC = "enableOnCreate";
403
582
  const _eP = "entryPoint";
404
583
  const _eRA = "executionRoleArn";
584
+ const _eRC = "episodicReflectionConfiguration";
585
+ const _eRO = "episodicReflectionOverride";
586
+ const _eS = "executionStatus";
587
+ const _eT = "evaluatorType";
405
588
  const _eV = "environmentVariables";
406
589
  const _en = "enabled";
407
590
  const _end = "endpoint";
591
+ const _ev = "evaluators";
408
592
  const _ex = "extraction";
593
+ const _f = "findings";
409
594
  const _fL = "fieldList";
595
+ const _fP = "filterPath";
410
596
  const _fR = "failureReason";
597
+ const _fi = "filters";
411
598
  const _gA = "gatewayArn";
412
599
  const _gI = "gatewayId";
413
600
  const _gIa = "gatewayIdentifier";
414
601
  const _gOPC = "googleOauth2ProviderConfig";
415
602
  const _gOPCi = "githubOauth2ProviderConfig";
603
+ const _gT = "grantType";
416
604
  const _gU = "gatewayUrl";
417
605
  const _h = "http";
418
606
  const _hCWS = "historicalContextWindowSize";
419
607
  const _hE = "httpError";
420
608
  const _hQ = "httpQuery";
421
609
  const _i = "id";
422
- const _iC = "interceptorConfigurations";
423
- const _iCn = "inputConfiguration";
610
+ const _iC = "inferenceConfig";
611
+ const _iCn = "interceptorConfigurations";
612
+ const _iCnp = "inputConfiguration";
424
613
  const _iCnv = "invocationConfiguration";
425
614
  const _iOPC = "includedOauth2ProviderConfig";
426
615
  const _iP = "interceptionPoints";
@@ -429,28 +618,38 @@ const _iRST = "idleRuntimeSessionTimeout";
429
618
  const _iS = "inputSchema";
430
619
  const _iST = "idleSessionTimeout";
431
620
  const _iT = "idempotencyToken";
621
+ const _iTCN = "inboundTokenClaimName";
622
+ const _iTCVT = "inboundTokenClaimValueType";
432
623
  const _in = "interceptor";
433
624
  const _ins = "instructions";
434
625
  const _is = "issuer";
435
626
  const _it = "items";
627
+ const _k = "key";
436
628
  const _kC = "kmsConfiguration";
437
629
  const _kKA = "kmsKeyArn";
438
630
  const _kT = "keyType";
439
- const _l = "lambda";
631
+ const _l = "label";
440
632
  const _lA = "lambdaArn";
633
+ const _lAAJ = "llmAsAJudge";
441
634
  const _lC = "lifecycleConfiguration";
635
+ const _lFM = "lockedForModification";
636
+ const _lGN = "logGroupNames";
637
+ const _lGNo = "logGroupName";
442
638
  const _lMD = "lastModifiedDate";
443
639
  const _lOPC = "linkedinOauth2ProviderConfig";
444
640
  const _lSA = "lastSynchronizedAt";
445
641
  const _lUA = "lastUpdatedAt";
446
642
  const _lUT = "lastUpdatedTime";
447
643
  const _lV = "liveVersion";
644
+ const _la = "lambda";
645
+ const _le = "level";
448
646
  const _m = "message";
449
647
  const _mBT = "messageBasedTrigger";
450
- const _mC = "messageCount";
648
+ const _mC = "modelConfig";
649
+ const _mCe = "messageCount";
451
650
  const _mERA = "memoryExecutionRoleArn";
452
- const _mI = "memoryId";
453
- const _mIo = "modelId";
651
+ const _mI = "modelId";
652
+ const _mIe = "memoryId";
454
653
  const _mL = "maxLifetime";
455
654
  const _mMS = "modifyMemoryStrategies";
456
655
  const _mOPC = "microsoftOauth2ProviderConfig";
@@ -458,42 +657,79 @@ const _mR = "maxResults";
458
657
  const _mS = "memoryStrategies";
459
658
  const _mSI = "memoryStrategyId";
460
659
  const _mSc = "mcpServer";
660
+ const _mT = "maxTokens";
661
+ const _mVS = "matchValueString";
662
+ const _mVSL = "matchValueStringList";
461
663
  const _mc = "mcp";
462
- const _me = "memory";
463
- const _mem = "memories";
664
+ const _me = "methods";
665
+ const _mem = "memory";
666
+ const _memo = "memories";
667
+ const _met = "method";
668
+ const _mo = "mode";
464
669
  const _n = "name";
465
670
  const _nC = "networkConfiguration";
466
671
  const _nM = "networkMode";
467
672
  const _nMC = "networkModeConfig";
468
673
  const _nT = "nextToken";
469
674
  const _na = "namespaces";
675
+ const _nu = "numerical";
676
+ const _o = "operator";
470
677
  const _oAS = "openApiSchema";
678
+ const _oC = "outputConfig";
471
679
  const _oCP = "oauthCredentialProvider";
472
680
  const _oD = "oauthDiscovery";
681
+ const _oEC = "onlineEvaluationConfigs";
682
+ const _oECA = "onlineEvaluationConfigArn";
683
+ const _oECI = "onlineEvaluationConfigId";
684
+ const _oECN = "onlineEvaluationConfigName";
473
685
  const _oPCI = "oauth2ProviderConfigInput";
474
686
  const _oPCO = "oauth2ProviderConfigOutput";
475
687
  const _oS = "outputSchema";
476
- const _p = "prefix";
477
- const _pA = "providerArn";
688
+ const _p = "path";
689
+ const _pA = "policyArn";
690
+ const _pAr = "providerArn";
478
691
  const _pC = "protocolConfiguration";
479
692
  const _pDBN = "payloadDeliveryBucketName";
693
+ const _pE = "policyEngines";
694
+ const _pEA = "policyEngineArn";
695
+ const _pEC = "policyEngineConfiguration";
696
+ const _pEI = "policyEngineId";
697
+ const _pG = "policyGenerations";
698
+ const _pGA = "policyGenerationArn";
699
+ const _pGAI = "policyGenerationAssetId";
700
+ const _pGAo = "policyGenerationAssets";
701
+ const _pGI = "policyGenerationId";
702
+ const _pI = "policyId";
480
703
  const _pRH = "passRequestHeaders";
481
704
  const _pT = "protocolType";
482
- const _pr = "properties";
705
+ const _po = "policy";
706
+ const _pol = "policies";
707
+ const _pr = "prefix";
708
+ const _pro = "properties";
483
709
  const _r = "runtime";
484
710
  const _rA = "roleArn";
711
+ const _rAI = "restApiId";
485
712
  const _rAe = "resourceArn";
713
+ const _rC = "reflectionConfiguration";
486
714
  const _rE = "runtimeEndpoints";
487
715
  const _rHA = "requestHeaderAllowlist";
488
716
  const _rHC = "requestHeaderConfiguration";
717
+ const _rS = "ratingScale";
489
718
  const _rT = "responseTypes";
719
+ const _rTF = "rawTextFragment";
720
+ const _rTa = "rawText";
490
721
  const _re = "recording";
491
722
  const _rea = "reason";
723
+ const _ref = "reflection";
492
724
  const _req = "required";
725
+ const _res = "resource";
726
+ const _ru = "rule";
493
727
  const _s = "status";
494
728
  const _sA = "secretArn";
729
+ const _sC = "samplingConfig";
495
730
  const _sCO = "semanticConsolidationOverride";
496
731
  const _sCOu = "summaryConsolidationOverride";
732
+ const _sCe = "sessionConfig";
497
733
  const _sEO = "semanticExtractionOverride";
498
734
  const _sG = "securityGroups";
499
735
  const _sI = "strategyId";
@@ -502,19 +738,26 @@ const _sM = "smithyModel";
502
738
  const _sMC = "selfManagedConfiguration";
503
739
  const _sMS = "semanticMemoryStrategy";
504
740
  const _sMSu = "summaryMemoryStrategy";
741
+ const _sN = "serviceNames";
505
742
  const _sO = "semanticOverride";
506
743
  const _sOPC = "slackOauth2ProviderConfig";
507
744
  const _sOPCa = "salesforceOauth2ProviderConfig";
508
745
  const _sOu = "summaryOverride";
509
746
  const _sP = "serverProtocol";
747
+ const _sPa = "samplingPercentage";
510
748
  const _sR = "statusReasons";
749
+ const _sS = "stopSequences";
511
750
  const _sT = "searchType";
751
+ const _sTM = "sessionTimeoutMinutes";
512
752
  const _sV = "supportedVersions";
753
+ const _sVt = "stringValue";
513
754
  const _s_ = "s3";
514
755
  const _sc = "scopes";
515
756
  const _se = "server";
516
757
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcorecontrol";
517
- const _st = "strategies";
758
+ const _st = "stage";
759
+ const _sta = "statement";
760
+ const _str = "strategies";
518
761
  const _su = "subnets";
519
762
  const _t = "tags";
520
763
  const _tA = "topicArn";
@@ -525,14 +768,19 @@ const _tCo = "tokenCount";
525
768
  const _tCr = "triggerConditions";
526
769
  const _tE = "tokenEndpoint";
527
770
  const _tEAM = "tokenEndpointAuthMethods";
771
+ const _tF = "toolFilters";
528
772
  const _tI = "targetId";
529
773
  const _tIL = "targetIdList";
530
774
  const _tIe = "tenantId";
531
775
  const _tK = "tagKeys";
776
+ const _tO = "toolOverrides";
777
+ const _tP = "topP";
778
+ const _tRS = "targetResourceScope";
532
779
  const _tS = "toolSchema";
533
780
  const _tV = "targetVersion";
534
781
  const _tVI = "tokenVaultId";
535
782
  const _ta = "targets";
783
+ const _te = "temperature";
536
784
  const _ty = "type";
537
785
  const _u = "uri";
538
786
  const _uA = "updatedAt";
@@ -540,9 +788,11 @@ const _uPCO = "userPreferenceConsolidationOverride";
540
788
  const _uPEO = "userPreferenceExtractionOverride";
541
789
  const _uPMS = "userPreferenceMemoryStrategy";
542
790
  const _uPO = "userPreferenceOverride";
543
- const _v = "version";
791
+ const _v = "value";
544
792
  const _vC = "vpcConfig";
545
793
  const _vI = "versionId";
794
+ const _vM = "validationMode";
795
+ const _ve = "version";
546
796
  const _wI = "workloadIdentities";
547
797
  const _wIA = "workloadIdentityArn";
548
798
  const _wID = "workloadIdentityDetails";
@@ -554,6 +804,9 @@ export var ApiKeyType = [0, n0, _AKT, 8, 0];
554
804
  export var ClientSecretType = [0, n0, _CST, 8, 0];
555
805
  export var Description = [0, n0, _D, 8, 0];
556
806
  export var EndpointName = [0, n0, _EN, 8, 0];
807
+ export var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
808
+ export var EvaluatorDescription = [0, n0, _ED, 8, 0];
809
+ export var EvaluatorInstructions = [0, n0, _EI, 8, 0];
557
810
  export var GatewayDescription = [0, n0, _GD, 8, 0];
558
811
  export var GatewayName = [0, n0, _GN, 8, 0];
559
812
  export var InlinePayload = [0, n0, _IP, 8, 0];
@@ -561,17 +814,7 @@ export var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
561
814
  export var Prompt = [0, n0, _P, 8, 0];
562
815
  export var TargetDescription = [0, n0, _TD, 8, 0];
563
816
  export var TargetName = [0, n0, _TN, 8, 0];
564
- export var AccessDeniedException = [
565
- -3,
566
- n0,
567
- _ADE,
568
- {
569
- [_e]: _c,
570
- [_hE]: 403,
571
- },
572
- [_m],
573
- [0],
574
- ];
817
+ export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
575
818
  TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
576
819
  export var AgentRuntime = [
577
820
  3,
@@ -589,6 +832,24 @@ export var AgentRuntimeEndpoint = [
589
832
  [_n, _lV, _tV, _aREA, _aRA, _s, _i, _d, _cA, _lUA],
590
833
  [[() => EndpointName, 0], 0, 0, 0, 0, 0, 0, 0, 5, 5],
591
834
  ];
835
+ export var ApiGatewayTargetConfiguration = [
836
+ 3,
837
+ n0,
838
+ _AGTC,
839
+ 0,
840
+ [_rAI, _st, _aGTC],
841
+ [0, 0, () => ApiGatewayToolConfiguration],
842
+ ];
843
+ export var ApiGatewayToolConfiguration = [
844
+ 3,
845
+ n0,
846
+ _AGTCp,
847
+ 0,
848
+ [_tO, _tF],
849
+ [() => ApiGatewayToolOverrides, () => ApiGatewayToolFilters],
850
+ ];
851
+ export var ApiGatewayToolFilter = [3, n0, _AGTF, 0, [_fP, _me], [0, 64 | 0]];
852
+ export var ApiGatewayToolOverride = [3, n0, _AGTO, 0, [_n, _d, _p, _met], [0, 0, 0, 0]];
592
853
  export var ApiKeyCredentialProviderItem = [
593
854
  3,
594
855
  n0,
@@ -613,6 +874,22 @@ export var AtlassianOauth2ProviderConfigOutput = [
613
874
  [_oD, _cI],
614
875
  [() => Oauth2Discovery, 0],
615
876
  ];
877
+ export var AuthorizingClaimMatchValueType = [
878
+ 3,
879
+ n0,
880
+ _ACMVT,
881
+ 0,
882
+ [_cMV, _cMO],
883
+ [() => ClaimMatchValueType, 0],
884
+ ];
885
+ export var BedrockEvaluatorModelConfig = [
886
+ 3,
887
+ n0,
888
+ _BEMC,
889
+ 0,
890
+ [_mI, _iC, _aMRF],
891
+ [0, () => InferenceConfiguration, 15],
892
+ ];
616
893
  export var BrowserNetworkConfiguration = [3, n0, _BNC, 0, [_nM, _vC], [0, () => VpcConfig]];
617
894
  export var BrowserSigningConfigInput = [3, n0, _BSCI, 0, [_en], [2]];
618
895
  export var BrowserSigningConfigOutput = [3, n0, _BSCO, 0, [_en], [2]];
@@ -624,6 +901,10 @@ export var BrowserSummary = [
624
901
  [_bI, _bA, _n, _d, _s, _cA, _lUA],
625
902
  [0, 0, 0, [() => Description, 0], 0, 5, 5],
626
903
  ];
904
+ export var CategoricalScaleDefinition = [3, n0, _CSD, 0, [_de, _l], [0, 0]];
905
+ export var CedarPolicy = [3, n0, _CP, 0, [_sta], [0]];
906
+ export var CloudWatchLogsInputConfig = [3, n0, _CWLIC, 0, [_lGN, _sN], [64 | 0, 64 | 0]];
907
+ export var CloudWatchOutputConfig = [3, n0, _CWOC, 0, [_lGNo], [0]];
627
908
  export var CodeConfiguration = [3, n0, _CC, 0, [_co, _r, _eP], [() => Code, 0, 64 | 0]];
628
909
  export var CodeInterpreterNetworkConfiguration = [
629
910
  3,
@@ -641,29 +922,9 @@ export var CodeInterpreterSummary = [
641
922
  [_cII, _cIA, _n, _d, _s, _cA, _lUA],
642
923
  [0, 0, 0, [() => Description, 0], 0, 5, 5],
643
924
  ];
644
- export var ConcurrentModificationException = [
645
- -3,
646
- n0,
647
- _CME,
648
- {
649
- [_e]: _c,
650
- [_hE]: 409,
651
- },
652
- [_m],
653
- [0],
654
- ];
925
+ export var ConcurrentModificationException = [-3, n0, _CME, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
655
926
  TypeRegistry.for(n0).registerError(ConcurrentModificationException, __ConcurrentModificationException);
656
- export var ConflictException = [
657
- -3,
658
- n0,
659
- _CE,
660
- {
661
- [_e]: _c,
662
- [_hE]: 409,
663
- },
664
- [_m],
665
- [0],
666
- ];
927
+ export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
667
928
  TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
668
929
  export var ContainerConfiguration = [3, n0, _CCo, 0, [_cU], [0]];
669
930
  export var CreateAgentRuntimeEndpointRequest = [
@@ -761,12 +1022,21 @@ export var CreateCodeInterpreterResponse = [
761
1022
  [_cII, _cIA, _cA, _s],
762
1023
  [0, 0, 5, 0],
763
1024
  ];
1025
+ export var CreateEvaluatorRequest = [
1026
+ 3,
1027
+ n0,
1028
+ _CER,
1029
+ 0,
1030
+ [_cTl, _eNv, _d, _eC, _le],
1031
+ [[0, 4], 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
1032
+ ];
1033
+ export var CreateEvaluatorResponse = [3, n0, _CERr, 0, [_eA, _eI, _cA, _s], [0, 0, 4, 0]];
764
1034
  export var CreateGatewayRequest = [
765
1035
  3,
766
1036
  n0,
767
1037
  _CGR,
768
1038
  0,
769
- [_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _eL, _t],
1039
+ [_n, _d, _cTl, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL, _t],
770
1040
  [
771
1041
  [() => GatewayName, 0],
772
1042
  [() => GatewayDescription, 0],
@@ -778,6 +1048,7 @@ export var CreateGatewayRequest = [
778
1048
  () => AuthorizerConfiguration,
779
1049
  0,
780
1050
  () => GatewayInterceptorConfigurations,
1051
+ () => GatewayPolicyEngineConfiguration,
781
1052
  0,
782
1053
  128 | 0,
783
1054
  ],
@@ -787,7 +1058,7 @@ export var CreateGatewayResponse = [
787
1058
  n0,
788
1059
  _CGRr,
789
1060
  0,
790
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
1061
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
791
1062
  [
792
1063
  0,
793
1064
  0,
@@ -805,6 +1076,7 @@ export var CreateGatewayResponse = [
805
1076
  () => AuthorizerConfiguration,
806
1077
  0,
807
1078
  () => GatewayInterceptorConfigurations,
1079
+ () => GatewayPolicyEngineConfiguration,
808
1080
  () => WorkloadIdentityDetails,
809
1081
  0,
810
1082
  ],
@@ -852,7 +1124,7 @@ export var CreateMemoryInput = [
852
1124
  [_cTl, _n, _d, _eKA, _mERA, _eED, _mS, _t],
853
1125
  [[0, 4], 0, [() => Description, 0], 0, 0, 1, [() => MemoryStrategyInputList, 0], 128 | 0],
854
1126
  ];
855
- export var CreateMemoryOutput = [3, n0, _CMO, 0, [_me], [[() => Memory, 0]]];
1127
+ export var CreateMemoryOutput = [3, n0, _CMO, 0, [_mem], [[() => Memory, 0]]];
856
1128
  export var CreateOauth2CredentialProviderRequest = [
857
1129
  3,
858
1130
  n0,
@@ -869,6 +1141,54 @@ export var CreateOauth2CredentialProviderResponse = [
869
1141
  [_cSA, _n, _cPA, _cUa, _oPCO],
870
1142
  [() => Secret, 0, 0, 0, () => Oauth2ProviderConfigOutput],
871
1143
  ];
1144
+ export var CreateOnlineEvaluationConfigRequest = [
1145
+ 3,
1146
+ n0,
1147
+ _COECR,
1148
+ 0,
1149
+ [_cTl, _oECN, _d, _ru, _dSC, _ev, _eERA, _eOC],
1150
+ [[0, 4], 0, [() => EvaluationConfigDescription, 0], () => Rule, () => DataSourceConfig, () => EvaluatorList, 0, 2],
1151
+ ];
1152
+ export var CreateOnlineEvaluationConfigResponse = [
1153
+ 3,
1154
+ n0,
1155
+ _COECRr,
1156
+ 0,
1157
+ [_oECA, _oECI, _cA, _oC, _s, _eS, _fR],
1158
+ [0, 0, 4, () => OutputConfig, 0, 0, 0],
1159
+ ];
1160
+ export var CreatePolicyEngineRequest = [
1161
+ 3,
1162
+ n0,
1163
+ _CPER,
1164
+ 0,
1165
+ [_n, _d, _cTl],
1166
+ [0, [() => Description, 0], [0, 4]],
1167
+ ];
1168
+ export var CreatePolicyEngineResponse = [
1169
+ 3,
1170
+ n0,
1171
+ _CPERr,
1172
+ 0,
1173
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
1174
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1175
+ ];
1176
+ export var CreatePolicyRequest = [
1177
+ 3,
1178
+ n0,
1179
+ _CPR,
1180
+ 0,
1181
+ [_n, _de, _d, _vM, _pEI, _cTl],
1182
+ [0, () => PolicyDefinition, [() => Description, 0], 0, [0, 1], [0, 4]],
1183
+ ];
1184
+ export var CreatePolicyResponse = [
1185
+ 3,
1186
+ n0,
1187
+ _CPRr,
1188
+ 0,
1189
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
1190
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1191
+ ];
872
1192
  export var CreateWorkloadIdentityRequest = [
873
1193
  3,
874
1194
  n0,
@@ -893,13 +1213,21 @@ export var CredentialProviderConfiguration = [
893
1213
  [_cPT, _cP],
894
1214
  [0, [() => CredentialProvider, 0]],
895
1215
  ];
1216
+ export var CustomClaimValidationType = [
1217
+ 3,
1218
+ n0,
1219
+ _CCVT,
1220
+ 0,
1221
+ [_iTCN, _iTCVT, _aCMV],
1222
+ [0, 0, () => AuthorizingClaimMatchValueType],
1223
+ ];
896
1224
  export var CustomJWTAuthorizerConfiguration = [
897
1225
  3,
898
1226
  n0,
899
1227
  _CJWTAC,
900
1228
  0,
901
- [_dU, _aA, _aCl],
902
- [0, 64 | 0, 64 | 0],
1229
+ [_dU, _aA, _aCl, _aS, _cC],
1230
+ [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType],
903
1231
  ];
904
1232
  export var CustomMemoryStrategyInput = [
905
1233
  3,
@@ -925,17 +1253,7 @@ export var CustomOauth2ProviderConfigOutput = [
925
1253
  [_oD, _cI],
926
1254
  [() => Oauth2Discovery, 0],
927
1255
  ];
928
- export var DecryptionFailure = [
929
- -3,
930
- n0,
931
- _DF,
932
- {
933
- [_e]: _c,
934
- [_hE]: 400,
935
- },
936
- [_m],
937
- [0],
938
- ];
1256
+ export var DecryptionFailure = [-3, n0, _DF, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
939
1257
  TypeRegistry.for(n0).registerError(DecryptionFailure, __DecryptionFailure);
940
1258
  export var DeleteAgentRuntimeEndpointRequest = [
941
1259
  3,
@@ -946,13 +1264,7 @@ export var DeleteAgentRuntimeEndpointRequest = [
946
1264
  [
947
1265
  [0, 1],
948
1266
  [() => EndpointName, 1],
949
- [
950
- 0,
951
- {
952
- [_iT]: 1,
953
- [_hQ]: _cTl,
954
- },
955
- ],
1267
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
956
1268
  ],
957
1269
  ];
958
1270
  export var DeleteAgentRuntimeEndpointResponse = [
@@ -971,13 +1283,7 @@ export var DeleteAgentRuntimeRequest = [
971
1283
  [_aRI, _cTl],
972
1284
  [
973
1285
  [0, 1],
974
- [
975
- 0,
976
- {
977
- [_iT]: 1,
978
- [_hQ]: _cTl,
979
- },
980
- ],
1286
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
981
1287
  ],
982
1288
  ];
983
1289
  export var DeleteAgentRuntimeResponse = [3, n0, _DARRe, 0, [_s, _aRI], [0, 0]];
@@ -991,13 +1297,7 @@ export var DeleteBrowserRequest = [
991
1297
  [_bI, _cTl],
992
1298
  [
993
1299
  [0, 1],
994
- [
995
- 0,
996
- {
997
- [_iT]: 1,
998
- [_hQ]: _cTl,
999
- },
1000
- ],
1300
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1001
1301
  ],
1002
1302
  ];
1003
1303
  export var DeleteBrowserResponse = [3, n0, _DBRe, 0, [_bI, _s, _lUA], [0, 0, 5]];
@@ -1009,16 +1309,12 @@ export var DeleteCodeInterpreterRequest = [
1009
1309
  [_cII, _cTl],
1010
1310
  [
1011
1311
  [0, 1],
1012
- [
1013
- 0,
1014
- {
1015
- [_iT]: 1,
1016
- [_hQ]: _cTl,
1017
- },
1018
- ],
1312
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1019
1313
  ],
1020
1314
  ];
1021
1315
  export var DeleteCodeInterpreterResponse = [3, n0, _DCIRe, 0, [_cII, _s, _lUA], [0, 0, 5]];
1316
+ export var DeleteEvaluatorRequest = [3, n0, _DER, 0, [_eI], [[0, 1]]];
1317
+ export var DeleteEvaluatorResponse = [3, n0, _DERe, 0, [_eA, _eI, _s], [0, 0, 0]];
1022
1318
  export var DeleteGatewayRequest = [3, n0, _DGR, 0, [_gIa], [[0, 1]]];
1023
1319
  export var DeleteGatewayResponse = [3, n0, _DGRe, 0, [_gI, _s, _sR], [0, 0, 64 | 0]];
1024
1320
  export var DeleteGatewayTargetRequest = [
@@ -1045,42 +1341,131 @@ export var DeleteMemoryInput = [
1045
1341
  n0,
1046
1342
  _DMI,
1047
1343
  0,
1048
- [_cTl, _mI],
1344
+ [_cTl, _mIe],
1049
1345
  [
1050
- [
1051
- 0,
1052
- {
1053
- [_iT]: 1,
1054
- [_hQ]: _cTl,
1055
- },
1056
- ],
1346
+ [0, { [_iT]: 1, [_hQ]: _cTl }],
1057
1347
  [0, 1],
1058
1348
  ],
1059
1349
  ];
1060
- export var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mI, _s], [0, 0]];
1350
+ export var DeleteMemoryOutput = [3, n0, _DMO, 0, [_mIe, _s], [0, 0]];
1061
1351
  export var DeleteMemoryStrategyInput = [3, n0, _DMSI, 0, [_mSI], [0]];
1062
1352
  export var DeleteOauth2CredentialProviderRequest = [3, n0, _DOCPR, 0, [_n], [0]];
1063
1353
  export var DeleteOauth2CredentialProviderResponse = [3, n0, _DOCPRe, 0, [], []];
1354
+ export var DeleteOnlineEvaluationConfigRequest = [3, n0, _DOECR, 0, [_oECI], [[0, 1]]];
1355
+ export var DeleteOnlineEvaluationConfigResponse = [
1356
+ 3,
1357
+ n0,
1358
+ _DOECRe,
1359
+ 0,
1360
+ [_oECA, _oECI, _s],
1361
+ [0, 0, 0],
1362
+ ];
1363
+ export var DeletePolicyEngineRequest = [3, n0, _DPER, 0, [_pEI], [[0, 1]]];
1364
+ export var DeletePolicyEngineResponse = [
1365
+ 3,
1366
+ n0,
1367
+ _DPERe,
1368
+ 0,
1369
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
1370
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1371
+ ];
1372
+ export var DeletePolicyRequest = [
1373
+ 3,
1374
+ n0,
1375
+ _DPR,
1376
+ 0,
1377
+ [_pEI, _pI],
1378
+ [
1379
+ [0, 1],
1380
+ [0, 1],
1381
+ ],
1382
+ ];
1383
+ export var DeletePolicyResponse = [
1384
+ 3,
1385
+ n0,
1386
+ _DPRe,
1387
+ 0,
1388
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
1389
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1390
+ ];
1391
+ export var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_rAe], [[0, 1]]];
1392
+ export var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
1064
1393
  export var DeleteWorkloadIdentityRequest = [3, n0, _DWIR, 0, [_n], [0]];
1065
1394
  export var DeleteWorkloadIdentityResponse = [3, n0, _DWIRe, 0, [], []];
1066
- export var EncryptionFailure = [
1067
- -3,
1395
+ export var EncryptionFailure = [-3, n0, _EF, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1396
+ TypeRegistry.for(n0).registerError(EncryptionFailure, __EncryptionFailure);
1397
+ export var EpisodicConsolidationOverride = [3, n0, _ECO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1398
+ export var EpisodicExtractionOverride = [3, n0, _EEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1399
+ export var EpisodicMemoryStrategyInput = [
1400
+ 3,
1068
1401
  n0,
1069
- _EF,
1070
- {
1071
- [_e]: _c,
1072
- [_hE]: 400,
1073
- },
1074
- [_m],
1075
- [0],
1402
+ _EMSI,
1403
+ 0,
1404
+ [_n, _d, _na, _rC],
1405
+ [0, [() => Description, 0], 64 | 0, () => EpisodicReflectionConfigurationInput],
1076
1406
  ];
1077
- TypeRegistry.for(n0).registerError(EncryptionFailure, __EncryptionFailure);
1407
+ export var EpisodicOverrideConfigurationInput = [
1408
+ 3,
1409
+ n0,
1410
+ _EOCI,
1411
+ 0,
1412
+ [_ex, _cons, _ref],
1413
+ [
1414
+ [() => EpisodicOverrideExtractionConfigurationInput, 0],
1415
+ [() => EpisodicOverrideConsolidationConfigurationInput, 0],
1416
+ [() => EpisodicOverrideReflectionConfigurationInput, 0],
1417
+ ],
1418
+ ];
1419
+ export var EpisodicOverrideConsolidationConfigurationInput = [
1420
+ 3,
1421
+ n0,
1422
+ _EOCCI,
1423
+ 0,
1424
+ [_aTP, _mI],
1425
+ [[() => Prompt, 0], 0],
1426
+ ];
1427
+ export var EpisodicOverrideExtractionConfigurationInput = [
1428
+ 3,
1429
+ n0,
1430
+ _EOECI,
1431
+ 0,
1432
+ [_aTP, _mI],
1433
+ [[() => Prompt, 0], 0],
1434
+ ];
1435
+ export var EpisodicOverrideReflectionConfigurationInput = [
1436
+ 3,
1437
+ n0,
1438
+ _EORCI,
1439
+ 0,
1440
+ [_aTP, _mI, _na],
1441
+ [[() => Prompt, 0], 0, 64 | 0],
1442
+ ];
1443
+ export var EpisodicReflectionConfiguration = [3, n0, _ERC, 0, [_na], [64 | 0]];
1444
+ export var EpisodicReflectionConfigurationInput = [3, n0, _ERCI, 0, [_na], [64 | 0]];
1445
+ export var EpisodicReflectionOverride = [
1446
+ 3,
1447
+ n0,
1448
+ _ERO,
1449
+ 0,
1450
+ [_aTP, _mI, _na],
1451
+ [[() => Prompt, 0], 0, 64 | 0],
1452
+ ];
1453
+ export var EvaluatorSummary = [
1454
+ 3,
1455
+ n0,
1456
+ _ES,
1457
+ 0,
1458
+ [_eA, _eI, _eNv, _d, _eT, _le, _s, _cA, _uA, _lFM],
1459
+ [0, 0, 0, [() => EvaluatorDescription, 0], 0, 0, 0, 4, 4, 2],
1460
+ ];
1461
+ export var Filter = [3, n0, _F, 0, [_k, _o, _v], [0, 0, () => FilterValue]];
1462
+ export var Finding = [3, n0, _Fi, 0, [_ty, _d], [0, 0]];
1078
1463
  export var GatewayApiKeyCredentialProvider = [
1079
1464
  3,
1080
1465
  n0,
1081
1466
  _GAKCP,
1082
1467
  0,
1083
- [_pA, _cPN, _cPr, _cL],
1468
+ [_pAr, _cPN, _cPr, _cL],
1084
1469
  [0, 0, 0, 0],
1085
1470
  ];
1086
1471
  export var GatewayInterceptorConfiguration = [
@@ -1088,9 +1473,10 @@ export var GatewayInterceptorConfiguration = [
1088
1473
  n0,
1089
1474
  _GIC,
1090
1475
  0,
1091
- [_in, _iP, _iCn],
1476
+ [_in, _iP, _iCnp],
1092
1477
  [() => InterceptorConfiguration, 64 | 0, () => InterceptorInputConfiguration],
1093
1478
  ];
1479
+ export var GatewayPolicyEngineConfiguration = [3, n0, _GPEC, 0, [_a, _mo], [0, 0]];
1094
1480
  export var GatewaySummary = [
1095
1481
  3,
1096
1482
  n0,
@@ -1146,12 +1532,7 @@ export var GetAgentRuntimeRequest = [
1146
1532
  [_aRI, _aRV],
1147
1533
  [
1148
1534
  [0, 1],
1149
- [
1150
- 0,
1151
- {
1152
- [_hQ]: _v,
1153
- },
1154
- ],
1535
+ [0, { [_hQ]: _ve }],
1155
1536
  ],
1156
1537
  ];
1157
1538
  export var GetAgentRuntimeResponse = [
@@ -1159,7 +1540,7 @@ export var GetAgentRuntimeResponse = [
1159
1540
  n0,
1160
1541
  _GARRe,
1161
1542
  0,
1162
- [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
1543
+ [_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _s, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aC, _rHC],
1163
1544
  [
1164
1545
  0,
1165
1546
  0,
@@ -1171,6 +1552,7 @@ export var GetAgentRuntimeResponse = [
1171
1552
  () => NetworkConfiguration,
1172
1553
  0,
1173
1554
  () => LifecycleConfiguration,
1555
+ 0,
1174
1556
  [() => Description, 0],
1175
1557
  () => WorkloadIdentityDetails,
1176
1558
  () => AgentRuntimeArtifact,
@@ -1220,13 +1602,22 @@ export var GetCodeInterpreterResponse = [
1220
1602
  [_cII, _cIA, _n, _d, _eRA, _nC, _s, _fR, _cA, _lUA],
1221
1603
  [0, 0, 0, [() => Description, 0], 0, () => CodeInterpreterNetworkConfiguration, 0, 0, 5, 5],
1222
1604
  ];
1605
+ export var GetEvaluatorRequest = [3, n0, _GER, 0, [_eI], [[0, 1]]];
1606
+ export var GetEvaluatorResponse = [
1607
+ 3,
1608
+ n0,
1609
+ _GERe,
1610
+ 0,
1611
+ [_eA, _eI, _eNv, _d, _eC, _le, _s, _cA, _uA, _lFM],
1612
+ [0, 0, 0, [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0, 0, 4, 4, 2],
1613
+ ];
1223
1614
  export var GetGatewayRequest = [3, n0, _GGR, 0, [_gIa], [[0, 1]]];
1224
1615
  export var GetGatewayResponse = [
1225
1616
  3,
1226
1617
  n0,
1227
1618
  _GGRe,
1228
1619
  0,
1229
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
1620
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
1230
1621
  [
1231
1622
  0,
1232
1623
  0,
@@ -1244,6 +1635,7 @@ export var GetGatewayResponse = [
1244
1635
  () => AuthorizerConfiguration,
1245
1636
  0,
1246
1637
  () => GatewayInterceptorConfigurations,
1638
+ () => GatewayPolicyEngineConfiguration,
1247
1639
  () => WorkloadIdentityDetails,
1248
1640
  0,
1249
1641
  ],
@@ -1279,8 +1671,8 @@ export var GetGatewayTargetResponse = [
1279
1671
  5,
1280
1672
  ],
1281
1673
  ];
1282
- export var GetMemoryInput = [3, n0, _GMI, 0, [_mI], [[0, 1]]];
1283
- export var GetMemoryOutput = [3, n0, _GMO, 0, [_me], [[() => Memory, 0]]];
1674
+ export var GetMemoryInput = [3, n0, _GMI, 0, [_mIe], [[0, 1]]];
1675
+ export var GetMemoryOutput = [3, n0, _GMO, 0, [_mem], [[() => Memory, 0]]];
1284
1676
  export var GetOauth2CredentialProviderRequest = [3, n0, _GOCPR, 0, [_n], [0]];
1285
1677
  export var GetOauth2CredentialProviderResponse = [
1286
1678
  3,
@@ -1290,6 +1682,79 @@ export var GetOauth2CredentialProviderResponse = [
1290
1682
  [_cSA, _n, _cPA, _cPV, _cUa, _oPCO, _cT, _lUT],
1291
1683
  [() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
1292
1684
  ];
1685
+ export var GetOnlineEvaluationConfigRequest = [3, n0, _GOECR, 0, [_oECI], [[0, 1]]];
1686
+ export var GetOnlineEvaluationConfigResponse = [
1687
+ 3,
1688
+ n0,
1689
+ _GOECRe,
1690
+ 0,
1691
+ [_oECA, _oECI, _oECN, _d, _ru, _dSC, _ev, _oC, _eERA, _s, _eS, _cA, _uA, _fR],
1692
+ [
1693
+ 0,
1694
+ 0,
1695
+ 0,
1696
+ [() => EvaluationConfigDescription, 0],
1697
+ () => Rule,
1698
+ () => DataSourceConfig,
1699
+ () => EvaluatorList,
1700
+ () => OutputConfig,
1701
+ 0,
1702
+ 0,
1703
+ 0,
1704
+ 4,
1705
+ 4,
1706
+ 0,
1707
+ ],
1708
+ ];
1709
+ export var GetPolicyEngineRequest = [3, n0, _GPER, 0, [_pEI], [[0, 1]]];
1710
+ export var GetPolicyEngineResponse = [
1711
+ 3,
1712
+ n0,
1713
+ _GPERe,
1714
+ 0,
1715
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
1716
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1717
+ ];
1718
+ export var GetPolicyGenerationRequest = [
1719
+ 3,
1720
+ n0,
1721
+ _GPGR,
1722
+ 0,
1723
+ [_pGI, _pEI],
1724
+ [
1725
+ [0, 1],
1726
+ [0, 1],
1727
+ ],
1728
+ ];
1729
+ export var GetPolicyGenerationResponse = [
1730
+ 3,
1731
+ n0,
1732
+ _GPGRe,
1733
+ 0,
1734
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
1735
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
1736
+ ];
1737
+ export var GetPolicyRequest = [
1738
+ 3,
1739
+ n0,
1740
+ _GPR,
1741
+ 0,
1742
+ [_pEI, _pI],
1743
+ [
1744
+ [0, 1],
1745
+ [0, 1],
1746
+ ],
1747
+ ];
1748
+ export var GetPolicyResponse = [
1749
+ 3,
1750
+ n0,
1751
+ _GPRe,
1752
+ 0,
1753
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
1754
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
1755
+ ];
1756
+ export var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rAe], [[0, 1]]];
1757
+ export var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_po], [0]];
1293
1758
  export var GetTokenVaultRequest = [3, n0, _GTVR, 0, [_tVI], [0]];
1294
1759
  export var GetTokenVaultResponse = [
1295
1760
  3,
@@ -1356,20 +1821,11 @@ export var IncludedOauth2ProviderConfigOutput = [
1356
1821
  [_oD, _cI],
1357
1822
  [() => Oauth2Discovery, 0],
1358
1823
  ];
1824
+ export var InferenceConfiguration = [3, n0, _IC, 0, [_mT, _te, _tP, _sS], [1, 1, 1, 64 | 0]];
1359
1825
  export var InterceptorInputConfiguration = [3, n0, _IIC, 0, [_pRH], [2]];
1360
- export var InternalServerException = [
1361
- -3,
1362
- n0,
1363
- _ISE,
1364
- {
1365
- [_e]: _se,
1366
- [_hE]: 500,
1367
- },
1368
- [_m],
1369
- [0],
1370
- ];
1826
+ export var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1371
1827
  TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
1372
- export var InvocationConfiguration = [3, n0, _IC, 0, [_tA, _pDBN], [0, 0]];
1828
+ export var InvocationConfiguration = [3, n0, _ICn, 0, [_tA, _pDBN], [0, 0]];
1373
1829
  export var InvocationConfigurationInput = [3, n0, _ICI, 0, [_tA, _pDBN], [0, 0]];
1374
1830
  export var KmsConfiguration = [3, n0, _KC, 0, [_kT, _kKA], [0, 0]];
1375
1831
  export var LambdaInterceptorConfiguration = [3, n0, _LIC, 0, [_a], [0]];
@@ -1398,18 +1854,8 @@ export var ListAgentRuntimeEndpointsRequest = [
1398
1854
  [_aRI, _mR, _nT],
1399
1855
  [
1400
1856
  [0, 1],
1401
- [
1402
- 1,
1403
- {
1404
- [_hQ]: _mR,
1405
- },
1406
- ],
1407
- [
1408
- 0,
1409
- {
1410
- [_hQ]: _nT,
1411
- },
1412
- ],
1857
+ [1, { [_hQ]: _mR }],
1858
+ [0, { [_hQ]: _nT }],
1413
1859
  ],
1414
1860
  ];
1415
1861
  export var ListAgentRuntimeEndpointsResponse = [
@@ -1427,18 +1873,8 @@ export var ListAgentRuntimesRequest = [
1427
1873
  0,
1428
1874
  [_mR, _nT],
1429
1875
  [
1430
- [
1431
- 1,
1432
- {
1433
- [_hQ]: _mR,
1434
- },
1435
- ],
1436
- [
1437
- 0,
1438
- {
1439
- [_hQ]: _nT,
1440
- },
1441
- ],
1876
+ [1, { [_hQ]: _mR }],
1877
+ [0, { [_hQ]: _nT }],
1442
1878
  ],
1443
1879
  ];
1444
1880
  export var ListAgentRuntimesResponse = [
@@ -1457,18 +1893,8 @@ export var ListAgentRuntimeVersionsRequest = [
1457
1893
  [_aRI, _mR, _nT],
1458
1894
  [
1459
1895
  [0, 1],
1460
- [
1461
- 1,
1462
- {
1463
- [_hQ]: _mR,
1464
- },
1465
- ],
1466
- [
1467
- 0,
1468
- {
1469
- [_hQ]: _nT,
1470
- },
1471
- ],
1896
+ [1, { [_hQ]: _mR }],
1897
+ [0, { [_hQ]: _nT }],
1472
1898
  ],
1473
1899
  ];
1474
1900
  export var ListAgentRuntimeVersionsResponse = [
@@ -1495,24 +1921,9 @@ export var ListBrowsersRequest = [
1495
1921
  0,
1496
1922
  [_mR, _nT, _ty],
1497
1923
  [
1498
- [
1499
- 1,
1500
- {
1501
- [_hQ]: _mR,
1502
- },
1503
- ],
1504
- [
1505
- 0,
1506
- {
1507
- [_hQ]: _nT,
1508
- },
1509
- ],
1510
- [
1511
- 0,
1512
- {
1513
- [_hQ]: _ty,
1514
- },
1515
- ],
1924
+ [1, { [_hQ]: _mR }],
1925
+ [0, { [_hQ]: _nT }],
1926
+ [0, { [_hQ]: _ty }],
1516
1927
  ],
1517
1928
  ];
1518
1929
  export var ListBrowsersResponse = [
@@ -1530,24 +1941,9 @@ export var ListCodeInterpretersRequest = [
1530
1941
  0,
1531
1942
  [_mR, _nT, _ty],
1532
1943
  [
1533
- [
1534
- 1,
1535
- {
1536
- [_hQ]: _mR,
1537
- },
1538
- ],
1539
- [
1540
- 0,
1541
- {
1542
- [_hQ]: _nT,
1543
- },
1544
- ],
1545
- [
1546
- 0,
1547
- {
1548
- [_hQ]: _ty,
1549
- },
1550
- ],
1944
+ [1, { [_hQ]: _mR }],
1945
+ [0, { [_hQ]: _nT }],
1946
+ [0, { [_hQ]: _ty }],
1551
1947
  ],
1552
1948
  ];
1553
1949
  export var ListCodeInterpretersResponse = [
@@ -1558,6 +1954,25 @@ export var ListCodeInterpretersResponse = [
1558
1954
  [_cIS, _nT],
1559
1955
  [[() => CodeInterpreterSummaries, 0], 0],
1560
1956
  ];
1957
+ export var ListEvaluatorsRequest = [
1958
+ 3,
1959
+ n0,
1960
+ _LER,
1961
+ 0,
1962
+ [_nT, _mR],
1963
+ [
1964
+ [0, { [_hQ]: _nT }],
1965
+ [1, { [_hQ]: _mR }],
1966
+ ],
1967
+ ];
1968
+ export var ListEvaluatorsResponse = [
1969
+ 3,
1970
+ n0,
1971
+ _LERi,
1972
+ 0,
1973
+ [_ev, _nT],
1974
+ [[() => EvaluatorSummaryList, 0], 0],
1975
+ ];
1561
1976
  export var ListGatewaysRequest = [
1562
1977
  3,
1563
1978
  n0,
@@ -1565,18 +1980,8 @@ export var ListGatewaysRequest = [
1565
1980
  0,
1566
1981
  [_mR, _nT],
1567
1982
  [
1568
- [
1569
- 1,
1570
- {
1571
- [_hQ]: _mR,
1572
- },
1573
- ],
1574
- [
1575
- 0,
1576
- {
1577
- [_hQ]: _nT,
1578
- },
1579
- ],
1983
+ [1, { [_hQ]: _mR }],
1984
+ [0, { [_hQ]: _nT }],
1580
1985
  ],
1581
1986
  ];
1582
1987
  export var ListGatewaysResponse = [
@@ -1595,18 +2000,8 @@ export var ListGatewayTargetsRequest = [
1595
2000
  [_gIa, _mR, _nT],
1596
2001
  [
1597
2002
  [0, 1],
1598
- [
1599
- 1,
1600
- {
1601
- [_hQ]: _mR,
1602
- },
1603
- ],
1604
- [
1605
- 0,
1606
- {
1607
- [_hQ]: _nT,
1608
- },
1609
- ],
2003
+ [1, { [_hQ]: _mR }],
2004
+ [0, { [_hQ]: _nT }],
1610
2005
  ],
1611
2006
  ];
1612
2007
  export var ListGatewayTargetsResponse = [
@@ -1618,7 +2013,7 @@ export var ListGatewayTargetsResponse = [
1618
2013
  [[() => TargetSummaries, 0], 0],
1619
2014
  ];
1620
2015
  export var ListMemoriesInput = [3, n0, _LMI, 0, [_mR, _nT], [1, 0]];
1621
- export var ListMemoriesOutput = [3, n0, _LMO, 0, [_mem, _nT], [() => MemorySummaryList, 0]];
2016
+ export var ListMemoriesOutput = [3, n0, _LMO, 0, [_memo, _nT], [() => MemorySummaryList, 0]];
1622
2017
  export var ListOauth2CredentialProvidersRequest = [3, n0, _LOCPR, 0, [_nT, _mR], [0, 1]];
1623
2018
  export var ListOauth2CredentialProvidersResponse = [
1624
2019
  3,
@@ -1628,6 +2023,99 @@ export var ListOauth2CredentialProvidersResponse = [
1628
2023
  [_cPre, _nT],
1629
2024
  [() => Oauth2CredentialProviders, 0],
1630
2025
  ];
2026
+ export var ListOnlineEvaluationConfigsRequest = [
2027
+ 3,
2028
+ n0,
2029
+ _LOECR,
2030
+ 0,
2031
+ [_nT, _mR],
2032
+ [
2033
+ [0, { [_hQ]: _nT }],
2034
+ [1, { [_hQ]: _mR }],
2035
+ ],
2036
+ ];
2037
+ export var ListOnlineEvaluationConfigsResponse = [
2038
+ 3,
2039
+ n0,
2040
+ _LOECRi,
2041
+ 0,
2042
+ [_oEC, _nT],
2043
+ [[() => OnlineEvaluationConfigSummaryList, 0], 0],
2044
+ ];
2045
+ export var ListPoliciesRequest = [
2046
+ 3,
2047
+ n0,
2048
+ _LPR,
2049
+ 0,
2050
+ [_nT, _mR, _pEI, _tRS],
2051
+ [
2052
+ [0, { [_hQ]: _nT }],
2053
+ [1, { [_hQ]: _mR }],
2054
+ [0, 1],
2055
+ [0, { [_hQ]: _tRS }],
2056
+ ],
2057
+ ];
2058
+ export var ListPoliciesResponse = [3, n0, _LPRi, 0, [_pol, _nT], [[() => Policies, 0], 0]];
2059
+ export var ListPolicyEnginesRequest = [
2060
+ 3,
2061
+ n0,
2062
+ _LPER,
2063
+ 0,
2064
+ [_nT, _mR],
2065
+ [
2066
+ [0, { [_hQ]: _nT }],
2067
+ [1, { [_hQ]: _mR }],
2068
+ ],
2069
+ ];
2070
+ export var ListPolicyEnginesResponse = [
2071
+ 3,
2072
+ n0,
2073
+ _LPERi,
2074
+ 0,
2075
+ [_pE, _nT],
2076
+ [[() => PolicyEngines, 0], 0],
2077
+ ];
2078
+ export var ListPolicyGenerationAssetsRequest = [
2079
+ 3,
2080
+ n0,
2081
+ _LPGAR,
2082
+ 0,
2083
+ [_pGI, _pEI, _nT, _mR],
2084
+ [
2085
+ [0, 1],
2086
+ [0, 1],
2087
+ [0, { [_hQ]: _nT }],
2088
+ [1, { [_hQ]: _mR }],
2089
+ ],
2090
+ ];
2091
+ export var ListPolicyGenerationAssetsResponse = [
2092
+ 3,
2093
+ n0,
2094
+ _LPGARi,
2095
+ 0,
2096
+ [_pGAo, _nT],
2097
+ [() => PolicyGenerationAssets, 0],
2098
+ ];
2099
+ export var ListPolicyGenerationsRequest = [
2100
+ 3,
2101
+ n0,
2102
+ _LPGR,
2103
+ 0,
2104
+ [_nT, _mR, _pEI],
2105
+ [
2106
+ [0, { [_hQ]: _nT }],
2107
+ [1, { [_hQ]: _mR }],
2108
+ [0, 1],
2109
+ ],
2110
+ ];
2111
+ export var ListPolicyGenerationsResponse = [
2112
+ 3,
2113
+ n0,
2114
+ _LPGRi,
2115
+ 0,
2116
+ [_pG, _nT],
2117
+ [() => PolicyGenerations, 0],
2118
+ ];
1631
2119
  export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
1632
2120
  export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
1633
2121
  export var ListWorkloadIdentitiesRequest = [3, n0, _LWIR, 0, [_nT, _mR], [0, 1]];
@@ -1639,6 +2127,14 @@ export var ListWorkloadIdentitiesResponse = [
1639
2127
  [_wI, _nT],
1640
2128
  [() => WorkloadIdentityList, 0],
1641
2129
  ];
2130
+ export var LlmAsAJudgeEvaluatorConfig = [
2131
+ 3,
2132
+ n0,
2133
+ _LAAJEC,
2134
+ 0,
2135
+ [_ins, _rS, _mC],
2136
+ [[() => EvaluatorInstructions, 0], () => RatingScale, () => EvaluatorModelConfig],
2137
+ ];
1642
2138
  export var MCPGatewayConfiguration = [3, n0, _MCPGC, 0, [_sV, _ins, _sT], [64 | 0, 0, 0]];
1643
2139
  export var McpLambdaTargetConfiguration = [3, n0, _MLTC, 0, [_lA, _tS], [0, () => ToolSchema]];
1644
2140
  export var McpServerTargetConfiguration = [3, n0, _MSTC, 0, [_end], [0]];
@@ -1647,7 +2143,7 @@ export var Memory = [
1647
2143
  n0,
1648
2144
  _M,
1649
2145
  0,
1650
- [_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _st],
2146
+ [_a, _i, _n, _d, _eKA, _mERA, _eED, _s, _fR, _cA, _uA, _str],
1651
2147
  [0, 0, 0, [() => Description, 0], 0, 0, 1, 0, 0, 4, 4, [() => MemoryStrategyList, 0]],
1652
2148
  ];
1653
2149
  export var MemoryStrategy = [
@@ -1659,8 +2155,8 @@ export var MemoryStrategy = [
1659
2155
  [0, 0, [() => Description, 0], [() => StrategyConfiguration, 0], 0, 64 | 0, 4, 4, 0],
1660
2156
  ];
1661
2157
  export var MemorySummary = [3, n0, _MSe, 0, [_a, _i, _s, _cA, _uA], [0, 0, 0, 4, 4]];
1662
- export var MessageBasedTrigger = [3, n0, _MBT, 0, [_mC], [1]];
1663
- export var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mC], [1]];
2158
+ export var MessageBasedTrigger = [3, n0, _MBT, 0, [_mCe], [1]];
2159
+ export var MessageBasedTriggerInput = [3, n0, _MBTI, 0, [_mCe], [1]];
1664
2160
  export var MicrosoftOauth2ProviderConfigInput = [
1665
2161
  3,
1666
2162
  n0,
@@ -1707,14 +2203,16 @@ export var ModifyStrategyConfiguration = [
1707
2203
  n0,
1708
2204
  _MSC,
1709
2205
  0,
1710
- [_ex, _cons, _sMC],
2206
+ [_ex, _cons, _ref, _sMC],
1711
2207
  [
1712
2208
  [() => ModifyExtractionConfiguration, 0],
1713
2209
  [() => ModifyConsolidationConfiguration, 0],
2210
+ [() => ModifyReflectionConfiguration, 0],
1714
2211
  () => ModifySelfManagedConfiguration,
1715
2212
  ],
1716
2213
  ];
1717
2214
  export var NetworkConfiguration = [3, n0, _NC, 0, [_nM, _nMC], [0, () => VpcConfig]];
2215
+ export var NumericalScaleDefinition = [3, n0, _NSD, 0, [_de, _v, _l], [0, 1, 0]];
1718
2216
  export var Oauth2AuthorizationServerMetadata = [
1719
2217
  3,
1720
2218
  n0,
@@ -1736,37 +2234,68 @@ export var OAuthCredentialProvider = [
1736
2234
  n0,
1737
2235
  _OACP,
1738
2236
  0,
1739
- [_pA, _sc, _cPu],
1740
- [0, 64 | 0, [() => OAuthCustomParameters, 0]],
2237
+ [_pAr, _sc, _cPu, _gT, _dRU],
2238
+ [0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0],
1741
2239
  ];
1742
- export var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
1743
- export var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
1744
- export var ResourceLimitExceededException = [
1745
- -3,
2240
+ export var OnlineEvaluationConfigSummary = [
2241
+ 3,
1746
2242
  n0,
1747
- _RLEE,
1748
- {
1749
- [_e]: _c,
1750
- [_hE]: 400,
1751
- },
1752
- [_m],
1753
- [0],
2243
+ _OECS,
2244
+ 0,
2245
+ [_oECA, _oECI, _oECN, _d, _s, _eS, _cA, _uA, _fR],
2246
+ [0, 0, 0, [() => EvaluationConfigDescription, 0], 0, 0, 4, 4, 0],
1754
2247
  ];
1755
- TypeRegistry.for(n0).registerError(ResourceLimitExceededException, __ResourceLimitExceededException);
1756
- export var ResourceNotFoundException = [
1757
- -3,
2248
+ export var OutputConfig = [3, n0, _OC, 0, [_cWC], [() => CloudWatchOutputConfig]];
2249
+ export var Policy = [
2250
+ 3,
2251
+ n0,
2252
+ _Po,
2253
+ 0,
2254
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
2255
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2256
+ ];
2257
+ export var PolicyEngine = [
2258
+ 3,
2259
+ n0,
2260
+ _PE,
2261
+ 0,
2262
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
2263
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2264
+ ];
2265
+ export var PolicyGeneration = [
2266
+ 3,
1758
2267
  n0,
1759
- _RNFE,
1760
- {
1761
- [_e]: _c,
1762
- [_hE]: 404,
1763
- },
1764
- [_m],
1765
- [0],
2268
+ _PG,
2269
+ 0,
2270
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
2271
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
1766
2272
  ];
2273
+ export var PolicyGenerationAsset = [
2274
+ 3,
2275
+ n0,
2276
+ _PGA,
2277
+ 0,
2278
+ [_pGAI, _de, _rTF, _f],
2279
+ [0, () => PolicyDefinition, 0, () => Findings],
2280
+ ];
2281
+ export var ProtocolConfiguration = [3, n0, _PC, 0, [_sP], [0]];
2282
+ export var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_rAe, _po], [[0, 1], 0]];
2283
+ export var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [_po], [0]];
2284
+ export var RecordingConfig = [3, n0, _RC, 0, [_en, _sL], [2, () => S3Location]];
2285
+ export var ResourceLimitExceededException = [-3, n0, _RLEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
2286
+ TypeRegistry.for(n0).registerError(ResourceLimitExceededException, __ResourceLimitExceededException);
2287
+ export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1767
2288
  TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
2289
+ export var Rule = [
2290
+ 3,
2291
+ n0,
2292
+ _R,
2293
+ 0,
2294
+ [_sC, _fi, _sCe],
2295
+ [() => SamplingConfig, () => FilterList, () => SessionConfig],
2296
+ ];
1768
2297
  export var S3Configuration = [3, n0, _SC, 0, [_u, _bOAI], [0, 0]];
1769
- export var S3Location = [3, n0, _SL, 0, [_b, _p, _vI], [0, 0, 0]];
2298
+ export var S3Location = [3, n0, _SL, 0, [_b, _pr, _vI], [0, 0, 0]];
1770
2299
  export var SalesforceOauth2ProviderConfigInput = [
1771
2300
  3,
1772
2301
  n0,
@@ -1783,12 +2312,13 @@ export var SalesforceOauth2ProviderConfigOutput = [
1783
2312
  [_oD, _cI],
1784
2313
  [() => Oauth2Discovery, 0],
1785
2314
  ];
2315
+ export var SamplingConfig = [3, n0, _SCa, 0, [_sPa], [1]];
1786
2316
  export var SchemaDefinition = [
1787
2317
  3,
1788
2318
  n0,
1789
2319
  _SD,
1790
2320
  0,
1791
- [_ty, _pr, _req, _it, _d],
2321
+ [_ty, _pro, _req, _it, _d],
1792
2322
  [0, () => SchemaProperties, 64 | 0, () => SchemaDefinition, 0],
1793
2323
  ];
1794
2324
  export var Secret = [3, n0, _S, 0, [_sA], [0]];
@@ -1808,15 +2338,8 @@ export var SelfManagedConfigurationInput = [
1808
2338
  [_tCr, _iCnv, _hCWS],
1809
2339
  [() => TriggerConditionInputList, () => InvocationConfigurationInput, 1],
1810
2340
  ];
1811
- export var SemanticConsolidationOverride = [
1812
- 3,
1813
- n0,
1814
- _SCO,
1815
- 0,
1816
- [_aTP, _mIo],
1817
- [[() => Prompt, 0], 0],
1818
- ];
1819
- export var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mIo], [[() => Prompt, 0], 0]];
2341
+ export var SemanticConsolidationOverride = [3, n0, _SCO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
2342
+ export var SemanticExtractionOverride = [3, n0, _SEO, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1820
2343
  export var SemanticMemoryStrategyInput = [
1821
2344
  3,
1822
2345
  n0,
@@ -1841,7 +2364,7 @@ export var SemanticOverrideConsolidationConfigurationInput = [
1841
2364
  n0,
1842
2365
  _SOCCI,
1843
2366
  0,
1844
- [_aTP, _mIo],
2367
+ [_aTP, _mI],
1845
2368
  [[() => Prompt, 0], 0],
1846
2369
  ];
1847
2370
  export var SemanticOverrideExtractionConfigurationInput = [
@@ -1849,33 +2372,14 @@ export var SemanticOverrideExtractionConfigurationInput = [
1849
2372
  n0,
1850
2373
  _SOECI,
1851
2374
  0,
1852
- [_aTP, _mIo],
2375
+ [_aTP, _mI],
1853
2376
  [[() => Prompt, 0], 0],
1854
2377
  ];
1855
- export var ServiceException = [
1856
- -3,
1857
- n0,
1858
- _SE,
1859
- {
1860
- [_e]: _se,
1861
- [_hE]: 500,
1862
- },
1863
- [_m],
1864
- [0],
1865
- ];
2378
+ export var ServiceException = [-3, n0, _SE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
1866
2379
  TypeRegistry.for(n0).registerError(ServiceException, __ServiceException);
1867
- export var ServiceQuotaExceededException = [
1868
- -3,
1869
- n0,
1870
- _SQEE,
1871
- {
1872
- [_e]: _c,
1873
- [_hE]: 402,
1874
- },
1875
- [_m],
1876
- [0],
1877
- ];
2380
+ export var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1878
2381
  TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
2382
+ export var SessionConfig = [3, n0, _SCe, 0, [_sTM], [1]];
1879
2383
  export var SetTokenVaultCMKRequest = [
1880
2384
  3,
1881
2385
  n0,
@@ -1908,22 +2412,37 @@ export var SlackOauth2ProviderConfigOutput = [
1908
2412
  [_oD, _cI],
1909
2413
  [() => Oauth2Discovery, 0],
1910
2414
  ];
1911
- export var StrategyConfiguration = [
2415
+ export var StartPolicyGenerationRequest = [
1912
2416
  3,
1913
2417
  n0,
1914
- _SCt,
2418
+ _SPGR,
1915
2419
  0,
1916
- [_ty, _ex, _cons, _sMC],
1917
- [0, [() => ExtractionConfiguration, 0], [() => ConsolidationConfiguration, 0], () => SelfManagedConfiguration],
2420
+ [_pEI, _res, _cont, _n, _cTl],
2421
+ [[0, 1], () => Resource, () => Content, 0, [0, 4]],
1918
2422
  ];
1919
- export var SummaryConsolidationOverride = [
2423
+ export var StartPolicyGenerationResponse = [
1920
2424
  3,
1921
2425
  n0,
1922
- _SCOu,
2426
+ _SPGRt,
1923
2427
  0,
1924
- [_aTP, _mIo],
1925
- [[() => Prompt, 0], 0],
2428
+ [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _s, _sR, _f],
2429
+ [0, 0, 0, 0, () => Resource, 5, 5, 0, 64 | 0, 0],
1926
2430
  ];
2431
+ export var StrategyConfiguration = [
2432
+ 3,
2433
+ n0,
2434
+ _SCt,
2435
+ 0,
2436
+ [_ty, _ex, _cons, _ref, _sMC],
2437
+ [
2438
+ 0,
2439
+ [() => ExtractionConfiguration, 0],
2440
+ [() => ConsolidationConfiguration, 0],
2441
+ [() => ReflectionConfiguration, 0],
2442
+ () => SelfManagedConfiguration,
2443
+ ],
2444
+ ];
2445
+ export var SummaryConsolidationOverride = [3, n0, _SCOu, 0, [_aTP, _mI], [[() => Prompt, 0], 0]];
1927
2446
  export var SummaryMemoryStrategyInput = [
1928
2447
  3,
1929
2448
  n0,
@@ -1945,7 +2464,7 @@ export var SummaryOverrideConsolidationConfigurationInput = [
1945
2464
  n0,
1946
2465
  _SOCCIu,
1947
2466
  0,
1948
- [_aTP, _mIo],
2467
+ [_aTP, _mI],
1949
2468
  [[() => Prompt, 0], 0],
1950
2469
  ];
1951
2470
  export var SynchronizeGatewayTargetsRequest = [3, n0, _SGTR, 0, [_gIa, _tIL], [[0, 1], 64 | 0]];
@@ -1967,29 +2486,9 @@ export var TargetSummary = [
1967
2486
  [_tI, _n, _s, _d, _cA, _uA],
1968
2487
  [0, [() => TargetName, 0], 0, [() => TargetDescription, 0], 5, 5],
1969
2488
  ];
1970
- export var ThrottledException = [
1971
- -3,
1972
- n0,
1973
- _TE,
1974
- {
1975
- [_e]: _c,
1976
- [_hE]: 429,
1977
- },
1978
- [_m],
1979
- [0],
1980
- ];
2489
+ export var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1981
2490
  TypeRegistry.for(n0).registerError(ThrottledException, __ThrottledException);
1982
- export var ThrottlingException = [
1983
- -3,
1984
- n0,
1985
- _TEh,
1986
- {
1987
- [_e]: _c,
1988
- [_hE]: 429,
1989
- },
1990
- [_m],
1991
- [0],
1992
- ];
2491
+ export var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1993
2492
  TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
1994
2493
  export var TimeBasedTrigger = [3, n0, _TBT, 0, [_iST], [1]];
1995
2494
  export var TimeBasedTriggerInput = [3, n0, _TBTI, 0, [_iST], [1]];
@@ -2003,17 +2502,7 @@ export var ToolDefinition = [
2003
2502
  [_n, _d, _iS, _oS],
2004
2503
  [0, 0, () => SchemaDefinition, () => SchemaDefinition],
2005
2504
  ];
2006
- export var UnauthorizedException = [
2007
- -3,
2008
- n0,
2009
- _UE,
2010
- {
2011
- [_e]: _c,
2012
- [_hE]: 401,
2013
- },
2014
- [_m],
2015
- [0],
2016
- ];
2505
+ export var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
2017
2506
  TypeRegistry.for(n0).registerError(UnauthorizedException, __UnauthorizedException);
2018
2507
  export var UntagResourceRequest = [
2019
2508
  3,
@@ -2023,12 +2512,7 @@ export var UntagResourceRequest = [
2023
2512
  [_rAe, _tK],
2024
2513
  [
2025
2514
  [0, 1],
2026
- [
2027
- 64 | 0,
2028
- {
2029
- [_hQ]: _tK,
2030
- },
2031
- ],
2515
+ [64 | 0, { [_hQ]: _tK }],
2032
2516
  ],
2033
2517
  ];
2034
2518
  export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
@@ -2092,12 +2576,21 @@ export var UpdateApiKeyCredentialProviderResponse = [
2092
2576
  [_aKSA, _n, _cPA, _cT, _lUT],
2093
2577
  [() => Secret, 0, 0, 4, 4],
2094
2578
  ];
2579
+ export var UpdateEvaluatorRequest = [
2580
+ 3,
2581
+ n0,
2582
+ _UER,
2583
+ 0,
2584
+ [_cTl, _eI, _d, _eC, _le],
2585
+ [[0, 4], [0, 1], [() => EvaluatorDescription, 0], [() => EvaluatorConfig, 0], 0],
2586
+ ];
2587
+ export var UpdateEvaluatorResponse = [3, n0, _UERp, 0, [_eA, _eI, _uA, _s], [0, 0, 4, 0]];
2095
2588
  export var UpdateGatewayRequest = [
2096
2589
  3,
2097
2590
  n0,
2098
2591
  _UGR,
2099
2592
  0,
2100
- [_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _eL],
2593
+ [_gIa, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _eL],
2101
2594
  [
2102
2595
  [0, 1],
2103
2596
  [() => GatewayName, 0],
@@ -2109,6 +2602,7 @@ export var UpdateGatewayRequest = [
2109
2602
  () => AuthorizerConfiguration,
2110
2603
  0,
2111
2604
  () => GatewayInterceptorConfigurations,
2605
+ () => GatewayPolicyEngineConfiguration,
2112
2606
  0,
2113
2607
  ],
2114
2608
  ];
@@ -2117,7 +2611,7 @@ export var UpdateGatewayResponse = [
2117
2611
  n0,
2118
2612
  _UGRp,
2119
2613
  0,
2120
- [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iC, _wID, _eL],
2614
+ [_gA, _gI, _gU, _cA, _uA, _s, _sR, _n, _d, _rA, _pT, _pC, _aT, _aC, _kKA, _iCn, _pEC, _wID, _eL],
2121
2615
  [
2122
2616
  0,
2123
2617
  0,
@@ -2135,6 +2629,7 @@ export var UpdateGatewayResponse = [
2135
2629
  () => AuthorizerConfiguration,
2136
2630
  0,
2137
2631
  () => GatewayInterceptorConfigurations,
2632
+ () => GatewayPolicyEngineConfiguration,
2138
2633
  () => WorkloadIdentityDetails,
2139
2634
  0,
2140
2635
  ],
@@ -2179,10 +2674,10 @@ export var UpdateMemoryInput = [
2179
2674
  n0,
2180
2675
  _UMI,
2181
2676
  0,
2182
- [_cTl, _mI, _d, _eED, _mERA, _mS],
2677
+ [_cTl, _mIe, _d, _eED, _mERA, _mS],
2183
2678
  [[0, 4], [0, 1], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies, 0]],
2184
2679
  ];
2185
- export var UpdateMemoryOutput = [3, n0, _UMO, 0, [_me], [[() => Memory, 0]]];
2680
+ export var UpdateMemoryOutput = [3, n0, _UMO, 0, [_mem], [[() => Memory, 0]]];
2186
2681
  export var UpdateOauth2CredentialProviderRequest = [
2187
2682
  3,
2188
2683
  n0,
@@ -2199,6 +2694,66 @@ export var UpdateOauth2CredentialProviderResponse = [
2199
2694
  [_cSA, _n, _cPV, _cPA, _cUa, _oPCO, _cT, _lUT],
2200
2695
  [() => Secret, 0, 0, 0, 0, () => Oauth2ProviderConfigOutput, 4, 4],
2201
2696
  ];
2697
+ export var UpdateOnlineEvaluationConfigRequest = [
2698
+ 3,
2699
+ n0,
2700
+ _UOECR,
2701
+ 0,
2702
+ [_cTl, _oECI, _d, _ru, _dSC, _ev, _eERA, _eS],
2703
+ [
2704
+ [0, 4],
2705
+ [0, 1],
2706
+ [() => EvaluationConfigDescription, 0],
2707
+ () => Rule,
2708
+ () => DataSourceConfig,
2709
+ () => EvaluatorList,
2710
+ 0,
2711
+ 0,
2712
+ ],
2713
+ ];
2714
+ export var UpdateOnlineEvaluationConfigResponse = [
2715
+ 3,
2716
+ n0,
2717
+ _UOECRp,
2718
+ 0,
2719
+ [_oECA, _oECI, _uA, _s, _eS, _fR],
2720
+ [0, 0, 4, 0, 0, 0],
2721
+ ];
2722
+ export var UpdatePolicyEngineRequest = [
2723
+ 3,
2724
+ n0,
2725
+ _UPER,
2726
+ 0,
2727
+ [_pEI, _d],
2728
+ [
2729
+ [0, 1],
2730
+ [() => Description, 0],
2731
+ ],
2732
+ ];
2733
+ export var UpdatePolicyEngineResponse = [
2734
+ 3,
2735
+ n0,
2736
+ _UPERp,
2737
+ 0,
2738
+ [_pEI, _n, _d, _cA, _uA, _pEA, _s, _sR],
2739
+ [0, 0, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2740
+ ];
2741
+ export var UpdatePolicyRequest = [
2742
+ 3,
2743
+ n0,
2744
+ _UPR,
2745
+ 0,
2746
+ [_pEI, _pI, _d, _de, _vM],
2747
+ [[0, 1], [0, 1], [() => Description, 0], () => PolicyDefinition, 0],
2748
+ ];
2749
+ export var UpdatePolicyResponse = [
2750
+ 3,
2751
+ n0,
2752
+ _UPRp,
2753
+ 0,
2754
+ [_pI, _n, _pEI, _de, _d, _cA, _uA, _pA, _s, _sR],
2755
+ [0, 0, 0, () => PolicyDefinition, [() => Description, 0], 5, 5, 0, 0, 64 | 0],
2756
+ ];
2202
2757
  export var UpdateWorkloadIdentityRequest = [3, n0, _UWIR, 0, [_n, _aRORU], [0, 64 | 0]];
2203
2758
  export var UpdateWorkloadIdentityResponse = [
2204
2759
  3,
@@ -2213,7 +2768,7 @@ export var UserPreferenceConsolidationOverride = [
2213
2768
  n0,
2214
2769
  _UPCO,
2215
2770
  0,
2216
- [_aTP, _mIo],
2771
+ [_aTP, _mI],
2217
2772
  [[() => Prompt, 0], 0],
2218
2773
  ];
2219
2774
  export var UserPreferenceExtractionOverride = [
@@ -2221,7 +2776,7 @@ export var UserPreferenceExtractionOverride = [
2221
2776
  n0,
2222
2777
  _UPEO,
2223
2778
  0,
2224
- [_aTP, _mIo],
2779
+ [_aTP, _mI],
2225
2780
  [[() => Prompt, 0], 0],
2226
2781
  ];
2227
2782
  export var UserPreferenceMemoryStrategyInput = [
@@ -2248,7 +2803,7 @@ export var UserPreferenceOverrideConsolidationConfigurationInput = [
2248
2803
  n0,
2249
2804
  _UPOCCI,
2250
2805
  0,
2251
- [_aTP, _mIo],
2806
+ [_aTP, _mI],
2252
2807
  [[() => Prompt, 0], 0],
2253
2808
  ];
2254
2809
  export var UserPreferenceOverrideExtractionConfigurationInput = [
@@ -2256,17 +2811,14 @@ export var UserPreferenceOverrideExtractionConfigurationInput = [
2256
2811
  n0,
2257
2812
  _UPOECI,
2258
2813
  0,
2259
- [_aTP, _mIo],
2814
+ [_aTP, _mI],
2260
2815
  [[() => Prompt, 0], 0],
2261
2816
  ];
2262
2817
  export var ValidationException = [
2263
2818
  -3,
2264
2819
  n0,
2265
2820
  _VE,
2266
- {
2267
- [_e]: _c,
2268
- [_hE]: 400,
2269
- },
2821
+ { [_e]: _c, [_hE]: 400 },
2270
2822
  [_m, _rea, _fL],
2271
2823
  [0, 0, () => ValidationExceptionFieldList],
2272
2824
  ];
@@ -2289,8 +2841,12 @@ export var AgentRuntimeEndpoints = [1, n0, _AREg, 0, [() => AgentRuntimeEndpoint
2289
2841
  export var AgentRuntimes = [1, n0, _ARg, 0, [() => AgentRuntime, 0]];
2290
2842
  export var AllowedAudienceList = 64 | 0;
2291
2843
  export var AllowedClientsList = 64 | 0;
2844
+ export var AllowedScopesType = 64 | 0;
2845
+ export var ApiGatewayToolFilters = [1, n0, _AGTFp, 0, () => ApiGatewayToolFilter];
2846
+ export var ApiGatewayToolOverrides = [1, n0, _AGTOp, 0, () => ApiGatewayToolOverride];
2292
2847
  export var ApiKeyCredentialProviders = [1, n0, _AKCP, 0, () => ApiKeyCredentialProviderItem];
2293
2848
  export var BrowserSummaries = [1, n0, _BSr, 0, [() => BrowserSummary, 0]];
2849
+ export var CategoricalScaleDefinitions = [1, n0, _CSDa, 0, () => CategoricalScaleDefinition];
2294
2850
  export var CodeInterpreterSummaries = [1, n0, _CISo, 0, [() => CodeInterpreterSummary, 0]];
2295
2851
  export var CredentialProviderConfigurations = [
2296
2852
  1,
@@ -2299,8 +2855,13 @@ export var CredentialProviderConfigurations = [
2299
2855
  0,
2300
2856
  [() => CredentialProviderConfiguration, 0],
2301
2857
  ];
2858
+ export var CustomClaimValidationsType = [1, n0, _CCVTu, 0, () => CustomClaimValidationType];
2302
2859
  export var DeleteMemoryStrategiesList = [1, n0, _DMSL, 0, () => DeleteMemoryStrategyInput];
2303
2860
  export var EntryPoints = 64 | 0;
2861
+ export var EvaluatorList = [1, n0, _EL, 0, () => EvaluatorReference];
2862
+ export var EvaluatorSummaryList = [1, n0, _ESL, 0, [() => EvaluatorSummary, 0]];
2863
+ export var FilterList = [1, n0, _FL, 0, () => Filter];
2864
+ export var Findings = [1, n0, _Fin, 0, () => Finding];
2304
2865
  export var GatewayInterceptionPoints = 64 | 0;
2305
2866
  export var GatewayInterceptorConfigurations = [
2306
2867
  1,
@@ -2311,19 +2872,37 @@ export var GatewayInterceptorConfigurations = [
2311
2872
  ];
2312
2873
  export var GatewaySummaries = [1, n0, _GSa, 0, [() => GatewaySummary, 0]];
2313
2874
  export var GatewayTargetList = [1, n0, _GTL, 0, [() => GatewayTarget, 0]];
2875
+ export var LogGroupNamesList = 64 | 0;
2876
+ export var MatchValueStringList = 64 | 0;
2314
2877
  export var McpSupportedVersions = 64 | 0;
2315
2878
  export var MemoryStrategyInputList = [1, n0, _MSIL, 0, [() => MemoryStrategyInput, 0]];
2316
2879
  export var MemoryStrategyList = [1, n0, _MSL, 0, [() => MemoryStrategy, 0]];
2317
2880
  export var MemorySummaryList = [1, n0, _MSLe, 0, () => MemorySummary];
2318
2881
  export var ModifyMemoryStrategiesList = [1, n0, _MMSL, 0, [() => ModifyMemoryStrategyInput, 0]];
2319
2882
  export var NamespacesList = 64 | 0;
2883
+ export var NonEmptyStringList = 64 | 0;
2884
+ export var NumericalScaleDefinitions = [1, n0, _NSDu, 0, () => NumericalScaleDefinition];
2320
2885
  export var Oauth2CredentialProviders = [1, n0, _OCP, 0, () => Oauth2CredentialProviderItem];
2321
2886
  export var OAuthScopes = 64 | 0;
2887
+ export var OnlineEvaluationConfigSummaryList = [
2888
+ 1,
2889
+ n0,
2890
+ _OECSL,
2891
+ 0,
2892
+ [() => OnlineEvaluationConfigSummary, 0],
2893
+ ];
2894
+ export var Policies = [1, n0, _Pol, 0, [() => Policy, 0]];
2895
+ export var PolicyEngines = [1, n0, _PEo, 0, [() => PolicyEngine, 0]];
2896
+ export var PolicyGenerationAssets = [1, n0, _PGAo, 0, () => PolicyGenerationAsset];
2897
+ export var PolicyGenerations = [1, n0, _PGo, 0, () => PolicyGeneration];
2898
+ export var PolicyStatusReasons = 64 | 0;
2322
2899
  export var RequestHeaderAllowlist = 64 | 0;
2323
2900
  export var RequiredProperties = 64 | 0;
2324
2901
  export var ResourceOauth2ReturnUrlListType = 64 | 0;
2325
2902
  export var ResponseListType = 64 | 0;
2903
+ export var RestApiMethods = 64 | 0;
2326
2904
  export var SecurityGroups = 64 | 0;
2905
+ export var ServiceNamesList = 64 | 0;
2327
2906
  export var StatusReasons = 64 | 0;
2328
2907
  export var Subnets = 64 | 0;
2329
2908
  export var TagKeyList = 64 | 0;
@@ -2344,7 +2923,7 @@ export var AgentRuntimeArtifact = [
2344
2923
  n0,
2345
2924
  _ARA,
2346
2925
  0,
2347
- [_cC, _cCo],
2926
+ [_cCo, _cCod],
2348
2927
  [() => ContainerConfiguration, () => CodeConfiguration],
2349
2928
  ];
2350
2929
  export var ApiSchemaConfiguration = [
@@ -2363,6 +2942,7 @@ export var AuthorizerConfiguration = [
2363
2942
  [_cJWTA],
2364
2943
  [() => CustomJWTAuthorizerConfiguration],
2365
2944
  ];
2945
+ export var ClaimMatchValueType = [3, n0, _CMVT, 0, [_mVS, _mVSL], [0, 64 | 0]];
2366
2946
  export var Code = [3, n0, _C, 0, [_s_], [() => S3Location]];
2367
2947
  export var ConsolidationConfiguration = [
2368
2948
  3,
@@ -2372,10 +2952,11 @@ export var ConsolidationConfiguration = [
2372
2952
  [_cCC],
2373
2953
  [[() => CustomConsolidationConfiguration, 0]],
2374
2954
  ];
2955
+ export var Content = [3, n0, _Co, 0, [_rTa], [0]];
2375
2956
  export var CredentialProvider = [
2376
2957
  3,
2377
2958
  n0,
2378
- _CP,
2959
+ _CPr,
2379
2960
  0,
2380
2961
  [_oCP, _aKCP],
2381
2962
  [[() => OAuthCredentialProvider, 0], () => GatewayApiKeyCredentialProvider],
@@ -2385,11 +2966,12 @@ export var CustomConfigurationInput = [
2385
2966
  n0,
2386
2967
  _CCI,
2387
2968
  0,
2388
- [_sO, _sOu, _uPO, _sMC],
2969
+ [_sO, _sOu, _uPO, _eO, _sMC],
2389
2970
  [
2390
2971
  [() => SemanticOverrideConfigurationInput, 0],
2391
2972
  [() => SummaryOverrideConfigurationInput, 0],
2392
2973
  [() => UserPreferenceOverrideConfigurationInput, 0],
2974
+ [() => EpisodicOverrideConfigurationInput, 0],
2393
2975
  () => SelfManagedConfigurationInput,
2394
2976
  ],
2395
2977
  ];
@@ -2398,11 +2980,12 @@ export var CustomConsolidationConfiguration = [
2398
2980
  n0,
2399
2981
  _CCC,
2400
2982
  0,
2401
- [_sCO, _sCOu, _uPCO],
2983
+ [_sCO, _sCOu, _uPCO, _eCO],
2402
2984
  [
2403
2985
  [() => SemanticConsolidationOverride, 0],
2404
2986
  [() => SummaryConsolidationOverride, 0],
2405
2987
  [() => UserPreferenceConsolidationOverride, 0],
2988
+ [() => EpisodicConsolidationOverride, 0],
2406
2989
  ],
2407
2990
  ];
2408
2991
  export var CustomConsolidationConfigurationInput = [
@@ -2410,11 +2993,12 @@ export var CustomConsolidationConfigurationInput = [
2410
2993
  n0,
2411
2994
  _CCCI,
2412
2995
  0,
2413
- [_sCO, _sCOu, _uPCO],
2996
+ [_sCO, _sCOu, _uPCO, _eCO],
2414
2997
  [
2415
2998
  [() => SemanticOverrideConsolidationConfigurationInput, 0],
2416
2999
  [() => SummaryOverrideConsolidationConfigurationInput, 0],
2417
3000
  [() => UserPreferenceOverrideConsolidationConfigurationInput, 0],
3001
+ [() => EpisodicOverrideConsolidationConfigurationInput, 0],
2418
3002
  ],
2419
3003
  ];
2420
3004
  export var CustomExtractionConfiguration = [
@@ -2422,10 +3006,11 @@ export var CustomExtractionConfiguration = [
2422
3006
  n0,
2423
3007
  _CEC,
2424
3008
  0,
2425
- [_sEO, _uPEO],
3009
+ [_sEO, _uPEO, _eEO],
2426
3010
  [
2427
3011
  [() => SemanticExtractionOverride, 0],
2428
3012
  [() => UserPreferenceExtractionOverride, 0],
3013
+ [() => EpisodicExtractionOverride, 0],
2429
3014
  ],
2430
3015
  ];
2431
3016
  export var CustomExtractionConfigurationInput = [
@@ -2433,20 +3018,42 @@ export var CustomExtractionConfigurationInput = [
2433
3018
  n0,
2434
3019
  _CECI,
2435
3020
  0,
2436
- [_sEO, _uPEO],
3021
+ [_sEO, _uPEO, _eEO],
2437
3022
  [
2438
3023
  [() => SemanticOverrideExtractionConfigurationInput, 0],
2439
3024
  [() => UserPreferenceOverrideExtractionConfigurationInput, 0],
3025
+ [() => EpisodicOverrideExtractionConfigurationInput, 0],
2440
3026
  ],
2441
3027
  ];
3028
+ export var CustomReflectionConfiguration = [
3029
+ 3,
3030
+ n0,
3031
+ _CRC,
3032
+ 0,
3033
+ [_eRO],
3034
+ [[() => EpisodicReflectionOverride, 0]],
3035
+ ];
3036
+ export var CustomReflectionConfigurationInput = [
3037
+ 3,
3038
+ n0,
3039
+ _CRCI,
3040
+ 0,
3041
+ [_eRO],
3042
+ [[() => EpisodicOverrideReflectionConfigurationInput, 0]],
3043
+ ];
3044
+ export var DataSourceConfig = [3, n0, _DSC, 0, [_cWL], [() => CloudWatchLogsInputConfig]];
3045
+ export var EvaluatorConfig = [3, n0, _EC, 0, [_lAAJ], [[() => LlmAsAJudgeEvaluatorConfig, 0]]];
3046
+ export var EvaluatorModelConfig = [3, n0, _EMC, 0, [_bEMC], [() => BedrockEvaluatorModelConfig]];
3047
+ export var EvaluatorReference = [3, n0, _ER, 0, [_eI], [0]];
2442
3048
  export var ExtractionConfiguration = [
2443
3049
  3,
2444
3050
  n0,
2445
- _EC,
3051
+ _ECx,
2446
3052
  0,
2447
3053
  [_cEC],
2448
3054
  [[() => CustomExtractionConfiguration, 0]],
2449
3055
  ];
3056
+ export var FilterValue = [3, n0, _FV, 0, [_sVt, _dV, _bV], [0, 1, 2]];
2450
3057
  export var GatewayProtocolConfiguration = [
2451
3058
  3,
2452
3059
  n0,
@@ -2458,9 +3065,9 @@ export var GatewayProtocolConfiguration = [
2458
3065
  export var InterceptorConfiguration = [
2459
3066
  3,
2460
3067
  n0,
2461
- _ICn,
3068
+ _ICnt,
2462
3069
  0,
2463
- [_l],
3070
+ [_la],
2464
3071
  [() => LambdaInterceptorConfiguration],
2465
3072
  ];
2466
3073
  export var McpTargetConfiguration = [
@@ -2468,12 +3075,13 @@ export var McpTargetConfiguration = [
2468
3075
  n0,
2469
3076
  _MTC,
2470
3077
  0,
2471
- [_oAS, _sM, _l, _mSc],
3078
+ [_oAS, _sM, _la, _mSc, _aG],
2472
3079
  [
2473
3080
  [() => ApiSchemaConfiguration, 0],
2474
3081
  [() => ApiSchemaConfiguration, 0],
2475
3082
  () => McpLambdaTargetConfiguration,
2476
3083
  () => McpServerTargetConfiguration,
3084
+ () => ApiGatewayTargetConfiguration,
2477
3085
  ],
2478
3086
  ];
2479
3087
  export var MemoryStrategyInput = [
@@ -2481,12 +3089,13 @@ export var MemoryStrategyInput = [
2481
3089
  n0,
2482
3090
  _MSI,
2483
3091
  0,
2484
- [_sMS, _sMSu, _uPMS, _cMS],
3092
+ [_sMS, _sMSu, _uPMS, _cMS, _eMS],
2485
3093
  [
2486
3094
  [() => SemanticMemoryStrategyInput, 0],
2487
3095
  [() => SummaryMemoryStrategyInput, 0],
2488
3096
  [() => UserPreferenceMemoryStrategyInput, 0],
2489
3097
  [() => CustomMemoryStrategyInput, 0],
3098
+ [() => EpisodicMemoryStrategyInput, 0],
2490
3099
  ],
2491
3100
  ];
2492
3101
  export var ModifyConsolidationConfiguration = [
@@ -2505,6 +3114,14 @@ export var ModifyExtractionConfiguration = [
2505
3114
  [_cEC],
2506
3115
  [[() => CustomExtractionConfigurationInput, 0]],
2507
3116
  ];
3117
+ export var ModifyReflectionConfiguration = [
3118
+ 3,
3119
+ n0,
3120
+ _MRC,
3121
+ 0,
3122
+ [_eRC, _cRC],
3123
+ [() => EpisodicReflectionConfigurationInput, [() => CustomReflectionConfigurationInput, 0]],
3124
+ ];
2508
3125
  export var Oauth2Discovery = [
2509
3126
  3,
2510
3127
  n0,
@@ -2549,7 +3166,25 @@ export var Oauth2ProviderConfigOutput = [
2549
3166
  () => IncludedOauth2ProviderConfigOutput,
2550
3167
  ],
2551
3168
  ];
3169
+ export var PolicyDefinition = [3, n0, _PD, 0, [_ce], [() => CedarPolicy]];
3170
+ export var RatingScale = [
3171
+ 3,
3172
+ n0,
3173
+ _RS,
3174
+ 0,
3175
+ [_nu, _ca],
3176
+ [() => NumericalScaleDefinitions, () => CategoricalScaleDefinitions],
3177
+ ];
3178
+ export var ReflectionConfiguration = [
3179
+ 3,
3180
+ n0,
3181
+ _RCe,
3182
+ 0,
3183
+ [_cRC, _eRC],
3184
+ [[() => CustomReflectionConfiguration, 0], () => EpisodicReflectionConfiguration],
3185
+ ];
2552
3186
  export var RequestHeaderConfiguration = [3, n0, _RHC, 0, [_rHA], [64 | 0]];
3187
+ export var Resource = [3, n0, _Re, 0, [_a], [0]];
2553
3188
  export var TargetConfiguration = [3, n0, _TC, 0, [_mc], [[() => McpTargetConfiguration, 0]]];
2554
3189
  export var ToolSchema = [
2555
3190
  3,
@@ -2579,9 +3214,7 @@ export var CreateAgentRuntime = [
2579
3214
  9,
2580
3215
  n0,
2581
3216
  _CAR,
2582
- {
2583
- [_h]: ["PUT", "/runtimes/", 202],
2584
- },
3217
+ { [_h]: ["PUT", "/runtimes/", 202] },
2585
3218
  () => CreateAgentRuntimeRequest,
2586
3219
  () => CreateAgentRuntimeResponse,
2587
3220
  ];
@@ -2589,9 +3222,7 @@ export var CreateAgentRuntimeEndpoint = [
2589
3222
  9,
2590
3223
  n0,
2591
3224
  _CARE,
2592
- {
2593
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 202],
2594
- },
3225
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 202] },
2595
3226
  () => CreateAgentRuntimeEndpointRequest,
2596
3227
  () => CreateAgentRuntimeEndpointResponse,
2597
3228
  ];
@@ -2599,9 +3230,7 @@ export var CreateApiKeyCredentialProvider = [
2599
3230
  9,
2600
3231
  n0,
2601
3232
  _CAKCP,
2602
- {
2603
- [_h]: ["POST", "/identities/CreateApiKeyCredentialProvider", 201],
2604
- },
3233
+ { [_h]: ["POST", "/identities/CreateApiKeyCredentialProvider", 201] },
2605
3234
  () => CreateApiKeyCredentialProviderRequest,
2606
3235
  () => CreateApiKeyCredentialProviderResponse,
2607
3236
  ];
@@ -2609,9 +3238,7 @@ export var CreateBrowser = [
2609
3238
  9,
2610
3239
  n0,
2611
3240
  _CB,
2612
- {
2613
- [_h]: ["PUT", "/browsers", 202],
2614
- },
3241
+ { [_h]: ["PUT", "/browsers", 202] },
2615
3242
  () => CreateBrowserRequest,
2616
3243
  () => CreateBrowserResponse,
2617
3244
  ];
@@ -2619,19 +3246,23 @@ export var CreateCodeInterpreter = [
2619
3246
  9,
2620
3247
  n0,
2621
3248
  _CCIr,
2622
- {
2623
- [_h]: ["PUT", "/code-interpreters", 202],
2624
- },
3249
+ { [_h]: ["PUT", "/code-interpreters", 202] },
2625
3250
  () => CreateCodeInterpreterRequest,
2626
3251
  () => CreateCodeInterpreterResponse,
2627
3252
  ];
3253
+ export var CreateEvaluator = [
3254
+ 9,
3255
+ n0,
3256
+ _CEr,
3257
+ { [_h]: ["POST", "/evaluators/create", 202] },
3258
+ () => CreateEvaluatorRequest,
3259
+ () => CreateEvaluatorResponse,
3260
+ ];
2628
3261
  export var CreateGateway = [
2629
3262
  9,
2630
3263
  n0,
2631
3264
  _CG,
2632
- {
2633
- [_h]: ["POST", "/gateways/", 202],
2634
- },
3265
+ { [_h]: ["POST", "/gateways/", 202] },
2635
3266
  () => CreateGatewayRequest,
2636
3267
  () => CreateGatewayResponse,
2637
3268
  ];
@@ -2639,9 +3270,7 @@ export var CreateGatewayTarget = [
2639
3270
  9,
2640
3271
  n0,
2641
3272
  _CGT,
2642
- {
2643
- [_h]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202],
2644
- },
3273
+ { [_h]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202] },
2645
3274
  () => CreateGatewayTargetRequest,
2646
3275
  () => CreateGatewayTargetResponse,
2647
3276
  ];
@@ -2649,9 +3278,7 @@ export var CreateMemory = [
2649
3278
  9,
2650
3279
  n0,
2651
3280
  _CM,
2652
- {
2653
- [_h]: ["POST", "/memories/create", 202],
2654
- },
3281
+ { [_h]: ["POST", "/memories/create", 202] },
2655
3282
  () => CreateMemoryInput,
2656
3283
  () => CreateMemoryOutput,
2657
3284
  ];
@@ -2659,19 +3286,39 @@ export var CreateOauth2CredentialProvider = [
2659
3286
  9,
2660
3287
  n0,
2661
3288
  _COCP,
2662
- {
2663
- [_h]: ["POST", "/identities/CreateOauth2CredentialProvider", 201],
2664
- },
3289
+ { [_h]: ["POST", "/identities/CreateOauth2CredentialProvider", 201] },
2665
3290
  () => CreateOauth2CredentialProviderRequest,
2666
3291
  () => CreateOauth2CredentialProviderResponse,
2667
3292
  ];
3293
+ export var CreateOnlineEvaluationConfig = [
3294
+ 9,
3295
+ n0,
3296
+ _COEC,
3297
+ { [_h]: ["POST", "/online-evaluation-configs/create", 202] },
3298
+ () => CreateOnlineEvaluationConfigRequest,
3299
+ () => CreateOnlineEvaluationConfigResponse,
3300
+ ];
3301
+ export var CreatePolicy = [
3302
+ 9,
3303
+ n0,
3304
+ _CPre,
3305
+ { [_h]: ["POST", "/policy-engines/{policyEngineId}/policies", 202] },
3306
+ () => CreatePolicyRequest,
3307
+ () => CreatePolicyResponse,
3308
+ ];
3309
+ export var CreatePolicyEngine = [
3310
+ 9,
3311
+ n0,
3312
+ _CPE,
3313
+ { [_h]: ["POST", "/policy-engines", 202] },
3314
+ () => CreatePolicyEngineRequest,
3315
+ () => CreatePolicyEngineResponse,
3316
+ ];
2668
3317
  export var CreateWorkloadIdentity = [
2669
3318
  9,
2670
3319
  n0,
2671
3320
  _CWI,
2672
- {
2673
- [_h]: ["POST", "/identities/CreateWorkloadIdentity", 201],
2674
- },
3321
+ { [_h]: ["POST", "/identities/CreateWorkloadIdentity", 201] },
2675
3322
  () => CreateWorkloadIdentityRequest,
2676
3323
  () => CreateWorkloadIdentityResponse,
2677
3324
  ];
@@ -2679,9 +3326,7 @@ export var DeleteAgentRuntime = [
2679
3326
  9,
2680
3327
  n0,
2681
3328
  _DAR,
2682
- {
2683
- [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/", 202],
2684
- },
3329
+ { [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/", 202] },
2685
3330
  () => DeleteAgentRuntimeRequest,
2686
3331
  () => DeleteAgentRuntimeResponse,
2687
3332
  ];
@@ -2689,9 +3334,7 @@ export var DeleteAgentRuntimeEndpoint = [
2689
3334
  9,
2690
3335
  n0,
2691
3336
  _DARE,
2692
- {
2693
- [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202],
2694
- },
3337
+ { [_h]: ["DELETE", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202] },
2695
3338
  () => DeleteAgentRuntimeEndpointRequest,
2696
3339
  () => DeleteAgentRuntimeEndpointResponse,
2697
3340
  ];
@@ -2699,9 +3342,7 @@ export var DeleteApiKeyCredentialProvider = [
2699
3342
  9,
2700
3343
  n0,
2701
3344
  _DAKCP,
2702
- {
2703
- [_h]: ["POST", "/identities/DeleteApiKeyCredentialProvider", 204],
2704
- },
3345
+ { [_h]: ["POST", "/identities/DeleteApiKeyCredentialProvider", 204] },
2705
3346
  () => DeleteApiKeyCredentialProviderRequest,
2706
3347
  () => DeleteApiKeyCredentialProviderResponse,
2707
3348
  ];
@@ -2709,9 +3350,7 @@ export var DeleteBrowser = [
2709
3350
  9,
2710
3351
  n0,
2711
3352
  _DB,
2712
- {
2713
- [_h]: ["DELETE", "/browsers/{browserId}", 202],
2714
- },
3353
+ { [_h]: ["DELETE", "/browsers/{browserId}", 202] },
2715
3354
  () => DeleteBrowserRequest,
2716
3355
  () => DeleteBrowserResponse,
2717
3356
  ];
@@ -2719,19 +3358,23 @@ export var DeleteCodeInterpreter = [
2719
3358
  9,
2720
3359
  n0,
2721
3360
  _DCI,
2722
- {
2723
- [_h]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202],
2724
- },
3361
+ { [_h]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] },
2725
3362
  () => DeleteCodeInterpreterRequest,
2726
3363
  () => DeleteCodeInterpreterResponse,
2727
3364
  ];
3365
+ export var DeleteEvaluator = [
3366
+ 9,
3367
+ n0,
3368
+ _DE,
3369
+ { [_h]: ["DELETE", "/evaluators/{evaluatorId}", 202] },
3370
+ () => DeleteEvaluatorRequest,
3371
+ () => DeleteEvaluatorResponse,
3372
+ ];
2728
3373
  export var DeleteGateway = [
2729
3374
  9,
2730
3375
  n0,
2731
3376
  _DG,
2732
- {
2733
- [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202],
2734
- },
3377
+ { [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] },
2735
3378
  () => DeleteGatewayRequest,
2736
3379
  () => DeleteGatewayResponse,
2737
3380
  ];
@@ -2739,9 +3382,7 @@ export var DeleteGatewayTarget = [
2739
3382
  9,
2740
3383
  n0,
2741
3384
  _DGT,
2742
- {
2743
- [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202],
2744
- },
3385
+ { [_h]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] },
2745
3386
  () => DeleteGatewayTargetRequest,
2746
3387
  () => DeleteGatewayTargetResponse,
2747
3388
  ];
@@ -2749,9 +3390,7 @@ export var DeleteMemory = [
2749
3390
  9,
2750
3391
  n0,
2751
3392
  _DM,
2752
- {
2753
- [_h]: ["DELETE", "/memories/{memoryId}/delete", 202],
2754
- },
3393
+ { [_h]: ["DELETE", "/memories/{memoryId}/delete", 202] },
2755
3394
  () => DeleteMemoryInput,
2756
3395
  () => DeleteMemoryOutput,
2757
3396
  ];
@@ -2759,19 +3398,47 @@ export var DeleteOauth2CredentialProvider = [
2759
3398
  9,
2760
3399
  n0,
2761
3400
  _DOCP,
2762
- {
2763
- [_h]: ["POST", "/identities/DeleteOauth2CredentialProvider", 204],
2764
- },
3401
+ { [_h]: ["POST", "/identities/DeleteOauth2CredentialProvider", 204] },
2765
3402
  () => DeleteOauth2CredentialProviderRequest,
2766
3403
  () => DeleteOauth2CredentialProviderResponse,
2767
3404
  ];
3405
+ export var DeleteOnlineEvaluationConfig = [
3406
+ 9,
3407
+ n0,
3408
+ _DOEC,
3409
+ { [_h]: ["DELETE", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] },
3410
+ () => DeleteOnlineEvaluationConfigRequest,
3411
+ () => DeleteOnlineEvaluationConfigResponse,
3412
+ ];
3413
+ export var DeletePolicy = [
3414
+ 9,
3415
+ n0,
3416
+ _DP,
3417
+ { [_h]: ["DELETE", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] },
3418
+ () => DeletePolicyRequest,
3419
+ () => DeletePolicyResponse,
3420
+ ];
3421
+ export var DeletePolicyEngine = [
3422
+ 9,
3423
+ n0,
3424
+ _DPE,
3425
+ { [_h]: ["DELETE", "/policy-engines/{policyEngineId}", 202] },
3426
+ () => DeletePolicyEngineRequest,
3427
+ () => DeletePolicyEngineResponse,
3428
+ ];
3429
+ export var DeleteResourcePolicy = [
3430
+ 9,
3431
+ n0,
3432
+ _DRP,
3433
+ { [_h]: ["DELETE", "/resourcepolicy/{resourceArn}", 204] },
3434
+ () => DeleteResourcePolicyRequest,
3435
+ () => DeleteResourcePolicyResponse,
3436
+ ];
2768
3437
  export var DeleteWorkloadIdentity = [
2769
3438
  9,
2770
3439
  n0,
2771
3440
  _DWI,
2772
- {
2773
- [_h]: ["POST", "/identities/DeleteWorkloadIdentity", 204],
2774
- },
3441
+ { [_h]: ["POST", "/identities/DeleteWorkloadIdentity", 204] },
2775
3442
  () => DeleteWorkloadIdentityRequest,
2776
3443
  () => DeleteWorkloadIdentityResponse,
2777
3444
  ];
@@ -2779,9 +3446,7 @@ export var GetAgentRuntime = [
2779
3446
  9,
2780
3447
  n0,
2781
3448
  _GAR,
2782
- {
2783
- [_h]: ["GET", "/runtimes/{agentRuntimeId}/", 200],
2784
- },
3449
+ { [_h]: ["GET", "/runtimes/{agentRuntimeId}/", 200] },
2785
3450
  () => GetAgentRuntimeRequest,
2786
3451
  () => GetAgentRuntimeResponse,
2787
3452
  ];
@@ -2789,9 +3454,7 @@ export var GetAgentRuntimeEndpoint = [
2789
3454
  9,
2790
3455
  n0,
2791
3456
  _GARE,
2792
- {
2793
- [_h]: ["GET", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 200],
2794
- },
3457
+ { [_h]: ["GET", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 200] },
2795
3458
  () => GetAgentRuntimeEndpointRequest,
2796
3459
  () => GetAgentRuntimeEndpointResponse,
2797
3460
  ];
@@ -2799,9 +3462,7 @@ export var GetApiKeyCredentialProvider = [
2799
3462
  9,
2800
3463
  n0,
2801
3464
  _GAKCPe,
2802
- {
2803
- [_h]: ["POST", "/identities/GetApiKeyCredentialProvider", 200],
2804
- },
3465
+ { [_h]: ["POST", "/identities/GetApiKeyCredentialProvider", 200] },
2805
3466
  () => GetApiKeyCredentialProviderRequest,
2806
3467
  () => GetApiKeyCredentialProviderResponse,
2807
3468
  ];
@@ -2809,9 +3470,7 @@ export var GetBrowser = [
2809
3470
  9,
2810
3471
  n0,
2811
3472
  _GB,
2812
- {
2813
- [_h]: ["GET", "/browsers/{browserId}", 200],
2814
- },
3473
+ { [_h]: ["GET", "/browsers/{browserId}", 200] },
2815
3474
  () => GetBrowserRequest,
2816
3475
  () => GetBrowserResponse,
2817
3476
  ];
@@ -2819,19 +3478,23 @@ export var GetCodeInterpreter = [
2819
3478
  9,
2820
3479
  n0,
2821
3480
  _GCI,
2822
- {
2823
- [_h]: ["GET", "/code-interpreters/{codeInterpreterId}", 200],
2824
- },
3481
+ { [_h]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] },
2825
3482
  () => GetCodeInterpreterRequest,
2826
3483
  () => GetCodeInterpreterResponse,
2827
3484
  ];
3485
+ export var GetEvaluator = [
3486
+ 9,
3487
+ n0,
3488
+ _GE,
3489
+ { [_h]: ["GET", "/evaluators/{evaluatorId}", 200] },
3490
+ () => GetEvaluatorRequest,
3491
+ () => GetEvaluatorResponse,
3492
+ ];
2828
3493
  export var GetGateway = [
2829
3494
  9,
2830
3495
  n0,
2831
3496
  _GG,
2832
- {
2833
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/", 200],
2834
- },
3497
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/", 200] },
2835
3498
  () => GetGatewayRequest,
2836
3499
  () => GetGatewayResponse,
2837
3500
  ];
@@ -2839,9 +3502,7 @@ export var GetGatewayTarget = [
2839
3502
  9,
2840
3503
  n0,
2841
3504
  _GGT,
2842
- {
2843
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200],
2844
- },
3505
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200] },
2845
3506
  () => GetGatewayTargetRequest,
2846
3507
  () => GetGatewayTargetResponse,
2847
3508
  ];
@@ -2849,9 +3510,7 @@ export var GetMemory = [
2849
3510
  9,
2850
3511
  n0,
2851
3512
  _GM,
2852
- {
2853
- [_h]: ["GET", "/memories/{memoryId}/details", 200],
2854
- },
3513
+ { [_h]: ["GET", "/memories/{memoryId}/details", 200] },
2855
3514
  () => GetMemoryInput,
2856
3515
  () => GetMemoryOutput,
2857
3516
  ];
@@ -2859,19 +3518,55 @@ export var GetOauth2CredentialProvider = [
2859
3518
  9,
2860
3519
  n0,
2861
3520
  _GOCP,
2862
- {
2863
- [_h]: ["POST", "/identities/GetOauth2CredentialProvider", 200],
2864
- },
3521
+ { [_h]: ["POST", "/identities/GetOauth2CredentialProvider", 200] },
2865
3522
  () => GetOauth2CredentialProviderRequest,
2866
3523
  () => GetOauth2CredentialProviderResponse,
2867
3524
  ];
3525
+ export var GetOnlineEvaluationConfig = [
3526
+ 9,
3527
+ n0,
3528
+ _GOEC,
3529
+ { [_h]: ["GET", "/online-evaluation-configs/{onlineEvaluationConfigId}", 200] },
3530
+ () => GetOnlineEvaluationConfigRequest,
3531
+ () => GetOnlineEvaluationConfigResponse,
3532
+ ];
3533
+ export var GetPolicy = [
3534
+ 9,
3535
+ n0,
3536
+ _GP,
3537
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policies/{policyId}", 200] },
3538
+ () => GetPolicyRequest,
3539
+ () => GetPolicyResponse,
3540
+ ];
3541
+ export var GetPolicyEngine = [
3542
+ 9,
3543
+ n0,
3544
+ _GPE,
3545
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}", 200] },
3546
+ () => GetPolicyEngineRequest,
3547
+ () => GetPolicyEngineResponse,
3548
+ ];
3549
+ export var GetPolicyGeneration = [
3550
+ 9,
3551
+ n0,
3552
+ _GPG,
3553
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200] },
3554
+ () => GetPolicyGenerationRequest,
3555
+ () => GetPolicyGenerationResponse,
3556
+ ];
3557
+ export var GetResourcePolicy = [
3558
+ 9,
3559
+ n0,
3560
+ _GRP,
3561
+ { [_h]: ["GET", "/resourcepolicy/{resourceArn}", 200] },
3562
+ () => GetResourcePolicyRequest,
3563
+ () => GetResourcePolicyResponse,
3564
+ ];
2868
3565
  export var GetTokenVault = [
2869
3566
  9,
2870
3567
  n0,
2871
3568
  _GTV,
2872
- {
2873
- [_h]: ["POST", "/identities/get-token-vault", 200],
2874
- },
3569
+ { [_h]: ["POST", "/identities/get-token-vault", 200] },
2875
3570
  () => GetTokenVaultRequest,
2876
3571
  () => GetTokenVaultResponse,
2877
3572
  ];
@@ -2879,9 +3574,7 @@ export var GetWorkloadIdentity = [
2879
3574
  9,
2880
3575
  n0,
2881
3576
  _GWI,
2882
- {
2883
- [_h]: ["POST", "/identities/GetWorkloadIdentity", 200],
2884
- },
3577
+ { [_h]: ["POST", "/identities/GetWorkloadIdentity", 200] },
2885
3578
  () => GetWorkloadIdentityRequest,
2886
3579
  () => GetWorkloadIdentityResponse,
2887
3580
  ];
@@ -2889,9 +3582,7 @@ export var ListAgentRuntimeEndpoints = [
2889
3582
  9,
2890
3583
  n0,
2891
3584
  _LARE,
2892
- {
2893
- [_h]: ["POST", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 200],
2894
- },
3585
+ { [_h]: ["POST", "/runtimes/{agentRuntimeId}/runtime-endpoints/", 200] },
2895
3586
  () => ListAgentRuntimeEndpointsRequest,
2896
3587
  () => ListAgentRuntimeEndpointsResponse,
2897
3588
  ];
@@ -2899,9 +3590,7 @@ export var ListAgentRuntimes = [
2899
3590
  9,
2900
3591
  n0,
2901
3592
  _LAR,
2902
- {
2903
- [_h]: ["POST", "/runtimes/", 200],
2904
- },
3593
+ { [_h]: ["POST", "/runtimes/", 200] },
2905
3594
  () => ListAgentRuntimesRequest,
2906
3595
  () => ListAgentRuntimesResponse,
2907
3596
  ];
@@ -2909,9 +3598,7 @@ export var ListAgentRuntimeVersions = [
2909
3598
  9,
2910
3599
  n0,
2911
3600
  _LARV,
2912
- {
2913
- [_h]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200],
2914
- },
3601
+ { [_h]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200] },
2915
3602
  () => ListAgentRuntimeVersionsRequest,
2916
3603
  () => ListAgentRuntimeVersionsResponse,
2917
3604
  ];
@@ -2919,9 +3606,7 @@ export var ListApiKeyCredentialProviders = [
2919
3606
  9,
2920
3607
  n0,
2921
3608
  _LAKCP,
2922
- {
2923
- [_h]: ["POST", "/identities/ListApiKeyCredentialProviders", 200],
2924
- },
3609
+ { [_h]: ["POST", "/identities/ListApiKeyCredentialProviders", 200] },
2925
3610
  () => ListApiKeyCredentialProvidersRequest,
2926
3611
  () => ListApiKeyCredentialProvidersResponse,
2927
3612
  ];
@@ -2929,9 +3614,7 @@ export var ListBrowsers = [
2929
3614
  9,
2930
3615
  n0,
2931
3616
  _LB,
2932
- {
2933
- [_h]: ["POST", "/browsers", 200],
2934
- },
3617
+ { [_h]: ["POST", "/browsers", 200] },
2935
3618
  () => ListBrowsersRequest,
2936
3619
  () => ListBrowsersResponse,
2937
3620
  ];
@@ -2939,19 +3622,23 @@ export var ListCodeInterpreters = [
2939
3622
  9,
2940
3623
  n0,
2941
3624
  _LCI,
2942
- {
2943
- [_h]: ["POST", "/code-interpreters", 200],
2944
- },
3625
+ { [_h]: ["POST", "/code-interpreters", 200] },
2945
3626
  () => ListCodeInterpretersRequest,
2946
3627
  () => ListCodeInterpretersResponse,
2947
3628
  ];
3629
+ export var ListEvaluators = [
3630
+ 9,
3631
+ n0,
3632
+ _LE,
3633
+ { [_h]: ["POST", "/evaluators", 200] },
3634
+ () => ListEvaluatorsRequest,
3635
+ () => ListEvaluatorsResponse,
3636
+ ];
2948
3637
  export var ListGateways = [
2949
3638
  9,
2950
3639
  n0,
2951
3640
  _LG,
2952
- {
2953
- [_h]: ["GET", "/gateways/", 200],
2954
- },
3641
+ { [_h]: ["GET", "/gateways/", 200] },
2955
3642
  () => ListGatewaysRequest,
2956
3643
  () => ListGatewaysResponse,
2957
3644
  ];
@@ -2959,9 +3646,7 @@ export var ListGatewayTargets = [
2959
3646
  9,
2960
3647
  n0,
2961
3648
  _LGT,
2962
- {
2963
- [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/", 200],
2964
- },
3649
+ { [_h]: ["GET", "/gateways/{gatewayIdentifier}/targets/", 200] },
2965
3650
  () => ListGatewayTargetsRequest,
2966
3651
  () => ListGatewayTargetsResponse,
2967
3652
  ];
@@ -2969,9 +3654,7 @@ export var ListMemories = [
2969
3654
  9,
2970
3655
  n0,
2971
3656
  _LM,
2972
- {
2973
- [_h]: ["POST", "/memories/", 200],
2974
- },
3657
+ { [_h]: ["POST", "/memories/", 200] },
2975
3658
  () => ListMemoriesInput,
2976
3659
  () => ListMemoriesOutput,
2977
3660
  ];
@@ -2979,19 +3662,55 @@ export var ListOauth2CredentialProviders = [
2979
3662
  9,
2980
3663
  n0,
2981
3664
  _LOCP,
2982
- {
2983
- [_h]: ["POST", "/identities/ListOauth2CredentialProviders", 200],
2984
- },
3665
+ { [_h]: ["POST", "/identities/ListOauth2CredentialProviders", 200] },
2985
3666
  () => ListOauth2CredentialProvidersRequest,
2986
3667
  () => ListOauth2CredentialProvidersResponse,
2987
3668
  ];
3669
+ export var ListOnlineEvaluationConfigs = [
3670
+ 9,
3671
+ n0,
3672
+ _LOEC,
3673
+ { [_h]: ["POST", "/online-evaluation-configs", 200] },
3674
+ () => ListOnlineEvaluationConfigsRequest,
3675
+ () => ListOnlineEvaluationConfigsResponse,
3676
+ ];
3677
+ export var ListPolicies = [
3678
+ 9,
3679
+ n0,
3680
+ _LP,
3681
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policies", 200] },
3682
+ () => ListPoliciesRequest,
3683
+ () => ListPoliciesResponse,
3684
+ ];
3685
+ export var ListPolicyEngines = [
3686
+ 9,
3687
+ n0,
3688
+ _LPE,
3689
+ { [_h]: ["GET", "/policy-engines", 200] },
3690
+ () => ListPolicyEnginesRequest,
3691
+ () => ListPolicyEnginesResponse,
3692
+ ];
3693
+ export var ListPolicyGenerationAssets = [
3694
+ 9,
3695
+ n0,
3696
+ _LPGA,
3697
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}/assets", 200] },
3698
+ () => ListPolicyGenerationAssetsRequest,
3699
+ () => ListPolicyGenerationAssetsResponse,
3700
+ ];
3701
+ export var ListPolicyGenerations = [
3702
+ 9,
3703
+ n0,
3704
+ _LPG,
3705
+ { [_h]: ["GET", "/policy-engines/{policyEngineId}/policy-generations", 200] },
3706
+ () => ListPolicyGenerationsRequest,
3707
+ () => ListPolicyGenerationsResponse,
3708
+ ];
2988
3709
  export var ListTagsForResource = [
2989
3710
  9,
2990
3711
  n0,
2991
3712
  _LTFR,
2992
- {
2993
- [_h]: ["GET", "/tags/{resourceArn}", 200],
2994
- },
3713
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] },
2995
3714
  () => ListTagsForResourceRequest,
2996
3715
  () => ListTagsForResourceResponse,
2997
3716
  ];
@@ -2999,29 +3718,39 @@ export var ListWorkloadIdentities = [
2999
3718
  9,
3000
3719
  n0,
3001
3720
  _LWI,
3002
- {
3003
- [_h]: ["POST", "/identities/ListWorkloadIdentities", 200],
3004
- },
3721
+ { [_h]: ["POST", "/identities/ListWorkloadIdentities", 200] },
3005
3722
  () => ListWorkloadIdentitiesRequest,
3006
3723
  () => ListWorkloadIdentitiesResponse,
3007
3724
  ];
3725
+ export var PutResourcePolicy = [
3726
+ 9,
3727
+ n0,
3728
+ _PRP,
3729
+ { [_h]: ["PUT", "/resourcepolicy/{resourceArn}", 201] },
3730
+ () => PutResourcePolicyRequest,
3731
+ () => PutResourcePolicyResponse,
3732
+ ];
3008
3733
  export var SetTokenVaultCMK = [
3009
3734
  9,
3010
3735
  n0,
3011
3736
  _STVCMK,
3012
- {
3013
- [_h]: ["POST", "/identities/set-token-vault-cmk", 200],
3014
- },
3737
+ { [_h]: ["POST", "/identities/set-token-vault-cmk", 200] },
3015
3738
  () => SetTokenVaultCMKRequest,
3016
3739
  () => SetTokenVaultCMKResponse,
3017
3740
  ];
3741
+ export var StartPolicyGeneration = [
3742
+ 9,
3743
+ n0,
3744
+ _SPG,
3745
+ { [_h]: ["POST", "/policy-engines/{policyEngineId}/policy-generations", 202] },
3746
+ () => StartPolicyGenerationRequest,
3747
+ () => StartPolicyGenerationResponse,
3748
+ ];
3018
3749
  export var SynchronizeGatewayTargets = [
3019
3750
  9,
3020
3751
  n0,
3021
3752
  _SGT,
3022
- {
3023
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/synchronizeTargets", 202],
3024
- },
3753
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/synchronizeTargets", 202] },
3025
3754
  () => SynchronizeGatewayTargetsRequest,
3026
3755
  () => SynchronizeGatewayTargetsResponse,
3027
3756
  ];
@@ -3029,9 +3758,7 @@ export var TagResource = [
3029
3758
  9,
3030
3759
  n0,
3031
3760
  _TR,
3032
- {
3033
- [_h]: ["POST", "/tags/{resourceArn}", 204],
3034
- },
3761
+ { [_h]: ["POST", "/tags/{resourceArn}", 204] },
3035
3762
  () => TagResourceRequest,
3036
3763
  () => TagResourceResponse,
3037
3764
  ];
@@ -3039,9 +3766,7 @@ export var UntagResource = [
3039
3766
  9,
3040
3767
  n0,
3041
3768
  _UR,
3042
- {
3043
- [_h]: ["DELETE", "/tags/{resourceArn}", 204],
3044
- },
3769
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 204] },
3045
3770
  () => UntagResourceRequest,
3046
3771
  () => UntagResourceResponse,
3047
3772
  ];
@@ -3049,9 +3774,7 @@ export var UpdateAgentRuntime = [
3049
3774
  9,
3050
3775
  n0,
3051
3776
  _UAR,
3052
- {
3053
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/", 202],
3054
- },
3777
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/", 202] },
3055
3778
  () => UpdateAgentRuntimeRequest,
3056
3779
  () => UpdateAgentRuntimeResponse,
3057
3780
  ];
@@ -3059,9 +3782,7 @@ export var UpdateAgentRuntimeEndpoint = [
3059
3782
  9,
3060
3783
  n0,
3061
3784
  _UARE,
3062
- {
3063
- [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202],
3064
- },
3785
+ { [_h]: ["PUT", "/runtimes/{agentRuntimeId}/runtime-endpoints/{endpointName}/", 202] },
3065
3786
  () => UpdateAgentRuntimeEndpointRequest,
3066
3787
  () => UpdateAgentRuntimeEndpointResponse,
3067
3788
  ];
@@ -3069,19 +3790,23 @@ export var UpdateApiKeyCredentialProvider = [
3069
3790
  9,
3070
3791
  n0,
3071
3792
  _UAKCP,
3072
- {
3073
- [_h]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200],
3074
- },
3793
+ { [_h]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] },
3075
3794
  () => UpdateApiKeyCredentialProviderRequest,
3076
3795
  () => UpdateApiKeyCredentialProviderResponse,
3077
3796
  ];
3797
+ export var UpdateEvaluator = [
3798
+ 9,
3799
+ n0,
3800
+ _UEp,
3801
+ { [_h]: ["PUT", "/evaluators/{evaluatorId}", 202] },
3802
+ () => UpdateEvaluatorRequest,
3803
+ () => UpdateEvaluatorResponse,
3804
+ ];
3078
3805
  export var UpdateGateway = [
3079
3806
  9,
3080
3807
  n0,
3081
3808
  _UG,
3082
- {
3083
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/", 202],
3084
- },
3809
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] },
3085
3810
  () => UpdateGatewayRequest,
3086
3811
  () => UpdateGatewayResponse,
3087
3812
  ];
@@ -3089,9 +3814,7 @@ export var UpdateGatewayTarget = [
3089
3814
  9,
3090
3815
  n0,
3091
3816
  _UGT,
3092
- {
3093
- [_h]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202],
3094
- },
3817
+ { [_h]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] },
3095
3818
  () => UpdateGatewayTargetRequest,
3096
3819
  () => UpdateGatewayTargetResponse,
3097
3820
  ];
@@ -3099,9 +3822,7 @@ export var UpdateMemory = [
3099
3822
  9,
3100
3823
  n0,
3101
3824
  _UM,
3102
- {
3103
- [_h]: ["PUT", "/memories/{memoryId}/update", 202],
3104
- },
3825
+ { [_h]: ["PUT", "/memories/{memoryId}/update", 202] },
3105
3826
  () => UpdateMemoryInput,
3106
3827
  () => UpdateMemoryOutput,
3107
3828
  ];
@@ -3109,19 +3830,39 @@ export var UpdateOauth2CredentialProvider = [
3109
3830
  9,
3110
3831
  n0,
3111
3832
  _UOCP,
3112
- {
3113
- [_h]: ["POST", "/identities/UpdateOauth2CredentialProvider", 200],
3114
- },
3833
+ { [_h]: ["POST", "/identities/UpdateOauth2CredentialProvider", 200] },
3115
3834
  () => UpdateOauth2CredentialProviderRequest,
3116
3835
  () => UpdateOauth2CredentialProviderResponse,
3117
3836
  ];
3837
+ export var UpdateOnlineEvaluationConfig = [
3838
+ 9,
3839
+ n0,
3840
+ _UOEC,
3841
+ { [_h]: ["PUT", "/online-evaluation-configs/{onlineEvaluationConfigId}", 202] },
3842
+ () => UpdateOnlineEvaluationConfigRequest,
3843
+ () => UpdateOnlineEvaluationConfigResponse,
3844
+ ];
3845
+ export var UpdatePolicy = [
3846
+ 9,
3847
+ n0,
3848
+ _UP,
3849
+ { [_h]: ["PUT", "/policy-engines/{policyEngineId}/policies/{policyId}", 202] },
3850
+ () => UpdatePolicyRequest,
3851
+ () => UpdatePolicyResponse,
3852
+ ];
3853
+ export var UpdatePolicyEngine = [
3854
+ 9,
3855
+ n0,
3856
+ _UPE,
3857
+ { [_h]: ["PUT", "/policy-engines/{policyEngineId}", 202] },
3858
+ () => UpdatePolicyEngineRequest,
3859
+ () => UpdatePolicyEngineResponse,
3860
+ ];
3118
3861
  export var UpdateWorkloadIdentity = [
3119
3862
  9,
3120
3863
  n0,
3121
3864
  _UWI,
3122
- {
3123
- [_h]: ["POST", "/identities/UpdateWorkloadIdentity", 200],
3124
- },
3865
+ { [_h]: ["POST", "/identities/UpdateWorkloadIdentity", 200] },
3125
3866
  () => UpdateWorkloadIdentityRequest,
3126
3867
  () => UpdateWorkloadIdentityResponse,
3127
3868
  ];