Package flyteidl.admin
Interface TaskExecutionOuterClass.TaskExecutionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TaskExecutionOuterClass.TaskExecution,TaskExecutionOuterClass.TaskExecution.Builder
- Enclosing class:
- TaskExecutionOuterClass
public static interface TaskExecutionOuterClass.TaskExecutionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskExecutionOuterClass.TaskExecutionClosuregetClosure()Task execution details and results.TaskExecutionOuterClass.TaskExecutionClosureOrBuildergetClosureOrBuilder()Task execution details and results.IdentifierOuterClass.TaskExecutionIdentifiergetId()Unique identifier for the task execution.IdentifierOuterClass.TaskExecutionIdentifierOrBuildergetIdOrBuilder()Unique identifier for the task execution.StringgetInputUri()Path to remote data store where input blob is stored.com.google.protobuf.ByteStringgetInputUriBytes()Path to remote data store where input blob is stored.booleangetIsParent()Whether this task spawned nodes.booleanhasClosure()Task execution details and results.booleanhasId()Unique identifier for the task execution.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasId
boolean hasId()
Unique identifier for the task execution.
.flyteidl.core.TaskExecutionIdentifier id = 1;- Returns:
- Whether the id field is set.
-
getId
IdentifierOuterClass.TaskExecutionIdentifier getId()
Unique identifier for the task execution.
.flyteidl.core.TaskExecutionIdentifier id = 1;- Returns:
- The id.
-
getIdOrBuilder
IdentifierOuterClass.TaskExecutionIdentifierOrBuilder getIdOrBuilder()
Unique identifier for the task execution.
.flyteidl.core.TaskExecutionIdentifier id = 1;
-
getInputUri
String getInputUri()
Path to remote data store where input blob is stored.
string input_uri = 2;- Returns:
- The inputUri.
-
getInputUriBytes
com.google.protobuf.ByteString getInputUriBytes()
Path to remote data store where input blob is stored.
string input_uri = 2;- Returns:
- The bytes for inputUri.
-
hasClosure
boolean hasClosure()
Task execution details and results.
.flyteidl.admin.TaskExecutionClosure closure = 3;- Returns:
- Whether the closure field is set.
-
getClosure
TaskExecutionOuterClass.TaskExecutionClosure getClosure()
Task execution details and results.
.flyteidl.admin.TaskExecutionClosure closure = 3;- Returns:
- The closure.
-
getClosureOrBuilder
TaskExecutionOuterClass.TaskExecutionClosureOrBuilder getClosureOrBuilder()
Task execution details and results.
.flyteidl.admin.TaskExecutionClosure closure = 3;
-
getIsParent
boolean getIsParent()
Whether this task spawned nodes.
bool is_parent = 4;- Returns:
- The isParent.
-
-