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

com.databricks.sdk.service.sql.ListWarehousesRequest 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.sql;

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

/** List warehouses */
@Generated
public class ListWarehousesRequest {
  /**
   * Service Principal which will be used to fetch the list of warehouses. If not specified, the
   * user from the session header is used.
   */
  @JsonIgnore
  @QueryParam("run_as_user_id")
  private Long runAsUserId;

  public ListWarehousesRequest setRunAsUserId(Long runAsUserId) {
    this.runAsUserId = runAsUserId;
    return this;
  }

  public Long getRunAsUserId() {
    return runAsUserId;
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy