File: //lib/mysqlsh/lib/python3.8/site-packages/oci/data_integration/models/enriched_entity.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class EnrichedEntity(object):
"""
This is used to specify runtime parameters for data entities such as files that need both the data entity and the format.
"""
def __init__(self, **kwargs):
"""
Initializes a new EnrichedEntity object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param entity:
The value to assign to the entity property of this EnrichedEntity.
:type entity: oci.data_integration.models.DataEntity
:param data_format:
The value to assign to the data_format property of this EnrichedEntity.
:type data_format: oci.data_integration.models.DataFormat
:param model_type:
The value to assign to the model_type property of this EnrichedEntity.
:type model_type: str
:param parent_ref:
The value to assign to the parent_ref property of this EnrichedEntity.
:type parent_ref: oci.data_integration.models.ParentReference
"""
self.swagger_types = {
'entity': 'DataEntity',
'data_format': 'DataFormat',
'model_type': 'str',
'parent_ref': 'ParentReference'
}
self.attribute_map = {
'entity': 'entity',
'data_format': 'dataFormat',
'model_type': 'modelType',
'parent_ref': 'parentRef'
}
self._entity = None
self._data_format = None
self._model_type = None
self._parent_ref = None
@property
def entity(self):
"""
Gets the entity of this EnrichedEntity.
:return: The entity of this EnrichedEntity.
:rtype: oci.data_integration.models.DataEntity
"""
return self._entity
@entity.setter
def entity(self, entity):
"""
Sets the entity of this EnrichedEntity.
:param entity: The entity of this EnrichedEntity.
:type: oci.data_integration.models.DataEntity
"""
self._entity = entity
@property
def data_format(self):
"""
Gets the data_format of this EnrichedEntity.
:return: The data_format of this EnrichedEntity.
:rtype: oci.data_integration.models.DataFormat
"""
return self._data_format
@data_format.setter
def data_format(self, data_format):
"""
Sets the data_format of this EnrichedEntity.
:param data_format: The data_format of this EnrichedEntity.
:type: oci.data_integration.models.DataFormat
"""
self._data_format = data_format
@property
def model_type(self):
"""
Gets the model_type of this EnrichedEntity.
The model type for the entity which is referenced.
:return: The model_type of this EnrichedEntity.
:rtype: str
"""
return self._model_type
@model_type.setter
def model_type(self, model_type):
"""
Sets the model_type of this EnrichedEntity.
The model type for the entity which is referenced.
:param model_type: The model_type of this EnrichedEntity.
:type: str
"""
self._model_type = model_type
@property
def parent_ref(self):
"""
Gets the parent_ref of this EnrichedEntity.
:return: The parent_ref of this EnrichedEntity.
:rtype: oci.data_integration.models.ParentReference
"""
return self._parent_ref
@parent_ref.setter
def parent_ref(self, parent_ref):
"""
Sets the parent_ref of this EnrichedEntity.
:param parent_ref: The parent_ref of this EnrichedEntity.
:type: oci.data_integration.models.ParentReference
"""
self._parent_ref = parent_ref
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other