SuggestOutput

class oci.log_analytics.models.SuggestOutput(**kwargs)

Bases: object

Typeahead results

Methods

__init__(**kwargs) Initializes a new SuggestOutput object with values from keyword arguments.

Attributes

commands Gets the commands of this SuggestOutput.
examples Gets the examples of this SuggestOutput.
field_values Gets the field_values of this SuggestOutput.
fields Gets the fields of this SuggestOutput.
options Gets the options of this SuggestOutput.
position [Required] Gets the position of this SuggestOutput.
terms Gets the terms of this SuggestOutput.
__init__(**kwargs)

Initializes a new SuggestOutput object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • position (int) – The value to assign to the position property of this SuggestOutput.
  • commands (list[str]) – The value to assign to the commands property of this SuggestOutput.
  • fields (list[str]) – The value to assign to the fields property of this SuggestOutput.
  • field_values (list[str]) – The value to assign to the field_values property of this SuggestOutput.
  • terms (list[str]) – The value to assign to the terms property of this SuggestOutput.
  • options (list[str]) – The value to assign to the options property of this SuggestOutput.
  • examples (list[str]) – The value to assign to the examples property of this SuggestOutput.
commands

Gets the commands of this SuggestOutput. Context specific list of querylanguage commands if input is seeking command suggestions.

Returns:The commands of this SuggestOutput.
Return type:list[str]
examples

Gets the examples of this SuggestOutput. Context specific list of querylanguage querystring examples if input is seeking queryString example suggestions.

Returns:The examples of this SuggestOutput.
Return type:list[str]
field_values

Gets the field_values of this SuggestOutput. Context specific list of field values if input is seeking field value suggestions.

Returns:The field_values of this SuggestOutput.
Return type:list[str]
fields

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

Returns:The fields of this SuggestOutput.
Return type:list[str]
options

Gets the options of this SuggestOutput. Context specific list of querylanguage command options if input is seeking command option suggestions.

Returns:The options of this SuggestOutput.
Return type:list[str]
position

[Required] Gets the position of this SuggestOutput. Character position suggestion should be placed in queryString provided as input.

Returns:The position of this SuggestOutput.
Return type:int
terms

Gets the terms of this SuggestOutput. Context specific list of terms / phrases if input is seeking terms / phrase suggestions.

Returns:The terms of this SuggestOutput.
Return type:list[str]