com.databricks.sdk.service.sharing.UpdateShare Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.sharing;
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 UpdateShare {
/** User-provided free-form text description. */
@JsonProperty("comment")
private String comment;
/** The name of the share. */
private String name;
/** New name for the share. */
@JsonProperty("new_name")
private String newName;
/** Username of current owner of share. */
@JsonProperty("owner")
private String owner;
/** Storage root URL for the share. */
@JsonProperty("storage_root")
private String storageRoot;
/** Array of shared data object updates. */
@JsonProperty("updates")
private Collection updates;
public UpdateShare setComment(String comment) {
this.comment = comment;
return this;
}
public String getComment() {
return comment;
}
public UpdateShare setName(String name) {
this.name = name;
return this;
}
public String getName() {
return name;
}
public UpdateShare setNewName(String newName) {
this.newName = newName;
return this;
}
public String getNewName() {
return newName;
}
public UpdateShare setOwner(String owner) {
this.owner = owner;
return this;
}
public String getOwner() {
return owner;
}
public UpdateShare setStorageRoot(String storageRoot) {
this.storageRoot = storageRoot;
return this;
}
public String getStorageRoot() {
return storageRoot;
}
public UpdateShare setUpdates(Collection updates) {
this.updates = updates;
return this;
}
public Collection getUpdates() {
return updates;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
UpdateShare that = (UpdateShare) o;
return Objects.equals(comment, that.comment)
&& Objects.equals(name, that.name)
&& Objects.equals(newName, that.newName)
&& Objects.equals(owner, that.owner)
&& Objects.equals(storageRoot, that.storageRoot)
&& Objects.equals(updates, that.updates);
}
@Override
public int hashCode() {
return Objects.hash(comment, name, newName, owner, storageRoot, updates);
}
@Override
public String toString() {
return new ToStringer(UpdateShare.class)
.add("comment", comment)
.add("name", name)
.add("newName", newName)
.add("owner", owner)
.add("storageRoot", storageRoot)
.add("updates", updates)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy