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

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

There is a newer version: 0.38.0
Show newest version
// 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 AppEnvironment {
  /** */
  @JsonProperty("env")
  private Collection env;

  public AppEnvironment setEnv(Collection env) {
    this.env = env;
    return this;
  }

  public Collection getEnv() {
    return env;
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy