Package org.mlflow.api.proto
Interface Service.LogModelOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.LogModel,Service.LogModel.Builder
- Enclosing class:
- Service
public static interface Service.LogModelOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description java.lang.StringgetModelJson()MLmodel file in json format.com.google.protobuf.ByteStringgetModelJsonBytes()MLmodel file in json format.java.lang.StringgetRunId()ID of the run to log undercom.google.protobuf.ByteStringgetRunIdBytes()ID of the run to log underbooleanhasModelJson()MLmodel file in json format.booleanhasRunId()ID of the run to log underMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasRunId
boolean hasRunId()ID of the run to log under
optional string run_id = 1; -
getRunId
java.lang.String getRunId()ID of the run to log under
optional string run_id = 1; -
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()ID of the run to log under
optional string run_id = 1; -
hasModelJson
boolean hasModelJson()MLmodel file in json format.
optional string model_json = 2; -
getModelJson
java.lang.String getModelJson()MLmodel file in json format.
optional string model_json = 2; -
getModelJsonBytes
com.google.protobuf.ByteString getModelJsonBytes()MLmodel file in json format.
optional string model_json = 2;
-