dataflow
v1b3
|
#include <pipeline_description.h>
Public Member Functions | |
PipelineDescription (const Json::Value &storage) | |
PipelineDescription (Json::Value *storage) | |
virtual | ~PipelineDescription () |
const StringPiece | GetTypeName () const |
bool | has_display_data () const |
void | clear_display_data () |
const client::JsonCppArray< DisplayData > | get_display_data () const |
client::JsonCppArray< DisplayData > | mutable_displayData () |
bool | has_execution_pipeline_stage () const |
void | clear_execution_pipeline_stage () |
const client::JsonCppArray< ExecutionStageSummary > | get_execution_pipeline_stage () const |
client::JsonCppArray< ExecutionStageSummary > | mutable_executionPipelineStage () |
bool | has_original_pipeline_transform () const |
void | clear_original_pipeline_transform () |
const client::JsonCppArray< TransformSummary > | get_original_pipeline_transform () const |
client::JsonCppArray< TransformSummary > | mutable_originalPipelineTransform () |
Static Public Member Functions | |
static PipelineDescription * | New () |
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.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'displayData
' attribute.
|
inline |
Clears the 'executionPipelineStage
' attribute.
|
inline |
Clears the 'originalPipelineTransform
' attribute.
const client::JsonCppArray<DisplayData > google_dataflow_api::PipelineDescription::get_display_data | ( | ) | const |
Get a reference to the value of the 'displayData
' attribute.
const client::JsonCppArray<ExecutionStageSummary > google_dataflow_api::PipelineDescription::get_execution_pipeline_stage | ( | ) | const |
Get a reference to the value of the 'executionPipelineStage
' attribute.
const client::JsonCppArray<TransformSummary > google_dataflow_api::PipelineDescription::get_original_pipeline_transform | ( | ) | const |
Get a reference to the value of the 'originalPipelineTransform
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'displayData
' attribute was set.
displayData
' attribute was set.
|
inline |
Determine if the 'executionPipelineStage
' attribute was set.
executionPipelineStage
' attribute was set.
|
inline |
Determine if the 'originalPipelineTransform
' attribute was set.
originalPipelineTransform
' attribute was set. client::JsonCppArray<DisplayData > google_dataflow_api::PipelineDescription::mutable_displayData | ( | ) |
Gets a reference to a mutable value of the 'displayData
' property.
Pipeline level display data.
client::JsonCppArray<ExecutionStageSummary > google_dataflow_api::PipelineDescription::mutable_executionPipelineStage | ( | ) |
Gets a reference to a mutable value of the 'executionPipelineStage
' property.
Description of each stage of execution of the pipeline.
client::JsonCppArray<TransformSummary > google_dataflow_api::PipelineDescription::mutable_originalPipelineTransform | ( | ) |
Gets a reference to a mutable value of the 'originalPipelineTransform
' property.
Description of each transform in the pipeline and collections between them.
|
static |
Creates a new default instance.