Class: Google::Apis::CloudsearchV1::ObjectOptions
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::ObjectOptions
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
The options for an object.
Instance Attribute Summary collapse
-
#display_options ⇒ Google::Apis::CloudsearchV1::ObjectDisplayOptions
The display options for an object.
-
#freshness_options ⇒ Google::Apis::CloudsearchV1::FreshnessOptions
Indicates which freshness property to use when adjusting search ranking for an item.
-
#suggestion_filtering_operators ⇒ Array<String>
Operators that can be used to filter suggestions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ObjectOptions
constructor
A new instance of ObjectOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ObjectOptions
Returns a new instance of ObjectOptions.
14253 14254 14255 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_options ⇒ Google::Apis::CloudsearchV1::ObjectDisplayOptions
The display options for an object.
Corresponds to the JSON property displayOptions
14227 14228 14229 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14227 def @display_options end |
#freshness_options ⇒ Google::Apis::CloudsearchV1::FreshnessOptions
Indicates which freshness property to use when adjusting search ranking for an
item. Fresher, more recent dates indicate higher quality. Use the freshness
option property that best works with your data. For fileshare documents, last
modified time is most relevant. For calendar event data, the time when the
event occurs is a more relevant freshness indicator. In this way, calendar
events that occur closer to the time of the search query are considered higher
quality and ranked accordingly.
Corresponds to the JSON property freshnessOptions
14238 14239 14240 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14238 def @freshness_options end |
#suggestion_filtering_operators ⇒ Array<String>
Operators that can be used to filter suggestions. For Suggest API, only
operators mentioned here will be honored in the FilterOptions. Only TEXT and
ENUM operators are supported. NOTE: "objecttype", "type" and "mimetype" are
already supported. This property is to configure schema specific operators.
Even though this is an array, only one operator can be specified. This is an
array for future extensibility. Operators mapping to multiple properties
within the same object are not supported. If the operator spans across
different object types, this option has to be set once for each object
definition.
Corresponds to the JSON property suggestionFilteringOperators
14251 14252 14253 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14251 def suggestion_filtering_operators @suggestion_filtering_operators end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14258 14259 14260 14261 14262 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 14258 def update!(**args) @display_options = args[:display_options] if args.key?(:display_options) @freshness_options = args[:freshness_options] if args.key?(:freshness_options) @suggestion_filtering_operators = args[:suggestion_filtering_operators] if args.key?(:suggestion_filtering_operators) end |