Package org.mlflow.api.proto
Interface Service.LinkTracesToRunOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.LinkTracesToRun
,Service.LinkTracesToRun.Builder
- Enclosing class:
- Service
public static interface Service.LinkTracesToRunOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getRunId()
ID of the run to link the traces to.com.google.protobuf.ByteString
getRunIdBytes()
ID of the run to link the traces to.java.lang.String
getTraceIds(int index)
IDs of the traces to link to the run.com.google.protobuf.ByteString
getTraceIdsBytes(int index)
IDs of the traces to link to the run.int
getTraceIdsCount()
IDs of the traces to link to the run.java.util.List<java.lang.String>
getTraceIdsList()
IDs of the traces to link to the run.boolean
hasRunId()
ID of the run to link the traces to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTraceIdsList
java.util.List<java.lang.String> getTraceIdsList()
IDs of the traces to link to the run. The maximum number of trace IDs that can be linked in a single request is 100.
repeated string trace_ids = 1;
- Returns:
- A list containing the traceIds.
-
getTraceIdsCount
int getTraceIdsCount()
IDs of the traces to link to the run. The maximum number of trace IDs that can be linked in a single request is 100.
repeated string trace_ids = 1;
- Returns:
- The count of traceIds.
-
getTraceIds
java.lang.String getTraceIds(int index)
IDs of the traces to link to the run. The maximum number of trace IDs that can be linked in a single request is 100.
repeated string trace_ids = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The traceIds at the given index.
-
getTraceIdsBytes
com.google.protobuf.ByteString getTraceIdsBytes(int index)
IDs of the traces to link to the run. The maximum number of trace IDs that can be linked in a single request is 100.
repeated string trace_ids = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the traceIds at the given index.
-
hasRunId
boolean hasRunId()
ID of the run to link the traces to.
optional string run_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- Whether the runId field is set.
-
getRunId
java.lang.String getRunId()
ID of the run to link the traces to.
optional string run_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- The runId.
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()
ID of the run to link the traces to.
optional string run_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for runId.
-
-