Package flyteidl.core
Interface Workflow.AliasOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Workflow.Alias,Workflow.Alias.Builder
- Enclosing class:
- Workflow
public static interface Workflow.AliasOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlias()A workflow-level unique alias that downstream nodes can refer to in their input.com.google.protobuf.ByteStringgetAliasBytes()A workflow-level unique alias that downstream nodes can refer to in their input.StringgetVar()Must match one of the output variable names on a node.com.google.protobuf.ByteStringgetVarBytes()Must match one of the output variable names on a node.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVar
String getVar()
Must match one of the output variable names on a node.
string var = 1;- Returns:
- The var.
-
getVarBytes
com.google.protobuf.ByteString getVarBytes()
Must match one of the output variable names on a node.
string var = 1;- Returns:
- The bytes for var.
-
getAlias
String getAlias()
A workflow-level unique alias that downstream nodes can refer to in their input.
string alias = 2;- Returns:
- The alias.
-
getAliasBytes
com.google.protobuf.ByteString getAliasBytes()
A workflow-level unique alias that downstream nodes can refer to in their input.
string alias = 2;- Returns:
- The bytes for alias.
-
-