ParsedContent¶
- 
class oci.log_analytics.models.ParsedContent(**kwargs)¶
- Bases: - object- Parsed representation of the log file. - Methods - __init__(**kwargs)- Initializes a new ParsedContent object with values from keyword arguments. - Attributes - field_display_names- Gets the field_display_names of this ParsedContent. - field_names- Gets the field_names of this ParsedContent. - log_content- Gets the log_content of this ParsedContent. - match_status- Gets the match_status of this ParsedContent. - parsed_field_values- Gets the parsed_field_values of this ParsedContent. - sample_size- Gets the sample_size of this ParsedContent. - 
__init__(**kwargs)¶
- Initializes a new ParsedContent object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - field_names (list[str]) – The value to assign to the field_names property of this ParsedContent.
- field_display_names (list[str]) – The value to assign to the field_display_names property of this ParsedContent.
- parsed_field_values (list[oci.log_analytics.models.ParsedField]) – The value to assign to the parsed_field_values property of this ParsedContent.
- log_content (str) – The value to assign to the log_content property of this ParsedContent.
- sample_size (int) – The value to assign to the sample_size property of this ParsedContent.
- match_status (str) – The value to assign to the match_status property of this ParsedContent.
 
 - 
field_display_names¶
- Gets the field_display_names of this ParsedContent. List of field display names. - Returns: - The field_display_names of this ParsedContent. - Return type: - list[str] 
 - 
field_names¶
- Gets the field_names of this ParsedContent. List of field names. - Returns: - The field_names of this ParsedContent. - Return type: - list[str] 
 - 
log_content¶
- Gets the log_content of this ParsedContent. Sample log entries picked up from the given file for validation. - Returns: - The log_content of this ParsedContent. - Return type: - str 
 - 
match_status¶
- Gets the match_status of this ParsedContent. Match Status. - Returns: - The match_status of this ParsedContent. - Return type: - str 
 - 
parsed_field_values¶
- Gets the parsed_field_values of this ParsedContent. Parsed field values. - Returns: - The parsed_field_values of this ParsedContent. - Return type: - list[oci.log_analytics.models.ParsedField] 
 - 
sample_size¶
- Gets the sample_size of this ParsedContent. Sample Size taken for validation. - Returns: - The sample_size of this ParsedContent. - Return type: - int 
 
-