com.databricks.sdk.service.workspace.ListSecretsRequest Maven / Gradle / Ivy
// 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.QueryParam;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Objects;
/** List secret keys */
@Generated
public class ListSecretsRequest {
/** The name of the scope to list secrets within. */
@JsonIgnore
@QueryParam("scope")
private String scope;
public ListSecretsRequest setScope(String scope) {
this.scope = scope;
return this;
}
public String getScope() {
return scope;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ListSecretsRequest that = (ListSecretsRequest) o;
return Objects.equals(scope, that.scope);
}
@Override
public int hashCode() {
return Objects.hash(scope);
}
@Override
public String toString() {
return new ToStringer(ListSecretsRequest.class).add("scope", scope).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy