Class: Google::Apis::DataflowV1b3::LeaseWorkItemResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Response to a request to lease WorkItems.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LeaseWorkItemResponse

Returns a new instance of LeaseWorkItemResponse.



3064
3065
3066
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3064

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#unified_worker_responseHash<String,Object>

Untranslated bag-of-bytes WorkResponse for UnifiedWorker. Corresponds to the JSON property unifiedWorkerResponse

Returns:

  • (Hash<String,Object>)


3057
3058
3059
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3057

def unified_worker_response
  @unified_worker_response
end

#work_itemsArray<Google::Apis::DataflowV1b3::WorkItem>

A list of the leased WorkItems. Corresponds to the JSON property workItems



3062
3063
3064
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3062

def work_items
  @work_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3069
3070
3071
3072
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3069

def update!(**args)
  @unified_worker_response = args[:unified_worker_response] if args.key?(:unified_worker_response)
  @work_items = args[:work_items] if args.key?(:work_items)
end