Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1Control

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

Defines a conditioned behavior to employ during serving. Must be attached to a ServingConfig to be considered at serving time. Permitted actions dependent on SolutionType.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1Control

Returns a new instance of GoogleCloudDiscoveryengineV1Control.



976
977
978
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 976

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

Instance Attribute Details

#associated_serving_config_idsArray<String>

Output only. List of all ServingConfig IDs this control is attached to. May take up to 10 minutes to update after changes. Corresponds to the JSON property associatedServingConfigIds

Returns:

  • (Array<String>)


911
912
913
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 911

def associated_serving_config_ids
  @associated_serving_config_ids
end

#boost_actionGoogle::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ControlBoostAction

Adjusts order of products in returned list. Corresponds to the JSON property boostAction



916
917
918
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 916

def boost_action
  @boost_action
end

#conditionsArray<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1Condition>

Determines when the associated action will trigger. Omit to always apply the action. Currently only a single condition may be specified. Otherwise an INVALID ARGUMENT error is thrown. Corresponds to the JSON property conditions



923
924
925
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 923

def conditions
  @conditions
end

#display_nameString

Required. Human readable name. The identifier used in UI views. Must be UTF-8 encoded string. Length limit is 128 characters. Otherwise an INVALID ARGUMENT error is thrown. Corresponds to the JSON property displayName

Returns:

  • (String)


930
931
932
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 930

def display_name
  @display_name
end

#filter_actionGoogle::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ControlFilterAction

Specified which products may be included in results. Uses same filter as boost. Corresponds to the JSON property filterAction



935
936
937
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 935

def filter_action
  @filter_action
end

#nameString

Immutable. Fully qualified name projects/*/locations/global/dataStore/*/ controls/* Corresponds to the JSON property name

Returns:

  • (String)


941
942
943
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 941

def name
  @name
end

#promote_actionGoogle::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ControlPromoteAction

Promote certain links based on some trigger queries. Example: Promote shoe store link when searching for shoe keyword. The link can be outside of associated data store. Corresponds to the JSON property promoteAction



948
949
950
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 948

def promote_action
  @promote_action
end

#redirect_actionGoogle::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ControlRedirectAction

Redirects a shopper to the provided URI. Corresponds to the JSON property redirectAction



953
954
955
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 953

def redirect_action
  @redirect_action
end

#solution_typeString

Required. Immutable. What solution the control belongs to. Must be compatible with vertical of resource. Otherwise an INVALID ARGUMENT error is thrown. Corresponds to the JSON property solutionType

Returns:

  • (String)


959
960
961
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 959

def solution_type
  @solution_type
end

#synonyms_actionGoogle::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ControlSynonymsAction

Creates a set of terms that will act as synonyms of one another. Example: " happy" will also be considered as "glad", "glad" will also be considered as " happy". Corresponds to the JSON property synonymsAction



966
967
968
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 966

def synonyms_action
  @synonyms_action
end

#use_casesArray<String>

Specifies the use case for the control. Affects what condition fields can be set. Only applies to SOLUTION_TYPE_SEARCH. Currently only allow one use case per control. Must be set when solution_type is SolutionType. SOLUTION_TYPE_SEARCH. Corresponds to the JSON property useCases

Returns:

  • (Array<String>)


974
975
976
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 974

def use_cases
  @use_cases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



981
982
983
984
985
986
987
988
989
990
991
992
993
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 981

def update!(**args)
  @associated_serving_config_ids = args[:associated_serving_config_ids] if args.key?(:associated_serving_config_ids)
  @boost_action = args[:boost_action] if args.key?(:boost_action)
  @conditions = args[:conditions] if args.key?(:conditions)
  @display_name = args[:display_name] if args.key?(:display_name)
  @filter_action = args[:filter_action] if args.key?(:filter_action)
  @name = args[:name] if args.key?(:name)
  @promote_action = args[:promote_action] if args.key?(:promote_action)
  @redirect_action = args[:redirect_action] if args.key?(:redirect_action)
  @solution_type = args[:solution_type] if args.key?(:solution_type)
  @synonyms_action = args[:synonyms_action] if args.key?(:synonyms_action)
  @use_cases = args[:use_cases] if args.key?(:use_cases)
end