com.databricks.sdk.service.workspace.ListCredentialsResponse Maven / Gradle / Ivy
The newest version!
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.workspace;
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 ListCredentialsResponse {
/** List of credentials. */
@JsonProperty("credentials")
private Collection credentials;
public ListCredentialsResponse setCredentials(Collection credentials) {
this.credentials = credentials;
return this;
}
public Collection getCredentials() {
return credentials;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ListCredentialsResponse that = (ListCredentialsResponse) o;
return Objects.equals(credentials, that.credentials);
}
@Override
public int hashCode() {
return Objects.hash(credentials);
}
@Override
public String toString() {
return new ToStringer(ListCredentialsResponse.class).add("credentials", credentials).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy