Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaControlBoostAction

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

Overview

Adjusts order of products in returned list.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaControlBoostAction

Returns a new instance of GoogleCloudDiscoveryengineV1alphaControlBoostAction.



428
429
430
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 428

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)


418
419
420
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 418

def boost
  @boost
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)


426
427
428
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 426

def filter
  @filter
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



433
434
435
436
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 433

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