Show / Hide Table of Contents

Class SuggestOutput

Typeahead results

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

Properties

Commands

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

Context specific list of querylanguage commands if input is seeking command suggestions.

Examples

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

Context specific list of querylanguage querystring examples if input is seeking queryString example suggestions.

FieldValues

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

Context specific list of field values if input is seeking field value suggestions.

Fields

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

Context specific list of querylanguage fields / columns if input is seeking field / column suggestions.

Options

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

Context specific list of querylanguage command options if input is seeking command option suggestions.

Position

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

Character position suggestion should be placed in queryString provided as input.

Remarks

Required

Terms

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

Context specific list of terms / phrases if input is seeking terms / phrase suggestions.

In this article
Back to top