Package org.mlflow.api.proto
Interface Service.CreateRunOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.CreateRun
,Service.CreateRun.Builder
- Enclosing class:
- Service
public static interface Service.CreateRunOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.String
getExperimentId()
ID of the associated experiment.com.google.protobuf.ByteString
getExperimentIdBytes()
ID of the associated experiment.long
getStartTime()
Unix timestamp in milliseconds of when the run started.Service.RunTag
getTags(int index)
Additional metadata for run.int
getTagsCount()
Additional metadata for run.java.util.List<Service.RunTag>
getTagsList()
Additional metadata for run.Service.RunTagOrBuilder
getTagsOrBuilder(int index)
Additional metadata for run.java.util.List<? extends Service.RunTagOrBuilder>
getTagsOrBuilderList()
Additional metadata for run.java.lang.String
getUserId()
ID of the user executing the run.com.google.protobuf.ByteString
getUserIdBytes()
ID of the user executing the run.boolean
hasExperimentId()
ID of the associated experiment.boolean
hasStartTime()
Unix timestamp in milliseconds of when the run started.boolean
hasUserId()
ID of the user executing the run.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasExperimentId
boolean hasExperimentId()ID of the associated experiment.
optional string experiment_id = 1;
-
getExperimentId
java.lang.String getExperimentId()ID of the associated experiment.
optional string experiment_id = 1;
-
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()ID of the associated experiment.
optional string experiment_id = 1;
-
hasUserId
boolean hasUserId()ID of the user executing the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 2;
-
getUserId
java.lang.String getUserId()ID of the user executing the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 2;
-
getUserIdBytes
com.google.protobuf.ByteString getUserIdBytes()ID of the user executing the run. This field is deprecated as of MLflow 1.0, and will be removed in a future MLflow release. Use 'mlflow.user' tag instead.
optional string user_id = 2;
-
hasStartTime
boolean hasStartTime()Unix timestamp in milliseconds of when the run started.
optional int64 start_time = 7;
-
getStartTime
long getStartTime()Unix timestamp in milliseconds of when the run started.
optional int64 start_time = 7;
-
getTagsList
java.util.List<Service.RunTag> getTagsList()Additional metadata for run.
repeated .mlflow.RunTag tags = 9;
-
getTags
Additional metadata for run.
repeated .mlflow.RunTag tags = 9;
-
getTagsCount
int getTagsCount()Additional metadata for run.
repeated .mlflow.RunTag tags = 9;
-
getTagsOrBuilderList
java.util.List<? extends Service.RunTagOrBuilder> getTagsOrBuilderList()Additional metadata for run.
repeated .mlflow.RunTag tags = 9;
-
getTagsOrBuilder
Additional metadata for run.
repeated .mlflow.RunTag tags = 9;
-