class Google::Apis::DataflowV1b3::StreamingComputationConfig

Configuration information for a single streaming computation.

Attributes

computation_id[RW]

Unique identifier for this computation. Corresponds to the JSON property `computationId` @return [String]

instructions[RW]

Instructions that comprise the computation. Corresponds to the JSON property `instructions` @return [Array<Google::Apis::DataflowV1b3::ParallelInstruction>]

stage_name[RW]

Stage name of this computation. Corresponds to the JSON property `stageName` @return [String]

system_name[RW]

System defined name for this computation. Corresponds to the JSON property `systemName` @return [String]

transform_user_name_to_state_family[RW]

Map from user name of stateful transforms in this stage to their state family. Corresponds to the JSON property `transformUserNameToStateFamily` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5229
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 5234
def update!(**args)
  @computation_id = args[:computation_id] if args.key?(:computation_id)
  @instructions = args[:instructions] if args.key?(:instructions)
  @stage_name = args[:stage_name] if args.key?(:stage_name)
  @system_name = args[:system_name] if args.key?(:system_name)
  @transform_user_name_to_state_family = args[:transform_user_name_to_state_family] if args.key?(:transform_user_name_to_state_family)
end