Class: Google::Apis::DataflowV1b3::ExecutionStageSummary
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::ExecutionStageSummary
 
 
- 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
Description of the composing transforms, names/ids, and input/outputs of a stage of execution. Some composing transforms and sources may have been generated by the Dataflow service during execution planning.
Instance Attribute Summary collapse
- 
  
    
      #component_source  ⇒ Array<Google::Apis::DataflowV1b3::ComponentSource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Collections produced and consumed by component transforms of this stage.
 - 
  
    
      #component_transform  ⇒ Array<Google::Apis::DataflowV1b3::ComponentTransform> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Transforms that comprise this execution stage.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dataflow service generated id for this stage.
 - 
  
    
      #input_source  ⇒ Array<Google::Apis::DataflowV1b3::StageSource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Input sources for this stage.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of tranform this stage is executing.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Dataflow service generated name for this stage.
 - 
  
    
      #output_source  ⇒ Array<Google::Apis::DataflowV1b3::StageSource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output sources for this stage.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExecutionStageSummary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ExecutionStageSummary.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExecutionStageSummary
Returns a new instance of ExecutionStageSummary
      1258 1259 1260  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1258 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#component_source ⇒ Array<Google::Apis::DataflowV1b3::ComponentSource>
Collections produced and consumed by component transforms of this stage.
Corresponds to the JSON property componentSource
      1226 1227 1228  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1226 def component_source @component_source end  | 
  
#component_transform ⇒ Array<Google::Apis::DataflowV1b3::ComponentTransform>
Transforms that comprise this execution stage.
Corresponds to the JSON property componentTransform
      1231 1232 1233  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1231 def component_transform @component_transform end  | 
  
#id ⇒ String
Dataflow service generated id for this stage.
Corresponds to the JSON property id
      1236 1237 1238  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1236 def id @id end  | 
  
#input_source ⇒ Array<Google::Apis::DataflowV1b3::StageSource>
Input sources for this stage.
Corresponds to the JSON property inputSource
      1241 1242 1243  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1241 def input_source @input_source end  | 
  
#kind ⇒ String
Type of tranform this stage is executing.
Corresponds to the JSON property kind
      1246 1247 1248  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1246 def kind @kind end  | 
  
#name ⇒ String
Dataflow service generated name for this stage.
Corresponds to the JSON property name
      1251 1252 1253  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1251 def name @name end  | 
  
#output_source ⇒ Array<Google::Apis::DataflowV1b3::StageSource>
Output sources for this stage.
Corresponds to the JSON property outputSource
      1256 1257 1258  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1256 def output_source @output_source end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1263 1264 1265 1266 1267 1268 1269 1270 1271  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1263 def update!(**args) @component_source = args[:component_source] if args.key?(:component_source) @component_transform = args[:component_transform] if args.key?(:component_transform) @id = args[:id] if args.key?(:id) @input_source = args[:input_source] if args.key?(:input_source) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @output_source = args[:output_source] if args.key?(:output_source) end  |