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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb

Overview

Configuration information for a single streaming computation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StreamingComputationConfig

Returns a new instance of StreamingComputationConfig.



5512
5513
5514
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5512

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

Instance Attribute Details

#computation_idString

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

Returns:

  • (String)


5490
5491
5492
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5490

def computation_id
  @computation_id
end

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

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



5495
5496
5497
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5495

def instructions
  @instructions
end

#stage_nameString

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

Returns:

  • (String)


5500
5501
5502
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5500

def stage_name
  @stage_name
end

#system_nameString

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

Returns:

  • (String)


5505
5506
5507
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5505

def system_name
  @system_name
end

#transform_user_name_to_state_familyHash<String,String>

Map from user name of stateful transforms in this stage to their state family. Corresponds to the JSON property transformUserNameToStateFamily

Returns:

  • (Hash<String,String>)


5510
5511
5512
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5510

def transform_user_name_to_state_family
  @transform_user_name_to_state_family
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5517
5518
5519
5520
5521
5522
5523
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5517

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