Package org.mlflow.api.proto
Interface Service.GetTraceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.GetTrace,Service.GetTrace.Builder
- Enclosing class:
- Service
public static interface Service.GetTraceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAllowPartial()Whether to allow partial traces.java.lang.StringgetTraceId()ID of the trace to fetch.com.google.protobuf.ByteStringgetTraceIdBytes()ID of the trace to fetch.booleanhasAllowPartial()Whether to allow partial traces.booleanhasTraceId()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 [(.mlflow.validate_required) = true];- 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 [(.mlflow.validate_required) = true];- Returns:
- The traceId.
-
getTraceIdBytes
com.google.protobuf.ByteString getTraceIdBytes()
ID of the trace to fetch. Must be provided.
optional string trace_id = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for traceId.
-
hasAllowPartial
boolean hasAllowPartial()
Whether to allow partial traces. Default to False.
optional bool allow_partial = 2 [default = false];- Returns:
- Whether the allowPartial field is set.
-
getAllowPartial
boolean getAllowPartial()
Whether to allow partial traces. Default to False.
optional bool allow_partial = 2 [default = false];- Returns:
- The allowPartial.
-
-