com.databricks.sdk.service.cleanrooms.CleanRoomAssetVolumeLocalDetails Maven / Gradle / Ivy
The newest version!
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.cleanrooms;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
@Generated
public class CleanRoomAssetVolumeLocalDetails {
/**
* The fully qualified name of the volume in its owner's local metastore, in the format of
* *catalog*.*schema*.*volume_name*
*/
@JsonProperty("local_name")
private String localName;
public CleanRoomAssetVolumeLocalDetails setLocalName(String localName) {
this.localName = localName;
return this;
}
public String getLocalName() {
return localName;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CleanRoomAssetVolumeLocalDetails that = (CleanRoomAssetVolumeLocalDetails) o;
return Objects.equals(localName, that.localName);
}
@Override
public int hashCode() {
return Objects.hash(localName);
}
@Override
public String toString() {
return new ToStringer(CleanRoomAssetVolumeLocalDetails.class)
.add("localName", localName)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy