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.
4317 4318 4319 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4317 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
4304 4305 4306 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4304 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
4309 4310 4311 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4309 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
4315 4316 4317 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4315 def config_id @config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4322 4323 4324 4325 4326 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4322 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 |