Class PartialBuildEnrichmentJobConfiguration
A PartialBuildEnrichmentJobConfiguration is an EnrichmentJobConfiguration [indicated by the first item under allOf, which is a reference to EnrichmentJobConfiguration]
that describes the database schema that will be the scope of the enrichment job. As distinguished by enrichmentJobType [with specific characteristics defined by the second item under allOf].
Inherited Members
Namespace: Oci.GenerativeaidataService.Models
Assembly: OCI.DotNetSDK.Generativeaidata.dll
Syntax
public class PartialBuildEnrichmentJobConfiguration : EnrichmentJobConfiguration
Properties
DatabaseObjects
Declaration
[Required(ErrorMessage = "DatabaseObjects is required.")]
[JsonProperty(PropertyName = "databaseObjects")]
public List<DatabaseObject> DatabaseObjects { get; set; }
Property Value
| Type | Description |
|---|---|
| List<DatabaseObject> | Collection of the DatabaseObjects to be enriched for the given schema. |
Remarks
Required
SchemaName
Declaration
[Required(ErrorMessage = "SchemaName is required.")]
[JsonProperty(PropertyName = "schemaName")]
public string SchemaName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Name of the DB Schema to be enriched |
Remarks
Required