Show / Hide Table of Contents

Class OutputConfig

Configuration to store results generated by agent.

Inheritance
object
OutputConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class OutputConfig

Properties

OutputLocation

Declaration
[Required(ErrorMessage = "OutputLocation is required.")]
[JsonProperty(PropertyName = "outputLocation")]
public OutputLocation OutputLocation { get; set; }
Property Value
Type Description
OutputLocation
Remarks

Required

RetentionPeriodInMinutes

Declaration
[JsonProperty(PropertyName = "retentionPeriodInMinutes")]
public int? RetentionPeriodInMinutes { get; set; }
Property Value
Type Description
int?

Retention duration of the output data.

In this article
Back to top