Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConverseConversationRequest

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

Request message for ConversationalSearchService.ConverseConversation method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaConverseConversationRequest

Returns a new instance of GoogleCloudDiscoveryengineV1alphaConverseConversationRequest.



1026
1027
1028
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1026

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

Instance Attribute Details

#conversationGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation

External conversation proto definition. Corresponds to the JSON property conversation



975
976
977
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 975

def conversation
  @conversation
end

#nameString

Required. The resource name of the Conversation to get. Format: projects/ project_number/locations/location_id/collections/collection/dataStores/ data_store_id/conversations/conversation_id`. Useprojects/project_number /locations/location_id/collections/collection/dataStores/data_store_id/ conversations/-to activate auto session mode, which automatically creates a new conversation inside a ConverseConversation session. Corresponds to the JSON propertyname`

Returns:

  • (String)


985
986
987
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 985

def name
  @name
end

#queryGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaTextInput

Defines text input. Corresponds to the JSON property query



990
991
992
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 990

def query
  @query
end

#safe_searchBoolean Also known as: safe_search?

Whether to turn on safe search. Corresponds to the JSON property safeSearch

Returns:

  • (Boolean)


995
996
997
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 995

def safe_search
  @safe_search
end

#serving_configString

The resource name of the Serving Config to use. Format: projects/ project_number/locations/location_id/collections/collection/dataStores/ data_store_id/servingConfigs/serving_config_id`If this is not set, the default serving config will be used. Corresponds to the JSON propertyservingConfig`

Returns:

  • (String)


1004
1005
1006
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1004

def serving_config
  @serving_config
end

#summary_specGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSummarySpec

A specification for configuring a summary returned in a search response. Corresponds to the JSON property summarySpec



1009
1010
1011
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1009

def summary_spec
  @summary_spec
end

#user_labelsHash<String,String>

The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See Google Cloud Document for more details. Corresponds to the JSON property userLabels

Returns:

  • (Hash<String,String>)


1024
1025
1026
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1024

def user_labels
  @user_labels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1031
1032
1033
1034
1035
1036
1037
1038
1039
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1031

def update!(**args)
  @conversation = args[:conversation] if args.key?(:conversation)
  @name = args[:name] if args.key?(:name)
  @query = args[:query] if args.key?(:query)
  @safe_search = args[:safe_search] if args.key?(:safe_search)
  @serving_config = args[:serving_config] if args.key?(:serving_config)
  @summary_spec = args[:summary_spec] if args.key?(:summary_spec)
  @user_labels = args[:user_labels] if args.key?(:user_labels)
end