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
All Methods Instance Methods Abstract Methods 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 under- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasRunId
boolean hasRunId()
ID of the run to log under
optional string run_id = 1;- Returns:
 - Whether the runId field is set.
 
 
- 
getRunId
java.lang.String getRunId()
ID of the run to log under
optional string run_id = 1;- Returns:
 - The runId.
 
 
- 
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()
ID of the run to log under
optional string run_id = 1;- Returns:
 - The bytes for runId.
 
 
- 
hasModelJson
boolean hasModelJson()
MLmodel file in json format.
optional string model_json = 2;- Returns:
 - Whether the modelJson field is set.
 
 
- 
getModelJson
java.lang.String getModelJson()
MLmodel file in json format.
optional string model_json = 2;- Returns:
 - The modelJson.
 
 
- 
getModelJsonBytes
com.google.protobuf.ByteString getModelJsonBytes()
MLmodel file in json format.
optional string model_json = 2;- Returns:
 - The bytes for modelJson.
 
 
 - 
 
 -