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
All Methods Instance Methods Abstract Methods 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 Detail
-
hasRunId
boolean hasRunId()
ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
- Returns:
- Whether the runId field is set.
-
getRunId
java.lang.String getRunId()
ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
- Returns:
- The runId.
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()
ID of the run from which to fetch metric values. Must be provided.
optional string run_id = 3;
- Returns:
- The bytes for runId.
-
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;
- Returns:
- Whether the runUuid field is set.
-
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;
- Returns:
- The runUuid.
-
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;
- Returns:
- The bytes for runUuid.
-
hasMetricKey
boolean hasMetricKey()
Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
- Returns:
- Whether the metricKey field is set.
-
getMetricKey
java.lang.String getMetricKey()
Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
- Returns:
- The metricKey.
-
getMetricKeyBytes
com.google.protobuf.ByteString getMetricKeyBytes()
Name of the metric.
optional string metric_key = 2 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for metricKey.
-
-