Interface ModelRegistry.DeleteRegisteredModelTagOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getKey()
      Name of the tag.
      com.google.protobuf.ByteString getKeyBytes()
      Name of the tag.
      java.lang.String getName()
      Name of the registered model that the tag was logged under.
      com.google.protobuf.ByteString getNameBytes()
      Name of the registered model that the tag was logged under.
      boolean hasKey()
      Name of the tag.
      boolean hasName()
      Name of the registered model that the tag was logged under.
      • 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()
         Name of the registered model that the tag was logged under.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        Whether the name field is set.
      • getName

        java.lang.String getName()
         Name of the registered model that the tag was logged under.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Name of the registered model that the tag was logged under.
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for name.
      • hasKey

        boolean hasKey()
         Name of the tag. The name must be an exact match; wild-card deletion is not supported. Maximum size is 250 bytes.
         
        optional string key = 2 [(.mlflow.validate_required) = true];
        Returns:
        Whether the key field is set.
      • getKey

        java.lang.String getKey()
         Name of the tag. The name must be an exact match; wild-card deletion is not supported. Maximum size is 250 bytes.
         
        optional string key = 2 [(.mlflow.validate_required) = true];
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         Name of the tag. The name must be an exact match; wild-card deletion is not supported. Maximum size is 250 bytes.
         
        optional string key = 2 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for key.