Show / Hide Table of Contents

Class DeltaRefreshEnrichmentJobConfiguration

A DeltaRefreshEnrichmentJobConfiguration 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 and the schedule on which the job will run. As distinguished by enrichmentJobType [with specific characteristics defined by the second item under allOf].

Inheritance
object
EnrichmentJobConfiguration
DeltaRefreshEnrichmentJobConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaidataService.Models
Assembly: OCI.DotNetSDK.Generativeaidata.dll
Syntax
public class DeltaRefreshEnrichmentJobConfiguration : EnrichmentJobConfiguration

Properties

DeltaRefreshSchedule

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

Schedule for occurrences of Delta Refresh jobs

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

In this article
Back to top