com.databricks.sdk.service.compute.CreateResponse Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.compute;
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 CreateResponse {
/** The global init script ID. */
@JsonProperty("script_id")
private String scriptId;
public CreateResponse setScriptId(String scriptId) {
this.scriptId = scriptId;
return this;
}
public String getScriptId() {
return scriptId;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CreateResponse that = (CreateResponse) o;
return Objects.equals(scriptId, that.scriptId);
}
@Override
public int hashCode() {
return Objects.hash(scriptId);
}
@Override
public String toString() {
return new ToStringer(CreateResponse.class).add("scriptId", scriptId).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy