Show / Hide Table of Contents

Class ClassifyCommandDescriptor

Command descriptor for querylanguage CLASSIFY command.

Inheritance
object
AbstractCommandDescriptor
ClassifyCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
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 ClassifyCommandDescriptor : AbstractCommandDescriptor

Properties

BottomCount

Declaration
[JsonProperty(PropertyName = "bottomCount")]
public int? BottomCount { get; set; }
Property Value
Type Description
int?

Value specified in CLASSIFY command in queryString if set limits the results returned to bottom N.

Correlate

Declaration
[JsonProperty(PropertyName = "correlate")]
public List<FieldsAddRemoveField> Correlate { get; set; }
Property Value
Type Description
List<FieldsAddRemoveField>

Fields specified in CLASSIFY command in queryString if set include / exclude fields in correlate results.

TopCount

Declaration
[JsonProperty(PropertyName = "topCount")]
public int? TopCount { get; set; }
Property Value
Type Description
int?

Value specified in CLASSIFY command in queryString if set limits the results returned to top N.

In this article
Back to top