oci.GenerativeAi.AgentAgentEndpoint
Explore with Pulumi AI
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:
- Agent
Id string - The OCID of the agent that this endpoint is associated with.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- Content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- 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.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- Human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- Metadata Dictionary<string, string>
- (Updatable) Key-value pairs to allow additional configurations.
- Output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- Session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- Should
Enable boolCitation - (Updatable) Whether to show citations in the chat result.
- Should
Enable boolMulti Language - (Updatable) Whether to enable multi-language for chat.
- Should
Enable boolSession - Whether or not to enable Session-based chat.
- Should
Enable boolTrace (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 string - The OCID of the agent that this endpoint is associated with.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- Content
Moderation AgentConfig Agent Endpoint Content Moderation Config Args - (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.
- 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.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Guardrail
Config AgentAgent Endpoint Guardrail Config Args - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- Human
Input AgentConfig Agent Endpoint Human Input Config Args - (Updatable) Human Input Configuration for an AgentEndpoint.
- Metadata map[string]string
- (Updatable) Key-value pairs to allow additional configurations.
- Output
Config AgentAgent Endpoint Output Config Args - (Updatable) Configuration to store results generated by agent.
- Session
Config AgentAgent Endpoint Session Config Args - (Updatable) Session Configuration on AgentEndpoint.
- Should
Enable boolCitation - (Updatable) Whether to show citations in the chat result.
- Should
Enable boolMulti Language - (Updatable) Whether to enable multi-language for chat.
- Should
Enable boolSession - Whether or not to enable Session-based chat.
- Should
Enable boolTrace (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 String - The OCID of the agent that this endpoint is associated with.
- compartment
Id String - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- 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.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- metadata Map<String,String>
- (Updatable) Key-value pairs to allow additional configurations.
- output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable BooleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable BooleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable BooleanSession - Whether or not to enable Session-based chat.
- should
Enable BooleanTrace (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 string - The OCID of the agent that this endpoint is associated with.
- compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- {[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.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"}
- guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- metadata {[key: string]: string}
- (Updatable) Key-value pairs to allow additional configurations.
- output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable booleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable booleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable booleanSession - Whether or not to enable Session-based chat.
- should
Enable booleanTrace (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_ Agentconfig Agent Endpoint Content Moderation Config Args - (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.
- 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.
- 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 AgentAgent Endpoint Guardrail Config Args - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human_
input_ Agentconfig Agent Endpoint Human Input Config Args - (Updatable) Human Input Configuration for an AgentEndpoint.
- metadata Mapping[str, str]
- (Updatable) Key-value pairs to allow additional configurations.
- output_
config AgentAgent Endpoint Output Config Args - (Updatable) Configuration to store results generated by agent.
- session_
config AgentAgent Endpoint Session Config Args - (Updatable) Session Configuration on AgentEndpoint.
- should_
enable_ boolcitation - (Updatable) Whether to show citations in the chat result.
- should_
enable_ boolmulti_ language - (Updatable) Whether to enable multi-language for chat.
- should_
enable_ boolsession - Whether or not to enable Session-based chat.
- should_
enable_ booltrace (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 String - The OCID of the agent that this endpoint is associated with.
- compartment
Id String - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation Property MapConfig - (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.
- 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.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- guardrail
Config Property Map - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input Property MapConfig - (Updatable) Human Input Configuration for an AgentEndpoint.
- metadata Map<String>
- (Updatable) Key-value pairs to allow additional configurations.
- output
Config Property Map - (Updatable) Configuration to store results generated by agent.
- session
Config Property Map - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable BooleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable BooleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable BooleanSession - Whether or not to enable Session-based chat.
- should
Enable BooleanTrace (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.
- Lifecycle
Details 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.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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.
- Lifecycle
Details 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.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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.
- lifecycle
Details 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.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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.
- lifecycle
Details 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.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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.
- 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.
- lifecycle
Details 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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.
- Agent
Id string - The OCID of the agent that this endpoint is associated with.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- Content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- 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.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- Human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- Lifecycle
Details 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.
- Output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- Session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- Should
Enable boolCitation - (Updatable) Whether to show citations in the chat result.
- Should
Enable boolMulti Language - (Updatable) Whether to enable multi-language for chat.
- Should
Enable boolSession - Whether or not to enable Session-based chat.
- Should
Enable boolTrace (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.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 string - The OCID of the agent that this endpoint is associated with.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- Content
Moderation AgentConfig Agent Endpoint Content Moderation Config Args - (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.
- 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.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Guardrail
Config AgentAgent Endpoint Guardrail Config Args - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- Human
Input AgentConfig Agent Endpoint Human Input Config Args - (Updatable) Human Input Configuration for an AgentEndpoint.
- Lifecycle
Details 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.
- Output
Config AgentAgent Endpoint Output Config Args - (Updatable) Configuration to store results generated by agent.
- Session
Config AgentAgent Endpoint Session Config Args - (Updatable) Session Configuration on AgentEndpoint.
- Should
Enable boolCitation - (Updatable) Whether to show citations in the chat result.
- Should
Enable boolMulti Language - (Updatable) Whether to enable multi-language for chat.
- Should
Enable boolSession - Whether or not to enable Session-based chat.
- Should
Enable boolTrace (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.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated 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 String - The OCID of the agent that this endpoint is associated with.
- compartment
Id String - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- 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.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- lifecycle
Details 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.
- output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable BooleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable BooleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable BooleanSession - Whether or not to enable Session-based chat.
- should
Enable BooleanTrace (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.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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 string - The OCID of the agent that this endpoint is associated with.
- compartment
Id string - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation AgentConfig Agent Endpoint Content Moderation Config - (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.
- {[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.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"}
- guardrail
Config AgentAgent Endpoint Guardrail Config - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input AgentConfig Agent Endpoint Human Input Config - (Updatable) Human Input Configuration for an AgentEndpoint.
- lifecycle
Details 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.
- output
Config AgentAgent Endpoint Output Config - (Updatable) Configuration to store results generated by agent.
- session
Config AgentAgent Endpoint Session Config - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable booleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable booleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable booleanSession - Whether or not to enable Session-based chat.
- should
Enable booleanTrace (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.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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_ Agentconfig Agent Endpoint Content Moderation Config Args - (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.
- 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.
- 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 AgentAgent Endpoint Guardrail Config Args - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human_
input_ Agentconfig Agent Endpoint Human Input Config Args - (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 AgentAgent Endpoint Output Config Args - (Updatable) Configuration to store results generated by agent.
- session_
config AgentAgent Endpoint Session Config Args - (Updatable) Session Configuration on AgentEndpoint.
- should_
enable_ boolcitation - (Updatable) Whether to show citations in the chat result.
- should_
enable_ boolmulti_ language - (Updatable) Whether to enable multi-language for chat.
- should_
enable_ boolsession - Whether or not to enable Session-based chat.
- should_
enable_ booltrace (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.
- 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
- agent
Id String - The OCID of the agent that this endpoint is associated with.
- compartment
Id String - (Updatable) The OCID of the compartment to create the endpoint in.
- content
Moderation Property MapConfig - (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.
- 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.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- guardrail
Config Property Map - (Updatable) The configuration details about whether to apply the guardrail checks to input and output.
- human
Input Property MapConfig - (Updatable) Human Input Configuration for an AgentEndpoint.
- lifecycle
Details 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.
- output
Config Property Map - (Updatable) Configuration to store results generated by agent.
- session
Config Property Map - (Updatable) Session Configuration on AgentEndpoint.
- should
Enable BooleanCitation - (Updatable) Whether to show citations in the chat result.
- should
Enable BooleanMulti Language - (Updatable) Whether to enable multi-language for chat.
- should
Enable BooleanSession - Whether or not to enable Session-based chat.
- should
Enable BooleanTrace (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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated 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
- Should
Enable boolOn Input - (Updatable) A flag to enable or disable content moderation on input.
- Should
Enable boolOn Output - (Updatable) A flag to enable or disable content moderation on output.
- Should
Enable boolOn Input - (Updatable) A flag to enable or disable content moderation on input.
- Should
Enable boolOn Output - (Updatable) A flag to enable or disable content moderation on output.
- should
Enable BooleanOn Input - (Updatable) A flag to enable or disable content moderation on input.
- should
Enable BooleanOn Output - (Updatable) A flag to enable or disable content moderation on output.
- should
Enable booleanOn Input - (Updatable) A flag to enable or disable content moderation on input.
- should
Enable booleanOn Output - (Updatable) A flag to enable or disable content moderation on output.
- should_
enable_ boolon_ input - (Updatable) A flag to enable or disable content moderation on input.
- should_
enable_ boolon_ output - (Updatable) A flag to enable or disable content moderation on output.
- should
Enable BooleanOn Input - (Updatable) A flag to enable or disable content moderation on input.
- should
Enable BooleanOn Output - (Updatable) A flag to enable or disable content moderation on output.
AgentAgentEndpointGuardrailConfig, AgentAgentEndpointGuardrailConfigArgs
- Content
Moderation AgentConfig Agent Endpoint Guardrail Config Content Moderation Config - (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 AgentInformation Config Agent Endpoint Guardrail Config Personally Identifiable Information Config - (Updatable) The configuration details for Personally Identifiable Information.
- Prompt
Injection AgentConfig Agent Endpoint Guardrail Config Prompt Injection Config - (Updatable) The configuration details for Prompt Injection.
- Content
Moderation AgentConfig Agent Endpoint Guardrail Config Content Moderation Config - (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 AgentInformation Config Agent Endpoint Guardrail Config Personally Identifiable Information Config - (Updatable) The configuration details for Personally Identifiable Information.
- Prompt
Injection AgentConfig Agent Endpoint Guardrail Config Prompt Injection Config - (Updatable) The configuration details for Prompt Injection.
- content
Moderation AgentConfig Agent Endpoint Guardrail Config Content Moderation Config - (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 AgentInformation Config Agent Endpoint Guardrail Config Personally Identifiable Information Config - (Updatable) The configuration details for Personally Identifiable Information.
- prompt
Injection AgentConfig Agent Endpoint Guardrail Config Prompt Injection Config - (Updatable) The configuration details for Prompt Injection.
- content
Moderation AgentConfig Agent Endpoint Guardrail Config Content Moderation Config - (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 AgentInformation Config Agent Endpoint Guardrail Config Personally Identifiable Information Config - (Updatable) The configuration details for Personally Identifiable Information.
- prompt
Injection AgentConfig Agent Endpoint Guardrail Config Prompt Injection Config - (Updatable) The configuration details for Prompt Injection.
- content_
moderation_ Agentconfig Agent Endpoint Guardrail Config Content Moderation Config - (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_ Agentinformation_ config Agent Endpoint Guardrail Config Personally Identifiable Information Config - (Updatable) The configuration details for Personally Identifiable Information.
- prompt_
injection_ Agentconfig Agent Endpoint Guardrail Config Prompt Injection Config - (Updatable) The configuration details for Prompt Injection.
- content
Moderation Property MapConfig - (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 Property MapInformation Config - (Updatable) The configuration details for Personally Identifiable Information.
- prompt
Injection Property MapConfig - (Updatable) The configuration details for Prompt Injection.
AgentAgentEndpointGuardrailConfigContentModerationConfig, AgentAgentEndpointGuardrailConfigContentModerationConfigArgs
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for content moderation.
- Output
Guardrail stringMode - (Updatable) An output guardrail mode for content moderation.
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for content moderation.
- Output
Guardrail stringMode - (Updatable) An output guardrail mode for content moderation.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for content moderation.
- output
Guardrail StringMode - (Updatable) An output guardrail mode for content moderation.
- input
Guardrail stringMode - (Updatable) An input guardrail mode for content moderation.
- output
Guardrail stringMode - (Updatable) An output guardrail mode for content moderation.
- input_
guardrail_ strmode - (Updatable) An input guardrail mode for content moderation.
- output_
guardrail_ strmode - (Updatable) An output guardrail mode for content moderation.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for content moderation.
- output
Guardrail StringMode - (Updatable) An output guardrail mode for content moderation.
AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfig, AgentAgentEndpointGuardrailConfigPersonallyIdentifiableInformationConfigArgs
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for personally identifiable information.
- Output
Guardrail stringMode - (Updatable) An output guardrail mode for personally identifiable information.
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for personally identifiable information.
- Output
Guardrail stringMode - (Updatable) An output guardrail mode for personally identifiable information.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for personally identifiable information.
- output
Guardrail StringMode - (Updatable) An output guardrail mode for personally identifiable information.
- input
Guardrail stringMode - (Updatable) An input guardrail mode for personally identifiable information.
- output
Guardrail stringMode - (Updatable) An output guardrail mode for personally identifiable information.
- input_
guardrail_ strmode - (Updatable) An input guardrail mode for personally identifiable information.
- output_
guardrail_ strmode - (Updatable) An output guardrail mode for personally identifiable information.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for personally identifiable information.
- output
Guardrail StringMode - (Updatable) An output guardrail mode for personally identifiable information.
AgentAgentEndpointGuardrailConfigPromptInjectionConfig, AgentAgentEndpointGuardrailConfigPromptInjectionConfigArgs
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for prompt injection.
- Input
Guardrail stringMode - (Updatable) An input guardrail mode for prompt injection.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for prompt injection.
- input
Guardrail stringMode - (Updatable) An input guardrail mode for prompt injection.
- input_
guardrail_ strmode - (Updatable) An input guardrail mode for prompt injection.
- input
Guardrail StringMode - (Updatable) An input guardrail mode for prompt injection.
AgentAgentEndpointHumanInputConfig, AgentAgentEndpointHumanInputConfigArgs
- Should
Enable boolHuman Input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
- Should
Enable boolHuman Input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
- should
Enable BooleanHuman Input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
- should
Enable booleanHuman Input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
- should_
enable_ boolhuman_ input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
- should
Enable BooleanHuman Input - (Updatable) The Agent will request for human input for disambiguation or additional information gathering if this is enabled.
AgentAgentEndpointOutputConfig, AgentAgentEndpointOutputConfigArgs
- Output
Location AgentAgent Endpoint Output Config Output Location - (Updatable) Location of the output.
- Retention
Period intIn Minutes - (Updatable) Retention duration of the output data.
- Output
Location AgentAgent Endpoint Output Config Output Location - (Updatable) Location of the output.
- Retention
Period intIn Minutes - (Updatable) Retention duration of the output data.
- output
Location AgentAgent Endpoint Output Config Output Location - (Updatable) Location of the output.
- retention
Period IntegerIn Minutes - (Updatable) Retention duration of the output data.
- output
Location AgentAgent Endpoint Output Config Output Location - (Updatable) Location of the output.
- retention
Period numberIn Minutes - (Updatable) Retention duration of the output data.
- output_
location AgentAgent Endpoint Output Config Output Location - (Updatable) Location of the output.
- retention_
period_ intin_ minutes - (Updatable) Retention duration of the output data.
- output
Location Property Map - (Updatable) Location of the output.
- retention
Period NumberIn Minutes - (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.
- Output
Location stringType - (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.
- Output
Location stringType - (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.
- output
Location StringType - (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.
- output
Location stringType - (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_ strtype - (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.
- output
Location StringType - (Updatable) Type of OutputLocation.
- prefix String
- (Updatable) The prefix of the object storage.
AgentAgentEndpointSessionConfig, AgentAgentEndpointSessionConfigArgs
- Idle
Timeout intIn Seconds - (Updatable) The session will become inactive after this timeout.
- Idle
Timeout intIn Seconds - (Updatable) The session will become inactive after this timeout.
- idle
Timeout IntegerIn Seconds - (Updatable) The session will become inactive after this timeout.
- idle
Timeout numberIn Seconds - (Updatable) The session will become inactive after this timeout.
- idle_
timeout_ intin_ seconds - (Updatable) The session will become inactive after this timeout.
- idle
Timeout NumberIn Seconds - (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.