Class AdvancedCompleteQueryRequest.Builder (0.50.0)

public static final class AdvancedCompleteQueryRequest.Builder extends GeneratedMessageV3.Builder<AdvancedCompleteQueryRequest.Builder> implements AdvancedCompleteQueryRequestOrBuilder

Request message for CompletionService.AdvancedCompleteQuery method. .

Protobuf type google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

Methods

addAllSuggestionTypes(Iterable<? extends AdvancedCompleteQueryRequest.SuggestionType> values)

public AdvancedCompleteQueryRequest.Builder addAllSuggestionTypes(Iterable<? extends AdvancedCompleteQueryRequest.SuggestionType> values)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
values Iterable<? extends com.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType>

The suggestionTypes to add.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

addAllSuggestionTypesValue(Iterable<Integer> values)

public AdvancedCompleteQueryRequest.Builder addAllSuggestionTypesValue(Iterable<Integer> values)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
values Iterable<Integer>

The enum numeric values on the wire for suggestionTypes to add.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public AdvancedCompleteQueryRequest.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

addSuggestionTypes(AdvancedCompleteQueryRequest.SuggestionType value)

public AdvancedCompleteQueryRequest.Builder addSuggestionTypes(AdvancedCompleteQueryRequest.SuggestionType value)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value AdvancedCompleteQueryRequest.SuggestionType

The suggestionTypes to add.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

addSuggestionTypesValue(int value)

public AdvancedCompleteQueryRequest.Builder addSuggestionTypesValue(int value)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value int

The enum numeric value on the wire for suggestionTypes to add.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

build()

public AdvancedCompleteQueryRequest build()
Returns
Type Description
AdvancedCompleteQueryRequest

buildPartial()

public AdvancedCompleteQueryRequest buildPartial()
Returns
Type Description
AdvancedCompleteQueryRequest

clear()

public AdvancedCompleteQueryRequest.Builder clear()
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

clearBoostSpec()

public AdvancedCompleteQueryRequest.Builder clearBoostSpec()

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

clearCompletionConfig()

public AdvancedCompleteQueryRequest.Builder clearCompletionConfig()

Required. The completion_config of the parent dataStore or engine resource name for which the completion is performed, such as projects/*/locations/global/collections/default_collection/dataStores/*/completionConfig projects/*/locations/global/collections/default_collection/engines/*/completionConfig.

string completion_config = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public AdvancedCompleteQueryRequest.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
Name Description
field FieldDescriptor
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

clearIncludeTailSuggestions()

public AdvancedCompleteQueryRequest.Builder clearIncludeTailSuggestions()

Indicates if tail suggestions should be returned if there are no suggestions that match the full query. Even if set to true, if there are suggestions that match the full query, those are returned and no tail suggestions are returned.

bool include_tail_suggestions = 5;

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public AdvancedCompleteQueryRequest.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
Name Description
oneof OneofDescriptor
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

clearQuery()

public AdvancedCompleteQueryRequest.Builder clearQuery()

Required. The typeahead input used to fetch suggestions. Maximum length is 128 characters.

The query can not be empty for most of the suggestion types. If it is empty, an INVALID_ARGUMENT error is returned. The exception is when the suggestion_types contains only the type RECENT_SEARCH, the query can be an empty string. The is called "zero prefix" feature, which returns user's recently searched queries given the empty query.

string query = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clearQueryModel()

public AdvancedCompleteQueryRequest.Builder clearQueryModel()

Specifies the autocomplete data model. This overrides any model specified in the Configuration > Autocomplete section of the Cloud console. Currently supported values:

  • document - Using suggestions generated from user-imported documents.
  • search-history - Using suggestions generated from the past history of SearchService.Search API calls. Do not use it when there is no traffic for Search API.
  • user-event - Using suggestions generated from user-imported search events.
  • document-completable - Using suggestions taken directly from user-imported document fields marked as completable.

    Default values:

  • document is the default model for regular dataStores.

  • search-history is the default model for site search dataStores.

string query_model = 3;

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clearSuggestionTypes()

public AdvancedCompleteQueryRequest.Builder clearSuggestionTypes()

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clearUserInfo()

public AdvancedCompleteQueryRequest.Builder clearUserInfo()

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

clearUserPseudoId()

public AdvancedCompleteQueryRequest.Builder clearUserPseudoId()

A unique identifier for tracking visitors. For example, this could be implemented with an HTTP cookie, which should be able to uniquely identify a visitor on a single device. This unique identifier should not change if the visitor logs in or out of the website.

This field should NOT have a fixed value such as unknown_visitor.

This should be the same identifier as UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id.

The field must be a UTF-8 encoded string with a length limit of 128

string user_pseudo_id = 4;

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

clone()

public AdvancedCompleteQueryRequest.Builder clone()
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

getBoostSpec()

public AdvancedCompleteQueryRequest.BoostSpec getBoostSpec()

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.BoostSpec

The boostSpec.

getBoostSpecBuilder()

public AdvancedCompleteQueryRequest.BoostSpec.Builder getBoostSpecBuilder()

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.BoostSpec.Builder

getBoostSpecOrBuilder()

public AdvancedCompleteQueryRequest.BoostSpecOrBuilder getBoostSpecOrBuilder()

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
AdvancedCompleteQueryRequest.BoostSpecOrBuilder

getCompletionConfig()

public String getCompletionConfig()

Required. The completion_config of the parent dataStore or engine resource name for which the completion is performed, such as projects/*/locations/global/collections/default_collection/dataStores/*/completionConfig projects/*/locations/global/collections/default_collection/engines/*/completionConfig.

string completion_config = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
String

The completionConfig.

getCompletionConfigBytes()

public ByteString getCompletionConfigBytes()

Required. The completion_config of the parent dataStore or engine resource name for which the completion is performed, such as projects/*/locations/global/collections/default_collection/dataStores/*/completionConfig projects/*/locations/global/collections/default_collection/engines/*/completionConfig.

string completion_config = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
ByteString

The bytes for completionConfig.

getDefaultInstanceForType()

public AdvancedCompleteQueryRequest getDefaultInstanceForType()
Returns
Type Description
AdvancedCompleteQueryRequest

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getIncludeTailSuggestions()

public boolean getIncludeTailSuggestions()

Indicates if tail suggestions should be returned if there are no suggestions that match the full query. Even if set to true, if there are suggestions that match the full query, those are returned and no tail suggestions are returned.

bool include_tail_suggestions = 5;

Returns
Type Description
boolean

The includeTailSuggestions.

getQuery()

public String getQuery()

Required. The typeahead input used to fetch suggestions. Maximum length is 128 characters.

The query can not be empty for most of the suggestion types. If it is empty, an INVALID_ARGUMENT error is returned. The exception is when the suggestion_types contains only the type RECENT_SEARCH, the query can be an empty string. The is called "zero prefix" feature, which returns user's recently searched queries given the empty query.

string query = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
String

The query.

getQueryBytes()

public ByteString getQueryBytes()

Required. The typeahead input used to fetch suggestions. Maximum length is 128 characters.

The query can not be empty for most of the suggestion types. If it is empty, an INVALID_ARGUMENT error is returned. The exception is when the suggestion_types contains only the type RECENT_SEARCH, the query can be an empty string. The is called "zero prefix" feature, which returns user's recently searched queries given the empty query.

string query = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
ByteString

The bytes for query.

getQueryModel()

public String getQueryModel()

Specifies the autocomplete data model. This overrides any model specified in the Configuration > Autocomplete section of the Cloud console. Currently supported values:

  • document - Using suggestions generated from user-imported documents.
  • search-history - Using suggestions generated from the past history of SearchService.Search API calls. Do not use it when there is no traffic for Search API.
  • user-event - Using suggestions generated from user-imported search events.
  • document-completable - Using suggestions taken directly from user-imported document fields marked as completable.

    Default values:

  • document is the default model for regular dataStores.

  • search-history is the default model for site search dataStores.

string query_model = 3;

Returns
Type Description
String

The queryModel.

getQueryModelBytes()

public ByteString getQueryModelBytes()

Specifies the autocomplete data model. This overrides any model specified in the Configuration > Autocomplete section of the Cloud console. Currently supported values:

  • document - Using suggestions generated from user-imported documents.
  • search-history - Using suggestions generated from the past history of SearchService.Search API calls. Do not use it when there is no traffic for Search API.
  • user-event - Using suggestions generated from user-imported search events.
  • document-completable - Using suggestions taken directly from user-imported document fields marked as completable.

    Default values:

  • document is the default model for regular dataStores.

  • search-history is the default model for site search dataStores.

string query_model = 3;

Returns
Type Description
ByteString

The bytes for queryModel.

getSuggestionTypes(int index)

public AdvancedCompleteQueryRequest.SuggestionType getSuggestionTypes(int index)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
index int

The index of the element to return.

Returns
Type Description
AdvancedCompleteQueryRequest.SuggestionType

The suggestionTypes at the given index.

getSuggestionTypesCount()

public int getSuggestionTypesCount()

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
int

The count of suggestionTypes.

getSuggestionTypesList()

public List<AdvancedCompleteQueryRequest.SuggestionType> getSuggestionTypesList()

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
List<SuggestionType>

A list containing the suggestionTypes.

getSuggestionTypesValue(int index)

public int getSuggestionTypesValue(int index)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
index int

The index of the value to return.

Returns
Type Description
int

The enum numeric value on the wire of suggestionTypes at the given index.

getSuggestionTypesValueList()

public List<Integer> getSuggestionTypesValueList()

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
List<Integer>

A list containing the enum numeric values on the wire for suggestionTypes.

getUserInfo()

public UserInfo getUserInfo()

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
UserInfo

The userInfo.

getUserInfoBuilder()

public UserInfo.Builder getUserInfoBuilder()

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
UserInfo.Builder

getUserInfoOrBuilder()

public UserInfoOrBuilder getUserInfoOrBuilder()

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
UserInfoOrBuilder

getUserPseudoId()

public String getUserPseudoId()

A unique identifier for tracking visitors. For example, this could be implemented with an HTTP cookie, which should be able to uniquely identify a visitor on a single device. This unique identifier should not change if the visitor logs in or out of the website.

This field should NOT have a fixed value such as unknown_visitor.

This should be the same identifier as UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id.

The field must be a UTF-8 encoded string with a length limit of 128

string user_pseudo_id = 4;

Returns
Type Description
String

The userPseudoId.

getUserPseudoIdBytes()

public ByteString getUserPseudoIdBytes()

A unique identifier for tracking visitors. For example, this could be implemented with an HTTP cookie, which should be able to uniquely identify a visitor on a single device. This unique identifier should not change if the visitor logs in or out of the website.

This field should NOT have a fixed value such as unknown_visitor.

This should be the same identifier as UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id.

The field must be a UTF-8 encoded string with a length limit of 128

string user_pseudo_id = 4;

Returns
Type Description
ByteString

The bytes for userPseudoId.

hasBoostSpec()

public boolean hasBoostSpec()

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the boostSpec field is set.

hasUserInfo()

public boolean hasUserInfo()

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the userInfo field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

mergeBoostSpec(AdvancedCompleteQueryRequest.BoostSpec value)

public AdvancedCompleteQueryRequest.Builder mergeBoostSpec(AdvancedCompleteQueryRequest.BoostSpec value)

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value AdvancedCompleteQueryRequest.BoostSpec
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

mergeFrom(AdvancedCompleteQueryRequest other)

public AdvancedCompleteQueryRequest.Builder mergeFrom(AdvancedCompleteQueryRequest other)
Parameter
Name Description
other AdvancedCompleteQueryRequest
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public AdvancedCompleteQueryRequest.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public AdvancedCompleteQueryRequest.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

mergeUnknownFields(UnknownFieldSet unknownFields)

public final AdvancedCompleteQueryRequest.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

mergeUserInfo(UserInfo value)

public AdvancedCompleteQueryRequest.Builder mergeUserInfo(UserInfo value)

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value UserInfo
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

setBoostSpec(AdvancedCompleteQueryRequest.BoostSpec value)

public AdvancedCompleteQueryRequest.Builder setBoostSpec(AdvancedCompleteQueryRequest.BoostSpec value)

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value AdvancedCompleteQueryRequest.BoostSpec
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

setBoostSpec(AdvancedCompleteQueryRequest.BoostSpec.Builder builderForValue)

public AdvancedCompleteQueryRequest.Builder setBoostSpec(AdvancedCompleteQueryRequest.BoostSpec.Builder builderForValue)

Optional. Specification to boost suggestions matching the condition.

.google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.BoostSpec boost_spec = 6 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
builderForValue AdvancedCompleteQueryRequest.BoostSpec.Builder
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

setCompletionConfig(String value)

public AdvancedCompleteQueryRequest.Builder setCompletionConfig(String value)

Required. The completion_config of the parent dataStore or engine resource name for which the completion is performed, such as projects/*/locations/global/collections/default_collection/dataStores/*/completionConfig projects/*/locations/global/collections/default_collection/engines/*/completionConfig.

string completion_config = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Parameter
Name Description
value String

The completionConfig to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setCompletionConfigBytes(ByteString value)

public AdvancedCompleteQueryRequest.Builder setCompletionConfigBytes(ByteString value)

Required. The completion_config of the parent dataStore or engine resource name for which the completion is performed, such as projects/*/locations/global/collections/default_collection/dataStores/*/completionConfig projects/*/locations/global/collections/default_collection/engines/*/completionConfig.

string completion_config = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Parameter
Name Description
value ByteString

The bytes for completionConfig to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

public AdvancedCompleteQueryRequest.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

setIncludeTailSuggestions(boolean value)

public AdvancedCompleteQueryRequest.Builder setIncludeTailSuggestions(boolean value)

Indicates if tail suggestions should be returned if there are no suggestions that match the full query. Even if set to true, if there are suggestions that match the full query, those are returned and no tail suggestions are returned.

bool include_tail_suggestions = 5;

Parameter
Name Description
value boolean

The includeTailSuggestions to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setQuery(String value)

public AdvancedCompleteQueryRequest.Builder setQuery(String value)

Required. The typeahead input used to fetch suggestions. Maximum length is 128 characters.

The query can not be empty for most of the suggestion types. If it is empty, an INVALID_ARGUMENT error is returned. The exception is when the suggestion_types contains only the type RECENT_SEARCH, the query can be an empty string. The is called "zero prefix" feature, which returns user's recently searched queries given the empty query.

string query = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
value String

The query to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setQueryBytes(ByteString value)

public AdvancedCompleteQueryRequest.Builder setQueryBytes(ByteString value)

Required. The typeahead input used to fetch suggestions. Maximum length is 128 characters.

The query can not be empty for most of the suggestion types. If it is empty, an INVALID_ARGUMENT error is returned. The exception is when the suggestion_types contains only the type RECENT_SEARCH, the query can be an empty string. The is called "zero prefix" feature, which returns user's recently searched queries given the empty query.

string query = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
value ByteString

The bytes for query to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setQueryModel(String value)

public AdvancedCompleteQueryRequest.Builder setQueryModel(String value)

Specifies the autocomplete data model. This overrides any model specified in the Configuration > Autocomplete section of the Cloud console. Currently supported values:

  • document - Using suggestions generated from user-imported documents.
  • search-history - Using suggestions generated from the past history of SearchService.Search API calls. Do not use it when there is no traffic for Search API.
  • user-event - Using suggestions generated from user-imported search events.
  • document-completable - Using suggestions taken directly from user-imported document fields marked as completable.

    Default values:

  • document is the default model for regular dataStores.

  • search-history is the default model for site search dataStores.

string query_model = 3;

Parameter
Name Description
value String

The queryModel to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setQueryModelBytes(ByteString value)

public AdvancedCompleteQueryRequest.Builder setQueryModelBytes(ByteString value)

Specifies the autocomplete data model. This overrides any model specified in the Configuration > Autocomplete section of the Cloud console. Currently supported values:

  • document - Using suggestions generated from user-imported documents.
  • search-history - Using suggestions generated from the past history of SearchService.Search API calls. Do not use it when there is no traffic for Search API.
  • user-event - Using suggestions generated from user-imported search events.
  • document-completable - Using suggestions taken directly from user-imported document fields marked as completable.

    Default values:

  • document is the default model for regular dataStores.

  • search-history is the default model for site search dataStores.

string query_model = 3;

Parameter
Name Description
value ByteString

The bytes for queryModel to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public AdvancedCompleteQueryRequest.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
Name Description
field FieldDescriptor
index int
value Object
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

setSuggestionTypes(int index, AdvancedCompleteQueryRequest.SuggestionType value)

public AdvancedCompleteQueryRequest.Builder setSuggestionTypes(int index, AdvancedCompleteQueryRequest.SuggestionType value)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameters
Name Description
index int

The index to set the value at.

value AdvancedCompleteQueryRequest.SuggestionType

The suggestionTypes to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setSuggestionTypesValue(int index, int value)

public AdvancedCompleteQueryRequest.Builder setSuggestionTypesValue(int index, int value)

Optional. Suggestion types to return. If empty or unspecified, query suggestions are returned. Only one suggestion type is supported at the moment.

repeated .google.cloud.discoveryengine.v1beta.AdvancedCompleteQueryRequest.SuggestionType suggestion_types = 7 [(.google.api.field_behavior) = OPTIONAL];

Parameters
Name Description
index int

The index to set the value at.

value int

The enum numeric value on the wire for suggestionTypes to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setUnknownFields(UnknownFieldSet unknownFields)

public final AdvancedCompleteQueryRequest.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
AdvancedCompleteQueryRequest.Builder
Overrides

setUserInfo(UserInfo value)

public AdvancedCompleteQueryRequest.Builder setUserInfo(UserInfo value)

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
value UserInfo
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

setUserInfo(UserInfo.Builder builderForValue)

public AdvancedCompleteQueryRequest.Builder setUserInfo(UserInfo.Builder builderForValue)

Optional. Information about the end user.

This should be the same identifier information as UserEvent.user_info and SearchRequest.user_info.

.google.cloud.discoveryengine.v1beta.UserInfo user_info = 9 [(.google.api.field_behavior) = OPTIONAL];

Parameter
Name Description
builderForValue UserInfo.Builder
Returns
Type Description
AdvancedCompleteQueryRequest.Builder

setUserPseudoId(String value)

public AdvancedCompleteQueryRequest.Builder setUserPseudoId(String value)

A unique identifier for tracking visitors. For example, this could be implemented with an HTTP cookie, which should be able to uniquely identify a visitor on a single device. This unique identifier should not change if the visitor logs in or out of the website.

This field should NOT have a fixed value such as unknown_visitor.

This should be the same identifier as UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id.

The field must be a UTF-8 encoded string with a length limit of 128

string user_pseudo_id = 4;

Parameter
Name Description
value String

The userPseudoId to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.

setUserPseudoIdBytes(ByteString value)

public AdvancedCompleteQueryRequest.Builder setUserPseudoIdBytes(ByteString value)

A unique identifier for tracking visitors. For example, this could be implemented with an HTTP cookie, which should be able to uniquely identify a visitor on a single device. This unique identifier should not change if the visitor logs in or out of the website.

This field should NOT have a fixed value such as unknown_visitor.

This should be the same identifier as UserEvent.user_pseudo_id and SearchRequest.user_pseudo_id.

The field must be a UTF-8 encoded string with a length limit of 128

string user_pseudo_id = 4;

Parameter
Name Description
value ByteString

The bytes for userPseudoId to set.

Returns
Type Description
AdvancedCompleteQueryRequest.Builder

This builder for chaining.