Class: Google::Apis::DataflowV1b3::PipelineDescription

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 descriptive representation of submitted pipeline as well as the executed form. This data is provided by the Dataflow service for ease of visualizing the pipeline and interpretting Dataflow provided metrics.

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

Returns a new instance of PipelineDescription



2928
2929
2930
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2928

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

Instance Attribute Details

#display_dataArray<Google::Apis::DataflowV1b3::DisplayData>

Pipeline level display data. Corresponds to the JSON property displayData



2916
2917
2918
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2916

def display_data
  @display_data
end

#execution_pipeline_stageArray<Google::Apis::DataflowV1b3::ExecutionStageSummary>

Description of each stage of execution of the pipeline. Corresponds to the JSON property executionPipelineStage



2921
2922
2923
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2921

def execution_pipeline_stage
  @execution_pipeline_stage
end

#original_pipeline_transformArray<Google::Apis::DataflowV1b3::TransformSummary>

Description of each transform in the pipeline and collections between them. Corresponds to the JSON property originalPipelineTransform



2926
2927
2928
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2926

def original_pipeline_transform
  @original_pipeline_transform
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2933
2934
2935
2936
2937
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2933

def update!(**args)
  @display_data = args[:display_data] if args.key?(:display_data)
  @execution_pipeline_stage = args[:execution_pipeline_stage] if args.key?(:execution_pipeline_stage)
  @original_pipeline_transform = args[:original_pipeline_transform] if args.key?(:original_pipeline_transform)
end