Class: Google::Apis::DataflowV1b3::StreamingSetupTask

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 task which initializes part of a streaming Dataflow job.

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

Returns a new instance of StreamingSetupTask



4402
4403
4404
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4402

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

Instance Attribute Details

#drainBoolean Also known as: drain?

The user has requested drain. Corresponds to the JSON property drain

Returns:

  • (Boolean)


4393
4394
4395
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4393

def drain
  @drain
end

#receive_work_portFixnum

The TCP port on which the worker should listen for messages from other streaming computation workers. Corresponds to the JSON property receiveWorkPort

Returns:

  • (Fixnum)


4400
4401
4402
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4400

def receive_work_port
  @receive_work_port
end

#streaming_computation_topologyGoogle::Apis::DataflowV1b3::TopologyConfig

Global topology of the streaming Dataflow job, including all computations and their sharded locations. Corresponds to the JSON property streamingComputationTopology



4382
4383
4384
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4382

def streaming_computation_topology
  @streaming_computation_topology
end

#worker_harness_portFixnum

The TCP port used by the worker to communicate with the Dataflow worker harness. Corresponds to the JSON property workerHarnessPort

Returns:

  • (Fixnum)


4388
4389
4390
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4388

def worker_harness_port
  @worker_harness_port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4407
4408
4409
4410
4411
4412
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4407

def update!(**args)
  @streaming_computation_topology = args[:streaming_computation_topology] if args.key?(:streaming_computation_topology)
  @worker_harness_port = args[:worker_harness_port] if args.key?(:worker_harness_port)
  @drain = args[:drain] if args.key?(:drain)
  @receive_work_port = args[:receive_work_port] if args.key?(:receive_work_port)
end