Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaImportCompletionDataRequest
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaImportCompletionDataRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb
Overview
Request message for ImportCompletionData methods.
Instance Attribute Summary collapse
-
#input_config ⇒ Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCompletionDataInputConfig
The input config source for completion data.
-
#notification_pubsub_topic ⇒ String
Pub/Sub topic for receiving notification.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaImportCompletionDataRequest
constructor
A new instance of GoogleCloudRetailV2betaImportCompletionDataRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaImportCompletionDataRequest
Returns a new instance of GoogleCloudRetailV2betaImportCompletionDataRequest.
4165 4166 4167 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_config ⇒ Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCompletionDataInputConfig
The input config source for completion data.
Corresponds to the JSON property inputConfig
4155 4156 4157 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4155 def input_config @input_config end |
#notification_pubsub_topic ⇒ String
Pub/Sub topic for receiving notification. If this field is set, when the
import is finished, a notification is sent to specified Pub/Sub topic. The
message data is JSON string of a Operation. Format of the Pub/Sub topic is
projects/
project/topics/
topic`.
Corresponds to the JSON property
notificationPubsubTopic`
4163 4164 4165 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4163 def notification_pubsub_topic @notification_pubsub_topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4170 4171 4172 4173 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4170 def update!(**args) @input_config = args[:input_config] if args.key?(:input_config) @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic) end |