@aws-sdk/client-bedrock-agentcore-control 3.1035.0 → 3.1037.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.
- package/dist-cjs/index.js +15 -4
- package/dist-cjs/schemas/schemas_0.js +39 -28
- package/dist-es/models/enums.js +14 -4
- package/dist-es/schemas/schemas_0.js +32 -21
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +45 -4
- package/dist-types/commands/CreateGatewayCommand.d.ts +87 -3
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarnessCommand.d.ts +87 -3
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +88 -3
- package/dist-types/commands/CreateRegistryCommand.d.ts +43 -0
- package/dist-types/commands/DeleteHarnessCommand.d.ts +43 -0
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -0
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +44 -1
- package/dist-types/commands/GetGatewayCommand.d.ts +43 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +43 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +45 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +43 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +44 -1
- package/dist-types/commands/UpdateGatewayCommand.d.ts +86 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHarnessCommand.d.ts +86 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +87 -0
- package/dist-types/commands/UpdateRegistryCommand.d.ts +86 -0
- package/dist-types/models/enums.d.ts +30 -12
- package/dist-types/models/models_0.d.ts +151 -136
- package/dist-types/models/models_1.d.ts +53 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +17 -6
- package/dist-types/ts3.4/models/models_0.d.ts +59 -56
- package/dist-types/ts3.4/models/models_1.d.ts +13 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -1
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -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.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
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
|
|
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,
|
|
3725
|
-
[() => exports.SelfManagedLatticeResource$, () => exports.
|
|
3735
|
+
[_sMLR, _mVR],
|
|
3736
|
+
[() => exports.SelfManagedLatticeResource$, () => exports.ManagedVpcResource$]
|
|
3726
3737
|
];
|
|
3727
3738
|
exports.RatingScale$ = [4, n0, _RSa,
|
|
3728
3739
|
8,
|
package/dist-es/models/enums.js
CHANGED
|
@@ -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
|
|
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,
|
|
3711
|
-
[() => SelfManagedLatticeResource$, () =>
|
|
3721
|
+
[_sMLR, _mVR],
|
|
3722
|
+
[() => SelfManagedLatticeResource$, () => ManagedVpcResource$]
|
|
3712
3723
|
];
|
|
3713
3724
|
export var RatingScale$ = [4, n0, _RSa,
|
|
3714
3725
|
8,
|
|
@@ -50,7 +50,7 @@ declare const CreateAgentRuntimeCommand_base: {
|
|
|
50
50
|
* versionId: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
52
|
* },
|
|
53
|
-
* runtime: "PYTHON_3_10" || "PYTHON_3_11" || "PYTHON_3_12" || "PYTHON_3_13" || "PYTHON_3_14", // required
|
|
53
|
+
* runtime: "PYTHON_3_10" || "PYTHON_3_11" || "PYTHON_3_12" || "PYTHON_3_13" || "PYTHON_3_14" || "NODE_22", // required
|
|
54
54
|
* entryPoint: [ // EntryPoints // required
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
@@ -97,6 +97,49 @@ declare const CreateAgentRuntimeCommand_base: {
|
|
|
97
97
|
* },
|
|
98
98
|
* },
|
|
99
99
|
* ],
|
|
100
|
+
* privateEndpoint: { // PrivateEndpoint Union: only one key present
|
|
101
|
+
* selfManagedLatticeResource: { // SelfManagedLatticeResource Union: only one key present
|
|
102
|
+
* resourceConfigurationIdentifier: "STRING_VALUE",
|
|
103
|
+
* },
|
|
104
|
+
* managedVpcResource: { // ManagedVpcResource
|
|
105
|
+
* vpcIdentifier: "STRING_VALUE", // required
|
|
106
|
+
* subnetIds: [ // SubnetIds // required
|
|
107
|
+
* "STRING_VALUE",
|
|
108
|
+
* ],
|
|
109
|
+
* endpointIpAddressType: "IPV4" || "IPV6", // required
|
|
110
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
111
|
+
* "STRING_VALUE",
|
|
112
|
+
* ],
|
|
113
|
+
* tags: { // TagsMap
|
|
114
|
+
* "<keys>": "STRING_VALUE",
|
|
115
|
+
* },
|
|
116
|
+
* routingDomain: "STRING_VALUE",
|
|
117
|
+
* },
|
|
118
|
+
* },
|
|
119
|
+
* privateEndpointOverrides: [ // PrivateEndpointOverrides
|
|
120
|
+
* { // PrivateEndpointOverride
|
|
121
|
+
* domain: "STRING_VALUE", // required
|
|
122
|
+
* privateEndpoint: {// Union: only one key present
|
|
123
|
+
* selfManagedLatticeResource: {// Union: only one key present
|
|
124
|
+
* resourceConfigurationIdentifier: "STRING_VALUE",
|
|
125
|
+
* },
|
|
126
|
+
* managedVpcResource: {
|
|
127
|
+
* vpcIdentifier: "STRING_VALUE", // required
|
|
128
|
+
* subnetIds: [ // required
|
|
129
|
+
* "STRING_VALUE",
|
|
130
|
+
* ],
|
|
131
|
+
* endpointIpAddressType: "IPV4" || "IPV6", // required
|
|
132
|
+
* securityGroupIds: [
|
|
133
|
+
* "STRING_VALUE",
|
|
134
|
+
* ],
|
|
135
|
+
* tags: {
|
|
136
|
+
* "<keys>": "STRING_VALUE",
|
|
137
|
+
* },
|
|
138
|
+
* routingDomain: "STRING_VALUE",
|
|
139
|
+
* },
|
|
140
|
+
* },
|
|
141
|
+
* },
|
|
142
|
+
* ],
|
|
100
143
|
* },
|
|
101
144
|
* },
|
|
102
145
|
* requestHeaderConfiguration: { // RequestHeaderConfiguration Union: only one key present
|
|
@@ -121,9 +164,7 @@ declare const CreateAgentRuntimeCommand_base: {
|
|
|
121
164
|
* },
|
|
122
165
|
* },
|
|
123
166
|
* ],
|
|
124
|
-
* tags:
|
|
125
|
-
* "<keys>": "STRING_VALUE",
|
|
126
|
-
* },
|
|
167
|
+
* tags: "<TagsMap>",
|
|
127
168
|
* };
|
|
128
169
|
* const command = new CreateAgentRuntimeCommand(input);
|
|
129
170
|
* const response = await client.send(command);
|