class Google::Apis::DataflowV1b3::SendWorkerMessagesRequest

A request for sending worker messages to the service.

Attributes

location[RW]

The [regional endpoint] (cloud.google.com/dataflow/docs/concepts/ regional-endpoints) that contains the job. Corresponds to the JSON property `location` @return [String]

worker_messages[RW]

The WorkerMessages to send. Corresponds to the JSON property `workerMessages` @return [Array<Google::Apis::DataflowV1b3::WorkerMessage>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 4164
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 4169
def update!(**args)
  @location = args[:location] if args.key?(:location)
  @worker_messages = args[:worker_messages] if args.key?(:worker_messages)
end