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

oci.GenerativeAi.getAgentAgentEndpoint

Explore with Pulumi AI

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

    This data source provides details about a specific Agent Endpoint resource in Oracle Cloud Infrastructure Generative Ai Agent service.

    Gets information about an endpoint.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAgentEndpoint = oci.GenerativeAi.getAgentAgentEndpoint({
        agentEndpointId: testAgentEndpointOciGenerativeAiAgentAgentEndpoint.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_agent_endpoint = oci.GenerativeAi.get_agent_agent_endpoint(agent_endpoint_id=test_agent_endpoint_oci_generative_ai_agent_agent_endpoint["id"])
    
    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.GetAgentAgentEndpoint(ctx, &generativeai.GetAgentAgentEndpointArgs{
    			AgentEndpointId: testAgentEndpointOciGenerativeAiAgentAgentEndpoint.Id,
    		}, nil)
    		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 = Oci.GenerativeAi.GetAgentAgentEndpoint.Invoke(new()
        {
            AgentEndpointId = testAgentEndpointOciGenerativeAiAgentAgentEndpoint.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.GenerativeAi.GenerativeAiFunctions;
    import com.pulumi.oci.GenerativeAi.inputs.GetAgentAgentEndpointArgs;
    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) {
            final var testAgentEndpoint = GenerativeAiFunctions.getAgentAgentEndpoint(GetAgentAgentEndpointArgs.builder()
                .agentEndpointId(testAgentEndpointOciGenerativeAiAgentAgentEndpoint.id())
                .build());
    
        }
    }
    
    variables:
      testAgentEndpoint:
        fn::invoke:
          function: oci:GenerativeAi:getAgentAgentEndpoint
          arguments:
            agentEndpointId: ${testAgentEndpointOciGenerativeAiAgentAgentEndpoint.id}
    

    Using getAgentAgentEndpoint

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getAgentAgentEndpoint(args: GetAgentAgentEndpointArgs, opts?: InvokeOptions): Promise<GetAgentAgentEndpointResult>
    function getAgentAgentEndpointOutput(args: GetAgentAgentEndpointOutputArgs, opts?: InvokeOptions): Output<GetAgentAgentEndpointResult>
    def get_agent_agent_endpoint(agent_endpoint_id: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetAgentAgentEndpointResult
    def get_agent_agent_endpoint_output(agent_endpoint_id: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetAgentAgentEndpointResult]
    func LookupAgentAgentEndpoint(ctx *Context, args *LookupAgentAgentEndpointArgs, opts ...InvokeOption) (*LookupAgentAgentEndpointResult, error)
    func LookupAgentAgentEndpointOutput(ctx *Context, args *LookupAgentAgentEndpointOutputArgs, opts ...InvokeOption) LookupAgentAgentEndpointResultOutput

    > Note: This function is named LookupAgentAgentEndpoint in the Go SDK.

    public static class GetAgentAgentEndpoint 
    {
        public static Task<GetAgentAgentEndpointResult> InvokeAsync(GetAgentAgentEndpointArgs args, InvokeOptions? opts = null)
        public static Output<GetAgentAgentEndpointResult> Invoke(GetAgentAgentEndpointInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAgentAgentEndpointResult> getAgentAgentEndpoint(GetAgentAgentEndpointArgs args, InvokeOptions options)
    public static Output<GetAgentAgentEndpointResult> getAgentAgentEndpoint(GetAgentAgentEndpointArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:GenerativeAi/getAgentAgentEndpoint:getAgentAgentEndpoint
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AgentEndpointId string
    The OCID of the endpoint.
    AgentEndpointId string
    The OCID of the endpoint.
    agentEndpointId String
    The OCID of the endpoint.
    agentEndpointId string
    The OCID of the endpoint.
    agent_endpoint_id str
    The OCID of the endpoint.
    agentEndpointId String
    The OCID of the endpoint.

    getAgentAgentEndpoint Result

    The following output properties are available:

    AgentEndpointId string
    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    The OCID of the compartment.
    ContentModerationConfigs List<GetAgentAgentEndpointContentModerationConfig>
    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>
    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
    An optional description of the endpoint.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    FreeformTags Dictionary<string, string>
    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"}
    GuardrailConfigs List<GetAgentAgentEndpointGuardrailConfig>
    The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfigs List<GetAgentAgentEndpointHumanInputConfig>
    Human Input Configuration for an AgentEndpoint.
    Id string
    The OCID of the endpoint.
    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>
    Key-value pairs to allow additional configurations.
    OutputConfigs List<GetAgentAgentEndpointOutputConfig>
    Configuration to store results generated by agent.
    SessionConfigs List<GetAgentAgentEndpointSessionConfig>
    Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool
    Whether to show traces in the chat result.
    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
    AgentEndpointId string
    AgentId string
    The OCID of the agent that this endpoint is associated with.
    CompartmentId string
    The OCID of the compartment.
    ContentModerationConfigs []GetAgentAgentEndpointContentModerationConfig
    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
    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
    An optional description of the endpoint.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    FreeformTags map[string]string
    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"}
    GuardrailConfigs []GetAgentAgentEndpointGuardrailConfig
    The configuration details about whether to apply the guardrail checks to input and output.
    HumanInputConfigs []GetAgentAgentEndpointHumanInputConfig
    Human Input Configuration for an AgentEndpoint.
    Id string
    The OCID of the endpoint.
    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
    Key-value pairs to allow additional configurations.
    OutputConfigs []GetAgentAgentEndpointOutputConfig
    Configuration to store results generated by agent.
    SessionConfigs []GetAgentAgentEndpointSessionConfig
    Session Configuration on AgentEndpoint.
    ShouldEnableCitation bool
    Whether to show citations in the chat result.
    ShouldEnableMultiLanguage bool
    Whether to enable multi-language for chat.
    ShouldEnableSession bool
    Whether or not to enable Session-based chat.
    ShouldEnableTrace bool
    Whether to show traces in the chat result.
    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
    agentEndpointId String
    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    The OCID of the compartment.
    contentModerationConfigs List<GetAgentAgentEndpointContentModerationConfig>
    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>
    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
    An optional description of the endpoint.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    freeformTags Map<String,String>
    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"}
    guardrailConfigs List<GetAgentAgentEndpointGuardrailConfig>
    The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfigs List<GetAgentAgentEndpointHumanInputConfig>
    Human Input Configuration for an AgentEndpoint.
    id String
    The OCID of the endpoint.
    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>
    Key-value pairs to allow additional configurations.
    outputConfigs List<GetAgentAgentEndpointOutputConfig>
    Configuration to store results generated by agent.
    sessionConfigs List<GetAgentAgentEndpointSessionConfig>
    Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean
    Whether to show traces in the chat result.
    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
    agentEndpointId string
    agentId string
    The OCID of the agent that this endpoint is associated with.
    compartmentId string
    The OCID of the compartment.
    contentModerationConfigs GetAgentAgentEndpointContentModerationConfig[]
    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}
    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
    An optional description of the endpoint.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    freeformTags {[key: string]: string}
    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"}
    guardrailConfigs GetAgentAgentEndpointGuardrailConfig[]
    The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfigs GetAgentAgentEndpointHumanInputConfig[]
    Human Input Configuration for an AgentEndpoint.
    id string
    The OCID of the endpoint.
    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}
    Key-value pairs to allow additional configurations.
    outputConfigs GetAgentAgentEndpointOutputConfig[]
    Configuration to store results generated by agent.
    sessionConfigs GetAgentAgentEndpointSessionConfig[]
    Session Configuration on AgentEndpoint.
    shouldEnableCitation boolean
    Whether to show citations in the chat result.
    shouldEnableMultiLanguage boolean
    Whether to enable multi-language for chat.
    shouldEnableSession boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace boolean
    Whether to show traces in the chat result.
    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_endpoint_id str
    agent_id str
    The OCID of the agent that this endpoint is associated with.
    compartment_id str
    The OCID of the compartment.
    content_moderation_configs Sequence[GetAgentAgentEndpointContentModerationConfig]
    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]
    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
    An optional description of the endpoint.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable.
    freeform_tags Mapping[str, str]
    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_configs Sequence[GetAgentAgentEndpointGuardrailConfig]
    The configuration details about whether to apply the guardrail checks to input and output.
    human_input_configs Sequence[GetAgentAgentEndpointHumanInputConfig]
    Human Input Configuration for an AgentEndpoint.
    id str
    The OCID of the endpoint.
    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]
    Key-value pairs to allow additional configurations.
    output_configs Sequence[GetAgentAgentEndpointOutputConfig]
    Configuration to store results generated by agent.
    session_configs Sequence[GetAgentAgentEndpointSessionConfig]
    Session Configuration on AgentEndpoint.
    should_enable_citation bool
    Whether to show citations in the chat result.
    should_enable_multi_language bool
    Whether to enable multi-language for chat.
    should_enable_session bool
    Whether or not to enable Session-based chat.
    should_enable_trace bool
    Whether to show traces in the chat result.
    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
    agentEndpointId String
    agentId String
    The OCID of the agent that this endpoint is associated with.
    compartmentId String
    The OCID of the compartment.
    contentModerationConfigs List<Property Map>
    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>
    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
    An optional description of the endpoint.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    freeformTags Map<String>
    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"}
    guardrailConfigs List<Property Map>
    The configuration details about whether to apply the guardrail checks to input and output.
    humanInputConfigs List<Property Map>
    Human Input Configuration for an AgentEndpoint.
    id String
    The OCID of the endpoint.
    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>
    Key-value pairs to allow additional configurations.
    outputConfigs List<Property Map>
    Configuration to store results generated by agent.
    sessionConfigs List<Property Map>
    Session Configuration on AgentEndpoint.
    shouldEnableCitation Boolean
    Whether to show citations in the chat result.
    shouldEnableMultiLanguage Boolean
    Whether to enable multi-language for chat.
    shouldEnableSession Boolean
    Whether or not to enable Session-based chat.
    shouldEnableTrace Boolean
    Whether to show traces in the chat result.
    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

    GetAgentAgentEndpointContentModerationConfig

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

    GetAgentAgentEndpointGuardrailConfig

    ContentModerationConfigs List<GetAgentAgentEndpointGuardrailConfigContentModerationConfig>
    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.
    PersonallyIdentifiableInformationConfigs List<GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig>
    The configuration details for Personally Identifiable Information.
    PromptInjectionConfigs List<GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig>
    The configuration details for Prompt Injection.
    ContentModerationConfigs []GetAgentAgentEndpointGuardrailConfigContentModerationConfig
    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.
    PersonallyIdentifiableInformationConfigs []GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig
    The configuration details for Personally Identifiable Information.
    PromptInjectionConfigs []GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig
    The configuration details for Prompt Injection.
    contentModerationConfigs List<GetAgentAgentEndpointGuardrailConfigContentModerationConfig>
    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.
    personallyIdentifiableInformationConfigs List<GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig>
    The configuration details for Personally Identifiable Information.
    promptInjectionConfigs List<GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig>
    The configuration details for Prompt Injection.
    contentModerationConfigs GetAgentAgentEndpointGuardrailConfigContentModerationConfig[]
    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.
    personallyIdentifiableInformationConfigs GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig[]
    The configuration details for Personally Identifiable Information.
    promptInjectionConfigs GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig[]
    The configuration details for Prompt Injection.
    content_moderation_configs Sequence[GetAgentAgentEndpointGuardrailConfigContentModerationConfig]
    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_configs Sequence[GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig]
    The configuration details for Personally Identifiable Information.
    prompt_injection_configs Sequence[GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig]
    The configuration details for Prompt Injection.
    contentModerationConfigs List<Property Map>
    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.
    personallyIdentifiableInformationConfigs List<Property Map>
    The configuration details for Personally Identifiable Information.
    promptInjectionConfigs List<Property Map>
    The configuration details for Prompt Injection.

    GetAgentAgentEndpointGuardrailConfigContentModerationConfig

    InputGuardrailMode string
    An input guardrail mode for prompt injection.
    OutputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    InputGuardrailMode string
    An input guardrail mode for prompt injection.
    OutputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    An input guardrail mode for prompt injection.
    outputGuardrailMode String
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode string
    An input guardrail mode for prompt injection.
    outputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    input_guardrail_mode str
    An input guardrail mode for prompt injection.
    output_guardrail_mode str
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    An input guardrail mode for prompt injection.
    outputGuardrailMode String
    An output guardrail mode for personally identifiable information.

    GetAgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig

    InputGuardrailMode string
    An input guardrail mode for prompt injection.
    OutputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    InputGuardrailMode string
    An input guardrail mode for prompt injection.
    OutputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    An input guardrail mode for prompt injection.
    outputGuardrailMode String
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode string
    An input guardrail mode for prompt injection.
    outputGuardrailMode string
    An output guardrail mode for personally identifiable information.
    input_guardrail_mode str
    An input guardrail mode for prompt injection.
    output_guardrail_mode str
    An output guardrail mode for personally identifiable information.
    inputGuardrailMode String
    An input guardrail mode for prompt injection.
    outputGuardrailMode String
    An output guardrail mode for personally identifiable information.

    GetAgentAgentEndpointGuardrailConfigPromptInjectionConfig

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

    GetAgentAgentEndpointHumanInputConfig

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

    GetAgentAgentEndpointOutputConfig

    OutputLocations List<GetAgentAgentEndpointOutputConfigOutputLocation>
    Location of the output.
    RetentionPeriodInMinutes int
    Retention duration of the output data.
    OutputLocations []GetAgentAgentEndpointOutputConfigOutputLocation
    Location of the output.
    RetentionPeriodInMinutes int
    Retention duration of the output data.
    outputLocations List<GetAgentAgentEndpointOutputConfigOutputLocation>
    Location of the output.
    retentionPeriodInMinutes Integer
    Retention duration of the output data.
    outputLocations GetAgentAgentEndpointOutputConfigOutputLocation[]
    Location of the output.
    retentionPeriodInMinutes number
    Retention duration of the output data.
    outputLocations List<Property Map>
    Location of the output.
    retentionPeriodInMinutes Number
    Retention duration of the output data.

    GetAgentAgentEndpointOutputConfigOutputLocation

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

    GetAgentAgentEndpointSessionConfig

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

    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