1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. GenerativeAi
  5. AgentAgentEndpoint
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.GenerativeAi.AgentAgentEndpoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This resource provides the Agent Endpoint resource in Oracle Cloud Infrastructure Generative Ai Agent service.

    Creates an endpoint.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAgentEndpoint = new oci.generativeai.AgentAgentEndpoint("test_agent_endpoint", {
        agentId: testAgent.id,
        compartmentId: compartmentId,
        contentModerationConfig: {
            shouldEnableOnInput: agentEndpointContentModerationConfigShouldEnableOnInput,
            shouldEnableOnOutput: agentEndpointContentModerationConfigShouldEnableOnOutput,
        },
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: agentEndpointDescription,
        displayName: agentEndpointDisplayName,
        freeformTags: {
            Department: "Finance",
        },
        guardrailConfig: {
            contentModerationConfig: {
                inputGuardrailMode: agentEndpointGuardrailConfigContentModerationConfigInputGuardrailMode,
                outputGuardrailMode: agentEndpointGuardrailConfigContentModerationConfigOutputGuardrailMode,
            },
            personallyIdentifiableInformationConfig: {
                inputGuardrailMode: agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigInputGuardrailMode,
                outputGuardrailMode: agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigOutputGuardrailMode,
            },
            promptInjectionConfig: {
                inputGuardrailMode: agentEndpointGuardrailConfigPromptInjectionConfigInputGuardrailMode,
            },
        },
        humanInputConfig: {
            shouldEnableHumanInput: agentEndpointHumanInputConfigShouldEnableHumanInput,
        },
        metadata: agentEndpointMetadata,
        outputConfig: {
            outputLocation: {
                bucket: agentEndpointOutputConfigOutputLocationBucket,
                namespace: agentEndpointOutputConfigOutputLocationNamespace,
                outputLocationType: agentEndpointOutputConfigOutputLocationOutputLocationType,
                prefix: agentEndpointOutputConfigOutputLocationPrefix,
            },
            retentionPeriodInMinutes: agentEndpointOutputConfigRetentionPeriodInMinutes,
        },
        sessionConfig: {
            idleTimeoutInSeconds: agentEndpointSessionConfigIdleTimeoutInSeconds,
        },
        shouldEnableCitation: agentEndpointShouldEnableCitation,
        shouldEnableMultiLanguage: agentEndpointShouldEnableMultiLanguage,
        shouldEnableSession: agentEndpointShouldEnableSession,
        shouldEnableTrace: agentEndpointShouldEnableTrace,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_agent_endpoint = oci.generative_ai.AgentAgentEndpoint("test_agent_endpoint",
        agent_id=test_agent["id"],
        compartment_id=compartment_id,
        content_moderation_config={
            "should_enable_on_input": agent_endpoint_content_moderation_config_should_enable_on_input,
            "should_enable_on_output": agent_endpoint_content_moderation_config_should_enable_on_output,
        },
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=agent_endpoint_description,
        display_name=agent_endpoint_display_name,
        freeform_tags={
            "Department": "Finance",
        },
        guardrail_config={
            "content_moderation_config": {
                "input_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_input_guardrail_mode,
                "output_guardrail_mode": agent_endpoint_guardrail_config_content_moderation_config_output_guardrail_mode,
            },
            "personally_identifiable_information_config": {
                "input_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_input_guardrail_mode,
                "output_guardrail_mode": agent_endpoint_guardrail_config_personally_identifiable_information_config_output_guardrail_mode,
            },
            "prompt_injection_config": {
                "input_guardrail_mode": agent_endpoint_guardrail_config_prompt_injection_config_input_guardrail_mode,
            },
        },
        human_input_config={
            "should_enable_human_input": agent_endpoint_human_input_config_should_enable_human_input,
        },
        metadata=agent_endpoint_metadata,
        output_config={
            "output_location": {
                "bucket": agent_endpoint_output_config_output_location_bucket,
                "namespace": agent_endpoint_output_config_output_location_namespace,
                "output_location_type": agent_endpoint_output_config_output_location_output_location_type,
                "prefix": agent_endpoint_output_config_output_location_prefix,
            },
            "retention_period_in_minutes": agent_endpoint_output_config_retention_period_in_minutes,
        },
        session_config={
            "idle_timeout_in_seconds": agent_endpoint_session_config_idle_timeout_in_seconds,
        },
        should_enable_citation=agent_endpoint_should_enable_citation,
        should_enable_multi_language=agent_endpoint_should_enable_multi_language,
        should_enable_session=agent_endpoint_should_enable_session,
        should_enable_trace=agent_endpoint_should_enable_trace)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/generativeai"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := generativeai.NewAgentAgentEndpoint(ctx, "test_agent_endpoint", &generativeai.AgentAgentEndpointArgs{
    			AgentId:       pulumi.Any(testAgent.Id),
    			CompartmentId: pulumi.Any(compartmentId),
    			ContentModerationConfig: &generativeai.AgentAgentEndpointContentModerationConfigArgs{
    				ShouldEnableOnInput:  pulumi.Any(agentEndpointContentModerationConfigShouldEnableOnInput),
    				ShouldEnableOnOutput: pulumi.Any(agentEndpointContentModerationConfigShouldEnableOnOutput),
    			},
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			Description: pulumi.Any(agentEndpointDescription),
    			DisplayName: pulumi.Any(agentEndpointDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			GuardrailConfig: &generativeai.AgentAgentEndpointGuardrailConfigArgs{
    				ContentModerationConfig: &generativeai.AgentAgentEndpointGuardrailConfigContentModerationConfigArgs{
    					InputGuardrailMode:  pulumi.Any(agentEndpointGuardrailConfigContentModerationConfigInputGuardrailMode),
    					OutputGuardrailMode: pulumi.Any(agentEndpointGuardrailConfigContentModerationConfigOutputGuardrailMode),
    				},
    				PersonallyIdentifiableInformationConfig: &generativeai.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs{
    					InputGuardrailMode:  pulumi.Any(agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigInputGuardrailMode),
    					OutputGuardrailMode: pulumi.Any(agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigOutputGuardrailMode),
    				},
    				PromptInjectionConfig: &generativeai.AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs{
    					InputGuardrailMode: pulumi.Any(agentEndpointGuardrailConfigPromptInjectionConfigInputGuardrailMode),
    				},
    			},
    			HumanInputConfig: &generativeai.AgentAgentEndpointHumanInputConfigArgs{
    				ShouldEnableHumanInput: pulumi.Any(agentEndpointHumanInputConfigShouldEnableHumanInput),
    			},
    			Metadata: pulumi.Any(agentEndpointMetadata),
    			OutputConfig: &generativeai.AgentAgentEndpointOutputConfigArgs{
    				OutputLocation: &generativeai.AgentAgentEndpointOutputConfigOutputLocationArgs{
    					Bucket:             pulumi.Any(agentEndpointOutputConfigOutputLocationBucket),
    					Namespace:          pulumi.Any(agentEndpointOutputConfigOutputLocationNamespace),
    					OutputLocationType: pulumi.Any(agentEndpointOutputConfigOutputLocationOutputLocationType),
    					Prefix:             pulumi.Any(agentEndpointOutputConfigOutputLocationPrefix),
    				},
    				RetentionPeriodInMinutes: pulumi.Any(agentEndpointOutputConfigRetentionPeriodInMinutes),
    			},
    			SessionConfig: &generativeai.AgentAgentEndpointSessionConfigArgs{
    				IdleTimeoutInSeconds: pulumi.Any(agentEndpointSessionConfigIdleTimeoutInSeconds),
    			},
    			ShouldEnableCitation:      pulumi.Any(agentEndpointShouldEnableCitation),
    			ShouldEnableMultiLanguage: pulumi.Any(agentEndpointShouldEnableMultiLanguage),
    			ShouldEnableSession:       pulumi.Any(agentEndpointShouldEnableSession),
    			ShouldEnableTrace:         pulumi.Any(agentEndpointShouldEnableTrace),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAgentEndpoint = new Oci.GenerativeAi.AgentAgentEndpoint("test_agent_endpoint", new()
        {
            AgentId = testAgent.Id,
            CompartmentId = compartmentId,
            ContentModerationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointContentModerationConfigArgs
            {
                ShouldEnableOnInput = agentEndpointContentModerationConfigShouldEnableOnInput,
                ShouldEnableOnOutput = agentEndpointContentModerationConfigShouldEnableOnOutput,
            },
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = agentEndpointDescription,
            DisplayName = agentEndpointDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            GuardrailConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigArgs
            {
                ContentModerationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigContentModerationConfigArgs
                {
                    InputGuardrailMode = agentEndpointGuardrailConfigContentModerationConfigInputGuardrailMode,
                    OutputGuardrailMode = agentEndpointGuardrailConfigContentModerationConfigOutputGuardrailMode,
                },
                PersonallyIdentifiableInformationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs
                {
                    InputGuardrailMode = agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigInputGuardrailMode,
                    OutputGuardrailMode = agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigOutputGuardrailMode,
                },
                PromptInjectionConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs
                {
                    InputGuardrailMode = agentEndpointGuardrailConfigPromptInjectionConfigInputGuardrailMode,
                },
            },
            HumanInputConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointHumanInputConfigArgs
            {
                ShouldEnableHumanInput = agentEndpointHumanInputConfigShouldEnableHumanInput,
            },
            Metadata = agentEndpointMetadata,
            OutputConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointOutputConfigArgs
            {
                OutputLocation = new Oci.GenerativeAi.Inputs.AgentAgentEndpointOutputConfigOutputLocationArgs
                {
                    Bucket = agentEndpointOutputConfigOutputLocationBucket,
                    Namespace = agentEndpointOutputConfigOutputLocationNamespace,
                    OutputLocationType = agentEndpointOutputConfigOutputLocationOutputLocationType,
                    Prefix = agentEndpointOutputConfigOutputLocationPrefix,
                },
                RetentionPeriodInMinutes = agentEndpointOutputConfigRetentionPeriodInMinutes,
            },
            SessionConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointSessionConfigArgs
            {
                IdleTimeoutInSeconds = agentEndpointSessionConfigIdleTimeoutInSeconds,
            },
            ShouldEnableCitation = agentEndpointShouldEnableCitation,
            ShouldEnableMultiLanguage = agentEndpointShouldEnableMultiLanguage,
            ShouldEnableSession = agentEndpointShouldEnableSession,
            ShouldEnableTrace = agentEndpointShouldEnableTrace,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.GenerativeAi.AgentAgentEndpoint;
    import com.pulumi.oci.GenerativeAi.AgentAgentEndpointArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointContentModerationConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointGuardrailConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointGuardrailConfigContentModerationConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointHumanInputConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointOutputConfigArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointOutputConfigOutputLocationArgs;
    import com.pulumi.oci.GenerativeAi.inputs.AgentAgentEndpointSessionConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testAgentEndpoint = new AgentAgentEndpoint("testAgentEndpoint", AgentAgentEndpointArgs.builder()
                .agentId(testAgent.id())
                .compartmentId(compartmentId)
                .contentModerationConfig(AgentAgentEndpointContentModerationConfigArgs.builder()
                    .shouldEnableOnInput(agentEndpointContentModerationConfigShouldEnableOnInput)
                    .shouldEnableOnOutput(agentEndpointContentModerationConfigShouldEnableOnOutput)
                    .build())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(agentEndpointDescription)
                .displayName(agentEndpointDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .guardrailConfig(AgentAgentEndpointGuardrailConfigArgs.builder()
                    .contentModerationConfig(AgentAgentEndpointGuardrailConfigContentModerationConfigArgs.builder()
                        .inputGuardrailMode(agentEndpointGuardrailConfigContentModerationConfigInputGuardrailMode)
                        .outputGuardrailMode(agentEndpointGuardrailConfigContentModerationConfigOutputGuardrailMode)
                        .build())
                    .personallyIdentifiableInformationConfig(AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs.builder()
                        .inputGuardrailMode(agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigInputGuardrailMode)
                        .outputGuardrailMode(agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigOutputGuardrailMode)
                        .build())
                    .promptInjectionConfig(AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs.builder()
                        .inputGuardrailMode(agentEndpointGuardrailConfigPromptInjectionConfigInputGuardrailMode)
                        .build())
                    .build())
                .humanInputConfig(AgentAgentEndpointHumanInputConfigArgs.builder()
                    .shouldEnableHumanInput(agentEndpointHumanInputConfigShouldEnableHumanInput)
                    .build())
                .metadata(agentEndpointMetadata)
                .outputConfig(AgentAgentEndpointOutputConfigArgs.builder()
                    .outputLocation(AgentAgentEndpointOutputConfigOutputLocationArgs.builder()
                        .bucket(agentEndpointOutputConfigOutputLocationBucket)
                        .namespace(agentEndpointOutputConfigOutputLocationNamespace)
                        .outputLocationType(agentEndpointOutputConfigOutputLocationOutputLocationType)
                        .prefix(agentEndpointOutputConfigOutputLocationPrefix)
                        .build())
                    .retentionPeriodInMinutes(agentEndpointOutputConfigRetentionPeriodInMinutes)
                    .build())
                .sessionConfig(AgentAgentEndpointSessionConfigArgs.builder()
                    .idleTimeoutInSeconds(agentEndpointSessionConfigIdleTimeoutInSeconds)
                    .build())
                .shouldEnableCitation(agentEndpointShouldEnableCitation)
                .shouldEnableMultiLanguage(agentEndpointShouldEnableMultiLanguage)
                .shouldEnableSession(agentEndpointShouldEnableSession)
                .shouldEnableTrace(agentEndpointShouldEnableTrace)
                .build());
    
        }
    }
    
    resources:
      testAgentEndpoint:
        type: oci:GenerativeAi:AgentAgentEndpoint
        name: test_agent_endpoint
        properties:
          agentId: ${testAgent.id}
          compartmentId: ${compartmentId}
          contentModerationConfig:
            shouldEnableOnInput: ${agentEndpointContentModerationConfigShouldEnableOnInput}
            shouldEnableOnOutput: ${agentEndpointContentModerationConfigShouldEnableOnOutput}
          definedTags:
            Operations.CostCenter: '42'
          description: ${agentEndpointDescription}
          displayName: ${agentEndpointDisplayName}
          freeformTags:
            Department: Finance
          guardrailConfig:
            contentModerationConfig:
              inputGuardrailMode: ${agentEndpointGuardrailConfigContentModerationConfigInputGuardrailMode}
              outputGuardrailMode: ${agentEndpointGuardrailConfigContentModerationConfigOutputGuardrailMode}
            personallyIdentifiableInformationConfig:
              inputGuardrailMode: ${agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigInputGuardrailMode}
              outputGuardrailMode: ${agentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigOutputGuardrailMode}
            promptInjectionConfig:
              inputGuardrailMode: ${agentEndpointGuardrailConfigPromptInjectionConfigInputGuardrailMode}
          humanInputConfig:
            shouldEnableHumanInput: ${agentEndpointHumanInputConfigShouldEnableHumanInput}
          metadata: ${agentEndpointMetadata}
          outputConfig:
            outputLocation:
              bucket: ${agentEndpointOutputConfigOutputLocationBucket}
              namespace: ${agentEndpointOutputConfigOutputLocationNamespace}
              outputLocationType: ${agentEndpointOutputConfigOutputLocationOutputLocationType}
              prefix: ${agentEndpointOutputConfigOutputLocationPrefix}
            retentionPeriodInMinutes: ${agentEndpointOutputConfigRetentionPeriodInMinutes}
          sessionConfig:
            idleTimeoutInSeconds: ${agentEndpointSessionConfigIdleTimeoutInSeconds}
          shouldEnableCitation: ${agentEndpointShouldEnableCitation}
          shouldEnableMultiLanguage: ${agentEndpointShouldEnableMultiLanguage}
          shouldEnableSession: ${agentEndpointShouldEnableSession}
          shouldEnableTrace: ${agentEndpointShouldEnableTrace}
    

    Create AgentAgentEndpoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AgentAgentEndpoint(name: string, args: AgentAgentEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def AgentAgentEndpoint(resource_name: str,
                           args: AgentAgentEndpointArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def AgentAgentEndpoint(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           agent_id: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           content_moderation_config: Optional[AgentAgentEndpointContentModerationConfigArgs] = None,
                           defined_tags: Optional[Mapping[str, str]] = None,
                           description: Optional[str] = None,
                           display_name: Optional[str] = None,
                           freeform_tags: Optional[Mapping[str, str]] = None,
                           guardrail_config: Optional[AgentAgentEndpointGuardrailConfigArgs] = None,
                           human_input_config: Optional[AgentAgentEndpointHumanInputConfigArgs] = None,
                           metadata: Optional[Mapping[str, str]] = None,
                           output_config: Optional[AgentAgentEndpointOutputConfigArgs] = None,
                           session_config: Optional[AgentAgentEndpointSessionConfigArgs] = None,
                           should_enable_citation: Optional[bool] = None,
                           should_enable_multi_language: Optional[bool] = None,
                           should_enable_session: Optional[bool] = None,
                           should_enable_trace: Optional[bool] = None)
    func NewAgentAgentEndpoint(ctx *Context, name string, args AgentAgentEndpointArgs, opts ...ResourceOption) (*AgentAgentEndpoint, error)
    public AgentAgentEndpoint(string name, AgentAgentEndpointArgs args, CustomResourceOptions? opts = null)
    public AgentAgentEndpoint(String name, AgentAgentEndpointArgs args)
    public AgentAgentEndpoint(String name, AgentAgentEndpointArgs args, CustomResourceOptions options)
    
    type: oci:GenerativeAi:AgentAgentEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AgentAgentEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AgentAgentEndpointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AgentAgentEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgentAgentEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AgentAgentEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var agentAgentEndpointResource = new Oci.GenerativeAi.AgentAgentEndpoint("agentAgentEndpointResource", new()
    {
        AgentId = "string",
        CompartmentId = "string",
        ContentModerationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointContentModerationConfigArgs
        {
            ShouldEnableOnInput = false,
            ShouldEnableOnOutput = false,
        },
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        GuardrailConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigArgs
        {
            ContentModerationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigContentModerationConfigArgs
            {
                InputGuardrailMode = "string",
                OutputGuardrailMode = "string",
            },
            PersonallyIdentifiableInformationConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs
            {
                InputGuardrailMode = "string",
                OutputGuardrailMode = "string",
            },
            PromptInjectionConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs
            {
                InputGuardrailMode = "string",
            },
        },
        HumanInputConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointHumanInputConfigArgs
        {
            ShouldEnableHumanInput = false,
        },
        Metadata = 
        {
            { "string", "string" },
        },
        OutputConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointOutputConfigArgs
        {
            OutputLocation = new Oci.GenerativeAi.Inputs.AgentAgentEndpointOutputConfigOutputLocationArgs
            {
                Bucket = "string",
                Namespace = "string",
                OutputLocationType = "string",
                Prefix = "string",
            },
            RetentionPeriodInMinutes = 0,
        },
        SessionConfig = new Oci.GenerativeAi.Inputs.AgentAgentEndpointSessionConfigArgs
        {
            IdleTimeoutInSeconds = 0,
        },
        ShouldEnableCitation = false,
        ShouldEnableMultiLanguage = false,
        ShouldEnableSession = false,
        ShouldEnableTrace = false,
    });
    
    example, err := generativeai.NewAgentAgentEndpoint(ctx, "agentAgentEndpointResource", &generativeai.AgentAgentEndpointArgs{
    	AgentId:       pulumi.String("string"),
    	CompartmentId: pulumi.String("string"),
    	ContentModerationConfig: &generativeai.AgentAgentEndpointContentModerationConfigArgs{
    		ShouldEnableOnInput:  pulumi.Bool(false),
    		ShouldEnableOnOutput: pulumi.Bool(false),
    	},
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	GuardrailConfig: &generativeai.AgentAgentEndpointGuardrailConfigArgs{
    		ContentModerationConfig: &generativeai.AgentAgentEndpointGuardrailConfigContentModerationConfigArgs{
    			InputGuardrailMode:  pulumi.String("string"),
    			OutputGuardrailMode: pulumi.String("string"),
    		},
    		PersonallyIdentifiableInformationConfig: &generativeai.AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs{
    			InputGuardrailMode:  pulumi.String("string"),
    			OutputGuardrailMode: pulumi.String("string"),
    		},
    		PromptInjectionConfig: &generativeai.AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs{
    			InputGuardrailMode: pulumi.String("string"),
    		},
    	},
    	HumanInputConfig: &generativeai.AgentAgentEndpointHumanInputConfigArgs{
    		ShouldEnableHumanInput: pulumi.Bool(false),
    	},
    	Metadata: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	OutputConfig: &generativeai.AgentAgentEndpointOutputConfigArgs{
    		OutputLocation: &generativeai.AgentAgentEndpointOutputConfigOutputLocationArgs{
    			Bucket:             pulumi.String("string"),
    			Namespace:          pulumi.String("string"),
    			OutputLocationType: pulumi.String("string"),
    			Prefix:             pulumi.String("string"),
    		},
    		RetentionPeriodInMinutes: pulumi.Int(0),
    	},
    	SessionConfig: &generativeai.AgentAgentEndpointSessionConfigArgs{
    		IdleTimeoutInSeconds: pulumi.Int(0),
    	},
    	ShouldEnableCitation:      pulumi.Bool(false),
    	ShouldEnableMultiLanguage: pulumi.Bool(false),
    	ShouldEnableSession:       pulumi.Bool(false),
    	ShouldEnableTrace:         pulumi.Bool(false),
    })
    
    var agentAgentEndpointResource = new AgentAgentEndpoint("agentAgentEndpointResource", AgentAgentEndpointArgs.builder()
        .agentId("string")
        .compartmentId("string")
        .contentModerationConfig(AgentAgentEndpointContentModerationConfigArgs.builder()
            .shouldEnableOnInput(false)
            .shouldEnableOnOutput(false)
            .build())
        .definedTags(Map.of("string", "string"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .guardrailConfig(AgentAgentEndpointGuardrailConfigArgs.builder()
            .contentModerationConfig(AgentAgentEndpointGuardrailConfigContentModerationConfigArgs.builder()
                .inputGuardrailMode("string")
                .outputGuardrailMode("string")
                .build())
            .personallyIdentifiableInformationConfig(AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs.builder()
                .inputGuardrailMode("string")
                .outputGuardrailMode("string")
                .build())
            .promptInjectionConfig(AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs.builder()
                .inputGuardrailMode("string")
                .build())
            .build())
        .humanInputConfig(AgentAgentEndpointHumanInputConfigArgs.builder()
            .shouldEnableHumanInput(false)
            .build())
        .metadata(Map.of("string", "string"))
        .outputConfig(AgentAgentEndpointOutputConfigArgs.builder()
            .outputLocation(AgentAgentEndpointOutputConfigOutputLocationArgs.builder()
                .bucket("string")
                .namespace("string")
                .outputLocationType("string")
                .prefix("string")
                .build())
            .retentionPeriodInMinutes(0)
            .build())
        .sessionConfig(AgentAgentEndpointSessionConfigArgs.builder()
            .idleTimeoutInSeconds(0)
            .build())
        .shouldEnableCitation(false)
        .shouldEnableMultiLanguage(false)
        .shouldEnableSession(false)
        .shouldEnableTrace(false)
        .build());
    
    agent_agent_endpoint_resource = oci.generativeai.AgentAgentEndpoint("agentAgentEndpointResource",
        agent_id="string",
        compartment_id="string",
        content_moderation_config={
            "should_enable_on_input": False,
            "should_enable_on_output": False,
        },
        defined_tags={
            "string": "string",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        guardrail_config={
            "content_moderation_config": {
                "input_guardrail_mode": "string",
                "output_guardrail_mode": "string",
            },
            "personally_identifiable_information_config": {
                "input_guardrail_mode": "string",
                "output_guardrail_mode": "string",
            },
            "prompt_injection_config": {
                "input_guardrail_mode": "string",
            },
        },
        human_input_config={
            "should_enable_human_input": False,
        },
        metadata={
            "string": "string",
        },
        output_config={
            "output_location": {
                "bucket": "string",
                "namespace": "string",
                "output_location_type": "string",
                "prefix": "string",
            },
            "retention_period_in_minutes": 0,
        },
        session_config={
            "idle_timeout_in_seconds": 0,
        },
        should_enable_citation=False,
        should_enable_multi_language=False,
        should_enable_session=False,
        should_enable_trace=False)
    
    const agentAgentEndpointResource = new oci.generativeai.AgentAgentEndpoint("agentAgentEndpointResource", {
        agentId: "string",
        compartmentId: "string",
        contentModerationConfig: {
            shouldEnableOnInput: false,
            shouldEnableOnOutput: false,
        },
        definedTags: {
            string: "string",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        guardrailConfig: {
            contentModerationConfig: {
                inputGuardrailMode: "string",
                outputGuardrailMode: "string",
            },
            personallyIdentifiableInformationConfig: {
                inputGuardrailMode: "string",
                outputGuardrailMode: "string",
            },
            promptInjectionConfig: {
                inputGuardrailMode: "string",
            },
        },
        humanInputConfig: {
            shouldEnableHumanInput: false,
        },
        metadata: {
            string: "string",
        },
        outputConfig: {
            outputLocation: {
                bucket: "string",
                namespace: "string",
                outputLocationType: "string",
                prefix: "string",
            },
            retentionPeriodInMinutes: 0,
        },
        sessionConfig: {
            idleTimeoutInSeconds: 0,
        },
        shouldEnableCitation: false,
        shouldEnableMultiLanguage: false,
        shouldEnableSession: false,
        shouldEnableTrace: false,
    });
    
    type: oci:GenerativeAi:AgentAgentEndpoint
    properties:
        agentId: string
        compartmentId: string
        contentModerationConfig:
            shouldEnableOnInput: false
            shouldEnableOnOutput: false
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
        guardrailConfig:
            contentModerationConfig:
                inputGuardrailMode: string
                outputGuardrailMode: string
            personallyIdentifiableInformationConfig:
                inputGuardrailMode: string
                outputGuardrailMode: string
            promptInjectionConfig:
                inputGuardrailMode: string
        humanInputConfig:
            shouldEnableHumanInput: false
        metadata:
            string: string
        outputConfig:
            outputLocation:
                bucket: string
                namespace: string
                outputLocationType: string
                prefix: string
            retentionPeriodInMinutes: 0
        sessionConfig:
            idleTimeoutInSeconds: 0
        shouldEnableCitation: false
        shouldEnableMultiLanguage: false
        shouldEnableSession: false
        shouldEnableTrace: false
    

    AgentAgentEndpoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AgentAgentEndpoint resource accepts the following input properties:

    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    ContentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) An optional description of the endpoint.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GuardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    Metadata Dictionary<string, string>
    (Updatable) Key-value pairs to allow additional configurations.
    OutputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    SessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    (Updatable) Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    (Updatable) Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    ContentModerationConfig AgentAgentEndpointContentModerationConfigArgs
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) An optional description of the endpoint.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GuardrailConfig AgentAgentEndpointGuardrailConfigArgs
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfig AgentAgentEndpointHumanInputConfigArgs
    (Updatable) Human Input Configuration for an AgentEndpoint.
    Metadata map[string]string
    (Updatable) Key-value pairs to allow additional configurations.
    OutputConfig AgentAgentEndpointOutputConfigArgs
    (Updatable) Configuration to store results generated by agent.
    SessionConfig AgentAgentEndpointSessionConfigArgs
    (Updatable) Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    (Updatable) Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    (Updatable) Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) An optional description of the endpoint.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    metadata Map<String,String>
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    sessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId string
    The OCID of the agent that this endpoint is associated with.
    compartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) An optional description of the endpoint.
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    metadata {[key: string]: string}
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    sessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agent_id str
    The OCID of the agent that this endpoint is associated with.
    compartment_id str
    (Updatable) The OCID of the compartment to create the endpoint in.
    content_moderation_config AgentAgentEndpointContentModerationConfigArgs
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) An optional description of the endpoint.
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrail_config AgentAgentEndpointGuardrailConfigArgs
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    human_input_config AgentAgentEndpointHumanInputConfigArgs
    (Updatable) Human Input Configuration for an AgentEndpoint.
    metadata Mapping[str, str]
    (Updatable) Key-value pairs to allow additional configurations.
    output_config AgentAgentEndpointOutputConfigArgs
    (Updatable) Configuration to store results generated by agent.
    session_config AgentAgentEndpointSessionConfigArgs
    (Updatable) Session Configuration on AgentEndpoint.
    should_enable_citation bool
    (Updatable) Whether to show citations in the chat result.
    should_enable_multi_language bool
    (Updatable) Whether to enable multi-language for chat.
    should_enable_session bool
    Whether or not to enable Session-based chat.
    should_enable_trace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig Property Map
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) An optional description of the endpoint.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig Property Map
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig Property Map
    (Updatable) Human Input Configuration for an AgentEndpoint.
    metadata Map<String>
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig Property Map
    (Updatable) Configuration to store results generated by agent.
    sessionConfig Property Map
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AgentAgentEndpoint resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the endpoint.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the endpoint.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the endpoint.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state string
    The current state of the endpoint.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state str
    The current state of the endpoint.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the endpoint.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing AgentAgentEndpoint Resource

    Get an existing AgentAgentEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AgentAgentEndpointState, opts?: CustomResourceOptions): AgentAgentEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            agent_id: Optional[str] = None,
            compartment_id: Optional[str] = None,
            content_moderation_config: Optional[AgentAgentEndpointContentModerationConfigArgs] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            guardrail_config: Optional[AgentAgentEndpointGuardrailConfigArgs] = None,
            human_input_config: Optional[AgentAgentEndpointHumanInputConfigArgs] = None,
            lifecycle_details: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            output_config: Optional[AgentAgentEndpointOutputConfigArgs] = None,
            session_config: Optional[AgentAgentEndpointSessionConfigArgs] = None,
            should_enable_citation: Optional[bool] = None,
            should_enable_multi_language: Optional[bool] = None,
            should_enable_session: Optional[bool] = None,
            should_enable_trace: Optional[bool] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> AgentAgentEndpoint
    func GetAgentAgentEndpoint(ctx *Context, name string, id IDInput, state *AgentAgentEndpointState, opts ...ResourceOption) (*AgentAgentEndpoint, error)
    public static AgentAgentEndpoint Get(string name, Input<string> id, AgentAgentEndpointState? state, CustomResourceOptions? opts = null)
    public static AgentAgentEndpoint get(String name, Output<String> id, AgentAgentEndpointState state, CustomResourceOptions options)
    resources:  _:    type: oci:GenerativeAi:AgentAgentEndpoint    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    ContentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) An optional description of the endpoint.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GuardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    LifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Metadata Dictionary<string, string>
    (Updatable) Key-value pairs to allow additional configurations.
    OutputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    SessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    (Updatable) Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    (Updatable) Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current state of the endpoint.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    ContentModerationConfig AgentAgentEndpointContentModerationConfigArgs
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) An optional description of the endpoint.
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GuardrailConfig AgentAgentEndpointGuardrailConfigArgs
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfig AgentAgentEndpointHumanInputConfigArgs
    (Updatable) Human Input Configuration for an AgentEndpoint.
    LifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    Metadata map[string]string
    (Updatable) Key-value pairs to allow additional configurations.
    OutputConfig AgentAgentEndpointOutputConfigArgs
    (Updatable) Configuration to store results generated by agent.
    SessionConfig AgentAgentEndpointSessionConfigArgs
    (Updatable) Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    (Updatable) Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    (Updatable) Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current state of the endpoint.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) An optional description of the endpoint.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    lifecycleDetails String
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    metadata Map<String,String>
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    sessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current state of the endpoint.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    agentId string
    The OCID of the agent that this endpoint is associated with.
    compartmentId string
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig AgentAgentEndpointContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) An optional description of the endpoint.
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig AgentAgentEndpointGuardrailConfig
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig AgentAgentEndpointHumanInputConfig
    (Updatable) Human Input Configuration for an AgentEndpoint.
    lifecycleDetails string
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    metadata {[key: string]: string}
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig AgentAgentEndpointOutputConfig
    (Updatable) Configuration to store results generated by agent.
    sessionConfig AgentAgentEndpointSessionConfig
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state string
    The current state of the endpoint.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    agent_id str
    The OCID of the agent that this endpoint is associated with.
    compartment_id str
    (Updatable) The OCID of the compartment to create the endpoint in.
    content_moderation_config AgentAgentEndpointContentModerationConfigArgs
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) An optional description of the endpoint.
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrail_config AgentAgentEndpointGuardrailConfigArgs
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    human_input_config AgentAgentEndpointHumanInputConfigArgs
    (Updatable) Human Input Configuration for an AgentEndpoint.
    lifecycle_details str
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    metadata Mapping[str, str]
    (Updatable) Key-value pairs to allow additional configurations.
    output_config AgentAgentEndpointOutputConfigArgs
    (Updatable) Configuration to store results generated by agent.
    session_config AgentAgentEndpointSessionConfigArgs
    (Updatable) Session Configuration on AgentEndpoint.
    should_enable_citation bool
    (Updatable) Whether to show citations in the chat result.
    should_enable_multi_language bool
    (Updatable) Whether to enable multi-language for chat.
    should_enable_session bool
    Whether or not to enable Session-based chat.
    should_enable_trace bool

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state str
    The current state of the endpoint.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    (Updatable) The OCID of the compartment to create the endpoint in.
    contentModerationConfig Property Map
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) An optional description of the endpoint.
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    guardrailConfig Property Map
    (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfig Property Map
    (Updatable) Human Input Configuration for an AgentEndpoint.
    lifecycleDetails String
    A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    metadata Map<String>
    (Updatable) Key-value pairs to allow additional configurations.
    outputConfig Property Map
    (Updatable) Configuration to store results generated by agent.
    sessionConfig Property Map
    (Updatable) Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    (Updatable) Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    (Updatable) Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean

    (Updatable) Whether to show traces in the chat result.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current state of the endpoint.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    AgentAgentEndpointContentModerationConfig, AgentAgentEndpointContentModerationConfigArgs

    ShouldEnableOnInput bool
    (Updatable) A flag to enable or disable content moderation on input.
    ShouldEnableOnOutput bool
    (Updatable) A flag to enable or disable content moderation on output.
    ShouldEnableOnInput bool
    (Updatable) A flag to enable or disable content moderation on input.
    ShouldEnableOnOutput bool
    (Updatable) A flag to enable or disable content moderation on output.
    shouldEnableOnInput Boolean
    (Updatable) A flag to enable or disable content moderation on input.
    shouldEnableOnOutput Boolean
    (Updatable) A flag to enable or disable content moderation on output.
    shouldEnableOnInput boolean
    (Updatable) A flag to enable or disable content moderation on input.
    shouldEnableOnOutput boolean
    (Updatable) A flag to enable or disable content moderation on output.
    should_enable_on_input bool
    (Updatable) A flag to enable or disable content moderation on input.
    should_enable_on_output bool
    (Updatable) A flag to enable or disable content moderation on output.
    shouldEnableOnInput Boolean
    (Updatable) A flag to enable or disable content moderation on input.
    shouldEnableOnOutput Boolean
    (Updatable) A flag to enable or disable content moderation on output.

    AgentAgentEndpointGuardrailConfig, AgentAgentEndpointGuardrailConfigArgs

    ContentModerationConfig AgentAgentEndpointGuardrailConfigContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    PersonallyIdentifiableInformationConfig AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    (Updatable) The configuration details for Personally Identifiable Information.
    PromptInjectionConfig AgentAgentEndpointGuardrailConfigPromptInjectionConfig
    (Updatable) The configuration details for Prompt Injection.
    ContentModerationConfig AgentAgentEndpointGuardrailConfigContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    PersonallyIdentifiableInformationConfig AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    (Updatable) The configuration details for Personally Identifiable Information.
    PromptInjectionConfig AgentAgentEndpointGuardrailConfigPromptInjectionConfig
    (Updatable) The configuration details for Prompt Injection.
    contentModerationConfig AgentAgentEndpointGuardrailConfigContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    personallyIdentifiableInformationConfig AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    (Updatable) The configuration details for Personally Identifiable Information.
    promptInjectionConfig AgentAgentEndpointGuardrailConfigPromptInjectionConfig
    (Updatable) The configuration details for Prompt Injection.
    contentModerationConfig AgentAgentEndpointGuardrailConfigContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    personallyIdentifiableInformationConfig AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    (Updatable) The configuration details for Personally Identifiable Information.
    promptInjectionConfig AgentAgentEndpointGuardrailConfigPromptInjectionConfig
    (Updatable) The configuration details for Prompt Injection.
    content_moderation_config AgentAgentEndpointGuardrailConfigContentModerationConfig
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    personally_identifiable_information_config AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    (Updatable) The configuration details for Personally Identifiable Information.
    prompt_injection_config AgentAgentEndpointGuardrailConfigPromptInjectionConfig
    (Updatable) The configuration details for Prompt Injection.
    contentModerationConfig Property Map
    (Updatable) The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
    personallyIdentifiableInformationConfig Property Map
    (Updatable) The configuration details for Personally Identifiable Information.
    promptInjectionConfig Property Map
    (Updatable) The configuration details for Prompt Injection.

    AgentAgentEndpointGuardrailConfigContentModerationConfig, AgentAgentEndpointGuardrailConfigContentModerationConfigArgs

    InputGuardrailMode string
    (Updatable) An input guardrail mode for content moderation.
    OutputGuardrailMode string
    (Updatable) An output guardrail mode for content moderation.
    InputGuardrailMode string
    (Updatable) An input guardrail mode for content moderation.
    OutputGuardrailMode string
    (Updatable) An output guardrail mode for content moderation.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for content moderation.
    outputGuardrailMode String
    (Updatable) An output guardrail mode for content moderation.
    inputGuardrailMode string
    (Updatable) An input guardrail mode for content moderation.
    outputGuardrailMode string
    (Updatable) An output guardrail mode for content moderation.
    input_guardrail_mode str
    (Updatable) An input guardrail mode for content moderation.
    output_guardrail_mode str
    (Updatable) An output guardrail mode for content moderation.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for content moderation.
    outputGuardrailMode String
    (Updatable) An output guardrail mode for content moderation.

    AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig, AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs

    InputGuardrailMode string
    (Updatable) An input guardrail mode for personally identifiable information.
    OutputGuardrailMode string
    (Updatable) An output guardrail mode for personally identifiable information.
    InputGuardrailMode string
    (Updatable) An input guardrail mode for personally identifiable information.
    OutputGuardrailMode string
    (Updatable) An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for personally identifiable information.
    outputGuardrailMode String
    (Updatable) An output guardrail mode for personally identifiable information.
    inputGuardrailMode string
    (Updatable) An input guardrail mode for personally identifiable information.
    outputGuardrailMode string
    (Updatable) An output guardrail mode for personally identifiable information.
    input_guardrail_mode str
    (Updatable) An input guardrail mode for personally identifiable information.
    output_guardrail_mode str
    (Updatable) An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for personally identifiable information.
    outputGuardrailMode String
    (Updatable) An output guardrail mode for personally identifiable information.

    AgentAgentEndpointGuardrailConfigPromptInjectionConfig, AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs

    InputGuardrailMode string
    (Updatable) An input guardrail mode for prompt injection.
    InputGuardrailMode string
    (Updatable) An input guardrail mode for prompt injection.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for prompt injection.
    inputGuardrailMode string
    (Updatable) An input guardrail mode for prompt injection.
    input_guardrail_mode str
    (Updatable) An input guardrail mode for prompt injection.
    inputGuardrailMode String
    (Updatable) An input guardrail mode for prompt injection.

    AgentAgentEndpointHumanInputConfig, AgentAgentEndpointHumanInputConfigArgs

    ShouldEnableHumanInput bool
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
    ShouldEnableHumanInput bool
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
    shouldEnableHumanInput Boolean
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
    shouldEnableHumanInput boolean
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
    should_enable_human_input bool
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
    shouldEnableHumanInput Boolean
    (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.

    AgentAgentEndpointOutputConfig, AgentAgentEndpointOutputConfigArgs

    OutputLocation AgentAgentEndpointOutputConfigOutputLocation
    (Updatable) Location of the output.
    RetentionPeriodInMinutes int
    (Updatable) Retention duration of the output data.
    OutputLocation AgentAgentEndpointOutputConfigOutputLocation
    (Updatable) Location of the output.
    RetentionPeriodInMinutes int
    (Updatable) Retention duration of the output data.
    outputLocation AgentAgentEndpointOutputConfigOutputLocation
    (Updatable) Location of the output.
    retentionPeriodInMinutes Integer
    (Updatable) Retention duration of the output data.
    outputLocation AgentAgentEndpointOutputConfigOutputLocation
    (Updatable) Location of the output.
    retentionPeriodInMinutes number
    (Updatable) Retention duration of the output data.
    output_location AgentAgentEndpointOutputConfigOutputLocation
    (Updatable) Location of the output.
    retention_period_in_minutes int
    (Updatable) Retention duration of the output data.
    outputLocation Property Map
    (Updatable) Location of the output.
    retentionPeriodInMinutes Number
    (Updatable) Retention duration of the output data.

    AgentAgentEndpointOutputConfigOutputLocation, AgentAgentEndpointOutputConfigOutputLocationArgs

    Bucket string
    (Updatable) The name of the bucket.
    Namespace string
    (Updatable) The namespace of the object storage.
    OutputLocationType string
    (Updatable) Type of OutputLocation.
    Prefix string
    (Updatable) The prefix of the object storage.
    Bucket string
    (Updatable) The name of the bucket.
    Namespace string
    (Updatable) The namespace of the object storage.
    OutputLocationType string
    (Updatable) Type of OutputLocation.
    Prefix string
    (Updatable) The prefix of the object storage.
    bucket String
    (Updatable) The name of the bucket.
    namespace String
    (Updatable) The namespace of the object storage.
    outputLocationType String
    (Updatable) Type of OutputLocation.
    prefix String
    (Updatable) The prefix of the object storage.
    bucket string
    (Updatable) The name of the bucket.
    namespace string
    (Updatable) The namespace of the object storage.
    outputLocationType string
    (Updatable) Type of OutputLocation.
    prefix string
    (Updatable) The prefix of the object storage.
    bucket str
    (Updatable) The name of the bucket.
    namespace str
    (Updatable) The namespace of the object storage.
    output_location_type str
    (Updatable) Type of OutputLocation.
    prefix str
    (Updatable) The prefix of the object storage.
    bucket String
    (Updatable) The name of the bucket.
    namespace String
    (Updatable) The namespace of the object storage.
    outputLocationType String
    (Updatable) Type of OutputLocation.
    prefix String
    (Updatable) The prefix of the object storage.

    AgentAgentEndpointSessionConfig, AgentAgentEndpointSessionConfigArgs

    IdleTimeoutInSeconds int
    (Updatable) The session will become inactive after this timeout.
    IdleTimeoutInSeconds int
    (Updatable) The session will become inactive after this timeout.
    idleTimeoutInSeconds Integer
    (Updatable) The session will become inactive after this timeout.
    idleTimeoutInSeconds number
    (Updatable) The session will become inactive after this timeout.
    idle_timeout_in_seconds int
    (Updatable) The session will become inactive after this timeout.
    idleTimeoutInSeconds Number
    (Updatable) The session will become inactive after this timeout.

    Import

    AgentEndpoints can be imported using the id, e.g.

    $ pulumi import oci:GenerativeAi/agentAgentEndpoint:AgentAgentEndpoint test_agent_endpoint "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi