Interface Service.LogModelOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getModelJson()
      MLmodel file in json format.
      com.google.protobuf.ByteString getModelJsonBytes()
      MLmodel file in json format.
      java.lang.String getRunId()
      ID of the run to log under
      com.google.protobuf.ByteString getRunIdBytes()
      ID of the run to log under
      boolean hasModelJson()
      MLmodel file in json format.
      boolean hasRunId()
      ID of the run to log 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

      • hasRunId

        boolean hasRunId()
         ID of the run to log under
         
        optional string run_id = 1;
      • getRunId

        java.lang.String getRunId()
         ID of the run to log under
         
        optional string run_id = 1;
      • getRunIdBytes

        com.google.protobuf.ByteString getRunIdBytes()
         ID of the run to log under
         
        optional string run_id = 1;
      • hasModelJson

        boolean hasModelJson()
         MLmodel file in json format.
         
        optional string model_json = 2;
      • getModelJson

        java.lang.String getModelJson()
         MLmodel file in json format.
         
        optional string model_json = 2;
      • getModelJsonBytes

        com.google.protobuf.ByteString getModelJsonBytes()
         MLmodel file in json format.
         
        optional string model_json = 2;