Package org.mlflow.api.proto
Interface Jobs.JobStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Jobs.JobState,Jobs.JobState.Builder
- Enclosing class:
- Jobs
public static interface Jobs.JobStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsMetadata(java.lang.String key)Additional metadata as key-value pairs.java.lang.StringgetErrorMessage()Error message if the job failed.com.google.protobuf.ByteStringgetErrorMessageBytes()Error message if the job failed.java.util.Map<java.lang.String,java.lang.String>getMetadata()Deprecated.intgetMetadataCount()Additional metadata as key-value pairs.java.util.Map<java.lang.String,java.lang.String>getMetadataMap()Additional metadata as key-value pairs.java.lang.StringgetMetadataOrDefault(java.lang.String key, java.lang.String defaultValue)Additional metadata as key-value pairs.java.lang.StringgetMetadataOrThrow(java.lang.String key)Additional metadata as key-value pairs.Jobs.JobStatusgetStatus()Current status of the job.booleanhasErrorMessage()Error message if the job failed.booleanhasStatus()Current status of the job.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStatus
boolean hasStatus()
Current status of the job.
optional .mlflow.JobStatus status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Jobs.JobStatus getStatus()
Current status of the job.
optional .mlflow.JobStatus status = 1;- Returns:
- The status.
-
hasErrorMessage
boolean hasErrorMessage()
Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- Whether the errorMessage field is set.
-
getErrorMessage
java.lang.String getErrorMessage()
Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()
Error message if the job failed. Only set when status is JOB_STATUS_FAILED.
optional string error_message = 2;- Returns:
- The bytes for errorMessage.
-
getMetadataCount
int getMetadataCount()
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-
containsMetadata
boolean containsMetadata(java.lang.String key)
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-
getMetadata
@Deprecated java.util.Map<java.lang.String,java.lang.String> getMetadata()
Deprecated.UsegetMetadataMap()instead.
-
getMetadataMap
java.util.Map<java.lang.String,java.lang.String> getMetadataMap()
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-
getMetadataOrDefault
java.lang.String getMetadataOrDefault(java.lang.String key, java.lang.String defaultValue)Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-
getMetadataOrThrow
java.lang.String getMetadataOrThrow(java.lang.String key)
Additional metadata as key-value pairs. Can be used to store job-specific state information.
map<string, string> metadata = 3;
-
-