Package com.google.cloud.dataproc.v1
Interface WorkflowNodeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkflowNode
,WorkflowNode.Builder
public interface WorkflowNodeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getError()
Output only.com.google.protobuf.ByteString
getErrorBytes()
Output only.String
getJobId()
Output only.com.google.protobuf.ByteString
getJobIdBytes()
Output only.String
getPrerequisiteStepIds(int index)
Output only.com.google.protobuf.ByteString
getPrerequisiteStepIdsBytes(int index)
Output only.int
getPrerequisiteStepIdsCount()
Output only.List<String>
getPrerequisiteStepIdsList()
Output only.WorkflowNode.NodeState
getState()
Output only.int
getStateValue()
Output only.String
getStepId()
Output only.com.google.protobuf.ByteString
getStepIdBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStepId
String getStepId()
Output only. The name of the node.
string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The stepId.
-
getStepIdBytes
com.google.protobuf.ByteString getStepIdBytes()
Output only. The name of the node.
string step_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for stepId.
-
getPrerequisiteStepIdsList
List<String> getPrerequisiteStepIdsList()
Output only. Node's prerequisite nodes.
repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the prerequisiteStepIds.
-
getPrerequisiteStepIdsCount
int getPrerequisiteStepIdsCount()
Output only. Node's prerequisite nodes.
repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of prerequisiteStepIds.
-
getPrerequisiteStepIds
String getPrerequisiteStepIds(int index)
Output only. Node's prerequisite nodes.
repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The prerequisiteStepIds at the given index.
-
getPrerequisiteStepIdsBytes
com.google.protobuf.ByteString getPrerequisiteStepIdsBytes(int index)
Output only. Node's prerequisite nodes.
repeated string prerequisite_step_ids = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the prerequisiteStepIds at the given index.
-
getJobId
String getJobId()
Output only. The job id; populated after the node enters RUNNING state.
string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The jobId.
-
getJobIdBytes
com.google.protobuf.ByteString getJobIdBytes()
Output only. The job id; populated after the node enters RUNNING state.
string job_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for jobId.
-
getStateValue
int getStateValue()
Output only. The node state.
.google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The enum numeric value on the wire for state.
-
getState
WorkflowNode.NodeState getState()
Output only. The node state.
.google.cloud.dataproc.v1.WorkflowNode.NodeState state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The state.
-
getError
String getError()
Output only. The error detail.
string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The error.
-
getErrorBytes
com.google.protobuf.ByteString getErrorBytes()
Output only. The error detail.
string error = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for error.
-
-