Package org.mlflow.api.proto
Interface Service.DeleteTracesV3OrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 Service.DeleteTracesV3,Service.DeleteTracesV3.Builder
- Enclosing class:
 - Service
 
public static interface Service.DeleteTracesV3OrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExperimentId()ID of the associated experiment.com.google.protobuf.ByteStringgetExperimentIdBytes()ID of the associated experiment.longgetMaxTimestampMillis()Case 1: max_timestamp_millis and max_traces must be specified for time-based deletion The maximum timestamp in milliseconds since the UNIX epoch for deleting traces.intgetMaxTraces()The maximum number of traces to delete.java.lang.StringgetRequestIds(int index)Case 2: request_ids must be specified for ID-based deletion A set of request IDs to deletecom.google.protobuf.ByteStringgetRequestIdsBytes(int index)Case 2: request_ids must be specified for ID-based deletion A set of request IDs to deleteintgetRequestIdsCount()Case 2: request_ids must be specified for ID-based deletion A set of request IDs to deletejava.util.List<java.lang.String>getRequestIdsList()Case 2: request_ids must be specified for ID-based deletion A set of request IDs to deletebooleanhasExperimentId()ID of the associated experiment.booleanhasMaxTimestampMillis()Case 1: max_timestamp_millis and max_traces must be specified for time-based deletion The maximum timestamp in milliseconds since the UNIX epoch for deleting traces.booleanhasMaxTraces()The maximum number of traces to delete.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasExperimentId
boolean hasExperimentId()
ID of the associated experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - Whether the experimentId field is set.
 
 
- 
getExperimentId
java.lang.String getExperimentId()
ID of the associated experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - The experimentId.
 
 
- 
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()
ID of the associated experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - The bytes for experimentId.
 
 
- 
hasMaxTimestampMillis
boolean hasMaxTimestampMillis()
Case 1: max_timestamp_millis and max_traces must be specified for time-based deletion The maximum timestamp in milliseconds since the UNIX epoch for deleting traces.
optional int64 max_timestamp_millis = 2;- Returns:
 - Whether the maxTimestampMillis field is set.
 
 
- 
getMaxTimestampMillis
long getMaxTimestampMillis()
Case 1: max_timestamp_millis and max_traces must be specified for time-based deletion The maximum timestamp in milliseconds since the UNIX epoch for deleting traces.
optional int64 max_timestamp_millis = 2;- Returns:
 - The maxTimestampMillis.
 
 
- 
hasMaxTraces
boolean hasMaxTraces()
The maximum number of traces to delete.
optional int32 max_traces = 3;- Returns:
 - Whether the maxTraces field is set.
 
 
- 
getMaxTraces
int getMaxTraces()
The maximum number of traces to delete.
optional int32 max_traces = 3;- Returns:
 - The maxTraces.
 
 
- 
getRequestIdsList
java.util.List<java.lang.String> getRequestIdsList()
Case 2: request_ids must be specified for ID-based deletion A set of request IDs to delete
repeated string request_ids = 4;- Returns:
 - A list containing the requestIds.
 
 
- 
getRequestIdsCount
int getRequestIdsCount()
Case 2: request_ids must be specified for ID-based deletion A set of request IDs to delete
repeated string request_ids = 4;- Returns:
 - The count of requestIds.
 
 
- 
getRequestIds
java.lang.String getRequestIds(int index)
Case 2: request_ids must be specified for ID-based deletion A set of request IDs to delete
repeated string request_ids = 4;- Parameters:
 index- The index of the element to return.- Returns:
 - The requestIds at the given index.
 
 
- 
getRequestIdsBytes
com.google.protobuf.ByteString getRequestIdsBytes(int index)
Case 2: request_ids must be specified for ID-based deletion A set of request IDs to delete
repeated string request_ids = 4;- Parameters:
 index- The index of the value to return.- Returns:
 - The bytes of the requestIds at the given index.
 
 
 - 
 
 -