Class SchemasDatabaseToolsConnectionDetails
Array of database schemas or database objects included in the enrichment pipeline for data sources connected via an OCI Database Tools connection.
Inherited Members
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