ParseQueryOutput¶
- 
class oci.log_analytics.models.ParseQueryOutput(**kwargs)¶
- Bases: - object- Returns a parser agnostic breakdown of a query string for client query string introspection. - Methods - __init__(**kwargs)- Initializes a new ParseQueryOutput object with values from keyword arguments. - Attributes - columns- Gets the columns of this ParseQueryOutput. - commands- Gets the commands of this ParseQueryOutput. - display_query_string- [Required] Gets the display_query_string of this ParseQueryOutput. - internal_query_string- [Required] Gets the internal_query_string of this ParseQueryOutput. - properties- Gets the properties of this ParseQueryOutput. - response_time_in_ms- Gets the response_time_in_ms of this ParseQueryOutput. - time_filter- Gets the time_filter of this ParseQueryOutput. - variables- Gets the variables of this ParseQueryOutput. - 
__init__(**kwargs)¶
- Initializes a new ParseQueryOutput object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - display_query_string (str) – The value to assign to the display_query_string property of this ParseQueryOutput.
- internal_query_string (str) – The value to assign to the internal_query_string property of this ParseQueryOutput.
- columns (list[oci.log_analytics.models.AbstractColumn]) – The value to assign to the columns property of this ParseQueryOutput.
- response_time_in_ms (int) – The value to assign to the response_time_in_ms property of this ParseQueryOutput.
- time_filter (oci.log_analytics.models.TimeRange) – The value to assign to the time_filter property of this ParseQueryOutput.
- commands (list[oci.log_analytics.models.AbstractCommandDescriptor]) – The value to assign to the commands property of this ParseQueryOutput.
- variables (list[oci.log_analytics.models.VariableDefinition]) – The value to assign to the variables property of this ParseQueryOutput.
- properties (list[oci.log_analytics.models.PropertyDefinition]) – The value to assign to the properties property of this ParseQueryOutput.
 
 - 
columns¶
- Gets the columns of this ParseQueryOutput. List of columns returned by the specified query string as result output. - Returns: - The columns of this ParseQueryOutput. - Return type: - list[oci.log_analytics.models.AbstractColumn] 
 - 
commands¶
- Gets the commands of this ParseQueryOutput. List of querylanguage command descriptors, describing the specfied query string. - Returns: - The commands of this ParseQueryOutput. - Return type: - list[oci.log_analytics.models.AbstractCommandDescriptor] 
 - 
display_query_string¶
- [Required] Gets the display_query_string of this ParseQueryOutput. Display string formatted by query builder of user specified query string. - Returns: - The display_query_string of this ParseQueryOutput. - Return type: - str 
 - 
internal_query_string¶
- [Required] Gets the internal_query_string of this ParseQueryOutput. Internal string formatted by query builder of user specified query string. - Returns: - The internal_query_string of this ParseQueryOutput. - Return type: - str 
 - 
properties¶
- Gets the properties of this ParseQueryOutput. Optional list of properties for the query. - Returns: - The properties of this ParseQueryOutput. - Return type: - list[oci.log_analytics.models.PropertyDefinition] 
 - 
response_time_in_ms¶
- Gets the response_time_in_ms of this ParseQueryOutput. Operation response time. - Returns: - The response_time_in_ms of this ParseQueryOutput. - Return type: - int 
 - 
time_filter¶
- Gets the time_filter of this ParseQueryOutput. - Returns: - The time_filter of this ParseQueryOutput. - Return type: - oci.log_analytics.models.TimeRange 
 - 
variables¶
- Gets the variables of this ParseQueryOutput. Optional list of variables for the query. - Returns: - The variables of this ParseQueryOutput. - Return type: - list[oci.log_analytics.models.VariableDefinition] 
 
-