class Google::Apis::DataflowV1b3::WorkerDetails
Information about a worker
Attributes
work_items[RW]
Work items processed by this worker, sorted by time. Corresponds to the JSON property `workItems` @return [Array<Google::Apis::DataflowV1b3::WorkItemDetails>]
worker_name[RW]
Name of this worker Corresponds to the JSON property `workerName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 6174 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 6179 def update!(**args) @work_items = args[:work_items] if args.key?(:work_items) @worker_name = args[:worker_name] if args.key?(:worker_name) end