Package com.google.cloud.aiplatform.v1
Interface Measurement.MetricOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Measurement.Metric
,Measurement.Metric.Builder
- Enclosing class:
- Measurement
public static interface Measurement.MetricOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMetricId()
Output only.com.google.protobuf.ByteString
getMetricIdBytes()
Output only.double
getValue()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMetricId
String getMetricId()
Output only. The ID of the Metric. The Metric should be defined in [StudySpec's Metrics][google.cloud.aiplatform.v1.StudySpec.metrics].
string metric_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The metricId.
-
getMetricIdBytes
com.google.protobuf.ByteString getMetricIdBytes()
Output only. The ID of the Metric. The Metric should be defined in [StudySpec's Metrics][google.cloud.aiplatform.v1.StudySpec.metrics].
string metric_id = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for metricId.
-
getValue
double getValue()
Output only. The value for this metric.
double value = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The value.
-
-