Package flyteidl.admin
Interface NodeExecutionOuterClass.NodeExecutionMetaDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NodeExecutionOuterClass.NodeExecutionMetaData,NodeExecutionOuterClass.NodeExecutionMetaData.Builder
- Enclosing class:
- NodeExecutionOuterClass
public static interface NodeExecutionOuterClass.NodeExecutionMetaDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsDynamic()Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes.booleangetIsParentNode()Boolean flag indicating if the node has child nodes under it This can be true when a node contains a dynamic workflow which then produces child nodes.StringgetRetryGroup()Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node.com.google.protobuf.ByteStringgetRetryGroupBytes()Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node.StringgetSpecNodeId()Node id of the node in the original workflow This maps to value of WorkflowTemplate.nodes[X].idcom.google.protobuf.ByteStringgetSpecNodeIdBytes()Node id of the node in the original workflow This maps to value of WorkflowTemplate.nodes[X].id-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRetryGroup
String getRetryGroup()
Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node.
string retry_group = 1;- Returns:
- The retryGroup.
-
getRetryGroupBytes
com.google.protobuf.ByteString getRetryGroupBytes()
Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node.
string retry_group = 1;- Returns:
- The bytes for retryGroup.
-
getIsParentNode
boolean getIsParentNode()
Boolean flag indicating if the node has child nodes under it This can be true when a node contains a dynamic workflow which then produces child nodes.
bool is_parent_node = 2;- Returns:
- The isParentNode.
-
getSpecNodeId
String getSpecNodeId()
Node id of the node in the original workflow This maps to value of WorkflowTemplate.nodes[X].id
string spec_node_id = 3;- Returns:
- The specNodeId.
-
getSpecNodeIdBytes
com.google.protobuf.ByteString getSpecNodeIdBytes()
Node id of the node in the original workflow This maps to value of WorkflowTemplate.nodes[X].id
string spec_node_id = 3;- Returns:
- The bytes for specNodeId.
-
getIsDynamic
boolean getIsDynamic()
Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes. This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true.
bool is_dynamic = 4;- Returns:
- The isDynamic.
-
-