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

com.databricks.sdk.service.settings.DefaultNamespaceSetting Maven / Gradle / Ivy

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

package com.databricks.sdk.service.settings;

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

/** Default namespace setting. */
@Generated
public class DefaultNamespaceSetting {
  /**
   * etag used for versioning. The response is at least as fresh as the eTag provided. This is used
   * for optimistic concurrency control as a way to help prevent simultaneous writes of a setting
   * overwriting each other. It is strongly suggested that systems make use of the etag in the read
   * -> update pattern to perform setting updates in order to avoid race conditions. That is, get an
   * etag from a GET request, and pass it with the PATCH request to identify the setting version you
   * are updating.
   */
  @JsonProperty("etag")
  private String etag;

  /** */
  @JsonProperty("namespace")
  private StringMessage namespace;

  /**
   * Name of the corresponding setting. This field is populated in the response, but it will not be
   * respected even if it's set in the request body. The setting name in the path parameter will be
   * respected instead.
   */
  @JsonProperty("setting_name")
  private String settingName;

  public DefaultNamespaceSetting setEtag(String etag) {
    this.etag = etag;
    return this;
  }

  public String getEtag() {
    return etag;
  }

  public DefaultNamespaceSetting setNamespace(StringMessage namespace) {
    this.namespace = namespace;
    return this;
  }

  public StringMessage getNamespace() {
    return namespace;
  }

  public DefaultNamespaceSetting setSettingName(String settingName) {
    this.settingName = settingName;
    return this;
  }

  public String getSettingName() {
    return settingName;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    DefaultNamespaceSetting that = (DefaultNamespaceSetting) o;
    return Objects.equals(etag, that.etag)
        && Objects.equals(namespace, that.namespace)
        && Objects.equals(settingName, that.settingName);
  }

  @Override
  public int hashCode() {
    return Objects.hash(etag, namespace, settingName);
  }

  @Override
  public String toString() {
    return new ToStringer(DefaultNamespaceSetting.class)
        .add("etag", etag)
        .add("namespace", namespace)
        .add("settingName", settingName)
        .toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy