Enum Class CatTrainedModelsColumn

java.lang.Object
java.lang.Enum<CatTrainedModelsColumn>
co.elastic.clients.elasticsearch.cat.CatTrainedModelsColumn
All Implemented Interfaces:
JsonEnum, JsonpSerializable, Serializable, Comparable<CatTrainedModelsColumn>, Constable

@JsonpDeserializable public enum CatTrainedModelsColumn extends Enum<CatTrainedModelsColumn> implements JsonEnum
See Also:
  • Enum Constant Details

    • CreateTime

      public static final CatTrainedModelsColumn CreateTime
      The time when the trained model was created.
    • CreatedBy

      public static final CatTrainedModelsColumn CreatedBy
      Information on the creator of the trained model.
    • DataFrameAnalyticsId

      public static final CatTrainedModelsColumn DataFrameAnalyticsId
      Identifier for the data frame analytics job that created the model. Only displayed if it is still available.
    • Description

      public static final CatTrainedModelsColumn Description
      The description of the trained model.
    • HeapSize

      public static final CatTrainedModelsColumn HeapSize
      The estimated heap size to keep the trained model in memory.
    • Id

      public static final CatTrainedModelsColumn Id
      Idetifier for the trained model.
    • IngestCount

      public static final CatTrainedModelsColumn IngestCount
      The total number of documents that are processed by the model.
    • IngestCurrent

      public static final CatTrainedModelsColumn IngestCurrent
      The total number of document that are currently being handled by the trained model.
    • IngestFailed

      public static final CatTrainedModelsColumn IngestFailed
      The total number of failed ingest attempts with the trained model.
    • IngestPipelines

      public static final CatTrainedModelsColumn IngestPipelines
      The total number of ingest pipelines that are referencing the trained model.
    • IngestTime

      public static final CatTrainedModelsColumn IngestTime
      The total time that is spent processing documents with the trained model.
    • License

      public static final CatTrainedModelsColumn License
      The license level of the trained model.
    • Operations

      public static final CatTrainedModelsColumn Operations
      The estimated number of operations to use the trained model. This number helps measuring the computational complexity of the model.
    • Version

      public static final CatTrainedModelsColumn Version
      The Elasticsearch version number in which the trained model was created.
  • Field Details

  • Method Details

    • values

      public static CatTrainedModelsColumn[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CatTrainedModelsColumn valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • jsonValue

      public String jsonValue()
      Specified by:
      jsonValue in interface JsonEnum
    • aliases

      public String[] aliases()
      Specified by:
      aliases in interface JsonEnum