Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
- 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
Feature config for the Knowledge Graph.
Instance Attribute Summary collapse
-
#disable_private_kg_auto_complete ⇒ Boolean
(also: #disable_private_kg_auto_complete?)
Whether to disable the private KG auto complete for the engine.
-
#disable_private_kg_enrichment ⇒ Boolean
(also: #disable_private_kg_enrichment?)
Whether to disable the private KG enrichment for the engine.
-
#disable_private_kg_query_ui_chips ⇒ Boolean
(also: #disable_private_kg_query_ui_chips?)
Whether to disable the private KG for query UI chips.
-
#disable_private_kg_query_understanding ⇒ Boolean
(also: #disable_private_kg_query_understanding?)
Whether to disable the private KG query understanding for the engine.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig
Returns a new instance of GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfigFeatureConfig.
12029 12030 12031 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12029 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_private_kg_auto_complete ⇒ Boolean Also known as: disable_private_kg_auto_complete?
Whether to disable the private KG auto complete for the engine. Defaults to
false if not specified.
Corresponds to the JSON property disablePrivateKgAutoComplete
12005 12006 12007 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12005 def disable_private_kg_auto_complete @disable_private_kg_auto_complete end |
#disable_private_kg_enrichment ⇒ Boolean Also known as: disable_private_kg_enrichment?
Whether to disable the private KG enrichment for the engine. Defaults to false
if not specified.
Corresponds to the JSON property disablePrivateKgEnrichment
12012 12013 12014 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12012 def disable_private_kg_enrichment @disable_private_kg_enrichment end |
#disable_private_kg_query_ui_chips ⇒ Boolean Also known as: disable_private_kg_query_ui_chips?
Whether to disable the private KG for query UI chips. Defaults to false if not
specified.
Corresponds to the JSON property disablePrivateKgQueryUiChips
12019 12020 12021 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12019 def disable_private_kg_query_ui_chips @disable_private_kg_query_ui_chips end |
#disable_private_kg_query_understanding ⇒ Boolean Also known as: disable_private_kg_query_understanding?
Whether to disable the private KG query understanding for the engine. Defaults
to false if not specified.
Corresponds to the JSON property disablePrivateKgQueryUnderstanding
12026 12027 12028 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12026 def disable_private_kg_query_understanding @disable_private_kg_query_understanding end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12034 12035 12036 12037 12038 12039 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12034 def update!(**args) @disable_private_kg_auto_complete = args[:disable_private_kg_auto_complete] if args.key?(:disable_private_kg_auto_complete) @disable_private_kg_enrichment = args[:disable_private_kg_enrichment] if args.key?(:disable_private_kg_enrichment) @disable_private_kg_query_ui_chips = args[:disable_private_kg_query_ui_chips] if args.key?(:disable_private_kg_query_ui_chips) @disable_private_kg_query_understanding = args[:disable_private_kg_query_understanding] if args.key?(:disable_private_kg_query_understanding) end |