Interface Service.UpdateExperimentOrBuilder

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

public static interface Service.UpdateExperimentOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    ID of the associated experiment.
    com.google.protobuf.ByteString
    ID of the associated experiment.
    If provided, the experiment's name is changed to the new name.
    com.google.protobuf.ByteString
    If provided, the experiment's name is changed to the new name.
    boolean
    ID of the associated experiment.
    boolean
    If provided, the experiment's name is changed to the new name.

    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

    • hasExperimentId

      boolean hasExperimentId()
       ID of the associated experiment.
       
      optional string experiment_id = 1 [(.mlflow.validate_required) = true];
      Returns:
      Whether the experimentId field is set.
    • getExperimentId

      String getExperimentId()
       ID of the associated experiment.
       
      optional string experiment_id = 1 [(.mlflow.validate_required) = true];
      Returns:
      The experimentId.
    • getExperimentIdBytes

      com.google.protobuf.ByteString getExperimentIdBytes()
       ID of the associated experiment.
       
      optional string experiment_id = 1 [(.mlflow.validate_required) = true];
      Returns:
      The bytes for experimentId.
    • hasNewName

      boolean hasNewName()
       If provided, the experiment's name is changed to the new name. The new name must be unique.
       
      optional string new_name = 2;
      Returns:
      Whether the newName field is set.
    • getNewName

      String getNewName()
       If provided, the experiment's name is changed to the new name. The new name must be unique.
       
      optional string new_name = 2;
      Returns:
      The newName.
    • getNewNameBytes

      com.google.protobuf.ByteString getNewNameBytes()
       If provided, the experiment's name is changed to the new name. The new name must be unique.
       
      optional string new_name = 2;
      Returns:
      The bytes for newName.