Package org.mlflow.api.proto
Interface Service.LoggedModelInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.LoggedModelInfo
,Service.LoggedModelInfo.Builder
- Enclosing class:
- Service
public static interface Service.LoggedModelInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArtifactUri()
URI of the directory where model artifacts are stored.com.google.protobuf.ByteString
getArtifactUriBytes()
URI of the directory where model artifacts are stored.long
getCreationTimestampMs()
Timestamp when the model was created, in milliseconds since the UNIX epoch.long
getCreatorId()
The ID of the user or principal that created the model.java.lang.String
getExperimentId()
The ID of the experiment that owns the model.com.google.protobuf.ByteString
getExperimentIdBytes()
The ID of the experiment that owns the model.long
getLastUpdatedTimestampMs()
Timestamp when the model was last updated, in milliseconds since the UNIX epochjava.lang.String
getModelId()
A unique identifier for the model.com.google.protobuf.ByteString
getModelIdBytes()
A unique identifier for the model.java.lang.String
getModelType()
The type of model, such as "Agent", "Classifier", "LLM".com.google.protobuf.ByteString
getModelTypeBytes()
The type of model, such as "Agent", "Classifier", "LLM".java.lang.String
getName()
Name of the model.com.google.protobuf.ByteString
getNameBytes()
Name of the model.Service.LoggedModelRegistrationInfo
getRegistrations(int index)
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.int
getRegistrationsCount()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.java.util.List<Service.LoggedModelRegistrationInfo>
getRegistrationsList()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.Service.LoggedModelRegistrationInfoOrBuilder
getRegistrationsOrBuilder(int index)
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.java.util.List<? extends Service.LoggedModelRegistrationInfoOrBuilder>
getRegistrationsOrBuilderList()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.java.lang.String
getSourceRunId()
Run ID of the run that created the model.com.google.protobuf.ByteString
getSourceRunIdBytes()
Run ID of the run that created the model.Service.LoggedModelStatus
getStatus()
Whether or not the model is ready for use.java.lang.String
getStatusMessage()
Details on the current status.com.google.protobuf.ByteString
getStatusMessageBytes()
Details on the current status.Service.LoggedModelTag
getTags(int index)
Mutable String key-value pairs set on the model.int
getTagsCount()
Mutable String key-value pairs set on the model.java.util.List<Service.LoggedModelTag>
getTagsList()
Mutable String key-value pairs set on the model.Service.LoggedModelTagOrBuilder
getTagsOrBuilder(int index)
Mutable String key-value pairs set on the model.java.util.List<? extends Service.LoggedModelTagOrBuilder>
getTagsOrBuilderList()
Mutable String key-value pairs set on the model.boolean
hasArtifactUri()
URI of the directory where model artifacts are stored.boolean
hasCreationTimestampMs()
Timestamp when the model was created, in milliseconds since the UNIX epoch.boolean
hasCreatorId()
The ID of the user or principal that created the model.boolean
hasExperimentId()
The ID of the experiment that owns the model.boolean
hasLastUpdatedTimestampMs()
Timestamp when the model was last updated, in milliseconds since the UNIX epochboolean
hasModelId()
A unique identifier for the model.boolean
hasModelType()
The type of model, such as "Agent", "Classifier", "LLM".boolean
hasName()
Name of the model.boolean
hasSourceRunId()
Run ID of the run that created the model.boolean
hasStatus()
Whether or not the model is ready for use.boolean
hasStatusMessage()
Details on the current status.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasModelId
boolean hasModelId()
A unique identifier for the model.
optional string model_id = 1;
- Returns:
- Whether the modelId field is set.
-
getModelId
java.lang.String getModelId()
A unique identifier for the model.
optional string model_id = 1;
- Returns:
- The modelId.
-
getModelIdBytes
com.google.protobuf.ByteString getModelIdBytes()
A unique identifier for the model.
optional string model_id = 1;
- Returns:
- The bytes for modelId.
-
hasExperimentId
boolean hasExperimentId()
The ID of the experiment that owns the model.
optional string experiment_id = 2;
- Returns:
- Whether the experimentId field is set.
-
getExperimentId
java.lang.String getExperimentId()
The ID of the experiment that owns the model.
optional string experiment_id = 2;
- Returns:
- The experimentId.
-
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()
The ID of the experiment that owns the model.
optional string experiment_id = 2;
- Returns:
- The bytes for experimentId.
-
hasName
boolean hasName()
Name of the model.
optional string name = 3;
- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
Name of the model.
optional string name = 3;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the model.
optional string name = 3;
- Returns:
- The bytes for name.
-
hasCreationTimestampMs
boolean hasCreationTimestampMs()
Timestamp when the model was created, in milliseconds since the UNIX epoch.
optional int64 creation_timestamp_ms = 4;
- Returns:
- Whether the creationTimestampMs field is set.
-
getCreationTimestampMs
long getCreationTimestampMs()
Timestamp when the model was created, in milliseconds since the UNIX epoch.
optional int64 creation_timestamp_ms = 4;
- Returns:
- The creationTimestampMs.
-
hasLastUpdatedTimestampMs
boolean hasLastUpdatedTimestampMs()
Timestamp when the model was last updated, in milliseconds since the UNIX epoch
optional int64 last_updated_timestamp_ms = 5;
- Returns:
- Whether the lastUpdatedTimestampMs field is set.
-
getLastUpdatedTimestampMs
long getLastUpdatedTimestampMs()
Timestamp when the model was last updated, in milliseconds since the UNIX epoch
optional int64 last_updated_timestamp_ms = 5;
- Returns:
- The lastUpdatedTimestampMs.
-
hasArtifactUri
boolean hasArtifactUri()
URI of the directory where model artifacts are stored.
optional string artifact_uri = 6;
- Returns:
- Whether the artifactUri field is set.
-
getArtifactUri
java.lang.String getArtifactUri()
URI of the directory where model artifacts are stored.
optional string artifact_uri = 6;
- Returns:
- The artifactUri.
-
getArtifactUriBytes
com.google.protobuf.ByteString getArtifactUriBytes()
URI of the directory where model artifacts are stored.
optional string artifact_uri = 6;
- Returns:
- The bytes for artifactUri.
-
hasStatus
boolean hasStatus()
Whether or not the model is ready for use.
optional .mlflow.LoggedModelStatus status = 7;
- Returns:
- Whether the status field is set.
-
getStatus
Service.LoggedModelStatus getStatus()
Whether or not the model is ready for use.
optional .mlflow.LoggedModelStatus status = 7;
- Returns:
- The status.
-
hasCreatorId
boolean hasCreatorId()
The ID of the user or principal that created the model.
optional int64 creator_id = 8;
- Returns:
- Whether the creatorId field is set.
-
getCreatorId
long getCreatorId()
The ID of the user or principal that created the model.
optional int64 creator_id = 8;
- Returns:
- The creatorId.
-
hasModelType
boolean hasModelType()
The type of model, such as "Agent", "Classifier", "LLM".
optional string model_type = 9;
- Returns:
- Whether the modelType field is set.
-
getModelType
java.lang.String getModelType()
The type of model, such as "Agent", "Classifier", "LLM".
optional string model_type = 9;
- Returns:
- The modelType.
-
getModelTypeBytes
com.google.protobuf.ByteString getModelTypeBytes()
The type of model, such as "Agent", "Classifier", "LLM".
optional string model_type = 9;
- Returns:
- The bytes for modelType.
-
hasSourceRunId
boolean hasSourceRunId()
Run ID of the run that created the model.
optional string source_run_id = 10;
- Returns:
- Whether the sourceRunId field is set.
-
getSourceRunId
java.lang.String getSourceRunId()
Run ID of the run that created the model.
optional string source_run_id = 10;
- Returns:
- The sourceRunId.
-
getSourceRunIdBytes
com.google.protobuf.ByteString getSourceRunIdBytes()
Run ID of the run that created the model.
optional string source_run_id = 10;
- Returns:
- The bytes for sourceRunId.
-
hasStatusMessage
boolean hasStatusMessage()
Details on the current status.
optional string status_message = 11;
- Returns:
- Whether the statusMessage field is set.
-
getStatusMessage
java.lang.String getStatusMessage()
Details on the current status.
optional string status_message = 11;
- Returns:
- The statusMessage.
-
getStatusMessageBytes
com.google.protobuf.ByteString getStatusMessageBytes()
Details on the current status.
optional string status_message = 11;
- Returns:
- The bytes for statusMessage.
-
getTagsList
java.util.List<Service.LoggedModelTag> getTagsList()
Mutable String key-value pairs set on the model.
repeated .mlflow.LoggedModelTag tags = 12;
-
getTags
Service.LoggedModelTag getTags(int index)
Mutable String key-value pairs set on the model.
repeated .mlflow.LoggedModelTag tags = 12;
-
getTagsCount
int getTagsCount()
Mutable String key-value pairs set on the model.
repeated .mlflow.LoggedModelTag tags = 12;
-
getTagsOrBuilderList
java.util.List<? extends Service.LoggedModelTagOrBuilder> getTagsOrBuilderList()
Mutable String key-value pairs set on the model.
repeated .mlflow.LoggedModelTag tags = 12;
-
getTagsOrBuilder
Service.LoggedModelTagOrBuilder getTagsOrBuilder(int index)
Mutable String key-value pairs set on the model.
repeated .mlflow.LoggedModelTag tags = 12;
-
getRegistrationsList
java.util.List<Service.LoggedModelRegistrationInfo> getRegistrationsList()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.
repeated .mlflow.LoggedModelRegistrationInfo registrations = 13;
-
getRegistrations
Service.LoggedModelRegistrationInfo getRegistrations(int index)
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.
repeated .mlflow.LoggedModelRegistrationInfo registrations = 13;
-
getRegistrationsCount
int getRegistrationsCount()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.
repeated .mlflow.LoggedModelRegistrationInfo registrations = 13;
-
getRegistrationsOrBuilderList
java.util.List<? extends Service.LoggedModelRegistrationInfoOrBuilder> getRegistrationsOrBuilderList()
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.
repeated .mlflow.LoggedModelRegistrationInfo registrations = 13;
-
getRegistrationsOrBuilder
Service.LoggedModelRegistrationInfoOrBuilder getRegistrationsOrBuilder(int index)
If the model has been promoted to the Model Registry, this field includes information like the Registered Model name, Model Version number, etc.
repeated .mlflow.LoggedModelRegistrationInfo registrations = 13;
-
-