Show / Hide Table of Contents

Class ParseQueryOutput

Returns a parser agnostic breakdown of a query string for client query string introspection.

Inheritance
object
ParseQueryOutput
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class ParseQueryOutput

Properties

Columns

Declaration
[JsonProperty(PropertyName = "columns")]
public List<AbstractColumn> Columns { get; set; }
Property Value
Type Description
List<AbstractColumn>

List of columns returned by the specified query string as result output.

Commands

Declaration
[JsonProperty(PropertyName = "commands")]
public List<AbstractCommandDescriptor> Commands { get; set; }
Property Value
Type Description
List<AbstractCommandDescriptor>

List of querylanguage command descriptors, describing the specfied query string.

DisplayQueryString

Declaration
[Required(ErrorMessage = "DisplayQueryString is required.")]
[JsonProperty(PropertyName = "displayQueryString")]
public string DisplayQueryString { get; set; }
Property Value
Type Description
string

Display string formatted by query builder of user specified query string.

Remarks

Required

InternalQueryString

Declaration
[Required(ErrorMessage = "InternalQueryString is required.")]
[JsonProperty(PropertyName = "internalQueryString")]
public string InternalQueryString { get; set; }
Property Value
Type Description
string

Internal string formatted by query builder of user specified query string.

Remarks

Required

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<PropertyDefinition> Properties { get; set; }
Property Value
Type Description
List<PropertyDefinition>

Optional list of properties for the query.

ResponseTimeInMs

Declaration
[JsonProperty(PropertyName = "responseTimeInMs")]
public long? ResponseTimeInMs { get; set; }
Property Value
Type Description
long?

Operation response time.

TimeFilter

Declaration
[JsonProperty(PropertyName = "timeFilter")]
public TimeRange TimeFilter { get; set; }
Property Value
Type Description
TimeRange

Variables

Declaration
[JsonProperty(PropertyName = "variables")]
public List<VariableDefinition> Variables { get; set; }
Property Value
Type Description
List<VariableDefinition>

Optional list of variables for the query.

In this article
Back to top