dataflow
v1b3
|
#include <step.h>
Public Member Functions | |
Step (const Json::Value &storage) | |
Step (Json::Value *storage) | |
virtual | ~Step () |
const StringPiece | GetTypeName () const |
bool | has_kind () const |
void | clear_kind () |
const StringPiece | get_kind () const |
void | set_kind (const StringPiece &value) |
bool | has_name () const |
void | clear_name () |
const StringPiece | get_name () const |
void | set_name (const StringPiece &value) |
bool | has_properties () const |
void | clear_properties () |
const client::JsonCppAssociativeArray< client::JsonCppData > | get_properties () const |
client::JsonCppAssociativeArray< client::JsonCppData > | mutable_properties () |
Static Public Member Functions | |
static Step * | New () |
Defines a particular step within a Cloud Dataflow job.
A job consists of multiple steps, each of which performs some specific operation as part of the overall job. Data is typically passed from one step to another as part of the job.
Here's an example of a sequence of steps which together implement a Map-Reduce job:
|
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 'kind
' attribute.
|
inline |
Clears the 'name
' attribute.
|
inline |
Clears the 'properties
' attribute.
|
inline |
Get the value of the 'kind
' attribute.
|
inline |
Get the value of the 'name
' attribute.
|
inline |
Get a reference to the value of the 'properties
' attribute.
|
inline |
Returns a string denoting the type of this data object.
google_dataflow_api::Step
|
inline |
Determine if the 'kind
' attribute was set.
kind
' attribute was set.
|
inline |
Determine if the 'name
' attribute was set.
name
' attribute was set.
|
inline |
Determine if the 'properties
' attribute was set.
properties
' attribute was set.
|
inline |
Gets a reference to a mutable value of the 'properties
' property.
Named properties associated with the step. Each kind of predefined step has its own required set of properties. Must be provided on Create. Only retrieved with JOB_VIEW_ALL.
|
static |
Creates a new default instance.
|
inline |
Change the 'kind
' attribute.
The kind of step in the Cloud Dataflow job.
[in] | value | The new value. |
|
inline |
Change the 'name
' attribute.
The name that identifies the step. This must be unique for each step with respect to all other steps in the Cloud Dataflow job.
[in] | value | The new value. |