PartialBuildEnrichmentJobConfiguration

class oci.generative_ai_data.models.PartialBuildEnrichmentJobConfiguration(**kwargs)

Bases: oci.generative_ai_data.models.enrichment_job_configuration.EnrichmentJobConfiguration

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].

Attributes

ENRICHMENT_JOB_TYPE_DELTA_REFRESH str(object=’’) -> str
ENRICHMENT_JOB_TYPE_FULL_BUILD str(object=’’) -> str
ENRICHMENT_JOB_TYPE_PARTIAL_BUILD str(object=’’) -> str
database_objects [Required] Gets the database_objects of this PartialBuildEnrichmentJobConfiguration.
enrichment_job_type [Required] Gets the enrichment_job_type of this EnrichmentJobConfiguration.
schema_name [Required] Gets the schema_name of this PartialBuildEnrichmentJobConfiguration.

Methods

__init__(**kwargs) Initializes a new PartialBuildEnrichmentJobConfiguration object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
ENRICHMENT_JOB_TYPE_DELTA_REFRESH = 'DELTA_REFRESH'
ENRICHMENT_JOB_TYPE_FULL_BUILD = 'FULL_BUILD'
ENRICHMENT_JOB_TYPE_PARTIAL_BUILD = 'PARTIAL_BUILD'
__init__(**kwargs)

Initializes a new PartialBuildEnrichmentJobConfiguration object with values from keyword arguments. The default value of the enrichment_job_type attribute of this class is PARTIAL_BUILD and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • enrichment_job_type (str) – The value to assign to the enrichment_job_type property of this PartialBuildEnrichmentJobConfiguration. Allowed values for this property are: “FULL_BUILD”, “PARTIAL_BUILD”, “DELTA_REFRESH”
  • schema_name (str) – The value to assign to the schema_name property of this PartialBuildEnrichmentJobConfiguration.
  • database_objects (list[oci.generative_ai_data.models.DatabaseObject]) – The value to assign to the database_objects property of this PartialBuildEnrichmentJobConfiguration.
database_objects

[Required] Gets the database_objects of this PartialBuildEnrichmentJobConfiguration. Collection of the DatabaseObjects to be enriched for the given schema.

Returns:The database_objects of this PartialBuildEnrichmentJobConfiguration.
Return type:list[oci.generative_ai_data.models.DatabaseObject]
enrichment_job_type

[Required] Gets the enrichment_job_type of this EnrichmentJobConfiguration. Enrichment job type

Allowed values for this property are: “FULL_BUILD”, “PARTIAL_BUILD”, “DELTA_REFRESH”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The enrichment_job_type of this EnrichmentJobConfiguration.
Return type:str
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

schema_name

[Required] Gets the schema_name of this PartialBuildEnrichmentJobConfiguration. Name of the DB Schema to be enriched

Returns:The schema_name of this PartialBuildEnrichmentJobConfiguration.
Return type:str