Package org.mlflow.api.proto
Interface Service.DeleteAssessmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.DeleteAssessment
,Service.DeleteAssessment.Builder
- Enclosing class:
- Service
public static interface Service.DeleteAssessmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAssessmentId()
The ID of the assessment.com.google.protobuf.ByteString
getAssessmentIdBytes()
The ID of the assessment.java.lang.String
getTraceId()
The ID of the trace.com.google.protobuf.ByteString
getTraceIdBytes()
The ID of the trace.boolean
hasAssessmentId()
The ID of the assessment.boolean
hasTraceId()
The ID of the trace.-
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()
The ID of the trace.
optional string trace_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the traceId field is set.
-
getTraceId
java.lang.String getTraceId()
The ID of the trace.
optional string trace_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The traceId.
-
getTraceIdBytes
com.google.protobuf.ByteString getTraceIdBytes()
The ID of the trace.
optional string trace_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for traceId.
-
hasAssessmentId
boolean hasAssessmentId()
The ID of the assessment.
optional string assessment_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- Whether the assessmentId field is set.
-
getAssessmentId
java.lang.String getAssessmentId()
The ID of the assessment.
optional string assessment_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- The assessmentId.
-
getAssessmentIdBytes
com.google.protobuf.ByteString getAssessmentIdBytes()
The ID of the assessment.
optional string assessment_id = 2 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for assessmentId.
-
-