Class: Google::Apis::DataflowV1b3::WorkerMessageResponse

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

Overview

A worker_message response allows the server to pass information to the sender.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WorkerMessageResponse

Returns a new instance of WorkerMessageResponse



3637
3638
3639
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3637

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

Instance Attribute Details

#worker_health_report_responseGoogle::Apis::DataflowV1b3::WorkerHealthReportResponse

WorkerHealthReportResponse contains information returned to the worker in response to a health ping. Corresponds to the JSON property workerHealthReportResponse



3635
3636
3637
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3635

def worker_health_report_response
  @worker_health_report_response
end

#worker_metrics_responseGoogle::Apis::DataflowV1b3::ResourceUtilizationReportResponse

Service-side response to WorkerMessage reporting resource utilization. Corresponds to the JSON property workerMetricsResponse



3629
3630
3631
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3629

def worker_metrics_response
  @worker_metrics_response
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3642
3643
3644
3645
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3642

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