com.databricks.sdk.service.ml.HttpUrlSpecWithoutSecret Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.ml;
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 HttpUrlSpecWithoutSecret {
/**
* Enable/disable SSL certificate validation. Default is true. For self-signed certificates, this
* field must be false AND the destination server must disable certificate validation as well. For
* security purposes, it is encouraged to perform secret validation with the HMAC-encoded portion
* of the payload and acknowledge the risk associated with disabling hostname validation whereby
* it becomes more likely that requests can be maliciously routed to an unintended host.
*/
@JsonProperty("enable_ssl_verification")
private Boolean enableSslVerification;
/** External HTTPS URL called on event trigger (by using a POST request). */
@JsonProperty("url")
private String url;
public HttpUrlSpecWithoutSecret setEnableSslVerification(Boolean enableSslVerification) {
this.enableSslVerification = enableSslVerification;
return this;
}
public Boolean getEnableSslVerification() {
return enableSslVerification;
}
public HttpUrlSpecWithoutSecret setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return url;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
HttpUrlSpecWithoutSecret that = (HttpUrlSpecWithoutSecret) o;
return Objects.equals(enableSslVerification, that.enableSslVerification)
&& Objects.equals(url, that.url);
}
@Override
public int hashCode() {
return Objects.hash(enableSslVerification, url);
}
@Override
public String toString() {
return new ToStringer(HttpUrlSpecWithoutSecret.class)
.add("enableSslVerification", enableSslVerification)
.add("url", url)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy