Interface ModelRegistry.RegisteredModelOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ModelRegistry.RegisteredModel, ModelRegistry.RegisteredModel.Builder
Enclosing class:
ModelRegistry

public static interface ModelRegistry.RegisteredModelOrBuilder
extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type Method Description
    long getCreationTimestamp()
    Timestamp recorded when this ``registered_model`` was created.
    java.lang.String getDescription()
    Description of this ``registered_model``.
    com.google.protobuf.ByteString getDescriptionBytes()
    Description of this ``registered_model``.
    long getLastUpdatedTimestamp()
    Timestamp recorded when metadata for this ``registered_model`` was last updated.
    ModelRegistry.ModelVersion getLatestVersions​(int index)
    Collection of latest model versions for each stage.
    int getLatestVersionsCount()
    Collection of latest model versions for each stage.
    java.util.List<ModelRegistry.ModelVersion> getLatestVersionsList()
    Collection of latest model versions for each stage.
    ModelRegistry.ModelVersionOrBuilder getLatestVersionsOrBuilder​(int index)
    Collection of latest model versions for each stage.
    java.util.List<? extends ModelRegistry.ModelVersionOrBuilder> getLatestVersionsOrBuilderList()
    Collection of latest model versions for each stage.
    java.lang.String getName()
    Unique name for the model.
    com.google.protobuf.ByteString getNameBytes()
    Unique name for the model.
    java.lang.String getUserId()
    User that created this ``registered_model`` NOTE: this field is not currently returned.
    com.google.protobuf.ByteString getUserIdBytes()
    User that created this ``registered_model`` NOTE: this field is not currently returned.
    boolean hasCreationTimestamp()
    Timestamp recorded when this ``registered_model`` was created.
    boolean hasDescription()
    Description of this ``registered_model``.
    boolean hasLastUpdatedTimestamp()
    Timestamp recorded when metadata for this ``registered_model`` was last updated.
    boolean hasName()
    Unique name for the model.
    boolean hasUserId()
    User that created this ``registered_model`` NOTE: this field is not currently returned.

    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()
       Unique name for the model.
       
      optional string name = 1;
    • getName

      java.lang.String getName()
       Unique name for the model.
       
      optional string name = 1;
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Unique name for the model.
       
      optional string name = 1;
    • hasCreationTimestamp

      boolean hasCreationTimestamp()
       Timestamp recorded when this ``registered_model`` was created.
       
      optional int64 creation_timestamp = 2;
    • getCreationTimestamp

      long getCreationTimestamp()
       Timestamp recorded when this ``registered_model`` was created.
       
      optional int64 creation_timestamp = 2;
    • hasLastUpdatedTimestamp

      boolean hasLastUpdatedTimestamp()
       Timestamp recorded when metadata for this ``registered_model`` was last updated.
       
      optional int64 last_updated_timestamp = 3;
    • getLastUpdatedTimestamp

      long getLastUpdatedTimestamp()
       Timestamp recorded when metadata for this ``registered_model`` was last updated.
       
      optional int64 last_updated_timestamp = 3;
    • hasUserId

      boolean hasUserId()
       User that created this ``registered_model``
       NOTE: this field is not currently returned.
       
      optional string user_id = 4;
    • getUserId

      java.lang.String getUserId()
       User that created this ``registered_model``
       NOTE: this field is not currently returned.
       
      optional string user_id = 4;
    • getUserIdBytes

      com.google.protobuf.ByteString getUserIdBytes()
       User that created this ``registered_model``
       NOTE: this field is not currently returned.
       
      optional string user_id = 4;
    • hasDescription

      boolean hasDescription()
       Description of this ``registered_model``.
       
      optional string description = 5;
    • getDescription

      java.lang.String getDescription()
       Description of this ``registered_model``.
       
      optional string description = 5;
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       Description of this ``registered_model``.
       
      optional string description = 5;
    • getLatestVersionsList

      java.util.List<ModelRegistry.ModelVersion> getLatestVersionsList()
       Collection of latest model versions for each stage.
       Only contains models with current ``READY`` status.
       
      repeated .mlflow.ModelVersion latest_versions = 6;
    • getLatestVersions

      ModelRegistry.ModelVersion getLatestVersions​(int index)
       Collection of latest model versions for each stage.
       Only contains models with current ``READY`` status.
       
      repeated .mlflow.ModelVersion latest_versions = 6;
    • getLatestVersionsCount

      int getLatestVersionsCount()
       Collection of latest model versions for each stage.
       Only contains models with current ``READY`` status.
       
      repeated .mlflow.ModelVersion latest_versions = 6;
    • getLatestVersionsOrBuilderList

      java.util.List<? extends ModelRegistry.ModelVersionOrBuilder> getLatestVersionsOrBuilderList()
       Collection of latest model versions for each stage.
       Only contains models with current ``READY`` status.
       
      repeated .mlflow.ModelVersion latest_versions = 6;
    • getLatestVersionsOrBuilder

      ModelRegistry.ModelVersionOrBuilder getLatestVersionsOrBuilder​(int index)
       Collection of latest model versions for each stage.
       Only contains models with current ``READY`` status.
       
      repeated .mlflow.ModelVersion latest_versions = 6;