AbstractFormatAttribute¶
-
class
oci.data_integration.models.
AbstractFormatAttribute
(**kwargs)¶ Bases:
object
The abstract format attribute.
Attributes
MODEL_TYPE_AVRO_FORMAT
A constant which can be used with the model_type property of a AbstractFormatAttribute. MODEL_TYPE_CSV_FORMAT
A constant which can be used with the model_type property of a AbstractFormatAttribute. MODEL_TYPE_JSON_FORMAT
A constant which can be used with the model_type property of a AbstractFormatAttribute. is_file_pattern
Gets the is_file_pattern of this AbstractFormatAttribute. model_type
[Required] Gets the model_type of this AbstractFormatAttribute. Methods
__init__
(**kwargs)Initializes a new AbstractFormatAttribute 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. -
MODEL_TYPE_AVRO_FORMAT
= 'AVRO_FORMAT'¶ A constant which can be used with the model_type property of a AbstractFormatAttribute. This constant has a value of “AVRO_FORMAT”
-
MODEL_TYPE_CSV_FORMAT
= 'CSV_FORMAT'¶ A constant which can be used with the model_type property of a AbstractFormatAttribute. This constant has a value of “CSV_FORMAT”
-
MODEL_TYPE_JSON_FORMAT
= 'JSON_FORMAT'¶ A constant which can be used with the model_type property of a AbstractFormatAttribute. This constant has a value of “JSON_FORMAT”
-
__init__
(**kwargs)¶ Initializes a new AbstractFormatAttribute object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - model_type (str) – The value to assign to the model_type property of this AbstractFormatAttribute. Allowed values for this property are: “JSON_FORMAT”, “CSV_FORMAT”, “AVRO_FORMAT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- is_file_pattern (bool) – The value to assign to the is_file_pattern property of this AbstractFormatAttribute.
-
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.
-
is_file_pattern
¶ Gets the is_file_pattern of this AbstractFormatAttribute. Defines whether a file pattern is supported.
Returns: The is_file_pattern of this AbstractFormatAttribute. Return type: bool
-
model_type
¶ [Required] Gets the model_type of this AbstractFormatAttribute. The type of the format attribute.
Allowed values for this property are: “JSON_FORMAT”, “CSV_FORMAT”, “AVRO_FORMAT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The model_type of this AbstractFormatAttribute. Return type: str
-