Show / Hide Table of Contents

Class HighlightGroupsCommandDescriptor

Command descriptor for querylanguage HIGHLIGHTGROUPS command.

Inheritance
object
AbstractCommandDescriptor
HighlightGroupsCommandDescriptor
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 HighlightGroupsCommandDescriptor : AbstractCommandDescriptor

Properties

Color

Declaration
[JsonProperty(PropertyName = "color")]
public string Color { get; set; }
Property Value
Type Description
string

User specified color to highlight matches with if found.

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<string> Fields { get; set; }
Property Value
Type Description
List<string>

List of fields to search for terms or phrases to highlight.

Keywords

Declaration
[JsonProperty(PropertyName = "keywords")]
public List<string> Keywords { get; set; }
Property Value
Type Description
List<string>

List of terms or phrases to highlight if found.

MatchOnly

Declaration
[JsonProperty(PropertyName = "matchOnly")]
public List<string> MatchOnly { get; set; }
Property Value
Type Description
List<string>

List of fields to search for terms or phrases to highlight. If not specified all string fields are scanned.

Priority

Declaration
[JsonProperty(PropertyName = "priority")]
public string Priority { get; set; }
Property Value
Type Description
string

User specified priority assigned to highlighted matches if found.

SubQueries

Declaration
[JsonProperty(PropertyName = "subQueries")]
public List<ParseQueryOutput> SubQueries { get; set; }
Property Value
Type Description
List<ParseQueryOutput>

List of subQueries specified as highlightgroups command arguments

In this article
Back to top