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



4428
4429
4430
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4428

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

Instance Attribute Details

#computation_idString

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

Returns:

  • (String)


4405
4406
4407
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4405

def computation_id
  @computation_id
end

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

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



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

def instructions
  @instructions
end

#stage_nameString

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

Returns:

  • (String)


4415
4416
4417
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4415

def stage_name
  @stage_name
end

#system_nameString

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

Returns:

  • (String)


4420
4421
4422
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4420

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


4426
4427
4428
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4426

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



4433
4434
4435
4436
4437
4438
4439
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4433

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