Class: Google::Apis::DataflowV1b3::ParallelInstruction
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::ParallelInstruction
 
- 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 operation comprising a MapTask.
Instance Attribute Summary collapse
- 
  
    
      #flatten  ⇒ Google::Apis::DataflowV1b3::FlattenInstruction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An instruction that copies its inputs (zero or more) to its (single) output. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User-provided name of this operation. 
- 
  
    
      #original_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    System-defined name for the operation in the original workflow graph. 
- 
  
    
      #outputs  ⇒ Array<Google::Apis::DataflowV1b3::InstructionOutput> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes the outputs of the instruction. 
- 
  
    
      #par_do  ⇒ Google::Apis::DataflowV1b3::ParDoInstruction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An instruction that does a ParDo operation. 
- 
  
    
      #partial_group_by_key  ⇒ Google::Apis::DataflowV1b3::PartialGroupByKeyInstruction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An instruction that does a partial group-by-key. 
- 
  
    
      #read  ⇒ Google::Apis::DataflowV1b3::ReadInstruction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An instruction that reads records. 
- 
  
    
      #system_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    System-defined name of this operation. 
- 
  
    
      #write  ⇒ Google::Apis::DataflowV1b3::WriteInstruction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An instruction that writes records. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ParallelInstruction 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ParallelInstruction. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ParallelInstruction
Returns a new instance of ParallelInstruction
| 2541 2542 2543 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2541 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#flatten ⇒ Google::Apis::DataflowV1b3::FlattenInstruction
An instruction that copies its inputs (zero or more) to its (single) output.
Corresponds to the JSON property flatten
| 2492 2493 2494 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2492 def flatten @flatten end | 
#name ⇒ String
User-provided name of this operation.
Corresponds to the JSON property name
| 2497 2498 2499 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2497 def name @name end | 
#original_name ⇒ String
System-defined name for the operation in the original workflow graph.
Corresponds to the JSON property originalName
| 2502 2503 2504 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2502 def original_name @original_name end | 
#outputs ⇒ Array<Google::Apis::DataflowV1b3::InstructionOutput>
Describes the outputs of the instruction.
Corresponds to the JSON property outputs
| 2507 2508 2509 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2507 def outputs @outputs end | 
#par_do ⇒ Google::Apis::DataflowV1b3::ParDoInstruction
An instruction that does a ParDo operation.
Takes one main input and zero or more side inputs, and produces
zero or more outputs.
Runs user code.
Corresponds to the JSON property parDo
| 2515 2516 2517 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2515 def par_do @par_do end | 
#partial_group_by_key ⇒ Google::Apis::DataflowV1b3::PartialGroupByKeyInstruction
An instruction that does a partial group-by-key.
One input and one output.
Corresponds to the JSON property partialGroupByKey
| 2521 2522 2523 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2521 def partial_group_by_key @partial_group_by_key end | 
#read ⇒ Google::Apis::DataflowV1b3::ReadInstruction
An instruction that reads records.
Takes no inputs, produces one output.
Corresponds to the JSON property read
| 2527 2528 2529 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2527 def read @read end | 
#system_name ⇒ String
System-defined name of this operation.
Unique across the workflow.
Corresponds to the JSON property systemName
| 2533 2534 2535 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2533 def system_name @system_name end | 
#write ⇒ Google::Apis::DataflowV1b3::WriteInstruction
An instruction that writes records.
Takes one input, produces no outputs.
Corresponds to the JSON property write
| 2539 2540 2541 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2539 def write @write end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2546 def update!(**args) @flatten = args[:flatten] if args.key?(:flatten) @name = args[:name] if args.key?(:name) @original_name = args[:original_name] if args.key?(:original_name) @outputs = args[:outputs] if args.key?(:outputs) @par_do = args[:par_do] if args.key?(:par_do) @partial_group_by_key = args[:partial_group_by_key] if args.key?(:partial_group_by_key) @read = args[:read] if args.key?(:read) @system_name = args[:system_name] if args.key?(:system_name) @write = args[:write] if args.key?(:write) end |