Package flyteidl.admin
Interface ExecutionOuterClass.ExecutionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecutionOuterClass.Execution,ExecutionOuterClass.Execution.Builder
- Enclosing class:
- ExecutionOuterClass
public static interface ExecutionOuterClass.ExecutionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionOuterClass.ExecutionClosuregetClosure()Execution results.ExecutionOuterClass.ExecutionClosureOrBuildergetClosureOrBuilder()Execution results.IdentifierOuterClass.WorkflowExecutionIdentifiergetId()Unique identifier of the workflow execution.IdentifierOuterClass.WorkflowExecutionIdentifierOrBuildergetIdOrBuilder()Unique identifier of the workflow execution.ExecutionOuterClass.ExecutionSpecgetSpec()User-provided configuration and inputs for launching the execution.ExecutionOuterClass.ExecutionSpecOrBuildergetSpecOrBuilder()User-provided configuration and inputs for launching the execution.booleanhasClosure()Execution results.booleanhasId()Unique identifier of the workflow execution.booleanhasSpec()User-provided configuration and inputs for launching the 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 of the workflow execution.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;- Returns:
- Whether the id field is set.
-
getId
IdentifierOuterClass.WorkflowExecutionIdentifier getId()
Unique identifier of the workflow execution.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;- Returns:
- The id.
-
getIdOrBuilder
IdentifierOuterClass.WorkflowExecutionIdentifierOrBuilder getIdOrBuilder()
Unique identifier of the workflow execution.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;
-
hasSpec
boolean hasSpec()
User-provided configuration and inputs for launching the execution.
.flyteidl.admin.ExecutionSpec spec = 2;- Returns:
- Whether the spec field is set.
-
getSpec
ExecutionOuterClass.ExecutionSpec getSpec()
User-provided configuration and inputs for launching the execution.
.flyteidl.admin.ExecutionSpec spec = 2;- Returns:
- The spec.
-
getSpecOrBuilder
ExecutionOuterClass.ExecutionSpecOrBuilder getSpecOrBuilder()
User-provided configuration and inputs for launching the execution.
.flyteidl.admin.ExecutionSpec spec = 2;
-
hasClosure
boolean hasClosure()
Execution results.
.flyteidl.admin.ExecutionClosure closure = 3;- Returns:
- Whether the closure field is set.
-
getClosure
ExecutionOuterClass.ExecutionClosure getClosure()
Execution results.
.flyteidl.admin.ExecutionClosure closure = 3;- Returns:
- The closure.
-
getClosureOrBuilder
ExecutionOuterClass.ExecutionClosureOrBuilder getClosureOrBuilder()
Execution results.
.flyteidl.admin.ExecutionClosure closure = 3;
-
-