Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaControlBoostAction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

Adjusts order of products in returned list.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaControlBoostAction

Returns a new instance of GoogleCloudDiscoveryengineV1betaControlBoostAction.



14012
14013
14014
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 14012

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

Instance Attribute Details

#boostFloat

Required. Strength of the boost, which should be in [-1, 1]. Negative boost means demotion. Default is 0.0 (No-op). Corresponds to the JSON property boost

Returns:

  • (Float)


13995
13996
13997
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 13995

def boost
  @boost
end

#data_storeString

Required. Specifies which data store's documents can be boosted by this control. Full data store name e.g. projects/123/locations/global/collections/ default_collection/dataStores/default_data_store Corresponds to the JSON property dataStore

Returns:

  • (String)


14002
14003
14004
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 14002

def data_store
  @data_store
end

#filterString

Required. Specifies which products to apply the boost to. If no filter is provided all products will be boosted (No-op). Syntax documentation: https:// cloud.google.com/retail/docs/filter-and-order Maximum length is 5000 characters. Otherwise an INVALID ARGUMENT error is thrown. Corresponds to the JSON property filter

Returns:

  • (String)


14010
14011
14012
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 14010

def filter
  @filter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14017
14018
14019
14020
14021
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 14017

def update!(**args)
  @boost = args[:boost] if args.key?(:boost)
  @data_store = args[:data_store] if args.key?(:data_store)
  @filter = args[:filter] if args.key?(:filter)
end