Package org.mlflow.api.proto
Interface Service.ExperimentOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.Experiment,- Service.Experiment.Builder
 - Enclosing class:
- Service
 
 public static interface Service.ExperimentOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetArtifactLocation()Location where artifacts for the experiment are stored.com.google.protobuf.ByteStringgetArtifactLocationBytes()Location where artifacts for the experiment are stored.longgetCreationTime()Creation timejava.lang.StringgetExperimentId()Unique identifier for the experiment.com.google.protobuf.ByteStringgetExperimentIdBytes()Unique identifier for the experiment.longgetLastUpdateTime()Last update timejava.lang.StringgetLifecycleStage()Current life cycle stage of the experiment: "active" or "deleted".com.google.protobuf.ByteStringgetLifecycleStageBytes()Current life cycle stage of the experiment: "active" or "deleted".java.lang.StringgetName()Human readable name that identifies the experiment.com.google.protobuf.ByteStringgetNameBytes()Human readable name that identifies the experiment.Service.ExperimentTaggetTags(int index)Tags: Additional metadata key-value pairs.intgetTagsCount()Tags: Additional metadata key-value pairs.java.util.List<Service.ExperimentTag>getTagsList()Tags: Additional metadata key-value pairs.Service.ExperimentTagOrBuildergetTagsOrBuilder(int index)Tags: Additional metadata key-value pairs.java.util.List<? extends Service.ExperimentTagOrBuilder>getTagsOrBuilderList()Tags: Additional metadata key-value pairs.booleanhasArtifactLocation()Location where artifacts for the experiment are stored.booleanhasCreationTime()Creation timebooleanhasExperimentId()Unique identifier for the experiment.booleanhasLastUpdateTime()Last update timebooleanhasLifecycleStage()Current life cycle stage of the experiment: "active" or "deleted".booleanhasName()Human readable name that identifies the experiment.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasExperimentIdboolean hasExperimentId() Unique identifier for the experiment. optional string experiment_id = 1;- Returns:
- Whether the experimentId field is set.
 
 - 
getExperimentIdjava.lang.String getExperimentId() Unique identifier for the experiment. optional string experiment_id = 1;- Returns:
- The experimentId.
 
 - 
getExperimentIdBytescom.google.protobuf.ByteString getExperimentIdBytes() Unique identifier for the experiment. optional string experiment_id = 1;- Returns:
- The bytes for experimentId.
 
 - 
hasNameboolean hasName() Human readable name that identifies the experiment. optional string name = 2;- Returns:
- Whether the name field is set.
 
 - 
getNamejava.lang.String getName() Human readable name that identifies the experiment. optional string name = 2;- Returns:
- The name.
 
 - 
getNameBytescom.google.protobuf.ByteString getNameBytes() Human readable name that identifies the experiment. optional string name = 2;- Returns:
- The bytes for name.
 
 - 
hasArtifactLocationboolean hasArtifactLocation() Location where artifacts for the experiment are stored. optional string artifact_location = 3;- Returns:
- Whether the artifactLocation field is set.
 
 - 
getArtifactLocationjava.lang.String getArtifactLocation() Location where artifacts for the experiment are stored. optional string artifact_location = 3;- Returns:
- The artifactLocation.
 
 - 
getArtifactLocationBytescom.google.protobuf.ByteString getArtifactLocationBytes() Location where artifacts for the experiment are stored. optional string artifact_location = 3;- Returns:
- The bytes for artifactLocation.
 
 - 
hasLifecycleStageboolean hasLifecycleStage() Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs. optional string lifecycle_stage = 4;- Returns:
- Whether the lifecycleStage field is set.
 
 - 
getLifecycleStagejava.lang.String getLifecycleStage() Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs. optional string lifecycle_stage = 4;- Returns:
- The lifecycleStage.
 
 - 
getLifecycleStageBytescom.google.protobuf.ByteString getLifecycleStageBytes() Current life cycle stage of the experiment: "active" or "deleted". Deleted experiments are not returned by APIs. optional string lifecycle_stage = 4;- Returns:
- The bytes for lifecycleStage.
 
 - 
hasLastUpdateTimeboolean hasLastUpdateTime() Last update time optional int64 last_update_time = 5;- Returns:
- Whether the lastUpdateTime field is set.
 
 - 
getLastUpdateTimelong getLastUpdateTime() Last update time optional int64 last_update_time = 5;- Returns:
- The lastUpdateTime.
 
 - 
hasCreationTimeboolean hasCreationTime() Creation time optional int64 creation_time = 6;- Returns:
- Whether the creationTime field is set.
 
 - 
getCreationTimelong getCreationTime() Creation time optional int64 creation_time = 6;- Returns:
- The creationTime.
 
 - 
getTagsListjava.util.List<Service.ExperimentTag> getTagsList() Tags: Additional metadata key-value pairs. repeated .mlflow.ExperimentTag tags = 7;
 - 
getTagsService.ExperimentTag getTags(int index) Tags: Additional metadata key-value pairs. repeated .mlflow.ExperimentTag tags = 7;
 - 
getTagsCountint getTagsCount() Tags: Additional metadata key-value pairs. repeated .mlflow.ExperimentTag tags = 7;
 - 
getTagsOrBuilderListjava.util.List<? extends Service.ExperimentTagOrBuilder> getTagsOrBuilderList() Tags: Additional metadata key-value pairs. repeated .mlflow.ExperimentTag tags = 7;
 - 
getTagsOrBuilderService.ExperimentTagOrBuilder getTagsOrBuilder(int index) Tags: Additional metadata key-value pairs. repeated .mlflow.ExperimentTag tags = 7;
 
- 
 
-