Class: Google::Apis::CloudsearchV1::SearchRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::SearchRequest
- Defined in:
- generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb
Overview
The search API request.
Instance Attribute Summary collapse
-
#data_source_restrictions ⇒ Array<Google::Apis::CloudsearchV1::DataSourceRestriction>
The sources to use for querying.
-
#facet_options ⇒ Array<Google::Apis::CloudsearchV1::FacetOptions>
Corresponds to the JSON property
facetOptions
. -
#page_size ⇒ Fixnum
Maximum number of search results to return in one page.
-
#query ⇒ String
The raw query string.
-
#query_interpretation_options ⇒ Google::Apis::CloudsearchV1::QueryInterpretationOptions
Options to interpret user query.
-
#request_options ⇒ Google::Apis::CloudsearchV1::RequestOptions
Shared request options for all RPC methods.
-
#sort_options ⇒ Google::Apis::CloudsearchV1::SortOptions
The options for sorting the search results Corresponds to the JSON property
sortOptions
. -
#start ⇒ Fixnum
Starting index of the results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchRequest
constructor
A new instance of SearchRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchRequest
Returns a new instance of SearchRequest
3735 3736 3737 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3735 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_source_restrictions ⇒ Array<Google::Apis::CloudsearchV1::DataSourceRestriction>
The sources to use for querying. If not specified, all data sources
from the current search application are used.
Corresponds to the JSON property dataSourceRestrictions
3692 3693 3694 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3692 def data_source_restrictions @data_source_restrictions end |
#facet_options ⇒ Array<Google::Apis::CloudsearchV1::FacetOptions>
Corresponds to the JSON property facetOptions
3697 3698 3699 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3697 def @facet_options end |
#page_size ⇒ Fixnum
Maximum number of search results to return in one page.
Valid values are between 1 and 100, inclusive.
Default value is 10.
Corresponds to the JSON property pageSize
3704 3705 3706 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3704 def page_size @page_size end |
#query ⇒ String
The raw query string.
See supported search operators in the Cloud search
Cheat
Sheet
Corresponds to the JSON property query
3713 3714 3715 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3713 def query @query end |
#query_interpretation_options ⇒ Google::Apis::CloudsearchV1::QueryInterpretationOptions
Options to interpret user query.
Corresponds to the JSON property queryInterpretationOptions
3718 3719 3720 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3718 def @query_interpretation_options end |
#request_options ⇒ Google::Apis::CloudsearchV1::RequestOptions
Shared request options for all RPC methods.
Corresponds to the JSON property requestOptions
3723 3724 3725 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3723 def @request_options end |
#sort_options ⇒ Google::Apis::CloudsearchV1::SortOptions
The options for sorting the search results
Corresponds to the JSON property sortOptions
3728 3729 3730 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3728 def @sort_options end |
#start ⇒ Fixnum
Starting index of the results.
Corresponds to the JSON property start
3733 3734 3735 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3733 def start @start end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3740 def update!(**args) @data_source_restrictions = args[:data_source_restrictions] if args.key?(:data_source_restrictions) @facet_options = args[:facet_options] if args.key?(:facet_options) @page_size = args[:page_size] if args.key?(:page_size) @query = args[:query] if args.key?(:query) @query_interpretation_options = args[:query_interpretation_options] if args.key?(:query_interpretation_options) @request_options = args[:request_options] if args.key?(:request_options) @sort_options = args[:sort_options] if args.key?(:sort_options) @start = args[:start] if args.key?(:start) end |