Class: Google::Apis::DataflowV1b3::StreamingConfigTask

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 that carries configuration information for streaming computations.

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

Returns a new instance of StreamingConfigTask



4568
4569
4570
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4568

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

Instance Attribute Details

#max_work_item_commit_bytesFixnum

Maximum size for work item commit supported windmill storage layer. Corresponds to the JSON property maxWorkItemCommitBytes

Returns:

  • (Fixnum)


4542
4543
4544
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4542

def max_work_item_commit_bytes
  @max_work_item_commit_bytes
end

#streaming_computation_configsArray<Google::Apis::DataflowV1b3::StreamingComputationConfig>

Set of computation configuration information. Corresponds to the JSON property streamingComputationConfigs



4547
4548
4549
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4547

def streaming_computation_configs
  @streaming_computation_configs
end

#user_step_to_state_family_name_mapHash<String,String>

Map from user step names to state families. Corresponds to the JSON property userStepToStateFamilyNameMap

Returns:

  • (Hash<String,String>)


4552
4553
4554
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4552

def user_step_to_state_family_name_map
  @user_step_to_state_family_name_map
end

#windmill_service_endpointString

If present, the worker must use this endpoint to communicate with Windmill Service dispatchers, otherwise the worker must continue to use whatever endpoint it had been using. Corresponds to the JSON property windmillServiceEndpoint

Returns:

  • (String)


4559
4560
4561
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4559

def windmill_service_endpoint
  @windmill_service_endpoint
end

#windmill_service_portFixnum

If present, the worker must use this port to communicate with Windmill Service dispatchers. Only applicable when windmill_service_endpoint is specified. Corresponds to the JSON property windmillServicePort

Returns:

  • (Fixnum)


4566
4567
4568
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4566

def windmill_service_port
  @windmill_service_port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4573
4574
4575
4576
4577
4578
4579
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4573

def update!(**args)
  @max_work_item_commit_bytes = args[:max_work_item_commit_bytes] if args.key?(:max_work_item_commit_bytes)
  @streaming_computation_configs = args[:streaming_computation_configs] if args.key?(:streaming_computation_configs)
  @user_step_to_state_family_name_map = args[:user_step_to_state_family_name_map] if args.key?(:user_step_to_state_family_name_map)
  @windmill_service_endpoint = args[:windmill_service_endpoint] if args.key?(:windmill_service_endpoint)
  @windmill_service_port = args[:windmill_service_port] if args.key?(:windmill_service_port)
end