Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest
- 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 WidgetService.WidgetCompleteQuery method.
Instance Attribute Summary collapse
-
#additional_params ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdditionalParams
AdditionalParams message for WidgetService methods for security and privacy enhancement.
-
#complete_query_request ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCompleteQueryRequest
Request message for CompletionService.CompleteQuery method.
-
#config_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest
Returns a new instance of GoogleCloudDiscoveryengineV1alphaWidgetCompleteQueryRequest.
7563 7564 7565 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_params ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAdditionalParams
AdditionalParams message for WidgetService methods for security and privacy
enhancement.
Corresponds to the JSON property additionalParams
7550 7551 7552 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7550 def additional_params @additional_params end |
#complete_query_request ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaCompleteQueryRequest
Request message for CompletionService.CompleteQuery method.
Corresponds to the JSON property completeQueryRequest
7555 7556 7557 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7555 def complete_query_request @complete_query_request end |
#config_id ⇒ String
Required. The UUID of the WidgetConfig. This field is used to identify the
widget configuration, set of models used to make the auto complete query.
Corresponds to the JSON property configId
7561 7562 7563 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7561 def config_id @config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7568 7569 7570 7571 7572 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7568 def update!(**args) @additional_params = args[:additional_params] if args.key?(:additional_params) @complete_query_request = args[:complete_query_request] if args.key?(:complete_query_request) @config_id = args[:config_id] if args.key?(:config_id) end |