Show / Hide Table of Contents

Class GenerateEnrichmentJobDetails

The details required to create an EnrichmentJob.

Inheritance
object
GenerateEnrichmentJobDetails
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 GenerateEnrichmentJobDetails

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

An optional description of the EnrichmentJob.

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly display name. It does not have to be unique and can be modified. Avoid entering confidential information.

EnrichmentJobConfiguration

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

Required

EnrichmentJobType

Declaration
[Required(ErrorMessage = "EnrichmentJobType is required.")]
[JsonProperty(PropertyName = "enrichmentJobType")]
[JsonConverter(typeof(StringEnumConverter))]
public EnrichmentJobType? EnrichmentJobType { get; set; }
Property Value
Type Description
EnrichmentJobType?

Enrichment job type. Currently supported Full Build (All supported objects in a given schema) and Partial Build (Selected tables and/or supported objects in a given schema).

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

In this article
Back to top