@aws-sdk/client-bedrock-agentcore-control 3.1036.0 → 3.1038.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 (53) hide show
  1. package/dist-cjs/index.js +17 -6
  2. package/dist-cjs/schemas/schemas_0.js +39 -28
  3. package/dist-es/models/enums.js +14 -4
  4. package/dist-es/schemas/schemas_0.js +32 -21
  5. package/dist-es/waiters/waitForMemoryCreated.js +1 -1
  6. package/dist-es/waiters/waitForPolicyActive.js +1 -1
  7. package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
  8. package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
  9. package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
  10. package/dist-types/BedrockAgentCoreControl.d.ts +7 -6
  11. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +45 -4
  12. package/dist-types/commands/CreateGatewayCommand.d.ts +87 -3
  13. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
  14. package/dist-types/commands/CreateHarnessCommand.d.ts +87 -3
  15. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +88 -3
  16. package/dist-types/commands/CreateRegistryCommand.d.ts +43 -0
  17. package/dist-types/commands/DeleteHarnessCommand.d.ts +43 -0
  18. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -0
  19. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +44 -1
  20. package/dist-types/commands/GetGatewayCommand.d.ts +43 -0
  21. package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
  22. package/dist-types/commands/GetHarnessCommand.d.ts +43 -0
  23. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +45 -0
  24. package/dist-types/commands/GetRegistryCommand.d.ts +43 -0
  25. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
  26. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +44 -1
  27. package/dist-types/commands/UpdateGatewayCommand.d.ts +86 -0
  28. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateHarnessCommand.d.ts +86 -0
  30. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +87 -0
  31. package/dist-types/commands/UpdateRegistryCommand.d.ts +86 -0
  32. package/dist-types/models/enums.d.ts +30 -12
  33. package/dist-types/models/models_0.d.ts +151 -136
  34. package/dist-types/models/models_1.d.ts +53 -2
  35. package/dist-types/schemas/schemas_0.d.ts +2 -1
  36. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +7 -6
  37. package/dist-types/ts3.4/models/enums.d.ts +17 -6
  38. package/dist-types/ts3.4/models/models_0.d.ts +59 -56
  39. package/dist-types/ts3.4/models/models_1.d.ts +13 -1
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -1
  41. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
  42. package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
  43. package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
  44. package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
  45. package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
  46. package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
  47. package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
  48. package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
  49. package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
  50. package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
  51. package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
  52. package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
  53. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1523,7 +1523,7 @@ const checkState$3 = async (client, input) => {
1523
1523
  }
1524
1524
  catch (exception) {
1525
1525
  reason = exception;
1526
- if (exception.name && exception.name == "ResourceNotFoundException") {
1526
+ if (exception.name === "ResourceNotFoundException") {
1527
1527
  return { state: utilWaiter.WaiterState.SUCCESS, reason };
1528
1528
  }
1529
1529
  }
@@ -1622,7 +1622,7 @@ const checkState$1 = async (client, input) => {
1622
1622
  }
1623
1623
  catch (exception) {
1624
1624
  reason = exception;
1625
- if (exception.name && exception.name == "ResourceNotFoundException") {
1625
+ if (exception.name === "ResourceNotFoundException") {
1626
1626
  return { state: utilWaiter.WaiterState.SUCCESS, reason };
1627
1627
  }
1628
1628
  }
@@ -1851,6 +1851,7 @@ const ValidationExceptionReason = {
1851
1851
  ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession",
1852
1852
  };
1853
1853
  const AgentManagedRuntimeType = {
1854
+ NODE_22: "NODE_22",
1854
1855
  PYTHON_3_10: "PYTHON_3_10",
1855
1856
  PYTHON_3_11: "PYTHON_3_11",
1856
1857
  PYTHON_3_12: "PYTHON_3_12",
@@ -1866,6 +1867,10 @@ const InboundTokenClaimValueType = {
1866
1867
  STRING: "STRING",
1867
1868
  STRING_ARRAY: "STRING_ARRAY",
1868
1869
  };
1870
+ const EndpointIpAddressType = {
1871
+ IPV4: "IPV4",
1872
+ IPV6: "IPV6",
1873
+ };
1869
1874
  const NetworkMode = {
1870
1875
  PUBLIC: "PUBLIC",
1871
1876
  VPC: "VPC",
@@ -1984,10 +1989,6 @@ const CredentialProviderType = {
1984
1989
  GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
1985
1990
  OAUTH: "OAUTH",
1986
1991
  };
1987
- const EndpointIpAddressType = {
1988
- IPV4: "IPV4",
1989
- IPV6: "IPV6",
1990
- };
1991
1992
  const RestApiMethod = {
1992
1993
  DELETE: "DELETE",
1993
1994
  GET: "GET",
@@ -2111,6 +2112,15 @@ const CredentialProviderVendorType = {
2111
2112
  YandexOauth2: "YandexOauth2",
2112
2113
  ZoomOauth2: "ZoomOauth2",
2113
2114
  };
2115
+ const Status = {
2116
+ CREATE_FAILED: "CREATE_FAILED",
2117
+ CREATING: "CREATING",
2118
+ DELETE_FAILED: "DELETE_FAILED",
2119
+ DELETING: "DELETING",
2120
+ READY: "READY",
2121
+ UPDATE_FAILED: "UPDATE_FAILED",
2122
+ UPDATING: "UPDATING",
2123
+ };
2114
2124
  const FilterOperator = {
2115
2125
  CONTAINS: "Contains",
2116
2126
  EQUALS: "Equals",
@@ -2357,6 +2367,7 @@ exports.SearchType = SearchType;
2357
2367
  exports.ServerProtocol = ServerProtocol;
2358
2368
  exports.SetTokenVaultCMKCommand = SetTokenVaultCMKCommand;
2359
2369
  exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
2370
+ exports.Status = Status;
2360
2371
  exports.SubmitRegistryRecordForApprovalCommand = SubmitRegistryRecordForApprovalCommand;
2361
2372
  exports.SynchronizationType = SynchronizationType;
2362
2373
  exports.SynchronizeGatewayTargetsCommand = SynchronizeGatewayTargetsCommand;
@@ -5,13 +5,13 @@ exports.DeleteBrowserResponse$ = exports.DeleteBrowserRequest$ = exports.DeleteB
5
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
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
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.ManagedResourceDetails$ = exports.ManagedLatticeResource$ = 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.SummaryOverrideConsolidationConfigurationInput$ = 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.PolicyGenerationDetails$ = exports.PolicyGenerationAsset$ = exports.PolicyGeneration$ = exports.PolicyEngine$ = void 0;
10
- exports.UpdateOauth2CredentialProviderRequest$ = 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$ = void 0;
11
- 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.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$ = void 0;
12
- exports.CreatePolicyEngine$ = 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$ = void 0;
13
- exports.ListCodeInterpreters$ = 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$ = 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$ = 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;
15
15
  const _AC = "ApprovalConfiguration";
16
16
  const _ACD = "AgentCardDefinition";
17
17
  const _ACMVT = "AuthorizingClaimMatchValueType";
@@ -442,7 +442,6 @@ const _MCPGC = "MCPGatewayConfiguration";
442
442
  const _MD = "McpDescriptor";
443
443
  const _MEC = "ModifyExtractionConfiguration";
444
444
  const _MICI = "ModifyInvocationConfigurationInput";
445
- const _MLR = "ManagedLatticeResource";
446
445
  const _MLTC = "McpLambdaTargetConfiguration";
447
446
  const _MMS = "ModifyMemoryStrategies";
448
447
  const _MMSI = "ModifyMemoryStrategyInput";
@@ -462,6 +461,7 @@ const _MSTC = "McpServerTargetConfiguration";
462
461
  const _MSe = "MemorySummary";
463
462
  const _MTC = "McpTargetConfiguration";
464
463
  const _MTSC = "McpToolSchemaConfiguration";
464
+ const _MVR = "ManagedVpcResource";
465
465
  const _NC = "NetworkConfiguration";
466
466
  const _NSD = "NumericalScaleDefinition";
467
467
  const _NSDu = "NumericalScaleDefinitions";
@@ -483,6 +483,8 @@ const _PC = "ProtocolConfiguration";
483
483
  const _PD = "PolicyDefinition";
484
484
  const _PE = "PolicyEngine";
485
485
  const _PEMR = "PrivateEndpointManagedResources";
486
+ const _PEO = "PrivateEndpointOverride";
487
+ const _PEOr = "PrivateEndpointOverrides";
486
488
  const _PEo = "PolicyEngines";
487
489
  const _PEr = "PrivateEndpoint";
488
490
  const _PG = "PolicyGeneration";
@@ -894,7 +896,6 @@ const _mI = "modelId";
894
896
  const _mIa = "maxIterations";
895
897
  const _mIe = "memoryId";
896
898
  const _mL = "maxLifetime";
897
- const _mLR = "managedLatticeResource";
898
899
  const _mMS = "modifyMemoryStrategies";
899
900
  const _mOPC = "microsoftOauth2ProviderConfig";
900
901
  const _mP = "mountPath";
@@ -904,6 +905,7 @@ const _mSI = "memoryStrategyId";
904
905
  const _mSc = "mcpServer";
905
906
  const _mT = "maxTokens";
906
907
  const _mTS = "mcpToolSchema";
908
+ const _mVR = "managedVpcResource";
907
909
  const _mVS = "matchValueString";
908
910
  const _mVSL = "matchValueStringList";
909
911
  const _mc = "mcp";
@@ -950,6 +952,7 @@ const _pEA = "policyEngineArn";
950
952
  const _pEC = "policyEngineConfiguration";
951
953
  const _pEI = "policyEngineId";
952
954
  const _pEMR = "privateEndpointManagedResources";
955
+ const _pEO = "privateEndpointOverrides";
953
956
  const _pEo = "policyEngines";
954
957
  const _pG = "policyGenerations";
955
958
  const _pGA = "policyGenerationArn";
@@ -1492,8 +1495,8 @@ exports.CreateOauth2CredentialProviderRequest$ = [3, n0, _COCPR,
1492
1495
  ];
1493
1496
  exports.CreateOauth2CredentialProviderResponse$ = [3, n0, _COCPRr,
1494
1497
  0,
1495
- [_cSA, _n, _cPA, _cUa, _oPCO],
1496
- [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$], 3
1498
+ [_cSA, _n, _cPA, _cUa, _oPCO, _st],
1499
+ [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$, 0], 3
1497
1500
  ];
1498
1501
  exports.CreateOnlineEvaluationConfigRequest$ = [3, n0, _COECR,
1499
1502
  0,
@@ -1572,8 +1575,8 @@ exports.CustomDescriptor$ = [3, n0, _CD,
1572
1575
  ];
1573
1576
  exports.CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
1574
1577
  0,
1575
- [_dU, _aAl, _aCl, _aS, _cC],
1576
- [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType], 1
1578
+ [_dU, _aAl, _aCl, _aS, _cC, _pE, _pEO],
1579
+ [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => exports.PrivateEndpoint$, () => PrivateEndpointOverrides], 1
1577
1580
  ];
1578
1581
  exports.CustomMemoryStrategyInput$ = [3, n0, _CMSI,
1579
1582
  0,
@@ -1582,13 +1585,13 @@ exports.CustomMemoryStrategyInput$ = [3, n0, _CMSI,
1582
1585
  ];
1583
1586
  exports.CustomOauth2ProviderConfigInput$ = [3, n0, _COPCI,
1584
1587
  0,
1585
- [_oD, _cI, _cS],
1586
- [() => exports.Oauth2Discovery$, 0, [() => ClientSecretType, 0]], 3
1588
+ [_oD, _cI, _cS, _pE, _pEO],
1589
+ [() => exports.Oauth2Discovery$, 0, [() => ClientSecretType, 0], () => exports.PrivateEndpoint$, () => PrivateEndpointOverrides], 3
1587
1590
  ];
1588
1591
  exports.CustomOauth2ProviderConfigOutput$ = [3, n0, _COPCO,
1589
1592
  0,
1590
- [_oD, _cI],
1591
- [() => exports.Oauth2Discovery$, 0], 1
1593
+ [_oD, _cI, _pE, _pEO],
1594
+ [() => exports.Oauth2Discovery$, 0, () => exports.PrivateEndpoint$, () => PrivateEndpointOverrides], 1
1592
1595
  ];
1593
1596
  exports.DeleteAgentRuntimeEndpointRequest$ = [3, n0, _DARER,
1594
1597
  0,
@@ -2002,8 +2005,8 @@ exports.GetOauth2CredentialProviderRequest$ = [3, n0, _GOCPR,
2002
2005
  ];
2003
2006
  exports.GetOauth2CredentialProviderResponse$ = [3, n0, _GOCPRe,
2004
2007
  0,
2005
- [_cSA, _n, _cPA, _cPV, _oPCO, _cT, _lUT, _cUa],
2006
- [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$, 4, 4, 0], 7
2008
+ [_cSA, _n, _cPA, _cPV, _oPCO, _cT, _lUT, _cUa, _st, _fR],
2009
+ [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$, 4, 4, 0, 0, 0], 7
2007
2010
  ];
2008
2011
  exports.GetOnlineEvaluationConfigRequest$ = [3, n0, _GOECR,
2009
2012
  0,
@@ -2500,16 +2503,16 @@ exports.LlmAsAJudgeEvaluatorConfig$ = [3, n0, _LAAJEC,
2500
2503
  [_ins, _rSa, _mCo],
2501
2504
  [[() => EvaluatorInstructions, 0], [() => exports.RatingScale$, 0], () => exports.EvaluatorModelConfig$], 3
2502
2505
  ];
2503
- exports.ManagedLatticeResource$ = [3, n0, _MLR,
2504
- 0,
2505
- [_vI, _sIu, _eIAT, _sGI, _ta, _rD],
2506
- [0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
2507
- ];
2508
2506
  exports.ManagedResourceDetails$ = [3, n0, _MRD,
2509
2507
  0,
2510
2508
  [_do, _rGA, _rAA],
2511
2509
  [0, 0, 0]
2512
2510
  ];
2511
+ exports.ManagedVpcResource$ = [3, n0, _MVR,
2512
+ 0,
2513
+ [_vI, _sIu, _eIAT, _sGI, _ta, _rD],
2514
+ [0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
2515
+ ];
2513
2516
  exports.McpDescriptor$ = [3, n0, _MD,
2514
2517
  0,
2515
2518
  [_se, _to],
@@ -2660,6 +2663,11 @@ exports.PolicyGenerationDetails$ = [3, n0, _PGD,
2660
2663
  [_pGI, _pGAI],
2661
2664
  [0, 0], 2
2662
2665
  ];
2666
+ exports.PrivateEndpointOverride$ = [3, n0, _PEO,
2667
+ 0,
2668
+ [_do, _pE],
2669
+ [0, () => exports.PrivateEndpoint$], 2
2670
+ ];
2663
2671
  exports.ProtocolConfiguration$ = [3, n0, _PC,
2664
2672
  0,
2665
2673
  [_sPe],
@@ -3142,8 +3150,8 @@ exports.UpdateOauth2CredentialProviderRequest$ = [3, n0, _UOCPR,
3142
3150
  ];
3143
3151
  exports.UpdateOauth2CredentialProviderResponse$ = [3, n0, _UOCPRp,
3144
3152
  0,
3145
- [_cSA, _n, _cPV, _cPA, _oPCO, _cT, _lUT, _cUa],
3146
- [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$, 4, 4, 0], 7
3153
+ [_cSA, _n, _cPV, _cPA, _oPCO, _cT, _lUT, _cUa, _st],
3154
+ [() => exports.Secret$, 0, 0, 0, () => exports.Oauth2ProviderConfigOutput$, 4, 4, 0, 0], 7
3147
3155
  ];
3148
3156
  exports.UpdateOnlineEvaluationConfigRequest$ = [3, n0, _UOECR,
3149
3157
  0,
@@ -3416,6 +3424,9 @@ var PolicyStatusReasons = 64 | 0;
3416
3424
  var PrivateEndpointManagedResources = [1, n0, _PEMR,
3417
3425
  0, () => exports.ManagedResourceDetails$
3418
3426
  ];
3427
+ var PrivateEndpointOverrides = [1, n0, _PEOr,
3428
+ 0, () => exports.PrivateEndpointOverride$
3429
+ ];
3419
3430
  var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
3420
3431
  0, () => exports.RegistryRecordCredentialProviderConfiguration$
3421
3432
  ];
@@ -3721,8 +3732,8 @@ exports.PolicyDefinition$ = [4, n0, _PD,
3721
3732
  ];
3722
3733
  exports.PrivateEndpoint$ = [4, n0, _PEr,
3723
3734
  0,
3724
- [_sMLR, _mLR],
3725
- [() => exports.SelfManagedLatticeResource$, () => exports.ManagedLatticeResource$]
3735
+ [_sMLR, _mVR],
3736
+ [() => exports.SelfManagedLatticeResource$, () => exports.ManagedVpcResource$]
3726
3737
  ];
3727
3738
  exports.RatingScale$ = [4, n0, _RSa,
3728
3739
  8,
@@ -14,6 +14,7 @@ export const ValidationExceptionReason = {
14
14
  ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession",
15
15
  };
16
16
  export const AgentManagedRuntimeType = {
17
+ NODE_22: "NODE_22",
17
18
  PYTHON_3_10: "PYTHON_3_10",
18
19
  PYTHON_3_11: "PYTHON_3_11",
19
20
  PYTHON_3_12: "PYTHON_3_12",
@@ -29,6 +30,10 @@ export const InboundTokenClaimValueType = {
29
30
  STRING: "STRING",
30
31
  STRING_ARRAY: "STRING_ARRAY",
31
32
  };
33
+ export const EndpointIpAddressType = {
34
+ IPV4: "IPV4",
35
+ IPV6: "IPV6",
36
+ };
32
37
  export const NetworkMode = {
33
38
  PUBLIC: "PUBLIC",
34
39
  VPC: "VPC",
@@ -147,10 +152,6 @@ export const CredentialProviderType = {
147
152
  GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE",
148
153
  OAUTH: "OAUTH",
149
154
  };
150
- export const EndpointIpAddressType = {
151
- IPV4: "IPV4",
152
- IPV6: "IPV6",
153
- };
154
155
  export const RestApiMethod = {
155
156
  DELETE: "DELETE",
156
157
  GET: "GET",
@@ -274,6 +275,15 @@ export const CredentialProviderVendorType = {
274
275
  YandexOauth2: "YandexOauth2",
275
276
  ZoomOauth2: "ZoomOauth2",
276
277
  };
278
+ export const Status = {
279
+ CREATE_FAILED: "CREATE_FAILED",
280
+ CREATING: "CREATING",
281
+ DELETE_FAILED: "DELETE_FAILED",
282
+ DELETING: "DELETING",
283
+ READY: "READY",
284
+ UPDATE_FAILED: "UPDATE_FAILED",
285
+ UPDATING: "UPDATING",
286
+ };
277
287
  export const FilterOperator = {
278
288
  CONTAINS: "Contains",
279
289
  EQUALS: "Equals",
@@ -428,7 +428,6 @@ const _MCPGC = "MCPGatewayConfiguration";
428
428
  const _MD = "McpDescriptor";
429
429
  const _MEC = "ModifyExtractionConfiguration";
430
430
  const _MICI = "ModifyInvocationConfigurationInput";
431
- const _MLR = "ManagedLatticeResource";
432
431
  const _MLTC = "McpLambdaTargetConfiguration";
433
432
  const _MMS = "ModifyMemoryStrategies";
434
433
  const _MMSI = "ModifyMemoryStrategyInput";
@@ -448,6 +447,7 @@ const _MSTC = "McpServerTargetConfiguration";
448
447
  const _MSe = "MemorySummary";
449
448
  const _MTC = "McpTargetConfiguration";
450
449
  const _MTSC = "McpToolSchemaConfiguration";
450
+ const _MVR = "ManagedVpcResource";
451
451
  const _NC = "NetworkConfiguration";
452
452
  const _NSD = "NumericalScaleDefinition";
453
453
  const _NSDu = "NumericalScaleDefinitions";
@@ -469,6 +469,8 @@ const _PC = "ProtocolConfiguration";
469
469
  const _PD = "PolicyDefinition";
470
470
  const _PE = "PolicyEngine";
471
471
  const _PEMR = "PrivateEndpointManagedResources";
472
+ const _PEO = "PrivateEndpointOverride";
473
+ const _PEOr = "PrivateEndpointOverrides";
472
474
  const _PEo = "PolicyEngines";
473
475
  const _PEr = "PrivateEndpoint";
474
476
  const _PG = "PolicyGeneration";
@@ -880,7 +882,6 @@ const _mI = "modelId";
880
882
  const _mIa = "maxIterations";
881
883
  const _mIe = "memoryId";
882
884
  const _mL = "maxLifetime";
883
- const _mLR = "managedLatticeResource";
884
885
  const _mMS = "modifyMemoryStrategies";
885
886
  const _mOPC = "microsoftOauth2ProviderConfig";
886
887
  const _mP = "mountPath";
@@ -890,6 +891,7 @@ const _mSI = "memoryStrategyId";
890
891
  const _mSc = "mcpServer";
891
892
  const _mT = "maxTokens";
892
893
  const _mTS = "mcpToolSchema";
894
+ const _mVR = "managedVpcResource";
893
895
  const _mVS = "matchValueString";
894
896
  const _mVSL = "matchValueStringList";
895
897
  const _mc = "mcp";
@@ -936,6 +938,7 @@ const _pEA = "policyEngineArn";
936
938
  const _pEC = "policyEngineConfiguration";
937
939
  const _pEI = "policyEngineId";
938
940
  const _pEMR = "privateEndpointManagedResources";
941
+ const _pEO = "privateEndpointOverrides";
939
942
  const _pEo = "policyEngines";
940
943
  const _pG = "policyGenerations";
941
944
  const _pGA = "policyGenerationArn";
@@ -1478,8 +1481,8 @@ export var CreateOauth2CredentialProviderRequest$ = [3, n0, _COCPR,
1478
1481
  ];
1479
1482
  export var CreateOauth2CredentialProviderResponse$ = [3, n0, _COCPRr,
1480
1483
  0,
1481
- [_cSA, _n, _cPA, _cUa, _oPCO],
1482
- [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$], 3
1484
+ [_cSA, _n, _cPA, _cUa, _oPCO, _st],
1485
+ [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$, 0], 3
1483
1486
  ];
1484
1487
  export var CreateOnlineEvaluationConfigRequest$ = [3, n0, _COECR,
1485
1488
  0,
@@ -1558,8 +1561,8 @@ export var CustomDescriptor$ = [3, n0, _CD,
1558
1561
  ];
1559
1562
  export var CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
1560
1563
  0,
1561
- [_dU, _aAl, _aCl, _aS, _cC],
1562
- [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType], 1
1564
+ [_dU, _aAl, _aCl, _aS, _cC, _pE, _pEO],
1565
+ [0, 64 | 0, 64 | 0, 64 | 0, () => CustomClaimValidationsType, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
1563
1566
  ];
1564
1567
  export var CustomMemoryStrategyInput$ = [3, n0, _CMSI,
1565
1568
  0,
@@ -1568,13 +1571,13 @@ export var CustomMemoryStrategyInput$ = [3, n0, _CMSI,
1568
1571
  ];
1569
1572
  export var CustomOauth2ProviderConfigInput$ = [3, n0, _COPCI,
1570
1573
  0,
1571
- [_oD, _cI, _cS],
1572
- [() => Oauth2Discovery$, 0, [() => ClientSecretType, 0]], 3
1574
+ [_oD, _cI, _cS, _pE, _pEO],
1575
+ [() => Oauth2Discovery$, 0, [() => ClientSecretType, 0], () => PrivateEndpoint$, () => PrivateEndpointOverrides], 3
1573
1576
  ];
1574
1577
  export var CustomOauth2ProviderConfigOutput$ = [3, n0, _COPCO,
1575
1578
  0,
1576
- [_oD, _cI],
1577
- [() => Oauth2Discovery$, 0], 1
1579
+ [_oD, _cI, _pE, _pEO],
1580
+ [() => Oauth2Discovery$, 0, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
1578
1581
  ];
1579
1582
  export var DeleteAgentRuntimeEndpointRequest$ = [3, n0, _DARER,
1580
1583
  0,
@@ -1988,8 +1991,8 @@ export var GetOauth2CredentialProviderRequest$ = [3, n0, _GOCPR,
1988
1991
  ];
1989
1992
  export var GetOauth2CredentialProviderResponse$ = [3, n0, _GOCPRe,
1990
1993
  0,
1991
- [_cSA, _n, _cPA, _cPV, _oPCO, _cT, _lUT, _cUa],
1992
- [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$, 4, 4, 0], 7
1994
+ [_cSA, _n, _cPA, _cPV, _oPCO, _cT, _lUT, _cUa, _st, _fR],
1995
+ [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$, 4, 4, 0, 0, 0], 7
1993
1996
  ];
1994
1997
  export var GetOnlineEvaluationConfigRequest$ = [3, n0, _GOECR,
1995
1998
  0,
@@ -2486,16 +2489,16 @@ export var LlmAsAJudgeEvaluatorConfig$ = [3, n0, _LAAJEC,
2486
2489
  [_ins, _rSa, _mCo],
2487
2490
  [[() => EvaluatorInstructions, 0], [() => RatingScale$, 0], () => EvaluatorModelConfig$], 3
2488
2491
  ];
2489
- export var ManagedLatticeResource$ = [3, n0, _MLR,
2490
- 0,
2491
- [_vI, _sIu, _eIAT, _sGI, _ta, _rD],
2492
- [0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
2493
- ];
2494
2492
  export var ManagedResourceDetails$ = [3, n0, _MRD,
2495
2493
  0,
2496
2494
  [_do, _rGA, _rAA],
2497
2495
  [0, 0, 0]
2498
2496
  ];
2497
+ export var ManagedVpcResource$ = [3, n0, _MVR,
2498
+ 0,
2499
+ [_vI, _sIu, _eIAT, _sGI, _ta, _rD],
2500
+ [0, 64 | 0, 0, 64 | 0, 128 | 0, 0], 3
2501
+ ];
2499
2502
  export var McpDescriptor$ = [3, n0, _MD,
2500
2503
  0,
2501
2504
  [_se, _to],
@@ -2646,6 +2649,11 @@ export var PolicyGenerationDetails$ = [3, n0, _PGD,
2646
2649
  [_pGI, _pGAI],
2647
2650
  [0, 0], 2
2648
2651
  ];
2652
+ export var PrivateEndpointOverride$ = [3, n0, _PEO,
2653
+ 0,
2654
+ [_do, _pE],
2655
+ [0, () => PrivateEndpoint$], 2
2656
+ ];
2649
2657
  export var ProtocolConfiguration$ = [3, n0, _PC,
2650
2658
  0,
2651
2659
  [_sPe],
@@ -3128,8 +3136,8 @@ export var UpdateOauth2CredentialProviderRequest$ = [3, n0, _UOCPR,
3128
3136
  ];
3129
3137
  export var UpdateOauth2CredentialProviderResponse$ = [3, n0, _UOCPRp,
3130
3138
  0,
3131
- [_cSA, _n, _cPV, _cPA, _oPCO, _cT, _lUT, _cUa],
3132
- [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$, 4, 4, 0], 7
3139
+ [_cSA, _n, _cPV, _cPA, _oPCO, _cT, _lUT, _cUa, _st],
3140
+ [() => Secret$, 0, 0, 0, () => Oauth2ProviderConfigOutput$, 4, 4, 0, 0], 7
3133
3141
  ];
3134
3142
  export var UpdateOnlineEvaluationConfigRequest$ = [3, n0, _UOECR,
3135
3143
  0,
@@ -3402,6 +3410,9 @@ var PolicyStatusReasons = 64 | 0;
3402
3410
  var PrivateEndpointManagedResources = [1, n0, _PEMR,
3403
3411
  0, () => ManagedResourceDetails$
3404
3412
  ];
3413
+ var PrivateEndpointOverrides = [1, n0, _PEOr,
3414
+ 0, () => PrivateEndpointOverride$
3415
+ ];
3405
3416
  var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
3406
3417
  0, () => RegistryRecordCredentialProviderConfiguration$
3407
3418
  ];
@@ -3707,8 +3718,8 @@ export var PolicyDefinition$ = [4, n0, _PD,
3707
3718
  ];
3708
3719
  export var PrivateEndpoint$ = [4, n0, _PEr,
3709
3720
  0,
3710
- [_sMLR, _mLR],
3711
- [() => SelfManagedLatticeResource$, () => ManagedLatticeResource$]
3721
+ [_sMLR, _mVR],
3722
+ [() => SelfManagedLatticeResource$, () => ManagedVpcResource$]
3712
3723
  ];
3713
3724
  export var RatingScale$ = [4, n0, _RSa,
3714
3725
  8,
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetMemoryCommand } from "../commands/GetMemoryCommand";
2
+ import { GetMemoryCommand, } from "../commands/GetMemoryCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyCommand } from "../commands/GetPolicyCommand";
2
+ import { GetPolicyCommand, } from "../commands/GetPolicyCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyCommand } from "../commands/GetPolicyCommand";
2
+ import { GetPolicyCommand, } from "../commands/GetPolicyCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
2
+ import { GetPolicyEngineCommand, } from "../commands/GetPolicyEngineCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -1,5 +1,5 @@
1
1
  import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
2
- import { GetPolicyEngineCommand } from "../commands/GetPolicyEngineCommand";
2
+ import { GetPolicyEngineCommand, } from "../commands/GetPolicyEngineCommand";
3
3
  const checkState = async (client, input) => {
4
4
  let reason;
5
5
  try {
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -104,6 +104,7 @@ import { type UpdateRegistryCommandInput, type UpdateRegistryCommandOutput } fro
104
104
  import { type UpdateRegistryRecordCommandInput, type UpdateRegistryRecordCommandOutput } from "./commands/UpdateRegistryRecordCommand";
105
105
  import { type UpdateRegistryRecordStatusCommandInput, type UpdateRegistryRecordStatusCommandOutput } from "./commands/UpdateRegistryRecordStatusCommand";
106
106
  import { type UpdateWorkloadIdentityCommandInput, type UpdateWorkloadIdentityCommandOutput } from "./commands/UpdateWorkloadIdentityCommand";
107
+ import type { ResourceNotFoundException } from "./models/errors";
107
108
  export interface BedrockAgentCoreControl {
108
109
  /**
109
110
  * @see {@link CreateAgentRuntimeCommand}
@@ -890,37 +891,37 @@ export interface BedrockAgentCoreControl {
890
891
  * @param args - command input.
891
892
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
892
893
  */
893
- waitUntilMemoryCreated(args: GetMemoryCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
894
+ waitUntilMemoryCreated(args: GetMemoryCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetMemoryCommandOutput>>;
894
895
  /**
895
896
  * @see {@link GetPolicyCommand}
896
897
  * @param args - command input.
897
898
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
898
899
  */
899
- waitUntilPolicyActive(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
900
+ waitUntilPolicyActive(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyCommandOutput>>;
900
901
  /**
901
902
  * @see {@link GetPolicyCommand}
902
903
  * @param args - command input.
903
904
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
904
905
  */
905
- waitUntilPolicyDeleted(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
906
+ waitUntilPolicyDeleted(args: GetPolicyCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
906
907
  /**
907
908
  * @see {@link GetPolicyEngineCommand}
908
909
  * @param args - command input.
909
910
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
910
911
  */
911
- waitUntilPolicyEngineActive(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
912
+ waitUntilPolicyEngineActive(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyEngineCommandOutput>>;
912
913
  /**
913
914
  * @see {@link GetPolicyEngineCommand}
914
915
  * @param args - command input.
915
916
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
916
917
  */
917
- waitUntilPolicyEngineDeleted(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
918
+ waitUntilPolicyEngineDeleted(args: GetPolicyEngineCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<ResourceNotFoundException>>;
918
919
  /**
919
920
  * @see {@link GetPolicyGenerationCommand}
920
921
  * @param args - command input.
921
922
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
922
923
  */
923
- waitUntilPolicyGenerationCompleted(args: GetPolicyGenerationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult>;
924
+ waitUntilPolicyGenerationCompleted(args: GetPolicyGenerationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<BedrockAgentCoreControl>, "client">): Promise<WaiterResult<GetPolicyGenerationCommandOutput>>;
924
925
  }
925
926
  /**
926
927
  * <p>Welcome to the Amazon Bedrock AgentCore Control plane API reference. Control plane actions configure, create, modify, and monitor Amazon Web Services resources.</p>