Show / Hide Table of Contents

Class VerifyOutput

Verify acceleration output.

Inheritance
object
VerifyOutput
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 VerifyOutput

Properties

Columns

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

Acceleration result columns, included if requested (shouldIncludeResults).

ResponseTimeInMs

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

Response time in ms.

Remarks

Required

Results

Declaration
[JsonProperty(PropertyName = "results")]
public List<Dictionary<string, object>> Results { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Acceleration result values, included if requested (shouldIncludeResults).

ScheduledTaskId

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

Acceleration task identifier.

Remarks

Required

TotalCount

Declaration
[Required(ErrorMessage = "TotalCount is required.")]
[JsonProperty(PropertyName = "totalCount")]
public int? TotalCount { get; set; }
Property Value
Type Description
int?

Total count.

Remarks

Required

TotalMatchedCount

Declaration
[Required(ErrorMessage = "TotalMatchedCount is required.")]
[JsonProperty(PropertyName = "totalMatchedCount")]
public long? TotalMatchedCount { get; set; }
Property Value
Type Description
long?

Total match count.

Remarks

Required

In this article
Back to top