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
Modifier and TypeMethodDescriptiongetName()
The name of the Registered Model to which the model has been promoted.com.google.protobuf.ByteString
The name of the Registered Model to which the model has been promoted.The version number of the promoted model.com.google.protobuf.ByteString
The version number of the promoted model.boolean
hasName()
The name of the Registered Model to which the model has been promoted.boolean
The version number of the promoted model.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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
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
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.
-