Class: Google::Apis::DataflowV1b3::WorkerMessageResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::WorkerMessageResponse
- 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
A worker_message response allows the server to pass information to the sender.
Instance Attribute Summary collapse
-
#worker_health_report_response ⇒ Google::Apis::DataflowV1b3::WorkerHealthReportResponse
WorkerHealthReportResponse contains information returned to the worker in response to a health ping.
-
#worker_metrics_response ⇒ Google::Apis::DataflowV1b3::ResourceUtilizationReportResponse
Service-side response to WorkerMessage reporting resource utilization.
-
#worker_shutdown_notice_response ⇒ Google::Apis::DataflowV1b3::WorkerShutdownNoticeResponse
Service-side response to WorkerMessage issuing shutdown notice.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkerMessageResponse
constructor
A new instance of WorkerMessageResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkerMessageResponse
Returns a new instance of WorkerMessageResponse.
6645 6646 6647 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6645 def initialize(**args) update!(**args) end |
Instance Attribute Details
#worker_health_report_response ⇒ Google::Apis::DataflowV1b3::WorkerHealthReportResponse
WorkerHealthReportResponse contains information returned to the worker in
response to a health ping.
Corresponds to the JSON property workerHealthReportResponse
6633 6634 6635 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6633 def worker_health_report_response @worker_health_report_response end |
#worker_metrics_response ⇒ Google::Apis::DataflowV1b3::ResourceUtilizationReportResponse
Service-side response to WorkerMessage reporting resource utilization.
Corresponds to the JSON property workerMetricsResponse
6638 6639 6640 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6638 def worker_metrics_response @worker_metrics_response end |
#worker_shutdown_notice_response ⇒ Google::Apis::DataflowV1b3::WorkerShutdownNoticeResponse
Service-side response to WorkerMessage issuing shutdown notice.
Corresponds to the JSON property workerShutdownNoticeResponse
6643 6644 6645 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6643 def worker_shutdown_notice_response @worker_shutdown_notice_response end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6650 6651 6652 6653 6654 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6650 def update!(**args) @worker_health_report_response = args[:worker_health_report_response] if args.key?(:worker_health_report_response) @worker_metrics_response = args[:worker_metrics_response] if args.key?(:worker_metrics_response) @worker_shutdown_notice_response = args[:worker_shutdown_notice_response] if args.key?(:worker_shutdown_notice_response) end |