Show / Hide Table of Contents

Class OciDatabaseConfig

The details of the customer Database Connection.

Inheritance
object
IndexConfig
OciDatabaseConfig
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 OciDatabaseConfig : IndexConfig

Properties

DatabaseConnection

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

Required

DatabaseFunctions

Declaration
[Required(ErrorMessage = "DatabaseFunctions is required.")]
[JsonProperty(PropertyName = "databaseFunctions")]
public List<DatabaseFunction> DatabaseFunctions { get; set; }
Property Value
Type Description
List<DatabaseFunction>

Array of Database functions to be used.

Remarks

Required

In this article
Back to top