All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmetadata.schema.services.connections.dashboard.MetabaseConnection Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version

package org.openmetadata.schema.services.connections.dashboard;

import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openmetadata.annotations.ExposedField;
import org.openmetadata.annotations.PasswordField;


/**
 * MetabaseConnection
 * 

* Metabase Connection Config * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "type", "username", "password", "hostPort", "supportsMetadataExtraction" }) @Generated("jsonschema2pojo") public class MetabaseConnection { /** * Metabase service type * */ @JsonProperty("type") @JsonPropertyDescription("Metabase service type") private MetabaseConnection.MetabaseType type = MetabaseConnection.MetabaseType.fromValue("Metabase"); /** * Username *

* Username to connect to Metabase. This user should have privileges to read all the metadata in Metabase. * (Required) * */ @JsonProperty("username") @JsonPropertyDescription("Username to connect to Metabase. This user should have privileges to read all the metadata in Metabase.") @NotNull private String username; /** * Password *

* Password to connect to Metabase. * */ @JsonProperty("password") @JsonPropertyDescription("Password to connect to Metabase.") @PasswordField private String password; /** * Host and Port *

* Host and Port of the Metabase instance. * (Required) * */ @JsonProperty("hostPort") @JsonPropertyDescription("Host and Port of the Metabase instance.") @ExposedField @NotNull private URI hostPort; /** * Supports Metadata Extraction. * */ @JsonProperty("supportsMetadataExtraction") @JsonPropertyDescription("Supports Metadata Extraction.") private Boolean supportsMetadataExtraction = true; /** * Metabase service type * */ @JsonProperty("type") public MetabaseConnection.MetabaseType getType() { return type; } /** * Metabase service type * */ @JsonProperty("type") public void setType(MetabaseConnection.MetabaseType type) { this.type = type; } public MetabaseConnection withType(MetabaseConnection.MetabaseType type) { this.type = type; return this; } /** * Username *

* Username to connect to Metabase. This user should have privileges to read all the metadata in Metabase. * (Required) * */ @JsonProperty("username") public String getUsername() { return username; } /** * Username *

* Username to connect to Metabase. This user should have privileges to read all the metadata in Metabase. * (Required) * */ @JsonProperty("username") public void setUsername(String username) { this.username = username; } public MetabaseConnection withUsername(String username) { this.username = username; return this; } /** * Password *

* Password to connect to Metabase. * */ @JsonProperty("password") @PasswordField public String getPassword() { return password; } /** * Password *

* Password to connect to Metabase. * */ @JsonProperty("password") @PasswordField public void setPassword(String password) { this.password = password; } public MetabaseConnection withPassword(String password) { this.password = password; return this; } /** * Host and Port *

* Host and Port of the Metabase instance. * (Required) * */ @JsonProperty("hostPort") @ExposedField public URI getHostPort() { return hostPort; } /** * Host and Port *

* Host and Port of the Metabase instance. * (Required) * */ @JsonProperty("hostPort") @ExposedField public void setHostPort(URI hostPort) { this.hostPort = hostPort; } public MetabaseConnection withHostPort(URI hostPort) { this.hostPort = hostPort; return this; } /** * Supports Metadata Extraction. * */ @JsonProperty("supportsMetadataExtraction") public Boolean getSupportsMetadataExtraction() { return supportsMetadataExtraction; } /** * Supports Metadata Extraction. * */ @JsonProperty("supportsMetadataExtraction") public void setSupportsMetadataExtraction(Boolean supportsMetadataExtraction) { this.supportsMetadataExtraction = supportsMetadataExtraction; } public MetabaseConnection withSupportsMetadataExtraction(Boolean supportsMetadataExtraction) { this.supportsMetadataExtraction = supportsMetadataExtraction; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(MetabaseConnection.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("type"); sb.append('='); sb.append(((this.type == null)?"":this.type)); sb.append(','); sb.append("username"); sb.append('='); sb.append(((this.username == null)?"":this.username)); sb.append(','); sb.append("password"); sb.append('='); sb.append(((this.password == null)?"":this.password)); sb.append(','); sb.append("hostPort"); sb.append('='); sb.append(((this.hostPort == null)?"":this.hostPort)); sb.append(','); sb.append("supportsMetadataExtraction"); sb.append('='); sb.append(((this.supportsMetadataExtraction == null)?"":this.supportsMetadataExtraction)); sb.append(','); if (sb.charAt((sb.length()- 1)) == ',') { sb.setCharAt((sb.length()- 1), ']'); } else { sb.append(']'); } return sb.toString(); } @Override public int hashCode() { int result = 1; result = ((result* 31)+((this.supportsMetadataExtraction == null)? 0 :this.supportsMetadataExtraction.hashCode())); result = ((result* 31)+((this.password == null)? 0 :this.password.hashCode())); result = ((result* 31)+((this.hostPort == null)? 0 :this.hostPort.hashCode())); result = ((result* 31)+((this.type == null)? 0 :this.type.hashCode())); result = ((result* 31)+((this.username == null)? 0 :this.username.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof MetabaseConnection) == false) { return false; } MetabaseConnection rhs = ((MetabaseConnection) other); return ((((((this.supportsMetadataExtraction == rhs.supportsMetadataExtraction)||((this.supportsMetadataExtraction!= null)&&this.supportsMetadataExtraction.equals(rhs.supportsMetadataExtraction)))&&((this.password == rhs.password)||((this.password!= null)&&this.password.equals(rhs.password))))&&((this.hostPort == rhs.hostPort)||((this.hostPort!= null)&&this.hostPort.equals(rhs.hostPort))))&&((this.type == rhs.type)||((this.type!= null)&&this.type.equals(rhs.type))))&&((this.username == rhs.username)||((this.username!= null)&&this.username.equals(rhs.username)))); } /** * Metabase service type * */ @Generated("jsonschema2pojo") public enum MetabaseType { METABASE("Metabase"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (MetabaseConnection.MetabaseType c: values()) { CONSTANTS.put(c.value, c); } } MetabaseType(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static MetabaseConnection.MetabaseType fromValue(String value) { MetabaseConnection.MetabaseType constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy