Interface NodeExecutionOuterClass.NodeExecutionMetaDataOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getIsDynamic()
      Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes.
      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.
      String getRetryGroup()
      Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node.
      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 getSpecNodeId()
      Node id of the node in the original workflow This maps to value of WorkflowTemplate.nodes[X].id
      com.google.protobuf.ByteString getSpecNodeIdBytes()
      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.MessageLiteOrBuilder

        isInitialized
      • 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.