Package flyteidl.admin
Interface ExecutionOuterClass.ExecutionRecoverRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecutionOuterClass.ExecutionRecoverRequest,ExecutionOuterClass.ExecutionRecoverRequest.Builder
- Enclosing class:
- ExecutionOuterClass
public static interface ExecutionOuterClass.ExecutionRecoverRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IdentifierOuterClass.WorkflowExecutionIdentifiergetId()Identifier of the workflow execution to recover.IdentifierOuterClass.WorkflowExecutionIdentifierOrBuildergetIdOrBuilder()Identifier of the workflow execution to recover.ExecutionOuterClass.ExecutionMetadatagetMetadata()Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution.ExecutionOuterClass.ExecutionMetadataOrBuildergetMetadataOrBuilder()Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution.StringgetName()User provided value for the recovered execution.com.google.protobuf.ByteStringgetNameBytes()User provided value for the recovered execution.booleanhasId()Identifier of the workflow execution to recover.booleanhasMetadata()Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery 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()
Identifier of the workflow execution to recover.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;- Returns:
- Whether the id field is set.
-
getId
IdentifierOuterClass.WorkflowExecutionIdentifier getId()
Identifier of the workflow execution to recover.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;- Returns:
- The id.
-
getIdOrBuilder
IdentifierOuterClass.WorkflowExecutionIdentifierOrBuilder getIdOrBuilder()
Identifier of the workflow execution to recover.
.flyteidl.core.WorkflowExecutionIdentifier id = 1;
-
getName
String getName()
User provided value for the recovered execution. If none is provided the system will generate a unique string. +optional
string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
User provided value for the recovered execution. If none is provided the system will generate a unique string. +optional
string name = 2;- Returns:
- The bytes for name.
-
hasMetadata
boolean hasMetadata()
Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution.
.flyteidl.admin.ExecutionMetadata metadata = 3;- Returns:
- Whether the metadata field is set.
-
getMetadata
ExecutionOuterClass.ExecutionMetadata getMetadata()
Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution.
.flyteidl.admin.ExecutionMetadata metadata = 3;- Returns:
- The metadata.
-
getMetadataOrBuilder
ExecutionOuterClass.ExecutionMetadataOrBuilder getMetadataOrBuilder()
Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution.
.flyteidl.admin.ExecutionMetadata metadata = 3;
-
-