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.String
getModelJson()
MLmodel file in json format.com.google.protobuf.ByteString
getModelJsonBytes()
MLmodel file in json format.java.lang.String
getRunId()
ID of the run to log undercom.google.protobuf.ByteString
getRunIdBytes()
ID of the run to log underboolean
hasModelJson()
MLmodel file in json format.boolean
hasRunId()
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;
-