class Google::Apis::DataflowV1b3::ReportWorkItemStatusRequest
Request to report the status of WorkItems.
Attributes
The current timestamp at the worker. Corresponds to the JSON property `currentWorkerTime` @return [String]
The [regional endpoint] (cloud.google.com/dataflow/docs/concepts/ regional-endpoints) that contains the WorkItem's job. Corresponds to the JSON property `location` @return [String]
Untranslated bag-of-bytes WorkProgressUpdateRequest from UnifiedWorker. Corresponds to the JSON property `unifiedWorkerRequest` @return [Hash<String,Object>]
The order is unimportant, except that the order of the WorkItemServiceState
messages in the ReportWorkItemStatusResponse
corresponds to the order of WorkItemStatus
messages here. Corresponds to the JSON property `workItemStatuses` @return [Array<Google::Apis::DataflowV1b3::WorkItemStatus>]
Public Class Methods
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3726 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3731 def update!(**args) @current_worker_time = args[:current_worker_time] if args.key?(:current_worker_time) @location = args[:location] if args.key?(:location) @unified_worker_request = args[:unified_worker_request] if args.key?(:unified_worker_request) @work_item_statuses = args[:work_item_statuses] if args.key?(:work_item_statuses) @worker_id = args[:worker_id] if args.key?(:worker_id) end