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.
2994 2995 2996 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2994 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
2984 2985 2986 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2984 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 propertynotificationPubsubTopic`
2992 2993 2994 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2992 def notification_pubsub_topic @notification_pubsub_topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2999 3000 3001 3002 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2999 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 |