Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2ImportMetadata
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2ImportMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2alpha/classes.rb,
lib/google/apis/retail_v2alpha/representations.rb,
lib/google/apis/retail_v2alpha/representations.rb
Overview
Metadata related to the progress of the Import operation. This will be returned by the google.longrunning.Operation.metadata field.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Operation create time.
-
#failure_count ⇒ Fixnum
Count of entries that encountered errors while processing.
-
#notification_pubsub_topic ⇒ String
Pub/Sub topic for receiving notification.
-
#request_id ⇒ String
Id of the request / operation.
-
#success_count ⇒ Fixnum
Count of entries that were processed successfully.
-
#update_time ⇒ String
Operation last update time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2ImportMetadata
constructor
A new instance of GoogleCloudRetailV2ImportMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2ImportMetadata
Returns a new instance of GoogleCloudRetailV2ImportMetadata.
393 394 395 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 393 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Operation create time.
Corresponds to the JSON property createTime
361 362 363 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 361 def create_time @create_time end |
#failure_count ⇒ Fixnum
Count of entries that encountered errors while processing.
Corresponds to the JSON property failureCount
366 367 368 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 366 def failure_count @failure_count end |
#notification_pubsub_topic ⇒ String
Pub/Sub topic for receiving notification. If this field is set, when the
import is finished, a notification will be sent to specified Pub/Sub topic.
The message data will be JSON string of a Operation. Format of the Pub/Sub
topic is projects/project/topics/topic`.
Corresponds to the JSON propertynotificationPubsubTopic`
374 375 376 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 374 def notification_pubsub_topic @notification_pubsub_topic end |
#request_id ⇒ String
Id of the request / operation. This is parroting back the requestId that was
passed in the request.
Corresponds to the JSON property requestId
380 381 382 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 380 def request_id @request_id end |
#success_count ⇒ Fixnum
Count of entries that were processed successfully.
Corresponds to the JSON property successCount
385 386 387 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 385 def success_count @success_count end |
#update_time ⇒ String
Operation last update time. If the operation is done, this is also the finish
time.
Corresponds to the JSON property updateTime
391 392 393 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 391 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
398 399 400 401 402 403 404 405 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 398 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @failure_count = args[:failure_count] if args.key?(:failure_count) @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic) @request_id = args[:request_id] if args.key?(:request_id) @success_count = args[:success_count] if args.key?(:success_count) @update_time = args[:update_time] if args.key?(:update_time) end |