@aws-sdk/client-bedrock-agentcore-control 3.1037.0 → 3.1039.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 (109) hide show
  1. package/README.md +84 -0
  2. package/dist-cjs/index.js +217 -2
  3. package/dist-cjs/schemas/schemas_0.js +529 -98
  4. package/dist-es/BedrockAgentCoreControl.js +30 -0
  5. package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
  6. package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
  7. package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
  8. package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
  9. package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
  10. package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
  11. package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
  12. package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
  13. package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
  14. package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
  15. package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
  16. package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
  17. package/dist-es/commands/index.js +12 -0
  18. package/dist-es/models/enums.js +30 -0
  19. package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
  20. package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
  21. package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
  22. package/dist-es/pagination/index.js +3 -0
  23. package/dist-es/schemas/schemas_0.js +516 -86
  24. package/dist-es/waiters/waitForMemoryCreated.js +1 -1
  25. package/dist-es/waiters/waitForPolicyActive.js +1 -1
  26. package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
  27. package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
  28. package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
  29. package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
  30. package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
  31. package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
  32. package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
  33. package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
  34. package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
  35. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
  36. package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
  37. package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
  38. package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
  39. package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
  40. package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
  41. package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
  42. package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
  43. package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
  44. package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
  45. package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
  46. package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
  47. package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
  48. package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
  49. package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
  50. package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
  51. package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
  52. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
  53. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
  54. package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
  55. package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
  56. package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
  57. package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
  58. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
  59. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
  60. package/dist-types/commands/index.d.ts +12 -0
  61. package/dist-types/models/enums.d.ts +70 -0
  62. package/dist-types/models/models_0.d.ts +2866 -2901
  63. package/dist-types/models/models_1.d.ts +1406 -4
  64. package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
  65. package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
  66. package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
  67. package/dist-types/pagination/index.d.ts +3 -0
  68. package/dist-types/schemas/schemas_0.d.ts +61 -0
  69. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
  70. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
  71. package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
  74. package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
  80. package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
  84. package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
  87. package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  89. package/dist-types/ts3.4/models/enums.d.ts +39 -0
  90. package/dist-types/ts3.4/models/models_0.d.ts +405 -571
  91. package/dist-types/ts3.4/models/models_1.d.ts +592 -7
  92. package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
  93. package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
  94. package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  96. package/dist-types/ts3.4/schemas/schemas_0.d.ts +61 -0
  97. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
  98. package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
  99. package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
  100. package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
  101. package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
  102. package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
  103. package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
  104. package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
  105. package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
  106. package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
  107. package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
  108. package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
  109. package/package.json +8 -8
@@ -1,17 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateAgentRuntimeRequest$ = exports.CreateAgentRuntimeEndpointResponse$ = exports.CreateAgentRuntimeEndpointRequest$ = exports.ContentConfiguration$ = exports.ContainerConfiguration$ = exports.CodeInterpreterSummary$ = exports.CodeInterpreterNetworkConfiguration$ = exports.CodeConfiguration$ = exports.CloudWatchOutputConfig$ = exports.CloudWatchLogsInputConfig$ = exports.Certificate$ = exports.CedarPolicy$ = exports.CategoricalScaleDefinition$ = exports.BrowserSummary$ = exports.BrowserSigningConfigOutput$ = exports.BrowserSigningConfigInput$ = exports.BrowserProfileSummary$ = exports.BrowserNetworkConfiguration$ = exports.BrowserEnterprisePolicy$ = exports.BedrockEvaluatorModelConfig$ = exports.AuthorizingClaimMatchValueType$ = exports.AtlassianOauth2ProviderConfigOutput$ = exports.AtlassianOauth2ProviderConfigInput$ = exports.ApprovalConfiguration$ = exports.ApiKeyCredentialProviderItem$ = exports.ApiGatewayToolOverride$ = exports.ApiGatewayToolFilter$ = exports.ApiGatewayToolConfiguration$ = exports.ApiGatewayTargetConfiguration$ = exports.AgentSkillsDescriptor$ = exports.AgentRuntimeEndpoint$ = exports.AgentRuntime$ = exports.AgentCardDefinition$ = exports.A2aDescriptor$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnauthorizedException$ = exports.ThrottlingException$ = exports.ThrottledException$ = exports.ServiceQuotaExceededException$ = exports.ServiceException$ = exports.ResourceNotFoundException$ = exports.ResourceLimitExceededException$ = exports.InternalServerException$ = exports.EncryptionFailure$ = exports.DecryptionFailure$ = exports.ConflictException$ = exports.ConcurrentModificationException$ = exports.AccessDeniedException$ = exports.BedrockAgentCoreControlServiceException$ = void 0;
4
- exports.DeleteBrowserResponse$ = exports.DeleteBrowserRequest$ = exports.DeleteBrowserProfileResponse$ = exports.DeleteBrowserProfileRequest$ = exports.DeleteApiKeyCredentialProviderResponse$ = exports.DeleteApiKeyCredentialProviderRequest$ = exports.DeleteAgentRuntimeResponse$ = exports.DeleteAgentRuntimeRequest$ = exports.DeleteAgentRuntimeEndpointResponse$ = exports.DeleteAgentRuntimeEndpointRequest$ = exports.CustomOauth2ProviderConfigOutput$ = exports.CustomOauth2ProviderConfigInput$ = exports.CustomMemoryStrategyInput$ = exports.CustomJWTAuthorizerConfiguration$ = exports.CustomDescriptor$ = exports.CustomClaimValidationType$ = exports.CredentialProviderConfiguration$ = exports.CreateWorkloadIdentityResponse$ = exports.CreateWorkloadIdentityRequest$ = exports.CreateRegistryResponse$ = exports.CreateRegistryRequest$ = exports.CreateRegistryRecordResponse$ = exports.CreateRegistryRecordRequest$ = exports.CreatePolicyResponse$ = exports.CreatePolicyRequest$ = exports.CreatePolicyEngineResponse$ = exports.CreatePolicyEngineRequest$ = exports.CreateOnlineEvaluationConfigResponse$ = exports.CreateOnlineEvaluationConfigRequest$ = exports.CreateOauth2CredentialProviderResponse$ = exports.CreateOauth2CredentialProviderRequest$ = exports.CreateMemoryOutput$ = exports.CreateMemoryInput$ = exports.CreateHarnessResponse$ = exports.CreateHarnessRequest$ = exports.CreateGatewayTargetResponse$ = exports.CreateGatewayTargetRequest$ = exports.CreateGatewayResponse$ = exports.CreateGatewayRequest$ = exports.CreateEvaluatorResponse$ = exports.CreateEvaluatorRequest$ = exports.CreateCodeInterpreterResponse$ = exports.CreateCodeInterpreterRequest$ = exports.CreateBrowserResponse$ = exports.CreateBrowserRequest$ = exports.CreateBrowserProfileResponse$ = exports.CreateBrowserProfileRequest$ = exports.CreateApiKeyCredentialProviderResponse$ = exports.CreateApiKeyCredentialProviderRequest$ = exports.CreateAgentRuntimeResponse$ = void 0;
5
- exports.GetAgentRuntimeEndpointRequest$ = exports.GatewayTarget$ = exports.GatewaySummary$ = exports.GatewayPolicyEngineConfiguration$ = exports.GatewayInterceptorConfiguration$ = exports.GatewayApiKeyCredentialProvider$ = exports.FromUrlSynchronizationConfiguration$ = exports.Finding$ = exports.Filter$ = exports.EvaluatorSummary$ = exports.EpisodicReflectionOverride$ = exports.EpisodicReflectionConfigurationInput$ = exports.EpisodicReflectionConfiguration$ = exports.EpisodicOverrideReflectionConfigurationInput$ = exports.EpisodicOverrideExtractionConfigurationInput$ = exports.EpisodicOverrideConsolidationConfigurationInput$ = exports.EpisodicOverrideConfigurationInput$ = exports.EpisodicMemoryStrategyInput$ = exports.EpisodicExtractionOverride$ = exports.EpisodicConsolidationOverride$ = exports.Descriptors$ = exports.DeleteWorkloadIdentityResponse$ = exports.DeleteWorkloadIdentityRequest$ = exports.DeleteResourcePolicyResponse$ = exports.DeleteResourcePolicyRequest$ = exports.DeleteRegistryResponse$ = exports.DeleteRegistryRequest$ = exports.DeleteRegistryRecordResponse$ = exports.DeleteRegistryRecordRequest$ = exports.DeletePolicyResponse$ = exports.DeletePolicyRequest$ = exports.DeletePolicyEngineResponse$ = exports.DeletePolicyEngineRequest$ = exports.DeleteOnlineEvaluationConfigResponse$ = exports.DeleteOnlineEvaluationConfigRequest$ = exports.DeleteOauth2CredentialProviderResponse$ = exports.DeleteOauth2CredentialProviderRequest$ = exports.DeleteMemoryStrategyInput$ = exports.DeleteMemoryOutput$ = exports.DeleteMemoryInput$ = exports.DeleteHarnessResponse$ = exports.DeleteHarnessRequest$ = exports.DeleteGatewayTargetResponse$ = exports.DeleteGatewayTargetRequest$ = exports.DeleteGatewayResponse$ = exports.DeleteGatewayRequest$ = exports.DeleteEvaluatorResponse$ = exports.DeleteEvaluatorRequest$ = exports.DeleteCodeInterpreterResponse$ = exports.DeleteCodeInterpreterRequest$ = void 0;
6
- exports.HarnessAgentCoreMemoryConfiguration$ = exports.HarnessAgentCoreGatewayConfig$ = exports.HarnessAgentCoreCodeInterpreterConfig$ = exports.HarnessAgentCoreBrowserConfig$ = exports.Harness$ = exports.GoogleOauth2ProviderConfigOutput$ = exports.GoogleOauth2ProviderConfigInput$ = exports.GithubOauth2ProviderConfigOutput$ = exports.GithubOauth2ProviderConfigInput$ = exports.GetWorkloadIdentityResponse$ = exports.GetWorkloadIdentityRequest$ = exports.GetTokenVaultResponse$ = exports.GetTokenVaultRequest$ = exports.GetResourcePolicyResponse$ = exports.GetResourcePolicyRequest$ = exports.GetRegistryResponse$ = exports.GetRegistryRequest$ = exports.GetRegistryRecordResponse$ = exports.GetRegistryRecordRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetPolicyGenerationResponse$ = exports.GetPolicyGenerationRequest$ = exports.GetPolicyEngineResponse$ = exports.GetPolicyEngineRequest$ = exports.GetOnlineEvaluationConfigResponse$ = exports.GetOnlineEvaluationConfigRequest$ = exports.GetOauth2CredentialProviderResponse$ = exports.GetOauth2CredentialProviderRequest$ = exports.GetMemoryOutput$ = exports.GetMemoryInput$ = exports.GetHarnessResponse$ = exports.GetHarnessRequest$ = exports.GetGatewayTargetResponse$ = exports.GetGatewayTargetRequest$ = exports.GetGatewayResponse$ = exports.GetGatewayRequest$ = exports.GetEvaluatorResponse$ = exports.GetEvaluatorRequest$ = exports.GetCodeInterpreterResponse$ = exports.GetCodeInterpreterRequest$ = exports.GetBrowserResponse$ = exports.GetBrowserRequest$ = exports.GetBrowserProfileResponse$ = exports.GetBrowserProfileRequest$ = exports.GetApiKeyCredentialProviderResponse$ = exports.GetApiKeyCredentialProviderRequest$ = exports.GetAgentRuntimeResponse$ = exports.GetAgentRuntimeRequest$ = exports.GetAgentRuntimeEndpointResponse$ = void 0;
7
- exports.ListMemoriesInput$ = exports.ListHarnessesResponse$ = exports.ListHarnessesRequest$ = exports.ListGatewayTargetsResponse$ = exports.ListGatewayTargetsRequest$ = exports.ListGatewaysResponse$ = exports.ListGatewaysRequest$ = exports.ListEvaluatorsResponse$ = exports.ListEvaluatorsRequest$ = exports.ListCodeInterpretersResponse$ = exports.ListCodeInterpretersRequest$ = exports.ListBrowsersResponse$ = exports.ListBrowsersRequest$ = exports.ListBrowserProfilesResponse$ = exports.ListBrowserProfilesRequest$ = exports.ListApiKeyCredentialProvidersResponse$ = exports.ListApiKeyCredentialProvidersRequest$ = exports.ListAgentRuntimeVersionsResponse$ = exports.ListAgentRuntimeVersionsRequest$ = exports.ListAgentRuntimesResponse$ = exports.ListAgentRuntimesRequest$ = exports.ListAgentRuntimeEndpointsResponse$ = exports.ListAgentRuntimeEndpointsRequest$ = exports.LinkedinOauth2ProviderConfigOutput$ = exports.LinkedinOauth2ProviderConfigInput$ = exports.LifecycleConfiguration$ = exports.LambdaInterceptorConfiguration$ = exports.LambdaEvaluatorConfig$ = exports.KmsConfiguration$ = exports.KinesisResource$ = exports.InvocationConfigurationInput$ = exports.InvocationConfiguration$ = exports.InterceptorInputConfiguration$ = exports.InferenceConfiguration$ = exports.IncludedOauth2ProviderConfigOutput$ = exports.IncludedOauth2ProviderConfigInput$ = exports.IamCredentialProvider$ = exports.HarnessTruncationConfiguration$ = exports.HarnessTool$ = exports.HarnessSummary$ = exports.HarnessSummarizationConfiguration$ = exports.HarnessSlidingWindowConfiguration$ = exports.HarnessRemoteMcpConfig$ = exports.HarnessOpenAiModelConfig$ = exports.HarnessInlineFunctionConfig$ = exports.HarnessGeminiModelConfig$ = exports.HarnessBedrockModelConfig$ = exports.HarnessAgentCoreRuntimeEnvironmentRequest$ = exports.HarnessAgentCoreRuntimeEnvironment$ = exports.HarnessAgentCoreMemoryRetrievalConfig$ = void 0;
8
- exports.Policy$ = exports.OutputConfig$ = exports.OnlineEvaluationConfigSummary$ = exports.OAuthCredentialProvider$ = exports.Oauth2CredentialProviderItem$ = exports.Oauth2AuthorizationServerMetadata$ = exports.OAuth2AuthorizationData$ = exports.NumericalScaleDefinition$ = exports.NetworkConfiguration$ = exports.ModifyStrategyConfiguration$ = exports.ModifySelfManagedConfiguration$ = exports.ModifyMemoryStrategyInput$ = exports.ModifyMemoryStrategies$ = exports.ModifyInvocationConfigurationInput$ = exports.MicrosoftOauth2ProviderConfigOutput$ = exports.MicrosoftOauth2ProviderConfigInput$ = exports.MetadataConfiguration$ = exports.MessageBasedTriggerInput$ = exports.MessageBasedTrigger$ = exports.MemorySummary$ = exports.MemoryStrategy$ = exports.Memory$ = exports.McpServerTargetConfiguration$ = exports.McpLambdaTargetConfiguration$ = exports.MCPGatewayConfiguration$ = exports.McpDescriptor$ = exports.ManagedVpcResource$ = exports.ManagedResourceDetails$ = exports.LlmAsAJudgeEvaluatorConfig$ = exports.ListWorkloadIdentitiesResponse$ = exports.ListWorkloadIdentitiesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListRegistryRecordsResponse$ = exports.ListRegistryRecordsRequest$ = exports.ListRegistriesResponse$ = exports.ListRegistriesRequest$ = exports.ListPolicyGenerationsResponse$ = exports.ListPolicyGenerationsRequest$ = exports.ListPolicyGenerationAssetsResponse$ = exports.ListPolicyGenerationAssetsRequest$ = exports.ListPolicyEnginesResponse$ = exports.ListPolicyEnginesRequest$ = exports.ListPoliciesResponse$ = exports.ListPoliciesRequest$ = exports.ListOnlineEvaluationConfigsResponse$ = exports.ListOnlineEvaluationConfigsRequest$ = exports.ListOauth2CredentialProvidersResponse$ = exports.ListOauth2CredentialProvidersRequest$ = exports.ListMemoriesOutput$ = void 0;
9
- exports.SummaryOverrideConfigurationInput$ = exports.SummaryMemoryStrategyInput$ = exports.SummaryConsolidationOverride$ = exports.SubmitRegistryRecordForApprovalResponse$ = exports.SubmitRegistryRecordForApprovalRequest$ = exports.StreamDeliveryResources$ = exports.StrategyConfiguration$ = exports.StartPolicyGenerationResponse$ = exports.StartPolicyGenerationRequest$ = exports.SlackOauth2ProviderConfigOutput$ = exports.SlackOauth2ProviderConfigInput$ = exports.SkillMdDefinition$ = exports.SkillDefinition$ = exports.SetTokenVaultCMKResponse$ = exports.SetTokenVaultCMKRequest$ = exports.SessionStorageConfiguration$ = exports.SessionConfig$ = exports.ServerDefinition$ = exports.SemanticOverrideExtractionConfigurationInput$ = exports.SemanticOverrideConsolidationConfigurationInput$ = exports.SemanticOverrideConfigurationInput$ = exports.SemanticMemoryStrategyInput$ = exports.SemanticExtractionOverride$ = exports.SemanticConsolidationOverride$ = exports.SelfManagedConfigurationInput$ = exports.SelfManagedConfiguration$ = exports.SecretsManagerLocation$ = exports.Secret$ = exports.SchemaDefinition$ = exports.SamplingConfig$ = exports.SalesforceOauth2ProviderConfigOutput$ = exports.SalesforceOauth2ProviderConfigInput$ = exports.S3Location$ = exports.S3Configuration$ = exports.RuntimeMetadataConfiguration$ = exports.Rule$ = exports.RegistrySummary$ = exports.RegistryRecordSummary$ = exports.RegistryRecordOAuthCredentialProvider$ = exports.RegistryRecordIamCredentialProvider$ = exports.RegistryRecordCredentialProviderConfiguration$ = exports.RecordingConfig$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.ProtocolConfiguration$ = exports.PrivateEndpointOverride$ = exports.PolicyGenerationDetails$ = exports.PolicyGenerationAsset$ = exports.PolicyGeneration$ = exports.PolicyEngine$ = void 0;
10
- exports.UpdateMemoryOutput$ = exports.UpdateMemoryInput$ = exports.UpdateHarnessResponse$ = exports.UpdateHarnessRequest$ = exports.UpdateGatewayTargetResponse$ = exports.UpdateGatewayTargetRequest$ = exports.UpdateGatewayResponse$ = exports.UpdateGatewayRequest$ = exports.UpdateEvaluatorResponse$ = exports.UpdateEvaluatorRequest$ = exports.UpdatedToolsDefinition$ = exports.UpdatedSynchronizationType$ = exports.UpdatedSynchronizationConfiguration$ = exports.UpdatedSkillMdDefinition$ = exports.UpdatedSkillDefinition$ = exports.UpdatedServerDefinition$ = exports.UpdatedMcpDescriptorFields$ = exports.UpdatedMcpDescriptor$ = exports.UpdatedHarnessMemoryConfiguration$ = exports.UpdatedHarnessEnvironmentArtifact$ = exports.UpdatedDescriptorsUnion$ = exports.UpdatedDescriptors$ = exports.UpdatedDescription$ = exports.UpdatedCustomDescriptor$ = exports.UpdatedAuthorizerConfiguration$ = exports.UpdatedApprovalConfiguration$ = exports.UpdatedAgentSkillsDescriptorFields$ = exports.UpdatedAgentSkillsDescriptor$ = exports.UpdatedA2aDescriptor$ = exports.UpdateApiKeyCredentialProviderResponse$ = exports.UpdateApiKeyCredentialProviderRequest$ = exports.UpdateAgentRuntimeResponse$ = exports.UpdateAgentRuntimeRequest$ = exports.UpdateAgentRuntimeEndpointResponse$ = exports.UpdateAgentRuntimeEndpointRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.ToolsDefinition$ = exports.ToolDefinition$ = exports.TokenBasedTriggerInput$ = exports.TokenBasedTrigger$ = exports.TimeBasedTriggerInput$ = exports.TimeBasedTrigger$ = exports.TargetSummary$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SynchronizeGatewayTargetsResponse$ = exports.SynchronizeGatewayTargetsRequest$ = exports.SynchronizationConfiguration$ = exports.SummaryOverrideConsolidationConfigurationInput$ = void 0;
11
- exports.FilesystemConfiguration$ = exports.ExtractionConfiguration$ = exports.EvaluatorReference$ = exports.EvaluatorModelConfig$ = exports.EvaluatorConfig$ = exports.DataSourceConfig$ = exports.CustomReflectionConfigurationInput$ = exports.CustomReflectionConfiguration$ = exports.CustomExtractionConfigurationInput$ = exports.CustomExtractionConfiguration$ = exports.CustomConsolidationConfigurationInput$ = exports.CustomConsolidationConfiguration$ = exports.CustomConfigurationInput$ = exports.CredentialProvider$ = exports.Content$ = exports.ConsolidationConfiguration$ = exports.CodeBasedEvaluatorConfig$ = exports.Code$ = exports.ClaimMatchValueType$ = exports.CertificateLocation$ = exports.AuthorizerConfiguration$ = exports.AuthorizationData$ = exports.ApiSchemaConfiguration$ = exports.AgentRuntimeArtifact$ = exports.WorkloadIdentityType$ = exports.WorkloadIdentityDetails$ = exports.VpcConfig$ = exports.ValidationExceptionField$ = exports.UserPreferenceOverrideExtractionConfigurationInput$ = exports.UserPreferenceOverrideConsolidationConfigurationInput$ = exports.UserPreferenceOverrideConfigurationInput$ = exports.UserPreferenceMemoryStrategyInput$ = exports.UserPreferenceExtractionOverride$ = exports.UserPreferenceConsolidationOverride$ = exports.UpdateWorkloadIdentityResponse$ = exports.UpdateWorkloadIdentityRequest$ = exports.UpdateRegistryResponse$ = exports.UpdateRegistryRequest$ = exports.UpdateRegistryRecordStatusResponse$ = exports.UpdateRegistryRecordStatusRequest$ = exports.UpdateRegistryRecordResponse$ = exports.UpdateRegistryRecordRequest$ = exports.UpdatePolicyResponse$ = exports.UpdatePolicyRequest$ = exports.UpdatePolicyEngineResponse$ = exports.UpdatePolicyEngineRequest$ = exports.UpdateOnlineEvaluationConfigResponse$ = exports.UpdateOnlineEvaluationConfigRequest$ = exports.UpdateOauth2CredentialProviderResponse$ = exports.UpdateOauth2CredentialProviderRequest$ = void 0;
12
- exports.CreatePolicy$ = exports.CreateOnlineEvaluationConfig$ = exports.CreateOauth2CredentialProvider$ = exports.CreateMemory$ = exports.CreateHarness$ = exports.CreateGatewayTarget$ = exports.CreateGateway$ = exports.CreateEvaluator$ = exports.CreateCodeInterpreter$ = exports.CreateBrowserProfile$ = exports.CreateBrowser$ = exports.CreateApiKeyCredentialProvider$ = exports.CreateAgentRuntimeEndpoint$ = exports.CreateAgentRuntime$ = exports.TriggerConditionInput$ = exports.TriggerCondition$ = exports.ToolSchema$ = exports.TargetConfiguration$ = exports.StreamDeliveryResource$ = exports.SelfManagedLatticeResource$ = exports.ResourceLocation$ = exports.Resource$ = exports.RequestHeaderConfiguration$ = exports.RegistryRecordCredentialProviderUnion$ = exports.ReflectionConfiguration$ = exports.RatingScale$ = exports.PrivateEndpoint$ = exports.PolicyDefinition$ = exports.Oauth2ProviderConfigOutput$ = exports.Oauth2ProviderConfigInput$ = exports.Oauth2Discovery$ = exports.ModifyReflectionConfiguration$ = exports.ModifyExtractionConfiguration$ = exports.ModifyConsolidationConfiguration$ = exports.MemoryStrategyInput$ = exports.McpToolSchemaConfiguration$ = exports.McpTargetConfiguration$ = exports.InterceptorConfiguration$ = exports.HarnessTruncationStrategyConfiguration$ = exports.HarnessToolConfiguration$ = exports.HarnessSystemContentBlock$ = exports.HarnessSkill$ = exports.HarnessModelConfiguration$ = exports.HarnessMemoryConfiguration$ = exports.HarnessGatewayOutboundAuth$ = exports.HarnessEnvironmentProviderRequest$ = exports.HarnessEnvironmentProvider$ = exports.HarnessEnvironmentArtifact$ = exports.GatewayProtocolConfiguration$ = exports.FilterValue$ = void 0;
13
- exports.ListBrowsers$ = exports.ListBrowserProfiles$ = exports.ListApiKeyCredentialProviders$ = exports.ListAgentRuntimeVersions$ = exports.ListAgentRuntimes$ = exports.ListAgentRuntimeEndpoints$ = exports.GetWorkloadIdentity$ = exports.GetTokenVault$ = exports.GetResourcePolicy$ = exports.GetRegistryRecord$ = exports.GetRegistry$ = exports.GetPolicyGeneration$ = exports.GetPolicyEngine$ = exports.GetPolicy$ = exports.GetOnlineEvaluationConfig$ = exports.GetOauth2CredentialProvider$ = exports.GetMemory$ = exports.GetHarness$ = exports.GetGatewayTarget$ = exports.GetGateway$ = exports.GetEvaluator$ = exports.GetCodeInterpreter$ = exports.GetBrowserProfile$ = exports.GetBrowser$ = exports.GetApiKeyCredentialProvider$ = exports.GetAgentRuntimeEndpoint$ = exports.GetAgentRuntime$ = exports.DeleteWorkloadIdentity$ = exports.DeleteResourcePolicy$ = exports.DeleteRegistryRecord$ = exports.DeleteRegistry$ = exports.DeletePolicyEngine$ = exports.DeletePolicy$ = exports.DeleteOnlineEvaluationConfig$ = exports.DeleteOauth2CredentialProvider$ = exports.DeleteMemory$ = exports.DeleteHarness$ = exports.DeleteGatewayTarget$ = exports.DeleteGateway$ = exports.DeleteEvaluator$ = exports.DeleteCodeInterpreter$ = exports.DeleteBrowserProfile$ = exports.DeleteBrowser$ = exports.DeleteApiKeyCredentialProvider$ = exports.DeleteAgentRuntimeEndpoint$ = exports.DeleteAgentRuntime$ = exports.CreateWorkloadIdentity$ = exports.CreateRegistryRecord$ = exports.CreateRegistry$ = exports.CreatePolicyEngine$ = void 0;
14
- exports.UpdateWorkloadIdentity$ = exports.UpdateRegistryRecordStatus$ = exports.UpdateRegistryRecord$ = exports.UpdateRegistry$ = exports.UpdatePolicyEngine$ = exports.UpdatePolicy$ = exports.UpdateOnlineEvaluationConfig$ = exports.UpdateOauth2CredentialProvider$ = exports.UpdateMemory$ = exports.UpdateHarness$ = exports.UpdateGatewayTarget$ = exports.UpdateGateway$ = exports.UpdateEvaluator$ = exports.UpdateApiKeyCredentialProvider$ = exports.UpdateAgentRuntimeEndpoint$ = exports.UpdateAgentRuntime$ = exports.UntagResource$ = exports.TagResource$ = exports.SynchronizeGatewayTargets$ = exports.SubmitRegistryRecordForApproval$ = exports.StartPolicyGeneration$ = exports.SetTokenVaultCMK$ = exports.PutResourcePolicy$ = exports.ListWorkloadIdentities$ = exports.ListTagsForResource$ = exports.ListRegistryRecords$ = exports.ListRegistries$ = exports.ListPolicyGenerations$ = exports.ListPolicyGenerationAssets$ = exports.ListPolicyEngines$ = exports.ListPolicies$ = exports.ListOnlineEvaluationConfigs$ = exports.ListOauth2CredentialProviders$ = exports.ListMemories$ = exports.ListHarnesses$ = exports.ListGatewayTargets$ = exports.ListGateways$ = exports.ListEvaluators$ = exports.ListCodeInterpreters$ = void 0;
3
+ exports.ContainerConfiguration$ = exports.ConfigurationBundleVersionSummary$ = exports.ConfigurationBundleSummary$ = exports.ConfigurationBundleReference$ = exports.ComponentConfiguration$ = exports.CodeInterpreterSummary$ = exports.CodeInterpreterNetworkConfiguration$ = exports.CodeConfiguration$ = exports.CloudWatchOutputConfig$ = exports.CloudWatchLogsInputConfig$ = exports.Certificate$ = exports.CedarPolicy$ = exports.CategoricalScaleDefinition$ = exports.BrowserSummary$ = exports.BrowserSigningConfigOutput$ = exports.BrowserSigningConfigInput$ = exports.BrowserProfileSummary$ = exports.BrowserNetworkConfiguration$ = exports.BrowserEnterprisePolicy$ = exports.BedrockEvaluatorModelConfig$ = exports.AuthorizingClaimMatchValueType$ = exports.AtlassianOauth2ProviderConfigOutput$ = exports.AtlassianOauth2ProviderConfigInput$ = exports.ApprovalConfiguration$ = exports.ApiKeyCredentialProviderItem$ = exports.ApiGatewayToolOverride$ = exports.ApiGatewayToolFilter$ = exports.ApiGatewayToolConfiguration$ = exports.ApiGatewayTargetConfiguration$ = exports.AgentSkillsDescriptor$ = exports.AgentRuntimeEndpoint$ = exports.AgentRuntime$ = exports.AgentCardDefinition$ = exports.A2aDescriptor$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnauthorizedException$ = exports.ThrottlingException$ = exports.ThrottledException$ = exports.ServiceQuotaExceededException$ = exports.ServiceException$ = exports.ResourceNotFoundException$ = exports.ResourceLimitExceededException$ = exports.InternalServerException$ = exports.EncryptionFailure$ = exports.DecryptionFailure$ = exports.ConflictException$ = exports.ConcurrentModificationException$ = exports.AccessDeniedException$ = exports.BedrockAgentCoreControlServiceException$ = void 0;
4
+ exports.DeleteAgentRuntimeEndpointResponse$ = exports.DeleteAgentRuntimeEndpointRequest$ = exports.CustomOauth2ProviderConfigOutput$ = exports.CustomOauth2ProviderConfigInput$ = exports.CustomMemoryStrategyInput$ = exports.CustomJWTAuthorizerConfiguration$ = exports.CustomDescriptor$ = exports.CustomClaimValidationType$ = exports.CredentialProviderConfiguration$ = exports.CreateWorkloadIdentityResponse$ = exports.CreateWorkloadIdentityRequest$ = exports.CreateRegistryResponse$ = exports.CreateRegistryRequest$ = exports.CreateRegistryRecordResponse$ = exports.CreateRegistryRecordRequest$ = exports.CreatePolicyResponse$ = exports.CreatePolicyRequest$ = exports.CreatePolicyEngineResponse$ = exports.CreatePolicyEngineRequest$ = exports.CreateOnlineEvaluationConfigResponse$ = exports.CreateOnlineEvaluationConfigRequest$ = exports.CreateOauth2CredentialProviderResponse$ = exports.CreateOauth2CredentialProviderRequest$ = exports.CreateMemoryOutput$ = exports.CreateMemoryInput$ = exports.CreateHarnessResponse$ = exports.CreateHarnessRequest$ = exports.CreateGatewayTargetResponse$ = exports.CreateGatewayTargetRequest$ = exports.CreateGatewayRuleResponse$ = exports.CreateGatewayRuleRequest$ = exports.CreateGatewayResponse$ = exports.CreateGatewayRequest$ = exports.CreateEvaluatorResponse$ = exports.CreateEvaluatorRequest$ = exports.CreateConfigurationBundleResponse$ = exports.CreateConfigurationBundleRequest$ = exports.CreateCodeInterpreterResponse$ = exports.CreateCodeInterpreterRequest$ = exports.CreateBrowserResponse$ = exports.CreateBrowserRequest$ = exports.CreateBrowserProfileResponse$ = exports.CreateBrowserProfileRequest$ = exports.CreateApiKeyCredentialProviderResponse$ = exports.CreateApiKeyCredentialProviderRequest$ = exports.CreateAgentRuntimeResponse$ = exports.CreateAgentRuntimeRequest$ = exports.CreateAgentRuntimeEndpointResponse$ = exports.CreateAgentRuntimeEndpointRequest$ = exports.ContentConfiguration$ = void 0;
5
+ exports.EpisodicReflectionConfiguration$ = exports.EpisodicOverrideReflectionConfigurationInput$ = exports.EpisodicOverrideExtractionConfigurationInput$ = exports.EpisodicOverrideConsolidationConfigurationInput$ = exports.EpisodicOverrideConfigurationInput$ = exports.EpisodicMemoryStrategyInput$ = exports.EpisodicExtractionOverride$ = exports.EpisodicConsolidationOverride$ = exports.Descriptors$ = exports.DeleteWorkloadIdentityResponse$ = exports.DeleteWorkloadIdentityRequest$ = exports.DeleteResourcePolicyResponse$ = exports.DeleteResourcePolicyRequest$ = exports.DeleteRegistryResponse$ = exports.DeleteRegistryRequest$ = exports.DeleteRegistryRecordResponse$ = exports.DeleteRegistryRecordRequest$ = exports.DeletePolicyResponse$ = exports.DeletePolicyRequest$ = exports.DeletePolicyEngineResponse$ = exports.DeletePolicyEngineRequest$ = exports.DeleteOnlineEvaluationConfigResponse$ = exports.DeleteOnlineEvaluationConfigRequest$ = exports.DeleteOauth2CredentialProviderResponse$ = exports.DeleteOauth2CredentialProviderRequest$ = exports.DeleteMemoryStrategyInput$ = exports.DeleteMemoryOutput$ = exports.DeleteMemoryInput$ = exports.DeleteHarnessResponse$ = exports.DeleteHarnessRequest$ = exports.DeleteGatewayTargetResponse$ = exports.DeleteGatewayTargetRequest$ = exports.DeleteGatewayRuleResponse$ = exports.DeleteGatewayRuleRequest$ = exports.DeleteGatewayResponse$ = exports.DeleteGatewayRequest$ = exports.DeleteEvaluatorResponse$ = exports.DeleteEvaluatorRequest$ = exports.DeleteConfigurationBundleResponse$ = exports.DeleteConfigurationBundleRequest$ = exports.DeleteCodeInterpreterResponse$ = exports.DeleteCodeInterpreterRequest$ = exports.DeleteBrowserResponse$ = exports.DeleteBrowserRequest$ = exports.DeleteBrowserProfileResponse$ = exports.DeleteBrowserProfileRequest$ = exports.DeleteApiKeyCredentialProviderResponse$ = exports.DeleteApiKeyCredentialProviderRequest$ = exports.DeleteAgentRuntimeResponse$ = exports.DeleteAgentRuntimeRequest$ = void 0;
6
+ exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetPolicyGenerationResponse$ = exports.GetPolicyGenerationRequest$ = exports.GetPolicyEngineResponse$ = exports.GetPolicyEngineRequest$ = exports.GetOnlineEvaluationConfigResponse$ = exports.GetOnlineEvaluationConfigRequest$ = exports.GetOauth2CredentialProviderResponse$ = exports.GetOauth2CredentialProviderRequest$ = exports.GetMemoryOutput$ = exports.GetMemoryInput$ = exports.GetHarnessResponse$ = exports.GetHarnessRequest$ = exports.GetGatewayTargetResponse$ = exports.GetGatewayTargetRequest$ = exports.GetGatewayRuleResponse$ = exports.GetGatewayRuleRequest$ = exports.GetGatewayResponse$ = exports.GetGatewayRequest$ = exports.GetEvaluatorResponse$ = exports.GetEvaluatorRequest$ = exports.GetConfigurationBundleVersionResponse$ = exports.GetConfigurationBundleVersionRequest$ = exports.GetConfigurationBundleResponse$ = exports.GetConfigurationBundleRequest$ = exports.GetCodeInterpreterResponse$ = exports.GetCodeInterpreterRequest$ = exports.GetBrowserResponse$ = exports.GetBrowserRequest$ = exports.GetBrowserProfileResponse$ = exports.GetBrowserProfileRequest$ = exports.GetApiKeyCredentialProviderResponse$ = exports.GetApiKeyCredentialProviderRequest$ = exports.GetAgentRuntimeResponse$ = exports.GetAgentRuntimeRequest$ = exports.GetAgentRuntimeEndpointResponse$ = exports.GetAgentRuntimeEndpointRequest$ = exports.GatewayTarget$ = exports.GatewaySummary$ = exports.GatewayRuleDetail$ = exports.GatewayPolicyEngineConfiguration$ = exports.GatewayInterceptorConfiguration$ = exports.GatewayApiKeyCredentialProvider$ = exports.FromUrlSynchronizationConfiguration$ = exports.Finding$ = exports.Filter$ = exports.EvaluatorSummary$ = exports.EpisodicReflectionOverride$ = exports.EpisodicReflectionConfigurationInput$ = void 0;
7
+ exports.ListAgentRuntimesRequest$ = exports.ListAgentRuntimeEndpointsResponse$ = exports.ListAgentRuntimeEndpointsRequest$ = exports.LinkedinOauth2ProviderConfigOutput$ = exports.LinkedinOauth2ProviderConfigInput$ = exports.LifecycleConfiguration$ = exports.LambdaInterceptorConfiguration$ = exports.LambdaEvaluatorConfig$ = exports.KmsConfiguration$ = exports.KinesisResource$ = exports.InvocationConfigurationInput$ = exports.InvocationConfiguration$ = exports.InterceptorInputConfiguration$ = exports.InferenceConfiguration$ = exports.IncludedOauth2ProviderConfigOutput$ = exports.IncludedOauth2ProviderConfigInput$ = exports.IamPrincipal$ = exports.IamCredentialProvider$ = exports.HarnessTruncationConfiguration$ = exports.HarnessTool$ = exports.HarnessSummary$ = exports.HarnessSummarizationConfiguration$ = exports.HarnessSlidingWindowConfiguration$ = exports.HarnessRemoteMcpConfig$ = exports.HarnessOpenAiModelConfig$ = exports.HarnessInlineFunctionConfig$ = exports.HarnessGeminiModelConfig$ = exports.HarnessBedrockModelConfig$ = exports.HarnessAgentCoreRuntimeEnvironmentRequest$ = exports.HarnessAgentCoreRuntimeEnvironment$ = exports.HarnessAgentCoreMemoryRetrievalConfig$ = exports.HarnessAgentCoreMemoryConfiguration$ = exports.HarnessAgentCoreGatewayConfig$ = exports.HarnessAgentCoreCodeInterpreterConfig$ = exports.HarnessAgentCoreBrowserConfig$ = exports.Harness$ = exports.GoogleOauth2ProviderConfigOutput$ = exports.GoogleOauth2ProviderConfigInput$ = exports.GithubOauth2ProviderConfigOutput$ = exports.GithubOauth2ProviderConfigInput$ = exports.GetWorkloadIdentityResponse$ = exports.GetWorkloadIdentityRequest$ = exports.GetTokenVaultResponse$ = exports.GetTokenVaultRequest$ = exports.GetResourcePolicyResponse$ = exports.GetResourcePolicyRequest$ = exports.GetRegistryResponse$ = exports.GetRegistryRequest$ = exports.GetRegistryRecordResponse$ = exports.GetRegistryRecordRequest$ = void 0;
8
+ exports.ManagedVpcResource$ = exports.ManagedResourceDetails$ = exports.LlmAsAJudgeEvaluatorConfig$ = exports.ListWorkloadIdentitiesResponse$ = exports.ListWorkloadIdentitiesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListRegistryRecordsResponse$ = exports.ListRegistryRecordsRequest$ = exports.ListRegistriesResponse$ = exports.ListRegistriesRequest$ = exports.ListPolicyGenerationsResponse$ = exports.ListPolicyGenerationsRequest$ = exports.ListPolicyGenerationAssetsResponse$ = exports.ListPolicyGenerationAssetsRequest$ = exports.ListPolicyEnginesResponse$ = exports.ListPolicyEnginesRequest$ = exports.ListPoliciesResponse$ = exports.ListPoliciesRequest$ = exports.ListOnlineEvaluationConfigsResponse$ = exports.ListOnlineEvaluationConfigsRequest$ = exports.ListOauth2CredentialProvidersResponse$ = exports.ListOauth2CredentialProvidersRequest$ = exports.ListMemoriesOutput$ = exports.ListMemoriesInput$ = exports.ListHarnessesResponse$ = exports.ListHarnessesRequest$ = exports.ListGatewayTargetsResponse$ = exports.ListGatewayTargetsRequest$ = exports.ListGatewaysResponse$ = exports.ListGatewaysRequest$ = exports.ListGatewayRulesResponse$ = exports.ListGatewayRulesRequest$ = exports.ListEvaluatorsResponse$ = exports.ListEvaluatorsRequest$ = exports.ListConfigurationBundleVersionsResponse$ = exports.ListConfigurationBundleVersionsRequest$ = exports.ListConfigurationBundlesResponse$ = exports.ListConfigurationBundlesRequest$ = exports.ListCodeInterpretersResponse$ = exports.ListCodeInterpretersRequest$ = exports.ListBrowsersResponse$ = exports.ListBrowsersRequest$ = exports.ListBrowserProfilesResponse$ = exports.ListBrowserProfilesRequest$ = exports.ListApiKeyCredentialProvidersResponse$ = exports.ListApiKeyCredentialProvidersRequest$ = exports.ListAgentRuntimeVersionsResponse$ = exports.ListAgentRuntimeVersionsRequest$ = exports.ListAgentRuntimesResponse$ = void 0;
9
+ exports.SamplingConfig$ = exports.SalesforceOauth2ProviderConfigOutput$ = exports.SalesforceOauth2ProviderConfigInput$ = exports.S3Location$ = exports.S3Configuration$ = exports.RuntimeTargetConfiguration$ = exports.RuntimeMetadataConfiguration$ = exports.Rule$ = exports.RegistrySummary$ = exports.RegistryRecordSummary$ = exports.RegistryRecordOAuthCredentialProvider$ = exports.RegistryRecordIamCredentialProvider$ = exports.RegistryRecordCredentialProviderConfiguration$ = exports.RecordingConfig$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.ProtocolConfiguration$ = exports.PrivateEndpointOverride$ = exports.PolicyGenerationDetails$ = exports.PolicyGenerationAsset$ = exports.PolicyGeneration$ = exports.PolicyEngine$ = exports.Policy$ = exports.OutputConfig$ = exports.OnlineEvaluationConfigSummary$ = exports.OAuthCredentialProvider$ = exports.Oauth2CredentialProviderItem$ = exports.Oauth2AuthorizationServerMetadata$ = exports.OAuth2AuthorizationData$ = exports.NumericalScaleDefinition$ = exports.NetworkConfiguration$ = exports.ModifyStrategyConfiguration$ = exports.ModifySelfManagedConfiguration$ = exports.ModifyMemoryStrategyInput$ = exports.ModifyMemoryStrategies$ = exports.ModifyInvocationConfigurationInput$ = exports.MicrosoftOauth2ProviderConfigOutput$ = exports.MicrosoftOauth2ProviderConfigInput$ = exports.MetadataConfiguration$ = exports.MessageBasedTriggerInput$ = exports.MessageBasedTrigger$ = exports.MemorySummary$ = exports.MemoryStrategy$ = exports.Memory$ = exports.McpServerTargetConfiguration$ = exports.McpLambdaTargetConfiguration$ = exports.MCPGatewayConfiguration$ = exports.McpDescriptor$ = exports.MatchPrincipals$ = exports.MatchPaths$ = void 0;
10
+ exports.UpdateAgentRuntimeEndpointRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TrafficSplitEntry$ = exports.ToolsDefinition$ = exports.ToolDefinition$ = exports.TokenBasedTriggerInput$ = exports.TokenBasedTrigger$ = exports.TimeBasedTriggerInput$ = exports.TimeBasedTrigger$ = exports.TargetTrafficSplitEntry$ = exports.TargetSummary$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SystemManagedBlock$ = exports.SynchronizeGatewayTargetsResponse$ = exports.SynchronizeGatewayTargetsRequest$ = exports.SynchronizationConfiguration$ = exports.SummaryOverrideConsolidationConfigurationInput$ = exports.SummaryOverrideConfigurationInput$ = exports.SummaryMemoryStrategyInput$ = exports.SummaryConsolidationOverride$ = exports.SubmitRegistryRecordForApprovalResponse$ = exports.SubmitRegistryRecordForApprovalRequest$ = exports.StreamDeliveryResources$ = exports.StrategyConfiguration$ = exports.StaticRoute$ = exports.StaticOverride$ = exports.StartPolicyGenerationResponse$ = exports.StartPolicyGenerationRequest$ = exports.SlackOauth2ProviderConfigOutput$ = exports.SlackOauth2ProviderConfigInput$ = exports.SkillMdDefinition$ = exports.SkillDefinition$ = exports.SetTokenVaultCMKResponse$ = exports.SetTokenVaultCMKRequest$ = exports.SessionStorageConfiguration$ = exports.SessionConfig$ = exports.ServerDefinition$ = exports.SemanticOverrideExtractionConfigurationInput$ = exports.SemanticOverrideConsolidationConfigurationInput$ = exports.SemanticOverrideConfigurationInput$ = exports.SemanticMemoryStrategyInput$ = exports.SemanticExtractionOverride$ = exports.SemanticConsolidationOverride$ = exports.SelfManagedConfigurationInput$ = exports.SelfManagedConfiguration$ = exports.SecretsManagerLocation$ = exports.Secret$ = exports.SchemaDefinition$ = void 0;
11
+ exports.UpdateRegistryRecordStatusResponse$ = exports.UpdateRegistryRecordStatusRequest$ = exports.UpdateRegistryRecordResponse$ = exports.UpdateRegistryRecordRequest$ = exports.UpdatePolicyResponse$ = exports.UpdatePolicyRequest$ = exports.UpdatePolicyEngineResponse$ = exports.UpdatePolicyEngineRequest$ = exports.UpdateOnlineEvaluationConfigResponse$ = exports.UpdateOnlineEvaluationConfigRequest$ = exports.UpdateOauth2CredentialProviderResponse$ = exports.UpdateOauth2CredentialProviderRequest$ = exports.UpdateMemoryOutput$ = exports.UpdateMemoryInput$ = exports.UpdateHarnessResponse$ = exports.UpdateHarnessRequest$ = exports.UpdateGatewayTargetResponse$ = exports.UpdateGatewayTargetRequest$ = exports.UpdateGatewayRuleResponse$ = exports.UpdateGatewayRuleRequest$ = exports.UpdateGatewayResponse$ = exports.UpdateGatewayRequest$ = exports.UpdateEvaluatorResponse$ = exports.UpdateEvaluatorRequest$ = exports.UpdatedToolsDefinition$ = exports.UpdatedSynchronizationType$ = exports.UpdatedSynchronizationConfiguration$ = exports.UpdatedSkillMdDefinition$ = exports.UpdatedSkillDefinition$ = exports.UpdatedServerDefinition$ = exports.UpdatedMcpDescriptorFields$ = exports.UpdatedMcpDescriptor$ = exports.UpdatedHarnessMemoryConfiguration$ = exports.UpdatedHarnessEnvironmentArtifact$ = exports.UpdatedDescriptorsUnion$ = exports.UpdatedDescriptors$ = exports.UpdatedDescription$ = exports.UpdatedCustomDescriptor$ = exports.UpdatedAuthorizerConfiguration$ = exports.UpdatedApprovalConfiguration$ = exports.UpdatedAgentSkillsDescriptorFields$ = exports.UpdatedAgentSkillsDescriptor$ = exports.UpdatedA2aDescriptor$ = exports.UpdateConfigurationBundleResponse$ = exports.UpdateConfigurationBundleRequest$ = exports.UpdateApiKeyCredentialProviderResponse$ = exports.UpdateApiKeyCredentialProviderRequest$ = exports.UpdateAgentRuntimeResponse$ = exports.UpdateAgentRuntimeRequest$ = exports.UpdateAgentRuntimeEndpointResponse$ = void 0;
12
+ exports.HarnessEnvironmentProvider$ = exports.HarnessEnvironmentArtifact$ = exports.GatewayProtocolConfiguration$ = exports.FilterValue$ = exports.FilesystemConfiguration$ = exports.ExtractionConfiguration$ = exports.EvaluatorReference$ = exports.EvaluatorModelConfig$ = exports.EvaluatorConfig$ = exports.DataSourceConfig$ = exports.CustomReflectionConfigurationInput$ = exports.CustomReflectionConfiguration$ = exports.CustomExtractionConfigurationInput$ = exports.CustomExtractionConfiguration$ = exports.CustomConsolidationConfigurationInput$ = exports.CustomConsolidationConfiguration$ = exports.CustomConfigurationInput$ = exports.CredentialProvider$ = exports.Content$ = exports.ConsolidationConfiguration$ = exports.ConfigurationBundleAction$ = exports.Condition$ = exports.CodeBasedEvaluatorConfig$ = exports.Code$ = exports.ClaimMatchValueType$ = exports.CertificateLocation$ = exports.AuthorizerConfiguration$ = exports.AuthorizationData$ = exports.ApiSchemaConfiguration$ = exports.AgentRuntimeArtifact$ = exports.Action$ = exports.WorkloadIdentityType$ = exports.WorkloadIdentityDetails$ = exports.WeightedRoute$ = exports.WeightedOverride$ = exports.VpcConfig$ = exports.VersionLineageMetadata$ = exports.VersionFilter$ = exports.VersionCreatedBySource$ = exports.ValidationExceptionField$ = exports.UserPreferenceOverrideExtractionConfigurationInput$ = exports.UserPreferenceOverrideConsolidationConfigurationInput$ = exports.UserPreferenceOverrideConfigurationInput$ = exports.UserPreferenceMemoryStrategyInput$ = exports.UserPreferenceExtractionOverride$ = exports.UserPreferenceConsolidationOverride$ = exports.UpdateWorkloadIdentityResponse$ = exports.UpdateWorkloadIdentityRequest$ = exports.UpdateRegistryResponse$ = exports.UpdateRegistryRequest$ = void 0;
13
+ exports.CreateOnlineEvaluationConfig$ = exports.CreateOauth2CredentialProvider$ = exports.CreateMemory$ = exports.CreateHarness$ = exports.CreateGatewayTarget$ = exports.CreateGatewayRule$ = exports.CreateGateway$ = exports.CreateEvaluator$ = exports.CreateConfigurationBundle$ = exports.CreateCodeInterpreter$ = exports.CreateBrowserProfile$ = exports.CreateBrowser$ = exports.CreateApiKeyCredentialProvider$ = exports.CreateAgentRuntimeEndpoint$ = exports.CreateAgentRuntime$ = exports.TriggerConditionInput$ = exports.TriggerCondition$ = exports.ToolSchema$ = exports.TargetConfiguration$ = exports.StreamDeliveryResource$ = exports.SelfManagedLatticeResource$ = exports.RouteToTargetAction$ = exports.ResourceLocation$ = exports.Resource$ = exports.RequestHeaderConfiguration$ = exports.RegistryRecordCredentialProviderUnion$ = exports.ReflectionConfiguration$ = exports.RatingScale$ = exports.PrivateEndpoint$ = exports.PolicyDefinition$ = exports.Oauth2ProviderConfigOutput$ = exports.Oauth2ProviderConfigInput$ = exports.Oauth2Discovery$ = exports.ModifyReflectionConfiguration$ = exports.ModifyExtractionConfiguration$ = exports.ModifyConsolidationConfiguration$ = exports.MemoryStrategyInput$ = exports.McpToolSchemaConfiguration$ = exports.McpTargetConfiguration$ = exports.MatchPrincipalEntry$ = exports.InterceptorConfiguration$ = exports.HttpTargetConfiguration$ = exports.HarnessTruncationStrategyConfiguration$ = exports.HarnessToolConfiguration$ = exports.HarnessSystemContentBlock$ = exports.HarnessSkill$ = exports.HarnessModelConfiguration$ = exports.HarnessMemoryConfiguration$ = exports.HarnessGatewayOutboundAuth$ = exports.HarnessEnvironmentProviderRequest$ = void 0;
14
+ exports.GetWorkloadIdentity$ = exports.GetTokenVault$ = exports.GetResourcePolicy$ = exports.GetRegistryRecord$ = exports.GetRegistry$ = exports.GetPolicyGeneration$ = exports.GetPolicyEngine$ = exports.GetPolicy$ = exports.GetOnlineEvaluationConfig$ = exports.GetOauth2CredentialProvider$ = exports.GetMemory$ = exports.GetHarness$ = exports.GetGatewayTarget$ = exports.GetGatewayRule$ = exports.GetGateway$ = exports.GetEvaluator$ = exports.GetConfigurationBundleVersion$ = exports.GetConfigurationBundle$ = exports.GetCodeInterpreter$ = exports.GetBrowserProfile$ = exports.GetBrowser$ = exports.GetApiKeyCredentialProvider$ = exports.GetAgentRuntimeEndpoint$ = exports.GetAgentRuntime$ = exports.DeleteWorkloadIdentity$ = exports.DeleteResourcePolicy$ = exports.DeleteRegistryRecord$ = exports.DeleteRegistry$ = exports.DeletePolicyEngine$ = exports.DeletePolicy$ = exports.DeleteOnlineEvaluationConfig$ = exports.DeleteOauth2CredentialProvider$ = exports.DeleteMemory$ = exports.DeleteHarness$ = exports.DeleteGatewayTarget$ = exports.DeleteGatewayRule$ = exports.DeleteGateway$ = exports.DeleteEvaluator$ = exports.DeleteConfigurationBundle$ = exports.DeleteCodeInterpreter$ = exports.DeleteBrowserProfile$ = exports.DeleteBrowser$ = exports.DeleteApiKeyCredentialProvider$ = exports.DeleteAgentRuntimeEndpoint$ = exports.DeleteAgentRuntime$ = exports.CreateWorkloadIdentity$ = exports.CreateRegistryRecord$ = exports.CreateRegistry$ = exports.CreatePolicyEngine$ = exports.CreatePolicy$ = void 0;
15
+ exports.UpdateWorkloadIdentity$ = exports.UpdateRegistryRecordStatus$ = exports.UpdateRegistryRecord$ = exports.UpdateRegistry$ = exports.UpdatePolicyEngine$ = exports.UpdatePolicy$ = exports.UpdateOnlineEvaluationConfig$ = exports.UpdateOauth2CredentialProvider$ = exports.UpdateMemory$ = exports.UpdateHarness$ = exports.UpdateGatewayTarget$ = exports.UpdateGatewayRule$ = exports.UpdateGateway$ = exports.UpdateEvaluator$ = exports.UpdateConfigurationBundle$ = exports.UpdateApiKeyCredentialProvider$ = exports.UpdateAgentRuntimeEndpoint$ = exports.UpdateAgentRuntime$ = exports.UntagResource$ = exports.TagResource$ = exports.SynchronizeGatewayTargets$ = exports.SubmitRegistryRecordForApproval$ = exports.StartPolicyGeneration$ = exports.SetTokenVaultCMK$ = exports.PutResourcePolicy$ = exports.ListWorkloadIdentities$ = exports.ListTagsForResource$ = exports.ListRegistryRecords$ = exports.ListRegistries$ = exports.ListPolicyGenerations$ = exports.ListPolicyGenerationAssets$ = exports.ListPolicyEngines$ = exports.ListPolicies$ = exports.ListOnlineEvaluationConfigs$ = exports.ListOauth2CredentialProviders$ = exports.ListMemories$ = exports.ListHarnesses$ = exports.ListGatewayTargets$ = exports.ListGateways$ = exports.ListGatewayRules$ = exports.ListEvaluators$ = exports.ListConfigurationBundleVersions$ = exports.ListConfigurationBundles$ = exports.ListCodeInterpreters$ = exports.ListBrowsers$ = exports.ListBrowserProfiles$ = exports.ListApiKeyCredentialProviders$ = exports.ListAgentRuntimeVersions$ = exports.ListAgentRuntimes$ = exports.ListAgentRuntimeEndpoints$ = void 0;
16
+ const _A = "Actions";
15
17
  const _AC = "ApprovalConfiguration";
16
18
  const _ACD = "AgentCardDefinition";
17
19
  const _ACMVT = "AuthorizingClaimMatchValueType";
@@ -37,6 +39,7 @@ const _AREg = "AgentRuntimeEndpoints";
37
39
  const _ARg = "AgentRuntimes";
38
40
  const _ASC = "ApiSchemaConfiguration";
39
41
  const _ASD = "AgentSkillsDescriptor";
42
+ const _Ac = "Action";
40
43
  const _BEMC = "BedrockEvaluatorModelConfig";
41
44
  const _BEP = "BrowserEnterprisePolicy";
42
45
  const _BEPr = "BrowserEnterprisePolicies";
@@ -58,13 +61,23 @@ const _CARERr = "CreateAgentRuntimeEndpointResponse";
58
61
  const _CARR = "CreateAgentRuntimeRequest";
59
62
  const _CARRr = "CreateAgentRuntimeResponse";
60
63
  const _CB = "CreateBrowser";
64
+ const _CBA = "ConfigurationBundleAction";
65
+ const _CBD = "ConfigurationBundleDescription";
61
66
  const _CBEC = "CodeBasedEvaluatorConfig";
62
67
  const _CBP = "CreateBrowserProfile";
63
68
  const _CBPR = "CreateBrowserProfileRequest";
64
69
  const _CBPRr = "CreateBrowserProfileResponse";
65
- const _CBR = "CreateBrowserRequest";
66
- const _CBRr = "CreateBrowserResponse";
70
+ const _CBR = "ConfigurationBundleReference";
71
+ const _CBRr = "CreateBrowserRequest";
72
+ const _CBRre = "CreateBrowserResponse";
73
+ const _CBS = "ConfigurationBundleSummary";
74
+ const _CBSL = "ConfigurationBundleSummaryList";
75
+ const _CBVS = "ConfigurationBundleVersionSummary";
76
+ const _CBVSL = "ConfigurationBundleVersionSummaryList";
67
77
  const _CC = "CodeConfiguration";
78
+ const _CCB = "CreateConfigurationBundle";
79
+ const _CCBR = "CreateConfigurationBundleRequest";
80
+ const _CCBRr = "CreateConfigurationBundleResponse";
68
81
  const _CCC = "CustomConsolidationConfiguration";
69
82
  const _CCCI = "CustomConsolidationConfigurationInput";
70
83
  const _CCI = "CustomConfigurationInput";
@@ -72,11 +85,13 @@ const _CCIR = "CreateCodeInterpreterRequest";
72
85
  const _CCIRr = "CreateCodeInterpreterResponse";
73
86
  const _CCIr = "CreateCodeInterpreter";
74
87
  const _CCL = "ContentConfigurationList";
88
+ const _CCM = "ComponentConfigurationMap";
75
89
  const _CCVT = "CustomClaimValidationType";
76
90
  const _CCVTu = "CustomClaimValidationsType";
77
- const _CCo = "ContainerConfiguration";
78
- const _CCon = "ContentConfiguration";
91
+ const _CCo = "ComponentConfiguration";
92
+ const _CCon = "ContainerConfiguration";
79
93
  const _CCons = "ConsolidationConfiguration";
94
+ const _CCont = "ContentConfiguration";
80
95
  const _CD = "CustomDescriptor";
81
96
  const _CE = "ConflictException";
82
97
  const _CEC = "CustomExtractionConfiguration";
@@ -86,7 +101,10 @@ const _CERr = "CreateEvaluatorResponse";
86
101
  const _CEr = "CreateEvaluator";
87
102
  const _CG = "CreateGateway";
88
103
  const _CGR = "CreateGatewayRequest";
104
+ const _CGRR = "CreateGatewayRuleRequest";
105
+ const _CGRRr = "CreateGatewayRuleResponse";
89
106
  const _CGRr = "CreateGatewayResponse";
107
+ const _CGRre = "CreateGatewayRule";
90
108
  const _CGT = "CreateGatewayTarget";
91
109
  const _CGTR = "CreateGatewayTargetRequest";
92
110
  const _CGTRr = "CreateGatewayTargetResponse";
@@ -139,8 +157,10 @@ const _CWIRr = "CreateWorkloadIdentityResponse";
139
157
  const _CWLIC = "CloudWatchLogsInputConfig";
140
158
  const _CWOC = "CloudWatchOutputConfig";
141
159
  const _Ce = "Certificates";
142
- const _Co = "Code";
143
- const _Con = "Content";
160
+ const _Co = "Conditions";
161
+ const _Cod = "Code";
162
+ const _Con = "Condition";
163
+ const _Cont = "Content";
144
164
  const _D = "Description";
145
165
  const _DAKCP = "DeleteApiKeyCredentialProvider";
146
166
  const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
@@ -157,6 +177,9 @@ const _DBPR = "DeleteBrowserProfileRequest";
157
177
  const _DBPRe = "DeleteBrowserProfileResponse";
158
178
  const _DBR = "DeleteBrowserRequest";
159
179
  const _DBRe = "DeleteBrowserResponse";
180
+ const _DCB = "DeleteConfigurationBundle";
181
+ const _DCBR = "DeleteConfigurationBundleRequest";
182
+ const _DCBRe = "DeleteConfigurationBundleResponse";
160
183
  const _DCI = "DeleteCodeInterpreter";
161
184
  const _DCIR = "DeleteCodeInterpreterRequest";
162
185
  const _DCIRe = "DeleteCodeInterpreterResponse";
@@ -166,7 +189,10 @@ const _DERe = "DeleteEvaluatorResponse";
166
189
  const _DF = "DecryptionFailure";
167
190
  const _DG = "DeleteGateway";
168
191
  const _DGR = "DeleteGatewayRequest";
192
+ const _DGRR = "DeleteGatewayRuleRequest";
193
+ const _DGRRe = "DeleteGatewayRuleResponse";
169
194
  const _DGRe = "DeleteGatewayResponse";
195
+ const _DGRel = "DeleteGatewayRule";
170
196
  const _DGT = "DeleteGatewayTarget";
171
197
  const _DGTR = "DeleteGatewayTargetRequest";
172
198
  const _DGTRe = "DeleteGatewayTargetResponse";
@@ -251,6 +277,12 @@ const _GBPR = "GetBrowserProfileRequest";
251
277
  const _GBPRe = "GetBrowserProfileResponse";
252
278
  const _GBR = "GetBrowserRequest";
253
279
  const _GBRe = "GetBrowserResponse";
280
+ const _GCB = "GetConfigurationBundle";
281
+ const _GCBR = "GetConfigurationBundleRequest";
282
+ const _GCBRe = "GetConfigurationBundleResponse";
283
+ const _GCBV = "GetConfigurationBundleVersion";
284
+ const _GCBVR = "GetConfigurationBundleVersionRequest";
285
+ const _GCBVRe = "GetConfigurationBundleVersionResponse";
254
286
  const _GCI = "GetCodeInterpreter";
255
287
  const _GCIR = "GetCodeInterpreterRequest";
256
288
  const _GCIRe = "GetCodeInterpreterResponse";
@@ -260,7 +292,10 @@ const _GER = "GetEvaluatorRequest";
260
292
  const _GERe = "GetEvaluatorResponse";
261
293
  const _GG = "GetGateway";
262
294
  const _GGR = "GetGatewayRequest";
295
+ const _GGRR = "GetGatewayRuleRequest";
296
+ const _GGRRe = "GetGatewayRuleResponse";
263
297
  const _GGRe = "GetGatewayResponse";
298
+ const _GGRet = "GetGatewayRule";
264
299
  const _GGT = "GetGatewayTarget";
265
300
  const _GGTR = "GetGatewayTargetRequest";
266
301
  const _GGTRe = "GetGatewayTargetResponse";
@@ -294,7 +329,8 @@ const _GPGR = "GetPolicyGenerationRequest";
294
329
  const _GPGRe = "GetPolicyGenerationResponse";
295
330
  const _GPR = "GetPolicyRequest";
296
331
  const _GPRe = "GetPolicyResponse";
297
- const _GR = "GetRegistry";
332
+ const _GR = "GatewayRules";
333
+ const _GRD = "GatewayRuleDetail";
298
334
  const _GRP = "GetResourcePolicy";
299
335
  const _GRPR = "GetResourcePolicyRequest";
300
336
  const _GRPRe = "GetResourcePolicyResponse";
@@ -303,6 +339,7 @@ const _GRRR = "GetRegistryRecordRequest";
303
339
  const _GRRRe = "GetRegistryRecordResponse";
304
340
  const _GRRe = "GetRegistryResponse";
305
341
  const _GRRet = "GetRegistryRecord";
342
+ const _GRe = "GetRegistry";
306
343
  const _GS = "GatewaySummary";
307
344
  const _GSa = "GatewaySummaries";
308
345
  const _GT = "GatewayTarget";
@@ -347,6 +384,7 @@ const _HSarn = "HarnessSkill";
347
384
  const _HT = "HarnessTool";
348
385
  const _HTC = "HarnessTruncationConfiguration";
349
386
  const _HTCa = "HarnessToolConfiguration";
387
+ const _HTCt = "HttpTargetConfiguration";
350
388
  const _HTSC = "HarnessTruncationStrategyConfiguration";
351
389
  const _HTa = "HarnessTools";
352
390
  const _IC = "InferenceConfiguration";
@@ -358,6 +396,7 @@ const _IIC = "InterceptorInputConfiguration";
358
396
  const _IOPCI = "IncludedOauth2ProviderConfigInput";
359
397
  const _IOPCO = "IncludedOauth2ProviderConfigOutput";
360
398
  const _IP = "InlinePayload";
399
+ const _IPa = "IamPrincipal";
361
400
  const _ISE = "InternalServerException";
362
401
  const _KC = "KmsConfiguration";
363
402
  const _KR = "KinesisResource";
@@ -381,6 +420,12 @@ const _LBPRi = "ListBrowserProfilesResponse";
381
420
  const _LBR = "ListBrowsersRequest";
382
421
  const _LBRi = "ListBrowsersResponse";
383
422
  const _LC = "LifecycleConfiguration";
423
+ const _LCB = "ListConfigurationBundles";
424
+ const _LCBR = "ListConfigurationBundlesRequest";
425
+ const _LCBRi = "ListConfigurationBundlesResponse";
426
+ const _LCBV = "ListConfigurationBundleVersions";
427
+ const _LCBVR = "ListConfigurationBundleVersionsRequest";
428
+ const _LCBVRi = "ListConfigurationBundleVersionsResponse";
384
429
  const _LCI = "ListCodeInterpreters";
385
430
  const _LCIR = "ListCodeInterpretersRequest";
386
431
  const _LCIRi = "ListCodeInterpretersResponse";
@@ -390,7 +435,10 @@ const _LER = "ListEvaluatorsRequest";
390
435
  const _LERi = "ListEvaluatorsResponse";
391
436
  const _LG = "ListGateways";
392
437
  const _LGR = "ListGatewaysRequest";
438
+ const _LGRR = "ListGatewayRulesRequest";
439
+ const _LGRRi = "ListGatewayRulesResponse";
393
440
  const _LGRi = "ListGatewaysResponse";
441
+ const _LGRis = "ListGatewayRules";
394
442
  const _LGT = "ListGatewayTargets";
395
443
  const _LGTR = "ListGatewayTargetsRequest";
396
444
  const _LGTRi = "ListGatewayTargetsResponse";
@@ -448,6 +496,10 @@ const _MMSI = "ModifyMemoryStrategyInput";
448
496
  const _MMSL = "ModifyMemoryStrategiesList";
449
497
  const _MOPCI = "MicrosoftOauth2ProviderConfigInput";
450
498
  const _MOPCO = "MicrosoftOauth2ProviderConfigOutput";
499
+ const _MP = "MatchPaths";
500
+ const _MPE = "MatchPrincipalEntries";
501
+ const _MPEa = "MatchPrincipalEntry";
502
+ const _MPa = "MatchPrincipals";
451
503
  const _MRC = "ModifyReflectionConfiguration";
452
504
  const _MRD = "ManagedResourceDetails";
453
505
  const _MS = "MemoryStrategy";
@@ -515,6 +567,8 @@ const _RRSL = "RegistryRecordSummaryList";
515
567
  const _RS = "RegistrySummary";
516
568
  const _RSL = "RegistrySummaryList";
517
569
  const _RSa = "RatingScale";
570
+ const _RTC = "RuntimeTargetConfiguration";
571
+ const _RTTA = "RouteToTargetAction";
518
572
  const _Re = "Resource";
519
573
  const _S = "Secret";
520
574
  const _SC = "S3Configuration";
@@ -537,6 +591,7 @@ const _SGTR = "SynchronizeGatewayTargetsRequest";
537
591
  const _SGTRy = "SynchronizeGatewayTargetsResponse";
538
592
  const _SJ = "SensitiveJson";
539
593
  const _SL = "S3Location";
594
+ const _SMB = "SystemManagedBlock";
540
595
  const _SMC = "SelfManagedConfiguration";
541
596
  const _SMCI = "SelfManagedConfigurationInput";
542
597
  const _SMD = "SkillMdDefinition";
@@ -544,6 +599,7 @@ const _SML = "SecretsManagerLocation";
544
599
  const _SMLR = "SelfManagedLatticeResource";
545
600
  const _SMSI = "SemanticMemoryStrategyInput";
546
601
  const _SMSIu = "SummaryMemoryStrategyInput";
602
+ const _SO = "StaticOverride";
547
603
  const _SOCCI = "SemanticOverrideConsolidationConfigurationInput";
548
604
  const _SOCCIu = "SummaryOverrideConsolidationConfigurationInput";
549
605
  const _SOCI = "SemanticOverrideConfigurationInput";
@@ -558,6 +614,7 @@ const _SPG = "StartPolicyGeneration";
558
614
  const _SPGR = "StartPolicyGenerationRequest";
559
615
  const _SPGRt = "StartPolicyGenerationResponse";
560
616
  const _SQEE = "ServiceQuotaExceededException";
617
+ const _SR = "StaticRoute";
561
618
  const _SRRFA = "SubmitRegistryRecordForApproval";
562
619
  const _SRRFAR = "SubmitRegistryRecordForApprovalRequest";
563
620
  const _SRRFARu = "SubmitRegistryRecordForApprovalResponse";
@@ -586,8 +643,12 @@ const _TR = "TagResource";
586
643
  const _TRR = "TagResourceRequest";
587
644
  const _TRRa = "TagResourceResponse";
588
645
  const _TS = "TargetSummary";
646
+ const _TSE = "TrafficSplitEntry";
647
+ const _TSEr = "TrafficSplitEntries";
589
648
  const _TSa = "TargetSummaries";
590
649
  const _TSo = "ToolSchema";
650
+ const _TTSE = "TargetTrafficSplitEntry";
651
+ const _TTSEa = "TargetTrafficSplitEntries";
591
652
  const _UAC = "UpdatedApprovalConfiguration";
592
653
  const _UACp = "UpdatedAuthorizerConfiguration";
593
654
  const _UAD = "UpdatedA2aDescriptor";
@@ -602,6 +663,9 @@ const _UARR = "UpdateAgentRuntimeRequest";
602
663
  const _UARRp = "UpdateAgentRuntimeResponse";
603
664
  const _UASD = "UpdatedAgentSkillsDescriptor";
604
665
  const _UASDF = "UpdatedAgentSkillsDescriptorFields";
666
+ const _UCB = "UpdateConfigurationBundle";
667
+ const _UCBR = "UpdateConfigurationBundleRequest";
668
+ const _UCBRp = "UpdateConfigurationBundleResponse";
605
669
  const _UCD = "UpdatedCustomDescriptor";
606
670
  const _UD = "UpdatedDescription";
607
671
  const _UDU = "UpdatedDescriptorsUnion";
@@ -612,7 +676,10 @@ const _UERp = "UpdateEvaluatorResponse";
612
676
  const _UEp = "UpdateEvaluator";
613
677
  const _UG = "UpdateGateway";
614
678
  const _UGR = "UpdateGatewayRequest";
679
+ const _UGRR = "UpdateGatewayRuleRequest";
680
+ const _UGRRp = "UpdateGatewayRuleResponse";
615
681
  const _UGRp = "UpdateGatewayResponse";
682
+ const _UGRpd = "UpdateGatewayRule";
616
683
  const _UGT = "UpdateGatewayTarget";
617
684
  const _UGTR = "UpdateGatewayTargetRequest";
618
685
  const _UGTRp = "UpdateGatewayTargetResponse";
@@ -666,13 +733,18 @@ const _UWI = "UpdateWorkloadIdentity";
666
733
  const _UWIR = "UpdateWorkloadIdentityRequest";
667
734
  const _UWIRp = "UpdateWorkloadIdentityResponse";
668
735
  const _VC = "VpcConfig";
736
+ const _VCBS = "VersionCreatedBySource";
669
737
  const _VE = "ValidationException";
670
738
  const _VEF = "ValidationExceptionField";
671
739
  const _VEFL = "ValidationExceptionFieldList";
740
+ const _VF = "VersionFilter";
741
+ const _VLM = "VersionLineageMetadata";
672
742
  const _WID = "WorkloadIdentityDetails";
673
743
  const _WIL = "WorkloadIdentityList";
674
744
  const _WIT = "WorkloadIdentityType";
675
- const _a = "a2a";
745
+ const _WO = "WeightedOverride";
746
+ const _WR = "WeightedRoute";
747
+ const _a = "actions";
676
748
  const _aA = "autoApproval";
677
749
  const _aAl = "allowedAudience";
678
750
  const _aC = "agentCard";
@@ -697,6 +769,7 @@ const _aKCP = "apiKeyCredentialProvider";
697
769
  const _aKSA = "apiKeySecretArn";
698
770
  const _aMRF = "additionalModelRequestFields";
699
771
  const _aMS = "addMemoryStrategies";
772
+ const _aO = "anyOf";
700
773
  const _aOPC = "atlassianOauth2ProviderConfig";
701
774
  const _aQP = "allowedQueryParameters";
702
775
  const _aR = "agentRuntimes";
@@ -709,6 +782,7 @@ const _aRI = "agentRuntimeId";
709
782
  const _aRN = "agentRuntimeName";
710
783
  const _aRORU = "allowedResourceOauth2ReturnUrls";
711
784
  const _aRV = "agentRuntimeVersion";
785
+ const _aRg = "agentcoreRuntime";
712
786
  const _aS = "allowedScopes";
713
787
  const _aSM = "authorizationServerMetadata";
714
788
  const _aSg = "agentSkills";
@@ -716,19 +790,29 @@ const _aT = "authorizerType";
716
790
  const _aTP = "appendToPrompt";
717
791
  const _aTl = "allowedTools";
718
792
  const _aU = "authorizationUrl";
793
+ const _aa = "a2a";
719
794
  const _ar = "arn";
720
- const _b = "bucket";
795
+ const _b = "bundles";
721
796
  const _bA = "browserArn";
797
+ const _bAu = "bundleArn";
722
798
  const _bEMC = "bedrockEvaluatorModelConfig";
723
799
  const _bI = "browserId";
800
+ const _bIu = "bundleId";
724
801
  const _bMC = "bedrockModelConfig";
802
+ const _bN = "bundleName";
803
+ const _bNr = "branchName";
725
804
  const _bOAI = "bucketOwnerAccountId";
726
805
  const _bS = "browserSigning";
727
806
  const _bSr = "browserSummaries";
728
- const _bV = "booleanValue";
807
+ const _bV = "bundleVersion";
808
+ const _bVo = "booleanValue";
809
+ const _bu = "bucket";
729
810
  const _c = "client";
730
811
  const _cA = "createdAt";
731
- const _cB = "codeBased";
812
+ const _cB = "createdBy";
813
+ const _cBN = "createdByName";
814
+ const _cBo = "configurationBundle";
815
+ const _cBod = "codeBased";
732
816
  const _cC = "customClaims";
733
817
  const _cCC = "customConsolidationConfiguration";
734
818
  const _cCo = "contentConfigurations";
@@ -741,6 +825,7 @@ const _cII = "codeInterpreterId";
741
825
  const _cIS = "codeInterpreterSummaries";
742
826
  const _cJWTA = "customJWTAuthorizer";
743
827
  const _cL = "credentialLocation";
828
+ const _cM = "commitMessage";
744
829
  const _cMO = "claimMatchOperator";
745
830
  const _cMS = "customMemoryStrategy";
746
831
  const _cMV = "claimMatchValue";
@@ -767,7 +852,9 @@ const _ca = "categorical";
767
852
  const _ce = "certificates";
768
853
  const _ced = "cedar";
769
854
  const _co = "code";
855
+ const _com = "components";
770
856
  const _con = "configuration";
857
+ const _cond = "conditions";
771
858
  const _conf = "config";
772
859
  const _cons = "consolidation";
773
860
  const _cont = "content";
@@ -819,13 +906,15 @@ const _fL = "fieldList";
819
906
  const _fP = "filterPath";
820
907
  const _fR = "failureReason";
821
908
  const _fU = "fromUrl";
822
- const _fi = "filters";
909
+ const _fi = "filter";
910
+ const _fil = "filters";
823
911
  const _gA = "gatewayArn";
824
912
  const _gI = "gatewayId";
825
913
  const _gIa = "gatewayIdentifier";
826
914
  const _gMC = "geminiModelConfig";
827
915
  const _gOPC = "googleOauth2ProviderConfig";
828
916
  const _gOPCi = "githubOauth2ProviderConfig";
917
+ const _gR = "gatewayRules";
829
918
  const _gT = "grantType";
830
919
  const _gU = "gatewayUrl";
831
920
  const _h = "harness";
@@ -844,9 +933,11 @@ const _iCn = "inferenceConfig";
844
933
  const _iCnp = "inputConfiguration";
845
934
  const _iCnt = "interceptorConfigurations";
846
935
  const _iCnv = "invocationConfiguration";
936
+ const _iD = "includedData";
847
937
  const _iF = "inlineFunction";
848
938
  const _iOPC = "includedOauth2ProviderConfig";
849
939
  const _iP = "interceptionPoints";
940
+ const _iPa = "iamPrincipal";
850
941
  const _iPn = "inlinePayload";
851
942
  const _iRST = "idleRuntimeSessionTimeout";
852
943
  const _iS = "inputSchema";
@@ -871,9 +962,11 @@ const _lCa = "lambdaConfig";
871
962
  const _lFM = "lockedForModification";
872
963
  const _lGN = "logGroupNames";
873
964
  const _lGNo = "logGroupName";
874
- const _lM = "listingMode";
965
+ const _lM = "lineageMetadata";
875
966
  const _lMD = "lastModifiedDate";
967
+ const _lMi = "listingMode";
876
968
  const _lOPC = "linkedinOauth2ProviderConfig";
969
+ const _lPB = "latestPerBranch";
877
970
  const _lSA = "lastSavedAt";
878
971
  const _lSAa = "lastSynchronizedAt";
879
972
  const _lSBI = "lastSavedBrowserId";
@@ -886,6 +979,7 @@ const _la = "label";
886
979
  const _lam = "lambda";
887
980
  const _le = "level";
888
981
  const _m = "message";
982
+ const _mB = "managedBy";
889
983
  const _mBT = "messageBasedTrigger";
890
984
  const _mC = "metadataConfiguration";
891
985
  const _mCe = "messagesCount";
@@ -899,6 +993,8 @@ const _mL = "maxLifetime";
899
993
  const _mMS = "modifyMemoryStrategies";
900
994
  const _mOPC = "microsoftOauth2ProviderConfig";
901
995
  const _mP = "mountPath";
996
+ const _mPa = "matchPrincipals";
997
+ const _mPat = "matchPaths";
902
998
  const _mR = "maxResults";
903
999
  const _mS = "memoryStrategies";
904
1000
  const _mSI = "memoryStrategyId";
@@ -913,6 +1009,7 @@ const _me = "methods";
913
1009
  const _mem = "memory";
914
1010
  const _memo = "memories";
915
1011
  const _met = "method";
1012
+ const _meta = "metadata";
916
1013
  const _mo = "model";
917
1014
  const _mod = "mode";
918
1015
  const _n = "name";
@@ -967,10 +1064,13 @@ const _pRM = "preserveRecentMessages";
967
1064
  const _pS = "profileSummaries";
968
1065
  const _pT = "protocolType";
969
1066
  const _pV = "protocolVersion";
1067
+ const _pVI = "parentVersionIds";
970
1068
  const _po = "policy";
971
1069
  const _pol = "policies";
972
- const _pr = "prefix";
1070
+ const _pr = "priority";
1071
+ const _pre = "prefix";
973
1072
  const _pro = "properties";
1073
+ const _q = "qualifier";
974
1074
  const _r = "reason";
975
1075
  const _rA = "roleArn";
976
1076
  const _rAA = "resourceAssociationArn";
@@ -986,8 +1086,9 @@ const _rE = "runtimeEndpoints";
986
1086
  const _rGA = "resourceGatewayArn";
987
1087
  const _rHA = "requestHeaderAllowlist";
988
1088
  const _rHC = "requestHeaderConfiguration";
989
- const _rI = "registryId";
990
- const _rIe = "recordId";
1089
+ const _rI = "ruleId";
1090
+ const _rIe = "registryId";
1091
+ const _rIec = "recordId";
991
1092
  const _rM = "remoteMcp";
992
1093
  const _rMMDSV = "requireMMDSV2";
993
1094
  const _rP = "resourcePriority";
@@ -996,6 +1097,7 @@ const _rS = "relevanceScore";
996
1097
  const _rSa = "ratingScale";
997
1098
  const _rT = "responseTypes";
998
1099
  const _rTF = "rawTextFragment";
1100
+ const _rTT = "routeToTarget";
999
1101
  const _rTa = "rawText";
1000
1102
  const _rV = "recordVersion";
1001
1103
  const _re = "recording";
@@ -1030,15 +1132,17 @@ const _sMSu = "summaryMemoryStrategy";
1030
1132
  const _sMe = "secretsManager";
1031
1133
  const _sMm = "smithyModel";
1032
1134
  const _sN = "serviceNames";
1033
- const _sO = "semanticOverride";
1135
+ const _sO = "staticOverride";
1034
1136
  const _sOPC = "slackOauth2ProviderConfig";
1035
1137
  const _sOPCa = "salesforceOauth2ProviderConfig";
1138
+ const _sOe = "semanticOverride";
1036
1139
  const _sOu = "summaryOverride";
1037
1140
  const _sP = "systemPrompt";
1038
1141
  const _sPa = "samplingPercentage";
1039
1142
  const _sPe = "serverProtocol";
1040
1143
  const _sR = "statusReasons";
1041
1144
  const _sRt = "statusReason";
1145
+ const _sRta = "staticRoute";
1042
1146
  const _sRu = "summaryRatio";
1043
1147
  const _sS = "stopSequences";
1044
1148
  const _sSP = "summarizationSystemPrompt";
@@ -1062,6 +1166,7 @@ const _str = "strategy";
1062
1166
  const _stra = "strategies";
1063
1167
  const _su = "subnets";
1064
1168
  const _sum = "summarization";
1169
+ const _sy = "system";
1065
1170
  const _t = "type";
1066
1171
  const _tA = "topicArn";
1067
1172
  const _tBT = "tokenBasedTrigger";
@@ -1077,12 +1182,14 @@ const _tIL = "targetIdList";
1077
1182
  const _tIe = "tenantId";
1078
1183
  const _tK = "topK";
1079
1184
  const _tKa = "tagKeys";
1185
+ const _tN = "targetName";
1080
1186
  const _tO = "toolOverrides";
1081
1187
  const _tP = "topP";
1082
1188
  const _tRS = "targetResourceScope";
1083
1189
  const _tS = "timeoutSeconds";
1084
1190
  const _tSo = "toolSchema";
1085
1191
  const _tSr = "triggerSynchronization";
1192
+ const _tSra = "trafficSplit";
1086
1193
  const _tV = "targetVersion";
1087
1194
  const _tVI = "tokenVaultId";
1088
1195
  const _ta = "tags";
@@ -1101,14 +1208,19 @@ const _uPO = "userPreferenceOverride";
1101
1208
  const _ur = "uri";
1102
1209
  const _v = "value";
1103
1210
  const _vC = "vpcConfig";
1104
- const _vI = "vpcIdentifier";
1105
- const _vIe = "versionId";
1211
+ const _vCA = "versionCreatedAt";
1212
+ const _vI = "versionId";
1213
+ const _vIp = "vpcIdentifier";
1106
1214
  const _vM = "validationMode";
1107
1215
  const _ve = "version";
1216
+ const _ver = "versions";
1108
1217
  const _vi = "view";
1218
+ const _w = "weight";
1109
1219
  const _wI = "workloadIdentities";
1110
1220
  const _wIA = "workloadIdentityArn";
1111
1221
  const _wID = "workloadIdentityDetails";
1222
+ const _wO = "weightedOverride";
1223
+ const _wR = "weightedRoute";
1112
1224
  const n0 = "com.amazonaws.bedrockagentcorecontrol";
1113
1225
  const schema_1 = require("@smithy/core/schema");
1114
1226
  const BedrockAgentCoreControlServiceException_1 = require("../models/BedrockAgentCoreControlServiceException");
@@ -1207,6 +1319,7 @@ exports.errorTypeRegistries = [
1207
1319
  ];
1208
1320
  var ApiKeyType = [0, n0, _AKT, 8, 0];
1209
1321
  var ClientSecretType = [0, n0, _CST, 8, 0];
1322
+ var ConfigurationBundleDescription = [0, n0, _CBD, 8, 0];
1210
1323
  var Description = [0, n0, _D, 8, 0];
1211
1324
  var EndpointName = [0, n0, _EN, 8, 0];
1212
1325
  var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
@@ -1368,12 +1481,32 @@ exports.CodeInterpreterSummary$ = [3, n0, _CIS,
1368
1481
  [_cII, _cIA, _st, _cA, _n, _d, _lUA],
1369
1482
  [0, 0, 0, 5, 0, [() => Description, 0], 5], 4
1370
1483
  ];
1371
- exports.ContainerConfiguration$ = [3, n0, _CCo,
1484
+ exports.ComponentConfiguration$ = [3, n0, _CCo,
1485
+ 8,
1486
+ [_con],
1487
+ [15], 1
1488
+ ];
1489
+ exports.ConfigurationBundleReference$ = [3, n0, _CBR,
1490
+ 0,
1491
+ [_bAu, _bV],
1492
+ [0, 0], 2
1493
+ ];
1494
+ exports.ConfigurationBundleSummary$ = [3, n0, _CBS,
1495
+ 0,
1496
+ [_bAu, _bIu, _bN, _d],
1497
+ [0, 0, 0, [() => ConfigurationBundleDescription, 0]], 3
1498
+ ];
1499
+ exports.ConfigurationBundleVersionSummary$ = [3, n0, _CBVS,
1500
+ 0,
1501
+ [_bAu, _bIu, _vI, _vCA, _lM],
1502
+ [0, 0, 0, 4, () => exports.VersionLineageMetadata$], 4
1503
+ ];
1504
+ exports.ContainerConfiguration$ = [3, n0, _CCon,
1372
1505
  0,
1373
1506
  [_cU],
1374
1507
  [0], 1
1375
1508
  ];
1376
- exports.ContentConfiguration$ = [3, n0, _CCon,
1509
+ exports.ContentConfiguration$ = [3, n0, _CCont,
1377
1510
  0,
1378
1511
  [_t, _le],
1379
1512
  [0, 0], 1
@@ -1418,12 +1551,12 @@ exports.CreateBrowserProfileResponse$ = [3, n0, _CBPRr,
1418
1551
  [_pI, _pA, _cA, _st],
1419
1552
  [0, 0, 5, 0], 4
1420
1553
  ];
1421
- exports.CreateBrowserRequest$ = [3, n0, _CBR,
1554
+ exports.CreateBrowserRequest$ = [3, n0, _CBRr,
1422
1555
  0,
1423
1556
  [_n, _nC, _d, _eRA, _re, _bS, _ePn, _ce, _cTl, _ta],
1424
1557
  [0, () => exports.BrowserNetworkConfiguration$, [() => Description, 0], 0, () => exports.RecordingConfig$, () => exports.BrowserSigningConfigInput$, () => BrowserEnterprisePolicies, () => Certificates, [0, 4], 128 | 0], 2
1425
1558
  ];
1426
- exports.CreateBrowserResponse$ = [3, n0, _CBRr,
1559
+ exports.CreateBrowserResponse$ = [3, n0, _CBRre,
1427
1560
  0,
1428
1561
  [_bI, _bA, _cA, _st],
1429
1562
  [0, 0, 5, 0], 4
@@ -1438,10 +1571,20 @@ exports.CreateCodeInterpreterResponse$ = [3, n0, _CCIRr,
1438
1571
  [_cII, _cIA, _cA, _st],
1439
1572
  [0, 0, 5, 0], 4
1440
1573
  ];
1574
+ exports.CreateConfigurationBundleRequest$ = [3, n0, _CCBR,
1575
+ 0,
1576
+ [_bN, _com, _cTl, _d, _bNr, _cM, _cB, _ta],
1577
+ [0, [() => ComponentConfigurationMap, 0], [0, 4], [() => ConfigurationBundleDescription, 0], 0, 0, () => exports.VersionCreatedBySource$, 128 | 0], 2
1578
+ ];
1579
+ exports.CreateConfigurationBundleResponse$ = [3, n0, _CCBRr,
1580
+ 0,
1581
+ [_bAu, _bIu, _vI, _cA],
1582
+ [0, 0, 0, 4], 4
1583
+ ];
1441
1584
  exports.CreateEvaluatorRequest$ = [3, n0, _CER,
1442
1585
  0,
1443
- [_eNv, _eC, _le, _cTl, _d, _ta],
1444
- [0, [() => exports.EvaluatorConfig$, 0], 0, [0, 4], [() => EvaluatorDescription, 0], 128 | 0], 3
1586
+ [_eNv, _eC, _le, _cTl, _d, _kKA, _ta],
1587
+ [0, [() => exports.EvaluatorConfig$, 0], 0, [0, 4], [() => EvaluatorDescription, 0], 0, 128 | 0], 3
1445
1588
  ];
1446
1589
  exports.CreateEvaluatorResponse$ = [3, n0, _CERr,
1447
1590
  0,
@@ -1450,13 +1593,23 @@ exports.CreateEvaluatorResponse$ = [3, n0, _CERr,
1450
1593
  ];
1451
1594
  exports.CreateGatewayRequest$ = [3, n0, _CGR,
1452
1595
  0,
1453
- [_n, _rA, _pT, _aT, _d, _cTl, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
1454
- [[() => GatewayName, 0], 0, 0, 0, [() => GatewayDescription, 0], [0, 4], () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, 0, 128 | 0], 4
1596
+ [_n, _rA, _aT, _d, _cTl, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
1597
+ [[() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], [0, 4], 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, 0, 128 | 0], 3
1455
1598
  ];
1456
1599
  exports.CreateGatewayResponse$ = [3, n0, _CGRr,
1457
1600
  0,
1458
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1459
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 8
1601
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1602
+ [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 7
1603
+ ];
1604
+ exports.CreateGatewayRuleRequest$ = [3, n0, _CGRR,
1605
+ 0,
1606
+ [_gIa, _pr, _a, _cTl, _cond, _d],
1607
+ [[0, 1], 1, [() => Actions, 0], [0, 4], () => Conditions, 0], 3
1608
+ ];
1609
+ exports.CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
1610
+ 0,
1611
+ [_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy],
1612
+ [0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => exports.SystemManagedBlock$], 6
1460
1613
  ];
1461
1614
  exports.CreateGatewayTargetRequest$ = [3, n0, _CGTR,
1462
1615
  0,
@@ -1465,8 +1618,8 @@ exports.CreateGatewayTargetRequest$ = [3, n0, _CGTR,
1465
1618
  ];
1466
1619
  exports.CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
1467
1620
  0,
1468
- [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
1469
- [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$], 8
1621
+ [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
1622
+ [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$, 0], 8
1470
1623
  ];
1471
1624
  exports.CreateHarnessRequest$ = [3, n0, _CHR,
1472
1625
  0,
@@ -1530,7 +1683,7 @@ exports.CreatePolicyResponse$ = [3, n0, _CPRr,
1530
1683
  ];
1531
1684
  exports.CreateRegistryRecordRequest$ = [3, n0, _CRRR,
1532
1685
  0,
1533
- [_rI, _n, _dT, _d, _des, _rV, _sT, _sC, _cTl],
1686
+ [_rIe, _n, _dT, _d, _des, _rV, _sT, _sC, _cTl],
1534
1687
  [[0, 1], 0, 0, [() => Description, 0], () => exports.Descriptors$, 0, 0, () => exports.SynchronizationConfiguration$, [0, 4]], 3
1535
1688
  ];
1536
1689
  exports.CreateRegistryRecordResponse$ = [3, n0, _CRRRr,
@@ -1653,6 +1806,16 @@ exports.DeleteCodeInterpreterResponse$ = [3, n0, _DCIRe,
1653
1806
  [_cII, _st, _lUA],
1654
1807
  [0, 0, 5], 3
1655
1808
  ];
1809
+ exports.DeleteConfigurationBundleRequest$ = [3, n0, _DCBR,
1810
+ 0,
1811
+ [_bIu],
1812
+ [[0, 1]], 1
1813
+ ];
1814
+ exports.DeleteConfigurationBundleResponse$ = [3, n0, _DCBRe,
1815
+ 0,
1816
+ [_bIu, _st],
1817
+ [0, 0], 2
1818
+ ];
1656
1819
  exports.DeleteEvaluatorRequest$ = [3, n0, _DER,
1657
1820
  0,
1658
1821
  [_eI],
@@ -1673,6 +1836,16 @@ exports.DeleteGatewayResponse$ = [3, n0, _DGRe,
1673
1836
  [_gI, _st, _sR],
1674
1837
  [0, 0, 64 | 0], 2
1675
1838
  ];
1839
+ exports.DeleteGatewayRuleRequest$ = [3, n0, _DGRR,
1840
+ 0,
1841
+ [_gIa, _rI],
1842
+ [[0, 1], [0, 1]], 2
1843
+ ];
1844
+ exports.DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
1845
+ 0,
1846
+ [_rI, _st],
1847
+ [0, 0], 2
1848
+ ];
1676
1849
  exports.DeleteGatewayTargetRequest$ = [3, n0, _DGTR,
1677
1850
  0,
1678
1851
  [_gIa, _tI],
@@ -1750,7 +1923,7 @@ exports.DeletePolicyResponse$ = [3, n0, _DPRe,
1750
1923
  ];
1751
1924
  exports.DeleteRegistryRecordRequest$ = [3, n0, _DRRR,
1752
1925
  0,
1753
- [_rI, _rIe],
1926
+ [_rIe, _rIec],
1754
1927
  [[0, 1], [0, 1]], 2
1755
1928
  ];
1756
1929
  exports.DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
@@ -1760,7 +1933,7 @@ exports.DeleteRegistryRecordResponse$ = [3, n0, _DRRRe,
1760
1933
  ];
1761
1934
  exports.DeleteRegistryRequest$ = [3, n0, _DRR,
1762
1935
  0,
1763
- [_rI],
1936
+ [_rIe],
1764
1937
  [[0, 1]], 1
1765
1938
  ];
1766
1939
  exports.DeleteRegistryResponse$ = [3, n0, _DRRe,
@@ -1790,7 +1963,7 @@ exports.DeleteWorkloadIdentityResponse$ = [3, n0, _DWIRe,
1790
1963
  ];
1791
1964
  exports.Descriptors$ = [3, n0, _De,
1792
1965
  0,
1793
- [_mc, _a, _cu, _aSg],
1966
+ [_mc, _aa, _cu, _aSg],
1794
1967
  [() => exports.McpDescriptor$, () => exports.A2aDescriptor$, () => exports.CustomDescriptor$, () => exports.AgentSkillsDescriptor$]
1795
1968
  ];
1796
1969
  exports.EpisodicConsolidationOverride$ = [3, n0, _ECO,
@@ -1845,8 +2018,8 @@ exports.EpisodicReflectionOverride$ = [3, n0, _ERO,
1845
2018
  ];
1846
2019
  exports.EvaluatorSummary$ = [3, n0, _ES,
1847
2020
  0,
1848
- [_eA, _eI, _eNv, _eT, _st, _cA, _uA, _d, _le, _lFM],
1849
- [0, 0, 0, 0, 0, 4, 4, [() => EvaluatorDescription, 0], 0, 2], 7
2021
+ [_eA, _eI, _eNv, _eT, _st, _cA, _uA, _d, _le, _lFM, _kKA],
2022
+ [0, 0, 0, 0, 0, 4, 4, [() => EvaluatorDescription, 0], 0, 2, 0], 7
1850
2023
  ];
1851
2024
  exports.Filter$ = [3, n0, _F,
1852
2025
  0,
@@ -1878,15 +2051,20 @@ exports.GatewayPolicyEngineConfiguration$ = [3, n0, _GPEC,
1878
2051
  [_ar, _mod],
1879
2052
  [0, 0], 2
1880
2053
  ];
2054
+ exports.GatewayRuleDetail$ = [3, n0, _GRD,
2055
+ 0,
2056
+ [_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
2057
+ [0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => exports.SystemManagedBlock$, 5], 6
2058
+ ];
1881
2059
  exports.GatewaySummary$ = [3, n0, _GS,
1882
2060
  0,
1883
- [_gI, _n, _st, _cA, _uA, _aT, _pT, _d],
1884
- [0, [() => GatewayName, 0], 0, 5, 5, 0, 0, [() => GatewayDescription, 0]], 7
2061
+ [_gI, _n, _st, _cA, _uA, _aT, _d, _pT],
2062
+ [0, [() => GatewayName, 0], 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
1885
2063
  ];
1886
2064
  exports.GatewayTarget$ = [3, n0, _GT,
1887
2065
  0,
1888
- [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
1889
- [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$], 8
2066
+ [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
2067
+ [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$, 0], 8
1890
2068
  ];
1891
2069
  exports.GetAgentRuntimeEndpointRequest$ = [3, n0, _GARER,
1892
2070
  0,
@@ -1948,15 +2126,35 @@ exports.GetCodeInterpreterResponse$ = [3, n0, _GCIRe,
1948
2126
  [_cII, _cIA, _n, _nC, _st, _cA, _lUA, _d, _eRA, _ce, _fR],
1949
2127
  [0, 0, 0, () => exports.CodeInterpreterNetworkConfiguration$, 0, 5, 5, [() => Description, 0], 0, () => Certificates, 0], 7
1950
2128
  ];
2129
+ exports.GetConfigurationBundleRequest$ = [3, n0, _GCBR,
2130
+ 0,
2131
+ [_bIu, _bNr],
2132
+ [[0, 1], [0, { [_hQ]: _bNr }]], 1
2133
+ ];
2134
+ exports.GetConfigurationBundleResponse$ = [3, n0, _GCBRe,
2135
+ 0,
2136
+ [_bAu, _bIu, _bN, _vI, _com, _cA, _uA, _d, _lM],
2137
+ [0, 0, 0, 0, [() => ComponentConfigurationMap, 0], 4, 4, [() => ConfigurationBundleDescription, 0], () => exports.VersionLineageMetadata$], 7
2138
+ ];
2139
+ exports.GetConfigurationBundleVersionRequest$ = [3, n0, _GCBVR,
2140
+ 0,
2141
+ [_bIu, _vI],
2142
+ [[0, 1], [0, 1]], 2
2143
+ ];
2144
+ exports.GetConfigurationBundleVersionResponse$ = [3, n0, _GCBVRe,
2145
+ 0,
2146
+ [_bAu, _bIu, _bN, _vI, _com, _cA, _vCA, _d, _lM],
2147
+ [0, 0, 0, 0, [() => ComponentConfigurationMap, 0], 4, 4, [() => ConfigurationBundleDescription, 0], () => exports.VersionLineageMetadata$], 7
2148
+ ];
1951
2149
  exports.GetEvaluatorRequest$ = [3, n0, _GER,
1952
2150
  0,
1953
- [_eI],
1954
- [[0, 1]], 1
2151
+ [_eI, _iD],
2152
+ [[0, 1], [0, { [_hQ]: _iD }]], 1
1955
2153
  ];
1956
2154
  exports.GetEvaluatorResponse$ = [3, n0, _GERe,
1957
2155
  0,
1958
- [_eA, _eI, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM],
1959
- [0, 0, 0, [() => exports.EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2], 8
2156
+ [_eA, _eI, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM, _kKA],
2157
+ [0, 0, 0, [() => exports.EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2, 0], 8
1960
2158
  ];
1961
2159
  exports.GetGatewayRequest$ = [3, n0, _GGR,
1962
2160
  0,
@@ -1965,8 +2163,18 @@ exports.GetGatewayRequest$ = [3, n0, _GGR,
1965
2163
  ];
1966
2164
  exports.GetGatewayResponse$ = [3, n0, _GGRe,
1967
2165
  0,
1968
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
1969
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 8
2166
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
2167
+ [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 7
2168
+ ];
2169
+ exports.GetGatewayRuleRequest$ = [3, n0, _GGRR,
2170
+ 0,
2171
+ [_gIa, _rI],
2172
+ [[0, 1], [0, 1]], 2
2173
+ ];
2174
+ exports.GetGatewayRuleResponse$ = [3, n0, _GGRRe,
2175
+ 0,
2176
+ [_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
2177
+ [0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => exports.SystemManagedBlock$, 5], 6
1970
2178
  ];
1971
2179
  exports.GetGatewayTargetRequest$ = [3, n0, _GGTR,
1972
2180
  0,
@@ -1975,8 +2183,8 @@ exports.GetGatewayTargetRequest$ = [3, n0, _GGTR,
1975
2183
  ];
1976
2184
  exports.GetGatewayTargetResponse$ = [3, n0, _GGTRe,
1977
2185
  0,
1978
- [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
1979
- [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$], 8
2186
+ [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
2187
+ [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$, 0], 8
1980
2188
  ];
1981
2189
  exports.GetHarnessRequest$ = [3, n0, _GHR,
1982
2190
  0,
@@ -2050,22 +2258,22 @@ exports.GetPolicyResponse$ = [3, n0, _GPRe,
2050
2258
  ];
2051
2259
  exports.GetRegistryRecordRequest$ = [3, n0, _GRRR,
2052
2260
  0,
2053
- [_rI, _rIe],
2261
+ [_rIe, _rIec],
2054
2262
  [[0, 1], [0, 1]], 2
2055
2263
  ];
2056
2264
  exports.GetRegistryRecordResponse$ = [3, n0, _GRRRe,
2057
2265
  0,
2058
- [_rAeg, _rAe, _rIe, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
2266
+ [_rAeg, _rAe, _rIec, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
2059
2267
  [0, 0, 0, 0, 0, () => exports.Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => exports.SynchronizationConfiguration$], 9
2060
2268
  ];
2061
2269
  exports.GetRegistryRequest$ = [3, n0, _GRR,
2062
2270
  0,
2063
- [_rI],
2271
+ [_rIe],
2064
2272
  [[0, 1]], 1
2065
2273
  ];
2066
2274
  exports.GetRegistryResponse$ = [3, n0, _GRRe,
2067
2275
  0,
2068
- [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
2276
+ [_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
2069
2277
  [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => exports.AuthorizerConfiguration$, () => exports.ApprovalConfiguration$, 0], 6
2070
2278
  ];
2071
2279
  exports.GetResourcePolicyRequest$ = [3, n0, _GRPR,
@@ -2213,6 +2421,11 @@ exports.IamCredentialProvider$ = [3, n0, _ICP,
2213
2421
  [_ser, _reg],
2214
2422
  [0, 0], 1
2215
2423
  ];
2424
+ exports.IamPrincipal$ = [3, n0, _IPa,
2425
+ 0,
2426
+ [_ar, _o],
2427
+ [0, 0], 1
2428
+ ];
2216
2429
  exports.IncludedOauth2ProviderConfigInput$ = [3, n0, _IOPCI,
2217
2430
  0,
2218
2431
  [_cI, _cS, _is, _aE, _tE],
@@ -2348,6 +2561,26 @@ exports.ListCodeInterpretersResponse$ = [3, n0, _LCIRi,
2348
2561
  [_cIS, _nTe],
2349
2562
  [[() => CodeInterpreterSummaries, 0], 0], 1
2350
2563
  ];
2564
+ exports.ListConfigurationBundlesRequest$ = [3, n0, _LCBR,
2565
+ 0,
2566
+ [_nTe, _mR],
2567
+ [[0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }]]
2568
+ ];
2569
+ exports.ListConfigurationBundlesResponse$ = [3, n0, _LCBRi,
2570
+ 0,
2571
+ [_b, _nTe],
2572
+ [[() => ConfigurationBundleSummaryList, 0], 0], 1
2573
+ ];
2574
+ exports.ListConfigurationBundleVersionsRequest$ = [3, n0, _LCBVR,
2575
+ 0,
2576
+ [_bIu, _nTe, _mR, _fi],
2577
+ [[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }], () => exports.VersionFilter$], 1
2578
+ ];
2579
+ exports.ListConfigurationBundleVersionsResponse$ = [3, n0, _LCBVRi,
2580
+ 0,
2581
+ [_ver, _nTe],
2582
+ [() => ConfigurationBundleVersionSummaryList, 0], 1
2583
+ ];
2351
2584
  exports.ListEvaluatorsRequest$ = [3, n0, _LER,
2352
2585
  0,
2353
2586
  [_nTe, _mR],
@@ -2358,6 +2591,16 @@ exports.ListEvaluatorsResponse$ = [3, n0, _LERi,
2358
2591
  [_ev, _nTe],
2359
2592
  [[() => EvaluatorSummaryList, 0], 0], 1
2360
2593
  ];
2594
+ exports.ListGatewayRulesRequest$ = [3, n0, _LGRR,
2595
+ 0,
2596
+ [_gIa, _mR, _nTe],
2597
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
2598
+ ];
2599
+ exports.ListGatewayRulesResponse$ = [3, n0, _LGRRi,
2600
+ 0,
2601
+ [_gR, _nTe],
2602
+ [[() => GatewayRules, 0], 0], 1
2603
+ ];
2361
2604
  exports.ListGatewaysRequest$ = [3, n0, _LGR,
2362
2605
  0,
2363
2606
  [_mR, _nTe],
@@ -2470,7 +2713,7 @@ exports.ListRegistriesResponse$ = [3, n0, _LRRi,
2470
2713
  ];
2471
2714
  exports.ListRegistryRecordsRequest$ = [3, n0, _LRRR,
2472
2715
  0,
2473
- [_rI, _mR, _nTe, _n, _st, _dT],
2716
+ [_rIe, _mR, _nTe, _n, _st, _dT],
2474
2717
  [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }], [0, { [_hQ]: _n }], [0, { [_hQ]: _st }], [0, { [_hQ]: _dT }]], 1
2475
2718
  ];
2476
2719
  exports.ListRegistryRecordsResponse$ = [3, n0, _LRRRi,
@@ -2510,9 +2753,19 @@ exports.ManagedResourceDetails$ = [3, n0, _MRD,
2510
2753
  ];
2511
2754
  exports.ManagedVpcResource$ = [3, n0, _MVR,
2512
2755
  0,
2513
- [_vI, _sIu, _eIAT, _sGI, _ta, _rD],
2756
+ [_vIp, _sIu, _eIAT, _sGI, _ta, _rD],
2514
2757
  [0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
2515
2758
  ];
2759
+ exports.MatchPaths$ = [3, n0, _MP,
2760
+ 0,
2761
+ [_aO],
2762
+ [64 | 0], 1
2763
+ ];
2764
+ exports.MatchPrincipals$ = [3, n0, _MPa,
2765
+ 0,
2766
+ [_aO],
2767
+ [() => MatchPrincipalEntries], 1
2768
+ ];
2516
2769
  exports.McpDescriptor$ = [3, n0, _MD,
2517
2770
  0,
2518
2771
  [_se, _to],
@@ -2530,8 +2783,8 @@ exports.McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
2530
2783
  ];
2531
2784
  exports.McpServerTargetConfiguration$ = [3, n0, _MSTC,
2532
2785
  0,
2533
- [_end, _mTS, _rP, _lM],
2534
- [0, [() => exports.McpToolSchemaConfiguration$, 0], 1, 0], 1
2786
+ [_end, _mTS, _lMi, _rP],
2787
+ [0, [() => exports.McpToolSchemaConfiguration$, 0], 0, 1], 1
2535
2788
  ];
2536
2789
  exports.Memory$ = [3, n0, _M,
2537
2790
  0,
@@ -2705,17 +2958,17 @@ exports.RegistryRecordOAuthCredentialProvider$ = [3, n0, _RROACP,
2705
2958
  ];
2706
2959
  exports.RegistryRecordSummary$ = [3, n0, _RRS,
2707
2960
  0,
2708
- [_rAeg, _rAe, _rIe, _n, _dT, _rV, _st, _cA, _uA, _d],
2961
+ [_rAeg, _rAe, _rIec, _n, _dT, _rV, _st, _cA, _uA, _d],
2709
2962
  [0, 0, 0, 0, 0, 0, 0, 5, 5, [() => Description, 0]], 9
2710
2963
  ];
2711
2964
  exports.RegistrySummary$ = [3, n0, _RS,
2712
2965
  0,
2713
- [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
2966
+ [_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
2714
2967
  [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, 0], 6
2715
2968
  ];
2716
2969
  exports.Rule$ = [3, n0, _R,
2717
2970
  0,
2718
- [_sCa, _fi, _sCe],
2971
+ [_sCa, _fil, _sCe],
2719
2972
  [() => exports.SamplingConfig$, () => FilterList, () => exports.SessionConfig$], 1
2720
2973
  ];
2721
2974
  exports.RuntimeMetadataConfiguration$ = [3, n0, _RMC,
@@ -2723,6 +2976,11 @@ exports.RuntimeMetadataConfiguration$ = [3, n0, _RMC,
2723
2976
  [_rMMDSV],
2724
2977
  [2], 1
2725
2978
  ];
2979
+ exports.RuntimeTargetConfiguration$ = [3, n0, _RTC,
2980
+ 0,
2981
+ [_ar, _q],
2982
+ [0, 0], 1
2983
+ ];
2726
2984
  exports.S3Configuration$ = [3, n0, _SC,
2727
2985
  0,
2728
2986
  [_ur, _bOAI],
@@ -2730,7 +2988,7 @@ exports.S3Configuration$ = [3, n0, _SC,
2730
2988
  ];
2731
2989
  exports.S3Location$ = [3, n0, _SL,
2732
2990
  0,
2733
- [_b, _pr, _vIe],
2991
+ [_bu, _pre, _vI],
2734
2992
  [0, 0, 0], 2
2735
2993
  ];
2736
2994
  exports.SalesforceOauth2ProviderConfigInput$ = [3, n0, _SOPCI,
@@ -2858,6 +3116,16 @@ exports.StartPolicyGenerationResponse$ = [3, n0, _SPGRt,
2858
3116
  [_pEI, _pGI, _n, _pGA, _res, _cA, _uA, _st, _sR, _f],
2859
3117
  [0, 0, 0, 0, () => exports.Resource$, 5, 5, 0, 64 | 0, 0], 9
2860
3118
  ];
3119
+ exports.StaticOverride$ = [3, n0, _SO,
3120
+ 0,
3121
+ [_bAu, _bV],
3122
+ [0, 0], 2
3123
+ ];
3124
+ exports.StaticRoute$ = [3, n0, _SR,
3125
+ 0,
3126
+ [_tN],
3127
+ [[() => TargetName, 0]], 1
3128
+ ];
2861
3129
  exports.StrategyConfiguration$ = [3, n0, _SCt,
2862
3130
  0,
2863
3131
  [_t, _ex, _cons, _ref, _sMC],
@@ -2870,12 +3138,12 @@ exports.StreamDeliveryResources$ = [3, n0, _SDR,
2870
3138
  ];
2871
3139
  exports.SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
2872
3140
  0,
2873
- [_rI, _rIe],
3141
+ [_rIe, _rIec],
2874
3142
  [[0, 1], [0, 1]], 2
2875
3143
  ];
2876
3144
  exports.SubmitRegistryRecordForApprovalResponse$ = [3, n0, _SRRFARu,
2877
3145
  0,
2878
- [_rAeg, _rAe, _rIe, _st, _uA],
3146
+ [_rAeg, _rAe, _rIec, _st, _uA],
2879
3147
  [0, 0, 0, 0, 5], 5
2880
3148
  ];
2881
3149
  exports.SummaryConsolidationOverride$ = [3, n0, _SCOu,
@@ -2913,6 +3181,11 @@ exports.SynchronizeGatewayTargetsResponse$ = [3, n0, _SGTRy,
2913
3181
  [_tar],
2914
3182
  [[() => GatewayTargetList, 0]]
2915
3183
  ];
3184
+ exports.SystemManagedBlock$ = [3, n0, _SMB,
3185
+ 0,
3186
+ [_mB],
3187
+ [0], 1
3188
+ ];
2916
3189
  exports.TagResourceRequest$ = [3, n0, _TRR,
2917
3190
  0,
2918
3191
  [_rAes, _ta],
@@ -2928,6 +3201,11 @@ exports.TargetSummary$ = [3, n0, _TS,
2928
3201
  [_tI, _n, _st, _cA, _uA, _d, _rP],
2929
3202
  [0, [() => TargetName, 0], 0, 5, 5, [() => TargetDescription, 0], 1], 5
2930
3203
  ];
3204
+ exports.TargetTrafficSplitEntry$ = [3, n0, _TTSE,
3205
+ 0,
3206
+ [_n, _w, _tN, _d, _meta],
3207
+ [0, 1, [() => TargetName, 0], 0, 128 | 0], 3
3208
+ ];
2931
3209
  exports.TimeBasedTrigger$ = [3, n0, _TBT,
2932
3210
  0,
2933
3211
  [_iST],
@@ -2958,6 +3236,11 @@ exports.ToolsDefinition$ = [3, n0, _TDoo,
2958
3236
  [_pV, _iC],
2959
3237
  [0, 0]
2960
3238
  ];
3239
+ exports.TrafficSplitEntry$ = [3, n0, _TSE,
3240
+ 0,
3241
+ [_n, _w, _cBo, _d, _meta],
3242
+ [0, 1, () => exports.ConfigurationBundleReference$, 0, 128 | 0], 3
3243
+ ];
2961
3244
  exports.UntagResourceRequest$ = [3, n0, _URR,
2962
3245
  0,
2963
3246
  [_rAes, _tKa],
@@ -2998,6 +3281,16 @@ exports.UpdateApiKeyCredentialProviderResponse$ = [3, n0, _UAKCPRp,
2998
3281
  [_aKSA, _n, _cPA, _cT, _lUT],
2999
3282
  [() => exports.Secret$, 0, 0, 4, 4], 5
3000
3283
  ];
3284
+ exports.UpdateConfigurationBundleRequest$ = [3, n0, _UCBR,
3285
+ 0,
3286
+ [_bIu, _cTl, _bN, _d, _com, _pVI, _bNr, _cM, _cB],
3287
+ [[0, 1], [0, 4], 0, [() => ConfigurationBundleDescription, 0], [() => ComponentConfigurationMap, 0], 64 | 0, 0, 0, () => exports.VersionCreatedBySource$], 1
3288
+ ];
3289
+ exports.UpdateConfigurationBundleResponse$ = [3, n0, _UCBRp,
3290
+ 0,
3291
+ [_bAu, _bIu, _vI, _uA],
3292
+ [0, 0, 0, 4], 4
3293
+ ];
3001
3294
  exports.UpdatedA2aDescriptor$ = [3, n0, _UAD,
3002
3295
  0,
3003
3296
  [_oV],
@@ -3040,7 +3333,7 @@ exports.UpdatedDescriptors$ = [3, n0, _UDp,
3040
3333
  ];
3041
3334
  exports.UpdatedDescriptorsUnion$ = [3, n0, _UDU,
3042
3335
  0,
3043
- [_mc, _a, _cu, _aSg],
3336
+ [_mc, _aa, _cu, _aSg],
3044
3337
  [() => exports.UpdatedMcpDescriptor$, () => exports.UpdatedA2aDescriptor$, () => exports.UpdatedCustomDescriptor$, () => exports.UpdatedAgentSkillsDescriptor$]
3045
3338
  ];
3046
3339
  exports.UpdatedHarnessEnvironmentArtifact$ = [3, n0, _UHEA,
@@ -3095,8 +3388,8 @@ exports.UpdatedToolsDefinition$ = [3, n0, _UTD,
3095
3388
  ];
3096
3389
  exports.UpdateEvaluatorRequest$ = [3, n0, _UER,
3097
3390
  0,
3098
- [_eI, _cTl, _d, _eC, _le],
3099
- [[0, 1], [0, 4], [() => EvaluatorDescription, 0], [() => exports.EvaluatorConfig$, 0], 0], 1
3391
+ [_eI, _cTl, _d, _eC, _le, _kKA],
3392
+ [[0, 1], [0, 4], [() => EvaluatorDescription, 0], [() => exports.EvaluatorConfig$, 0], 0, 0], 1
3100
3393
  ];
3101
3394
  exports.UpdateEvaluatorResponse$ = [3, n0, _UERp,
3102
3395
  0,
@@ -3105,13 +3398,23 @@ exports.UpdateEvaluatorResponse$ = [3, n0, _UERp,
3105
3398
  ];
3106
3399
  exports.UpdateGatewayRequest$ = [3, n0, _UGR,
3107
3400
  0,
3108
- [_gIa, _n, _rA, _pT, _aT, _d, _pC, _aCu, _kKA, _iCnt, _pEC, _eL],
3109
- [[0, 1], [() => GatewayName, 0], 0, 0, 0, [() => GatewayDescription, 0], () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, 0], 5
3401
+ [_gIa, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL],
3402
+ [[0, 1], [() => GatewayName, 0], 0, 0, [() => GatewayDescription, 0], 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, 0], 4
3110
3403
  ];
3111
3404
  exports.UpdateGatewayResponse$ = [3, n0, _UGRp,
3112
3405
  0,
3113
- [_gA, _gI, _cA, _uA, _st, _n, _pT, _aT, _gU, _sR, _d, _rA, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
3114
- [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 8
3406
+ [_gA, _gI, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _wID, _eL],
3407
+ [0, 0, 5, 5, 0, [() => GatewayName, 0], 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, () => exports.GatewayProtocolConfiguration$, () => exports.AuthorizerConfiguration$, 0, () => GatewayInterceptorConfigurations, () => exports.GatewayPolicyEngineConfiguration$, () => exports.WorkloadIdentityDetails$, 0], 7
3408
+ ];
3409
+ exports.UpdateGatewayRuleRequest$ = [3, n0, _UGRR,
3410
+ 0,
3411
+ [_gIa, _rI, _pr, _cond, _a, _d],
3412
+ [[0, 1], [0, 1], 1, () => Conditions, [() => Actions, 0], 0], 2
3413
+ ];
3414
+ exports.UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
3415
+ 0,
3416
+ [_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
3417
+ [0, 0, 1, [() => Actions, 0], 5, 0, () => Conditions, 0, () => exports.SystemManagedBlock$, 5], 6
3115
3418
  ];
3116
3419
  exports.UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
3117
3420
  0,
@@ -3120,8 +3423,8 @@ exports.UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
3120
3423
  ];
3121
3424
  exports.UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
3122
3425
  0,
3123
- [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD],
3124
- [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$], 8
3426
+ [_gA, _tI, _cA, _uA, _st, _n, _tC, _cPC, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
3427
+ [0, 0, 5, 5, 0, [() => TargetName, 0], [() => exports.TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => exports.MetadataConfiguration$, () => exports.PrivateEndpoint$, () => PrivateEndpointManagedResources, () => exports.AuthorizationData$, 0], 8
3125
3428
  ];
3126
3429
  exports.UpdateHarnessRequest$ = [3, n0, _UHR,
3127
3430
  0,
@@ -3185,32 +3488,32 @@ exports.UpdatePolicyResponse$ = [3, n0, _UPRp,
3185
3488
  ];
3186
3489
  exports.UpdateRegistryRecordRequest$ = [3, n0, _URRR,
3187
3490
  0,
3188
- [_rI, _rIe, _n, _d, _dT, _des, _rV, _sT, _sC, _tSr],
3491
+ [_rIe, _rIec, _n, _d, _dT, _des, _rV, _sT, _sC, _tSr],
3189
3492
  [[0, 1], [0, 1], 0, [() => exports.UpdatedDescription$, 0], 0, () => exports.UpdatedDescriptors$, 0, () => exports.UpdatedSynchronizationType$, () => exports.UpdatedSynchronizationConfiguration$, 2], 2
3190
3493
  ];
3191
3494
  exports.UpdateRegistryRecordResponse$ = [3, n0, _URRRp,
3192
3495
  0,
3193
- [_rAeg, _rAe, _rIe, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
3496
+ [_rAeg, _rAe, _rIec, _n, _dT, _des, _st, _cA, _uA, _d, _rV, _sRt, _sT, _sC],
3194
3497
  [0, 0, 0, 0, 0, () => exports.Descriptors$, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => exports.SynchronizationConfiguration$], 9
3195
3498
  ];
3196
3499
  exports.UpdateRegistryRecordStatusRequest$ = [3, n0, _URRSR,
3197
3500
  0,
3198
- [_rI, _rIe, _st, _sRt],
3501
+ [_rIe, _rIec, _st, _sRt],
3199
3502
  [[0, 1], [0, 1], 0, 0], 4
3200
3503
  ];
3201
3504
  exports.UpdateRegistryRecordStatusResponse$ = [3, n0, _URRSRp,
3202
3505
  0,
3203
- [_rAeg, _rAe, _rIe, _st, _sRt, _uA],
3506
+ [_rAeg, _rAe, _rIec, _st, _sRt, _uA],
3204
3507
  [0, 0, 0, 0, 0, 5], 6
3205
3508
  ];
3206
3509
  exports.UpdateRegistryRequest$ = [3, n0, _URRp,
3207
3510
  0,
3208
- [_rI, _n, _d, _aCu, _aCp],
3511
+ [_rIe, _n, _d, _aCu, _aCp],
3209
3512
  [[0, 1], 0, [() => exports.UpdatedDescription$, 0], () => exports.UpdatedAuthorizerConfiguration$, () => exports.UpdatedApprovalConfiguration$], 1
3210
3513
  ];
3211
3514
  exports.UpdateRegistryResponse$ = [3, n0, _URRpd,
3212
3515
  0,
3213
- [_n, _rI, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
3516
+ [_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _aCu, _aCp, _sRt],
3214
3517
  [0, 0, 0, 0, 5, 5, [() => Description, 0], 0, () => exports.AuthorizerConfiguration$, () => exports.ApprovalConfiguration$, 0], 6
3215
3518
  ];
3216
3519
  exports.UpdateWorkloadIdentityRequest$ = [3, n0, _UWIR,
@@ -3258,11 +3561,36 @@ exports.ValidationExceptionField$ = [3, n0, _VEF,
3258
3561
  [_n, _m],
3259
3562
  [0, 0], 2
3260
3563
  ];
3564
+ exports.VersionCreatedBySource$ = [3, n0, _VCBS,
3565
+ 0,
3566
+ [_n, _ar],
3567
+ [0, 0], 1
3568
+ ];
3569
+ exports.VersionFilter$ = [3, n0, _VF,
3570
+ 0,
3571
+ [_bNr, _cBN, _lPB],
3572
+ [0, 0, 2]
3573
+ ];
3574
+ exports.VersionLineageMetadata$ = [3, n0, _VLM,
3575
+ 0,
3576
+ [_pVI, _bNr, _cB, _cM],
3577
+ [64 | 0, 0, () => exports.VersionCreatedBySource$, 0]
3578
+ ];
3261
3579
  exports.VpcConfig$ = [3, n0, _VC,
3262
3580
  0,
3263
3581
  [_sG, _su],
3264
3582
  [64 | 0, 64 | 0], 2
3265
3583
  ];
3584
+ exports.WeightedOverride$ = [3, n0, _WO,
3585
+ 0,
3586
+ [_tSra],
3587
+ [() => TrafficSplitEntries], 1
3588
+ ];
3589
+ exports.WeightedRoute$ = [3, n0, _WR,
3590
+ 0,
3591
+ [_tSra],
3592
+ [[() => TargetTrafficSplitEntries, 0]], 1
3593
+ ];
3266
3594
  exports.WorkloadIdentityDetails$ = [3, n0, _WID,
3267
3595
  0,
3268
3596
  [_wIA],
@@ -3274,6 +3602,10 @@ exports.WorkloadIdentityType$ = [3, n0, _WIT,
3274
3602
  [0, 0], 2
3275
3603
  ];
3276
3604
  var __Unit = "unit";
3605
+ var Actions = [1, n0, _A,
3606
+ 0, [() => exports.Action$,
3607
+ 0]
3608
+ ];
3277
3609
  var AgentRuntimeEndpoints = [1, n0, _AREg,
3278
3610
  0, [() => exports.AgentRuntimeEndpoint$,
3279
3611
  0]
@@ -3318,6 +3650,17 @@ var CodeInterpreterSummaries = [1, n0, _CISo,
3318
3650
  0, [() => exports.CodeInterpreterSummary$,
3319
3651
  0]
3320
3652
  ];
3653
+ var Conditions = [1, n0, _Co,
3654
+ 0, () => exports.Condition$
3655
+ ];
3656
+ var ConfigurationBundleSummaryList = [1, n0, _CBSL,
3657
+ 0, [() => exports.ConfigurationBundleSummary$,
3658
+ 0]
3659
+ ];
3660
+ var ConfigurationBundleVersionList = 64 | 0;
3661
+ var ConfigurationBundleVersionSummaryList = [1, n0, _CBVSL,
3662
+ 0, () => exports.ConfigurationBundleVersionSummary$
3663
+ ];
3321
3664
  var ContentConfigurationList = [1, n0, _CCL,
3322
3665
  0, () => exports.ContentConfiguration$
3323
3666
  ];
@@ -3352,6 +3695,10 @@ var GatewayInterceptionPoints = 64 | 0;
3352
3695
  var GatewayInterceptorConfigurations = [1, n0, _GICa,
3353
3696
  0, () => exports.GatewayInterceptorConfiguration$
3354
3697
  ];
3698
+ var GatewayRules = [1, n0, _GR,
3699
+ 0, [() => exports.GatewayRuleDetail$,
3700
+ 0]
3701
+ ];
3355
3702
  var GatewaySummaries = [1, n0, _GSa,
3356
3703
  0, [() => exports.GatewaySummary$,
3357
3704
  0]
@@ -3376,6 +3723,10 @@ var HarnessTools = [1, n0, _HTa,
3376
3723
  0]
3377
3724
  ];
3378
3725
  var LogGroupNamesList = 64 | 0;
3726
+ var MatchPathPatterns = 64 | 0;
3727
+ var MatchPrincipalEntries = [1, n0, _MPE,
3728
+ 0, () => exports.MatchPrincipalEntry$
3729
+ ];
3379
3730
  var MatchValueStringList = 64 | 0;
3380
3731
  var McpSupportedVersions = 64 | 0;
3381
3732
  var MemoryStrategyInputList = [1, n0, _MSIL,
@@ -3459,10 +3810,17 @@ var TargetSummaries = [1, n0, _TSa,
3459
3810
  0, [() => exports.TargetSummary$,
3460
3811
  0]
3461
3812
  ];
3813
+ var TargetTrafficSplitEntries = [1, n0, _TTSEa,
3814
+ 0, [() => exports.TargetTrafficSplitEntry$,
3815
+ 0]
3816
+ ];
3462
3817
  var TokenEndpointAuthMethodsType = 64 | 0;
3463
3818
  var ToolDefinitions = [1, n0, _TDool,
3464
3819
  0, () => exports.ToolDefinition$
3465
3820
  ];
3821
+ var TrafficSplitEntries = [1, n0, _TSEr,
3822
+ 0, () => exports.TrafficSplitEntry$
3823
+ ];
3466
3824
  var TriggerConditionInputList = [1, n0, _TCIL,
3467
3825
  0, () => exports.TriggerConditionInput$
3468
3826
  ];
@@ -3475,6 +3833,12 @@ var ValidationExceptionFieldList = [1, n0, _VEFL,
3475
3833
  var WorkloadIdentityList = [1, n0, _WIL,
3476
3834
  0, () => exports.WorkloadIdentityType$
3477
3835
  ];
3836
+ var ComponentConfigurationMap = [2, n0, _CCM,
3837
+ 0, [0,
3838
+ 0],
3839
+ [() => exports.ComponentConfiguration$,
3840
+ 0]
3841
+ ];
3478
3842
  var CustomParameterMap = 128 | 0;
3479
3843
  var EnvironmentVariablesMap = [2, n0, _EVM,
3480
3844
  8, 0, 0
@@ -3495,6 +3859,12 @@ var SchemaProperties = [2, n0, _SP,
3495
3859
  0, 0, () => exports.SchemaDefinition$
3496
3860
  ];
3497
3861
  var TagsMap = 128 | 0;
3862
+ var TrafficSplitMetadataMap = 128 | 0;
3863
+ exports.Action$ = [4, n0, _Ac,
3864
+ 0,
3865
+ [_cBo, _rTT],
3866
+ [() => exports.ConfigurationBundleAction$, [() => exports.RouteToTargetAction$, 0]]
3867
+ ];
3498
3868
  exports.AgentRuntimeArtifact$ = [4, n0, _ARA,
3499
3869
  0,
3500
3870
  [_cCon, _cCod],
@@ -3525,7 +3895,7 @@ exports.ClaimMatchValueType$ = [4, n0, _CMVT,
3525
3895
  [_mVS, _mVSL],
3526
3896
  [0, 64 | 0]
3527
3897
  ];
3528
- exports.Code$ = [4, n0, _Co,
3898
+ exports.Code$ = [4, n0, _Cod,
3529
3899
  0,
3530
3900
  [_s_],
3531
3901
  [() => exports.S3Location$]
@@ -3535,12 +3905,22 @@ exports.CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
3535
3905
  [_lCa],
3536
3906
  [() => exports.LambdaEvaluatorConfig$]
3537
3907
  ];
3908
+ exports.Condition$ = [4, n0, _Con,
3909
+ 0,
3910
+ [_mPa, _mPat],
3911
+ [() => exports.MatchPrincipals$, () => exports.MatchPaths$]
3912
+ ];
3913
+ exports.ConfigurationBundleAction$ = [4, n0, _CBA,
3914
+ 0,
3915
+ [_sO, _wO],
3916
+ [() => exports.StaticOverride$, () => exports.WeightedOverride$]
3917
+ ];
3538
3918
  exports.ConsolidationConfiguration$ = [4, n0, _CCons,
3539
3919
  0,
3540
3920
  [_cCC],
3541
3921
  [[() => exports.CustomConsolidationConfiguration$, 0]]
3542
3922
  ];
3543
- exports.Content$ = [4, n0, _Con,
3923
+ exports.Content$ = [4, n0, _Cont,
3544
3924
  0,
3545
3925
  [_rTa],
3546
3926
  [0]
@@ -3552,7 +3932,7 @@ exports.CredentialProvider$ = [4, n0, _CPr,
3552
3932
  ];
3553
3933
  exports.CustomConfigurationInput$ = [4, n0, _CCI,
3554
3934
  0,
3555
- [_sO, _sOu, _uPO, _eO, _sMC],
3935
+ [_sOe, _sOu, _uPO, _eO, _sMC],
3556
3936
  [[() => exports.SemanticOverrideConfigurationInput$, 0], [() => exports.SummaryOverrideConfigurationInput$, 0], [() => exports.UserPreferenceOverrideConfigurationInput$, 0], [() => exports.EpisodicOverrideConfigurationInput$, 0], () => exports.SelfManagedConfigurationInput$]
3557
3937
  ];
3558
3938
  exports.CustomConsolidationConfiguration$ = [4, n0, _CCC,
@@ -3592,7 +3972,7 @@ exports.DataSourceConfig$ = [4, n0, _DSC,
3592
3972
  ];
3593
3973
  exports.EvaluatorConfig$ = [4, n0, _EC,
3594
3974
  0,
3595
- [_lAAJ, _cB],
3975
+ [_lAAJ, _cBod],
3596
3976
  [[() => exports.LlmAsAJudgeEvaluatorConfig$, 0], () => exports.CodeBasedEvaluatorConfig$]
3597
3977
  ];
3598
3978
  exports.EvaluatorModelConfig$ = [4, n0, _EMC,
@@ -3617,7 +3997,7 @@ exports.FilesystemConfiguration$ = [4, n0, _FCi,
3617
3997
  ];
3618
3998
  exports.FilterValue$ = [4, n0, _FV,
3619
3999
  0,
3620
- [_sVt, _dV, _bV],
4000
+ [_sVt, _dV, _bVo],
3621
4001
  [0, 1, 2]
3622
4002
  ];
3623
4003
  exports.GatewayProtocolConfiguration$ = [4, n0, _GPC,
@@ -3675,11 +4055,21 @@ exports.HarnessTruncationStrategyConfiguration$ = [4, n0, _HTSC,
3675
4055
  [_sW, _sum],
3676
4056
  [() => exports.HarnessSlidingWindowConfiguration$, () => exports.HarnessSummarizationConfiguration$]
3677
4057
  ];
4058
+ exports.HttpTargetConfiguration$ = [4, n0, _HTCt,
4059
+ 0,
4060
+ [_aRg],
4061
+ [() => exports.RuntimeTargetConfiguration$]
4062
+ ];
3678
4063
  exports.InterceptorConfiguration$ = [4, n0, _ICnt,
3679
4064
  0,
3680
4065
  [_lam],
3681
4066
  [() => exports.LambdaInterceptorConfiguration$]
3682
4067
  ];
4068
+ exports.MatchPrincipalEntry$ = [4, n0, _MPEa,
4069
+ 0,
4070
+ [_iPa],
4071
+ [() => exports.IamPrincipal$]
4072
+ ];
3683
4073
  exports.McpTargetConfiguration$ = [4, n0, _MTC,
3684
4074
  0,
3685
4075
  [_oAS, _sMm, _lam, _mSc, _aG],
@@ -3765,6 +4155,11 @@ exports.ResourceLocation$ = [4, n0, _RL,
3765
4155
  [_s_],
3766
4156
  [() => exports.S3Location$]
3767
4157
  ];
4158
+ exports.RouteToTargetAction$ = [4, n0, _RTTA,
4159
+ 0,
4160
+ [_sRta, _wR],
4161
+ [[() => exports.StaticRoute$, 0], [() => exports.WeightedRoute$, 0]]
4162
+ ];
3768
4163
  exports.SelfManagedLatticeResource$ = [4, n0, _SMLR,
3769
4164
  0,
3770
4165
  [_rCI],
@@ -3777,8 +4172,8 @@ exports.StreamDeliveryResource$ = [4, n0, _SDRt,
3777
4172
  ];
3778
4173
  exports.TargetConfiguration$ = [4, n0, _TC,
3779
4174
  0,
3780
- [_mc],
3781
- [[() => exports.McpTargetConfiguration$, 0]]
4175
+ [_mc, _ht],
4176
+ [[() => exports.McpTargetConfiguration$, 0], () => exports.HttpTargetConfiguration$]
3782
4177
  ];
3783
4178
  exports.ToolSchema$ = [4, n0, _TSo,
3784
4179
  0,
@@ -3813,12 +4208,18 @@ exports.CreateBrowserProfile$ = [9, n0, _CBP,
3813
4208
  exports.CreateCodeInterpreter$ = [9, n0, _CCIr,
3814
4209
  { [_ht]: ["PUT", "/code-interpreters", 202] }, () => exports.CreateCodeInterpreterRequest$, () => exports.CreateCodeInterpreterResponse$
3815
4210
  ];
4211
+ exports.CreateConfigurationBundle$ = [9, n0, _CCB,
4212
+ { [_ht]: ["POST", "/configuration-bundles/create", 201] }, () => exports.CreateConfigurationBundleRequest$, () => exports.CreateConfigurationBundleResponse$
4213
+ ];
3816
4214
  exports.CreateEvaluator$ = [9, n0, _CEr,
3817
4215
  { [_ht]: ["POST", "/evaluators/create", 202] }, () => exports.CreateEvaluatorRequest$, () => exports.CreateEvaluatorResponse$
3818
4216
  ];
3819
4217
  exports.CreateGateway$ = [9, n0, _CG,
3820
4218
  { [_ht]: ["POST", "/gateways/", 202] }, () => exports.CreateGatewayRequest$, () => exports.CreateGatewayResponse$
3821
4219
  ];
4220
+ exports.CreateGatewayRule$ = [9, n0, _CGRre,
4221
+ { [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rules", 202] }, () => exports.CreateGatewayRuleRequest$, () => exports.CreateGatewayRuleResponse$
4222
+ ];
3822
4223
  exports.CreateGatewayTarget$ = [9, n0, _CGT,
3823
4224
  { [_ht]: ["POST", "/gateways/{gatewayIdentifier}/targets/", 202] }, () => exports.CreateGatewayTargetRequest$, () => exports.CreateGatewayTargetResponse$
3824
4225
  ];
@@ -3867,12 +4268,18 @@ exports.DeleteBrowserProfile$ = [9, n0, _DBP,
3867
4268
  exports.DeleteCodeInterpreter$ = [9, n0, _DCI,
3868
4269
  { [_ht]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] }, () => exports.DeleteCodeInterpreterRequest$, () => exports.DeleteCodeInterpreterResponse$
3869
4270
  ];
4271
+ exports.DeleteConfigurationBundle$ = [9, n0, _DCB,
4272
+ { [_ht]: ["DELETE", "/configuration-bundles/{bundleId}", 202] }, () => exports.DeleteConfigurationBundleRequest$, () => exports.DeleteConfigurationBundleResponse$
4273
+ ];
3870
4274
  exports.DeleteEvaluator$ = [9, n0, _DE,
3871
4275
  { [_ht]: ["DELETE", "/evaluators/{evaluatorId}", 202] }, () => exports.DeleteEvaluatorRequest$, () => exports.DeleteEvaluatorResponse$
3872
4276
  ];
3873
4277
  exports.DeleteGateway$ = [9, n0, _DG,
3874
4278
  { [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] }, () => exports.DeleteGatewayRequest$, () => exports.DeleteGatewayResponse$
3875
4279
  ];
4280
+ exports.DeleteGatewayRule$ = [9, n0, _DGRel,
4281
+ { [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => exports.DeleteGatewayRuleRequest$, () => exports.DeleteGatewayRuleResponse$
4282
+ ];
3876
4283
  exports.DeleteGatewayTarget$ = [9, n0, _DGT,
3877
4284
  { [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] }, () => exports.DeleteGatewayTargetRequest$, () => exports.DeleteGatewayTargetResponse$
3878
4285
  ];
@@ -3924,12 +4331,21 @@ exports.GetBrowserProfile$ = [9, n0, _GBP,
3924
4331
  exports.GetCodeInterpreter$ = [9, n0, _GCI,
3925
4332
  { [_ht]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] }, () => exports.GetCodeInterpreterRequest$, () => exports.GetCodeInterpreterResponse$
3926
4333
  ];
4334
+ exports.GetConfigurationBundle$ = [9, n0, _GCB,
4335
+ { [_ht]: ["GET", "/configuration-bundles/{bundleId}", 200] }, () => exports.GetConfigurationBundleRequest$, () => exports.GetConfigurationBundleResponse$
4336
+ ];
4337
+ exports.GetConfigurationBundleVersion$ = [9, n0, _GCBV,
4338
+ { [_ht]: ["GET", "/configuration-bundles/{bundleId}/versions/{versionId}", 200] }, () => exports.GetConfigurationBundleVersionRequest$, () => exports.GetConfigurationBundleVersionResponse$
4339
+ ];
3927
4340
  exports.GetEvaluator$ = [9, n0, _GE,
3928
4341
  { [_ht]: ["GET", "/evaluators/{evaluatorId}", 200] }, () => exports.GetEvaluatorRequest$, () => exports.GetEvaluatorResponse$
3929
4342
  ];
3930
4343
  exports.GetGateway$ = [9, n0, _GG,
3931
4344
  { [_ht]: ["GET", "/gateways/{gatewayIdentifier}/", 200] }, () => exports.GetGatewayRequest$, () => exports.GetGatewayResponse$
3932
4345
  ];
4346
+ exports.GetGatewayRule$ = [9, n0, _GGRet,
4347
+ { [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 200] }, () => exports.GetGatewayRuleRequest$, () => exports.GetGatewayRuleResponse$
4348
+ ];
3933
4349
  exports.GetGatewayTarget$ = [9, n0, _GGT,
3934
4350
  { [_ht]: ["GET", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 200] }, () => exports.GetGatewayTargetRequest$, () => exports.GetGatewayTargetResponse$
3935
4351
  ];
@@ -3954,7 +4370,7 @@ exports.GetPolicyEngine$ = [9, n0, _GPE,
3954
4370
  exports.GetPolicyGeneration$ = [9, n0, _GPG,
3955
4371
  { [_ht]: ["GET", "/policy-engines/{policyEngineId}/policy-generations/{policyGenerationId}", 200] }, () => exports.GetPolicyGenerationRequest$, () => exports.GetPolicyGenerationResponse$
3956
4372
  ];
3957
- exports.GetRegistry$ = [9, n0, _GR,
4373
+ exports.GetRegistry$ = [9, n0, _GRe,
3958
4374
  { [_ht]: ["GET", "/registries/{registryId}", 200] }, () => exports.GetRegistryRequest$, () => exports.GetRegistryResponse$
3959
4375
  ];
3960
4376
  exports.GetRegistryRecord$ = [9, n0, _GRRet,
@@ -3990,9 +4406,18 @@ exports.ListBrowsers$ = [9, n0, _LB,
3990
4406
  exports.ListCodeInterpreters$ = [9, n0, _LCI,
3991
4407
  { [_ht]: ["POST", "/code-interpreters", 200] }, () => exports.ListCodeInterpretersRequest$, () => exports.ListCodeInterpretersResponse$
3992
4408
  ];
4409
+ exports.ListConfigurationBundles$ = [9, n0, _LCB,
4410
+ { [_ht]: ["POST", "/configuration-bundles", 200] }, () => exports.ListConfigurationBundlesRequest$, () => exports.ListConfigurationBundlesResponse$
4411
+ ];
4412
+ exports.ListConfigurationBundleVersions$ = [9, n0, _LCBV,
4413
+ { [_ht]: ["POST", "/configuration-bundles/{bundleId}/versions", 200] }, () => exports.ListConfigurationBundleVersionsRequest$, () => exports.ListConfigurationBundleVersionsResponse$
4414
+ ];
3993
4415
  exports.ListEvaluators$ = [9, n0, _LE,
3994
4416
  { [_ht]: ["POST", "/evaluators", 200] }, () => exports.ListEvaluatorsRequest$, () => exports.ListEvaluatorsResponse$
3995
4417
  ];
4418
+ exports.ListGatewayRules$ = [9, n0, _LGRis,
4419
+ { [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules", 200] }, () => exports.ListGatewayRulesRequest$, () => exports.ListGatewayRulesResponse$
4420
+ ];
3996
4421
  exports.ListGateways$ = [9, n0, _LG,
3997
4422
  { [_ht]: ["GET", "/gateways/", 200] }, () => exports.ListGatewaysRequest$, () => exports.ListGatewaysResponse$
3998
4423
  ];
@@ -4065,12 +4490,18 @@ exports.UpdateAgentRuntimeEndpoint$ = [9, n0, _UARE,
4065
4490
  exports.UpdateApiKeyCredentialProvider$ = [9, n0, _UAKCP,
4066
4491
  { [_ht]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] }, () => exports.UpdateApiKeyCredentialProviderRequest$, () => exports.UpdateApiKeyCredentialProviderResponse$
4067
4492
  ];
4493
+ exports.UpdateConfigurationBundle$ = [9, n0, _UCB,
4494
+ { [_ht]: ["PUT", "/configuration-bundles/{bundleId}", 200] }, () => exports.UpdateConfigurationBundleRequest$, () => exports.UpdateConfigurationBundleResponse$
4495
+ ];
4068
4496
  exports.UpdateEvaluator$ = [9, n0, _UEp,
4069
4497
  { [_ht]: ["PUT", "/evaluators/{evaluatorId}", 202] }, () => exports.UpdateEvaluatorRequest$, () => exports.UpdateEvaluatorResponse$
4070
4498
  ];
4071
4499
  exports.UpdateGateway$ = [9, n0, _UG,
4072
4500
  { [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] }, () => exports.UpdateGatewayRequest$, () => exports.UpdateGatewayResponse$
4073
4501
  ];
4502
+ exports.UpdateGatewayRule$ = [9, n0, _UGRpd,
4503
+ { [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => exports.UpdateGatewayRuleRequest$, () => exports.UpdateGatewayRuleResponse$
4504
+ ];
4074
4505
  exports.UpdateGatewayTarget$ = [9, n0, _UGT,
4075
4506
  { [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/targets/{targetId}/", 202] }, () => exports.UpdateGatewayTargetRequest$, () => exports.UpdateGatewayTargetResponse$
4076
4507
  ];