Class QueryAggregation
Query results.
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class QueryAggregation
Properties
ArePartialResults
Declaration
[JsonProperty(PropertyName = "arePartialResults")]
public bool? ArePartialResults { get; set; }
Property Value
Type | Description |
---|---|
bool? | True if query did not complete processing all data. |
Columns
Declaration
[JsonProperty(PropertyName = "columns")]
public List<AbstractColumn> Columns { get; set; }
Property Value
Type | Description |
---|---|
List<AbstractColumn> | Query result columns |
Fields
Declaration
[JsonProperty(PropertyName = "fields")]
public List<AbstractColumn> Fields { get; set; }
Property Value
Type | Description |
---|---|
List<AbstractColumn> | Query result fields |
IsContentHidden
Declaration
[JsonProperty(PropertyName = "isContentHidden")]
public bool? IsContentHidden { get; set; }
Property Value
Type | Description |
---|---|
bool? | True if the data returned by query is hidden. |
Items
Declaration
[JsonProperty(PropertyName = "items")]
public List<Dictionary<string, object>> Items { get; set; }
Property Value
Type | Description |
---|---|
List<Dictionary<string, object>> | Query result data |
PartialResultReason
Declaration
[JsonProperty(PropertyName = "partialResultReason")]
public string PartialResultReason { get; set; }
Property Value
Type | Description |
---|---|
string | Explanation of why results may be partial. Only set if arePartialResults is true. |
PercentComplete
Declaration
[Required(ErrorMessage = "PercentComplete is required.")]
[JsonProperty(PropertyName = "percentComplete")]
public int? PercentComplete { get; set; }
Property Value
Type | Description |
---|---|
int? | Percentage progress completion of the query. |
Remarks
Required
QueryExecutionTimeInMs
Declaration
[JsonProperty(PropertyName = "queryExecutionTimeInMs")]
public long? QueryExecutionTimeInMs { get; set; }
Property Value
Type | Description |
---|---|
long? | Time ellapsed executing query in milli-seconds. |
TotalCount
Declaration
[JsonProperty(PropertyName = "totalCount")]
public int? TotalCount { get; set; }
Property Value
Type | Description |
---|---|
int? | Number of rows query retrieved. Up to maxTotalCount limit. |
TotalMatchedCount
Declaration
[JsonProperty(PropertyName = "totalMatchedCount")]
public long? TotalMatchedCount { get; set; }
Property Value
Type | Description |
---|---|
long? | Number of rows matched by query. |