Package org.mlflow.api.proto
Interface Service.GetMetricHistoryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.GetMetricHistory
,Service.GetMetricHistory.Builder
- Enclosing class:
- Service
public static interface Service.GetMetricHistoryOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.String
getMetricKey()
Name of the metric.com.google.protobuf.ByteString
getMetricKeyBytes()
Name of the metric.java.lang.String
getRunId()
ID of the run from which to fetch metric values.com.google.protobuf.ByteString
getRunIdBytes()
ID of the run from which to fetch metric values.java.lang.String
getRunUuid()
[Deprecated, use run_id instead] ID of the run from which to fetch metric values.com.google.protobuf.ByteString
getRunUuidBytes()
[Deprecated, use run_id instead] ID of the run from which to fetch metric values.boolean
hasMetricKey()
Name of the metric.boolean
hasRunId()
ID of the run from which to fetch metric values.boolean
hasRunUuid()
[Deprecated, use run_id instead] ID of the run from which to fetch metric values.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasRunId
boolean hasRunId()ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
-
getRunId
java.lang.String getRunId()ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
-
hasRunUuid
boolean hasRunUuid()[Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
-
getRunUuid
java.lang.String getRunUuid()[Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
-
getRunUuidBytes
com.google.protobuf.ByteString getRunUuidBytes()[Deprecated, use run_id instead] ID of the run from which to fetch metric values. This field will be removed in a future MLflow version.
optional string run_uuid = 1;
-
hasMetricKey
boolean hasMetricKey()Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
-
getMetricKey
java.lang.String getMetricKey()Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
-
getMetricKeyBytes
com.google.protobuf.ByteString getMetricKeyBytes()Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
-