SearchResponse¶
-
class
oci.loggingsearch.models.
SearchResponse
(**kwargs)¶ Bases:
object
Search response object.
Methods
__init__
(**kwargs)Initializes a new SearchResponse object with values from keyword arguments. Attributes
fields
Gets the fields of this SearchResponse. results
Gets the results of this SearchResponse. summary
[Required] Gets the summary of this SearchResponse. -
__init__
(**kwargs)¶ Initializes a new SearchResponse object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - results (list[oci.loggingsearch.models.SearchResult]) – The value to assign to the results property of this SearchResponse.
- fields (list[oci.loggingsearch.models.FieldInfo]) – The value to assign to the fields property of this SearchResponse.
- summary (oci.loggingsearch.models.SearchResultSummary) – The value to assign to the summary property of this SearchResponse.
-
fields
¶ Gets the fields of this SearchResponse. List of log field schema information.
Returns: The fields of this SearchResponse. Return type: list[oci.loggingsearch.models.FieldInfo]
-
results
¶ Gets the results of this SearchResponse. List of search results
Returns: The results of this SearchResponse. Return type: list[oci.loggingsearch.models.SearchResult]
-
summary
¶ [Required] Gets the summary of this SearchResponse.
Returns: The summary of this SearchResponse. Return type: oci.loggingsearch.models.SearchResultSummary
-