Show / Hide Table of Contents

Class SchemasDatabaseToolsConnectionDetails

Array of database schemas or database objects included in the enrichment pipeline for data sources connected via an OCI Database Tools connection.

Inheritance
object
SchemasDetails
SchemasDatabaseToolsConnectionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class SchemasDatabaseToolsConnectionDetails : SchemasDetails

Properties

Schemas

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

Array of database schemas to be included in the connection. Each schema must define a name. A simple schema definition includes only the name, for Example: { "schemas": [ { "name": "HR" } ]} Only one schema name is allowed now. Additional configuration options may be supported in extended forms later.

Remarks

Required

In this article
Back to top