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.
4134 4135 4136 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4134 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
4121 4122 4123 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4121 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
4126 4127 4128 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4126 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
4132 4133 4134 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4132 def config_id @config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4139 4140 4141 4142 4143 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4139 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 |