AvroFormatAttribute¶
-
class
oci.data_integration.models.
AvroFormatAttribute
(**kwargs)¶ Bases:
oci.data_integration.models.abstract_format_attribute.AbstractFormatAttribute
The AVRO format attribute.
Attributes
MODEL_TYPE_AVRO_FORMAT
str(object=’’) -> str MODEL_TYPE_CSV_FORMAT
str(object=’’) -> str MODEL_TYPE_JSON_FORMAT
str(object=’’) -> str compression
Gets the compression of this AvroFormatAttribute. 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 AvroFormatAttribute 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'¶
-
MODEL_TYPE_CSV_FORMAT
= 'CSV_FORMAT'¶
-
MODEL_TYPE_JSON_FORMAT
= 'JSON_FORMAT'¶
-
__init__
(**kwargs)¶ Initializes a new AvroFormatAttribute object with values from keyword arguments. The default value of the
model_type
attribute of this class isAVRO_FORMAT
and it should not be changed. 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 AvroFormatAttribute. Allowed values for this property are: “JSON_FORMAT”, “CSV_FORMAT”, “AVRO_FORMAT”
- is_file_pattern (bool) – The value to assign to the is_file_pattern property of this AvroFormatAttribute.
- compression (str) – The value to assign to the compression property of this AvroFormatAttribute.
-
compression
¶ Gets the compression of this AvroFormatAttribute. The compression for the file.
Returns: The compression of this AvroFormatAttribute. 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.
-
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
-