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.
4491 4492 4493 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4491 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
4481 4482 4483 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4481 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`
4489 4490 4491 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4489 def notification_pubsub_topic @notification_pubsub_topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4496 4497 4498 4499 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 4496 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 |