Package org.mlflow.api.proto
Interface Service.GetTraceInfoV3OrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.GetTraceInfoV3
,Service.GetTraceInfoV3.Builder
- Enclosing class:
- Service
public static interface Service.GetTraceInfoV3OrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getTraceId()
ID of the trace to fetch.com.google.protobuf.ByteString
getTraceIdBytes()
ID of the trace to fetch.boolean
hasTraceId()
ID of the trace to fetch.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTraceId
boolean hasTraceId()
ID of the trace to fetch. Must be provided.
optional string trace_id = 1;
- Returns:
- Whether the traceId field is set.
-
getTraceId
java.lang.String getTraceId()
ID of the trace to fetch. Must be provided.
optional string trace_id = 1;
- Returns:
- The traceId.
-
getTraceIdBytes
com.google.protobuf.ByteString getTraceIdBytes()
ID of the trace to fetch. Must be provided.
optional string trace_id = 1;
- Returns:
- The bytes for traceId.
-
-