All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.databricks.sdk.service.serving.EndpointCoreConfigSummary Maven / Gradle / Ivy

// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.serving;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
import java.util.Objects;

@Generated
public class EndpointCoreConfigSummary {
  /** The list of served models under the serving endpoint config. */
  @JsonProperty("served_models")
  private Collection servedModels;

  public EndpointCoreConfigSummary setServedModels(Collection servedModels) {
    this.servedModels = servedModels;
    return this;
  }

  public Collection getServedModels() {
    return servedModels;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    EndpointCoreConfigSummary that = (EndpointCoreConfigSummary) o;
    return Objects.equals(servedModels, that.servedModels);
  }

  @Override
  public int hashCode() {
    return Objects.hash(servedModels);
  }

  @Override
  public String toString() {
    return new ToStringer(EndpointCoreConfigSummary.class)
        .add("servedModels", servedModels)
        .toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy