Class: Google::Apis::CloudsearchV1::SuggestRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb

Overview

Request of suggest API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SuggestRequest

Returns a new instance of SuggestRequest



4288
4289
4290
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 4288

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_source_restrictionsArray<Google::Apis::CloudsearchV1::DataSourceRestriction>

The sources to use for suggestions. If not specified, all data sources from the current search application are used. Corresponds to the JSON property dataSourceRestrictions



4276
4277
4278
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 4276

def data_source_restrictions
  @data_source_restrictions
end

#queryString

Partial query for the completion suggestion. Corresponds to the JSON property query

Returns:

  • (String)


4281
4282
4283
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 4281

def query
  @query
end

#request_optionsGoogle::Apis::CloudsearchV1::RequestOptions

Shared request options for all RPC methods. Corresponds to the JSON property requestOptions



4286
4287
4288
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 4286

def request_options
  @request_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4293
4294
4295
4296
4297
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 4293

def update!(**args)
  @data_source_restrictions = args[:data_source_restrictions] if args.key?(:data_source_restrictions)
  @query = args[:query] if args.key?(:query)
  @request_options = args[:request_options] if args.key?(:request_options)
end