Class: Google::Apis::DataflowV1b3::PipelineDescription
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::PipelineDescription
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/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 interpreting Dataflow provided metrics.
Instance Attribute Summary collapse
-
#display_data ⇒ Array<Google::Apis::DataflowV1b3::DisplayData>
Pipeline level display data.
-
#execution_pipeline_stage ⇒ Array<Google::Apis::DataflowV1b3::ExecutionStageSummary>
Description of each stage of execution of the pipeline.
-
#original_pipeline_transform ⇒ Array<Google::Apis::DataflowV1b3::TransformSummary>
Description of each transform in the pipeline and collections between them.
-
#step_names_hash ⇒ String
A hash value of the submitted pipeline portable graph step names if exists.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PipelineDescription
constructor
A new instance of PipelineDescription.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PipelineDescription
Returns a new instance of PipelineDescription.
4013 4014 4015 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4013 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_data ⇒ Array<Google::Apis::DataflowV1b3::DisplayData>
Pipeline level display data.
Corresponds to the JSON property displayData
3996 3997 3998 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3996 def display_data @display_data end |
#execution_pipeline_stage ⇒ Array<Google::Apis::DataflowV1b3::ExecutionStageSummary>
Description of each stage of execution of the pipeline.
Corresponds to the JSON property executionPipelineStage
4001 4002 4003 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4001 def execution_pipeline_stage @execution_pipeline_stage end |
#original_pipeline_transform ⇒ Array<Google::Apis::DataflowV1b3::TransformSummary>
Description of each transform in the pipeline and collections between them.
Corresponds to the JSON property originalPipelineTransform
4006 4007 4008 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4006 def original_pipeline_transform @original_pipeline_transform end |
#step_names_hash ⇒ String
A hash value of the submitted pipeline portable graph step names if exists.
Corresponds to the JSON property stepNamesHash
4011 4012 4013 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4011 def step_names_hash @step_names_hash end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4018 4019 4020 4021 4022 4023 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4018 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) @step_names_hash = args[:step_names_hash] if args.key?(:step_names_hash) end |