Class: Google::Apis::DataflowV1b3::SeqMapTask
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::SeqMapTask
 
- 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
Describes a particular function to invoke.
Instance Attribute Summary collapse
- 
  
    
      #inputs  ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about each of the inputs. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user-provided name of the SeqDo operation. 
- 
  
    
      #output_infos  ⇒ Array<Google::Apis::DataflowV1b3::SeqMapTaskOutputInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about each of the outputs. 
- 
  
    
      #stage_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    System-defined name of the stage containing the SeqDo operation. 
- 
  
    
      #system_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    System-defined name of the SeqDo operation. 
- 
  
    
      #user_fn  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user function to invoke. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SeqMapTask 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SeqMapTask. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SeqMapTask
Returns a new instance of SeqMapTask
| 3190 3191 3192 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3190 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#inputs ⇒ Array<Google::Apis::DataflowV1b3::SideInputInfo>
Information about each of the inputs.
Corresponds to the JSON property inputs
| 3161 3162 3163 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3161 def inputs @inputs end | 
#name ⇒ String
The user-provided name of the SeqDo operation.
Corresponds to the JSON property name
| 3166 3167 3168 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3166 def name @name end | 
#output_infos ⇒ Array<Google::Apis::DataflowV1b3::SeqMapTaskOutputInfo>
Information about each of the outputs.
Corresponds to the JSON property outputInfos
| 3171 3172 3173 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3171 def output_infos @output_infos end | 
#stage_name ⇒ String
System-defined name of the stage containing the SeqDo operation.
Unique across the workflow.
Corresponds to the JSON property stageName
| 3177 3178 3179 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3177 def stage_name @stage_name end | 
#system_name ⇒ String
System-defined name of the SeqDo operation.
Unique across the workflow.
Corresponds to the JSON property systemName
| 3183 3184 3185 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3183 def system_name @system_name end | 
#user_fn ⇒ Hash<String,Object>
The user function to invoke.
Corresponds to the JSON property userFn
| 3188 3189 3190 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3188 def user_fn @user_fn end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3195 3196 3197 3198 3199 3200 3201 3202 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3195 def update!(**args) @inputs = args[:inputs] if args.key?(:inputs) @name = args[:name] if args.key?(:name) @output_infos = args[:output_infos] if args.key?(:output_infos) @stage_name = args[:stage_name] if args.key?(:stage_name) @system_name = args[:system_name] if args.key?(:system_name) @user_fn = args[:user_fn] if args.key?(:user_fn) end |