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 delta refresh enrichment job. As distinguished by enrichmentJobType [with specific characteristics defined by the second item under allOf]. deltaRefreshSchedule is optional, is not used by the service, and is retained only for backward compatibility. It should be treated as deprecated.

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
[JsonProperty(PropertyName = "deltaRefreshSchedule")]
public object DeltaRefreshSchedule { get; set; }
Property Value
Type Description
object

Deprecated schedule for occurrences of Delta Refresh jobs. This value is not used by the service.

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