Package org.mlflow.api.proto
Interface Service.LoggedModelRegistrationInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.LoggedModelRegistrationInfo
,Service.LoggedModelRegistrationInfo.Builder
- Enclosing class:
- Service
public static interface Service.LoggedModelRegistrationInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
The name of the Registered Model to which the model has been promoted.com.google.protobuf.ByteString
getNameBytes()
The name of the Registered Model to which the model has been promoted.java.lang.String
getVersion()
The version number of the promoted model.com.google.protobuf.ByteString
getVersionBytes()
The version number of the promoted model.boolean
hasName()
The name of the Registered Model to which the model has been promoted.boolean
hasVersion()
The version number of the promoted model.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
The name of the Registered Model to which the model has been promoted.
optional string name = 1;
- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the Registered Model to which the model has been promoted.
optional string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the Registered Model to which the model has been promoted.
optional string name = 1;
- Returns:
- The bytes for name.
-
hasVersion
boolean hasVersion()
The version number of the promoted model.
optional string version = 2;
- Returns:
- Whether the version field is set.
-
getVersion
java.lang.String getVersion()
The version number of the promoted model.
optional string version = 2;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The version number of the promoted model.
optional string version = 2;
- Returns:
- The bytes for version.
-
-