Class: Google::Apis::DataflowV1b3::SendWorkerMessagesRequest

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 request for sending worker messages to the service.

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) ⇒ SendWorkerMessagesRequest

Returns a new instance of SendWorkerMessagesRequest



71
72
73
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 71

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

Instance Attribute Details

#locationString

The location which contains the job Corresponds to the JSON property location

Returns:

  • (String)


69
70
71
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 69

def location
  @location
end

#worker_messagesArray<Google::Apis::DataflowV1b3::WorkerMessage>

The WorkerMessages to send. Corresponds to the JSON property workerMessages



64
65
66
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 64

def worker_messages
  @worker_messages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



76
77
78
79
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 76

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