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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExperimentId()ID of the associated experiment.com.google.protobuf.ByteStringgetExperimentIdBytes()ID of the associated experiment.java.lang.StringgetRunName()Name of the run.com.google.protobuf.ByteStringgetRunNameBytes()Name of the run.longgetStartTime()Unix timestamp in milliseconds of when the run started.Service.RunTaggetTags(int index)Additional metadata for run.intgetTagsCount()Additional metadata for run.java.util.List<Service.RunTag>getTagsList()Additional metadata for run.Service.RunTagOrBuildergetTagsOrBuilder(int index)Additional metadata for run.java.util.List<? extends Service.RunTagOrBuilder>getTagsOrBuilderList()Additional metadata for run.java.lang.StringgetUserId()ID of the user executing the run.com.google.protobuf.ByteStringgetUserIdBytes()ID of the user executing the run.booleanhasExperimentId()ID of the associated experiment.booleanhasRunName()Name of the run.booleanhasStartTime()Unix timestamp in milliseconds of when the run started.booleanhasUserId()ID of the user executing the run.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasExperimentIdboolean hasExperimentId() ID of the associated experiment. optional string experiment_id = 1;- Returns:
- Whether the experimentId field is set.
 
 - 
getExperimentIdjava.lang.String getExperimentId() ID of the associated experiment. optional string experiment_id = 1;- Returns:
- The experimentId.
 
 - 
getExperimentIdBytescom.google.protobuf.ByteString getExperimentIdBytes() ID of the associated experiment. optional string experiment_id = 1;- Returns:
- The bytes for experimentId.
 
 - 
hasUserIdboolean 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;- Returns:
- Whether the userId field is set.
 
 - 
getUserIdjava.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;- Returns:
- The userId.
 
 - 
getUserIdBytescom.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;- Returns:
- The bytes for userId.
 
 - 
hasRunNameboolean hasRunName() Name of the run. optional string run_name = 3;- Returns:
- Whether the runName field is set.
 
 - 
getRunNamejava.lang.String getRunName() Name of the run. optional string run_name = 3;- Returns:
- The runName.
 
 - 
getRunNameBytescom.google.protobuf.ByteString getRunNameBytes() Name of the run. optional string run_name = 3;- Returns:
- The bytes for runName.
 
 - 
hasStartTimeboolean hasStartTime() Unix timestamp in milliseconds of when the run started. optional int64 start_time = 7;- Returns:
- Whether the startTime field is set.
 
 - 
getStartTimelong getStartTime() Unix timestamp in milliseconds of when the run started. optional int64 start_time = 7;- Returns:
- The startTime.
 
 - 
getTagsListjava.util.List<Service.RunTag> getTagsList() Additional metadata for run. repeated .mlflow.RunTag tags = 9;
 - 
getTagsService.RunTag getTags(int index) Additional metadata for run. repeated .mlflow.RunTag tags = 9;
 - 
getTagsCountint getTagsCount() Additional metadata for run. repeated .mlflow.RunTag tags = 9;
 - 
getTagsOrBuilderListjava.util.List<? extends Service.RunTagOrBuilder> getTagsOrBuilderList() Additional metadata for run. repeated .mlflow.RunTag tags = 9;
 - 
getTagsOrBuilderService.RunTagOrBuilder getTagsOrBuilder(int index) Additional metadata for run. repeated .mlflow.RunTag tags = 9;
 
- 
 
-