Interface ModelRegistry.UpdateRegisteredModelOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getDeploymentJobId()
      Deployment job id for this model.
      com.google.protobuf.ByteString getDeploymentJobIdBytes()
      Deployment job id for this model.
      java.lang.String getDescription()
      If provided, updates the description for this ``registered_model``.
      com.google.protobuf.ByteString getDescriptionBytes()
      If provided, updates the description for this ``registered_model``.
      java.lang.String getName()
      Registered model unique name identifier.
      com.google.protobuf.ByteString getNameBytes()
      Registered model unique name identifier.
      boolean hasDeploymentJobId()
      Deployment job id for this model.
      boolean hasDescription()
      If provided, updates the description for this ``registered_model``.
      boolean hasName()
      Registered model unique name identifier.
      • 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 Detail

      • hasName

        boolean hasName()
         Registered model unique name identifier.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        Whether the name field is set.
      • getName

        java.lang.String getName()
         Registered model unique name identifier.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Registered model unique name identifier.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for name.
      • hasDescription

        boolean hasDescription()
         If provided, updates the description for this ``registered_model``.
         
        optional string description = 2;
        Returns:
        Whether the description field is set.
      • getDescription

        java.lang.String getDescription()
         If provided, updates the description for this ``registered_model``.
         
        optional string description = 2;
        Returns:
        The description.
      • getDescriptionBytes

        com.google.protobuf.ByteString getDescriptionBytes()
         If provided, updates the description for this ``registered_model``.
         
        optional string description = 2;
        Returns:
        The bytes for description.
      • hasDeploymentJobId

        boolean hasDeploymentJobId()
         Deployment job id for this model.
         
        optional string deployment_job_id = 3;
        Returns:
        Whether the deploymentJobId field is set.
      • getDeploymentJobId

        java.lang.String getDeploymentJobId()
         Deployment job id for this model.
         
        optional string deployment_job_id = 3;
        Returns:
        The deploymentJobId.
      • getDeploymentJobIdBytes

        com.google.protobuf.ByteString getDeploymentJobIdBytes()
         Deployment job id for this model.
         
        optional string deployment_job_id = 3;
        Returns:
        The bytes for deploymentJobId.