Package org.mlflow.api.proto
Interface Service.DeleteLoggedModelOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.DeleteLoggedModel
,Service.DeleteLoggedModel.Builder
- Enclosing class:
- Service
public static interface Service.DeleteLoggedModelOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getModelId()
The ID of the LoggedModel to delete.com.google.protobuf.ByteString
getModelIdBytes()
The ID of the LoggedModel to delete.boolean
hasModelId()
The ID of the LoggedModel to delete.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasModelId
boolean hasModelId()
The ID of the LoggedModel to delete.
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the modelId field is set.
-
getModelId
java.lang.String getModelId()
The ID of the LoggedModel to delete.
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The modelId.
-
getModelIdBytes
com.google.protobuf.ByteString getModelIdBytes()
The ID of the LoggedModel to delete.
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for modelId.
-
-