Class: Google::Apis::DataflowV1b3::StreamingComputationConfig

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

Configuration information for a single streaming computation.

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

Returns a new instance of StreamingComputationConfig.



3779
3780
3781
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3779

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

Instance Attribute Details

#computation_idString

Unique identifier for this computation. Corresponds to the JSON property computationId

Returns:

  • (String)


3762
3763
3764
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3762

def computation_id
  @computation_id
end

#instructionsArray<Google::Apis::DataflowV1b3::ParallelInstruction>

Instructions that comprise the computation. Corresponds to the JSON property instructions



3777
3778
3779
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3777

def instructions
  @instructions
end

#stage_nameString

Stage name of this computation. Corresponds to the JSON property stageName

Returns:

  • (String)


3772
3773
3774
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3772

def stage_name
  @stage_name
end

#system_nameString

System defined name for this computation. Corresponds to the JSON property systemName

Returns:

  • (String)


3767
3768
3769
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3767

def system_name
  @system_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3784
3785
3786
3787
3788
3789
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3784

def update!(**args)
  @computation_id = args[:computation_id] if args.key?(:computation_id)
  @system_name = args[:system_name] if args.key?(:system_name)
  @stage_name = args[:stage_name] if args.key?(:stage_name)
  @instructions = args[:instructions] if args.key?(:instructions)
end