org.openmetadata.schema.api.services.CreatePipelineService Maven / Gradle / Ivy
package org.openmetadata.schema.api.services;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.processing.Generated;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;
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.schema.CreateEntity;
import org.openmetadata.schema.EnumInterface;
import org.openmetadata.schema.type.EntityReference;
import org.openmetadata.schema.type.LifeCycle;
import org.openmetadata.schema.type.PipelineConnection;
import org.openmetadata.schema.type.TagLabel;
/**
* CreatePipelineServiceRequest
*
* Create Pipeline service entity request
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"name",
"displayName",
"description",
"serviceType",
"connection",
"tags",
"owners",
"scheduleInterval",
"dataProducts",
"domain",
"lifeCycle"
})
@Generated("jsonschema2pojo")
public class CreatePipelineService implements CreateEntity
{
/**
* Name that identifies an entity.
* (Required)
*
*/
@JsonProperty("name")
@JsonPropertyDescription("Name that identifies an entity.")
@Pattern(regexp = "^((?!::).)*$")
@Size(min = 1, max = 256)
@NotNull
private String name;
/**
* Display Name that identifies this pipeline service.
*
*/
@JsonProperty("displayName")
@JsonPropertyDescription("Display Name that identifies this pipeline service.")
private String displayName;
/**
* Text in Markdown format.@om-field-type
*
*/
@JsonProperty("description")
@JsonPropertyDescription("Text in Markdown format.")
private String description;
/**
* Type of pipeline service - Airflow or Prefect.
* (Required)
*
*/
@JsonProperty("serviceType")
@JsonPropertyDescription("Type of pipeline service - Airflow or Prefect.")
@NotNull
private CreatePipelineService.PipelineServiceType serviceType;
/**
* Pipeline Connection.
*
*/
@JsonProperty("connection")
@JsonPropertyDescription("Pipeline Connection.")
@Valid
private PipelineConnection connection;
/**
* Tags for this Pipeline Service.
*
*/
@JsonProperty("tags")
@JsonPropertyDescription("Tags for this Pipeline Service.")
@Valid
private List tags = null;
/**
* Entity Reference List
*
* This schema defines the EntityReferenceList type used for referencing an entity. EntityReference is used for capturing relationships from one entity to another. For example, a table has an attribute called database of type EntityReference that captures the relationship of a table `belongs to a` database.
*
*/
@JsonProperty("owners")
@JsonPropertyDescription("This schema defines the EntityReferenceList type used for referencing an entity. EntityReference is used for capturing relationships from one entity to another. For example, a table has an attribute called database of type EntityReference that captures the relationship of a table `belongs to a` database.")
@Valid
private List owners = null;
/**
* Scheduler Interval for the pipeline in cron format.
*
*/
@JsonProperty("scheduleInterval")
@JsonPropertyDescription("Scheduler Interval for the pipeline in cron format.")
private String scheduleInterval = null;
/**
* List of fully qualified names of data products this entity is part of.
*
*/
@JsonProperty("dataProducts")
@JsonPropertyDescription("List of fully qualified names of data products this entity is part of.")
@Valid
private List dataProducts = new ArrayList();
/**
* Fully qualified name of the domain the Pipeline Service belongs to.
*
*/
@JsonProperty("domain")
@JsonPropertyDescription("Fully qualified name of the domain the Pipeline Service belongs to.")
private String domain;
/**
* Life Cycle
*
* This schema defines Life Cycle Properties.
*
*/
@JsonProperty("lifeCycle")
@JsonPropertyDescription("This schema defines Life Cycle Properties.")
@Valid
private LifeCycle lifeCycle;
/**
* Name that identifies an entity.
* (Required)
*
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
* Name that identifies an entity.
* (Required)
*
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
public CreatePipelineService withName(String name) {
this.name = name;
return this;
}
/**
* Display Name that identifies this pipeline service.
*
*/
@JsonProperty("displayName")
public String getDisplayName() {
return displayName;
}
/**
* Display Name that identifies this pipeline service.
*
*/
@JsonProperty("displayName")
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public CreatePipelineService withDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Text in Markdown format.@om-field-type
*
*/
@JsonProperty("description")
public String getDescription() {
return description;
}
/**
* Text in Markdown format.@om-field-type
*
*/
@JsonProperty("description")
public void setDescription(String description) {
this.description = description;
}
public CreatePipelineService withDescription(String description) {
this.description = description;
return this;
}
/**
* Type of pipeline service - Airflow or Prefect.
* (Required)
*
*/
@JsonProperty("serviceType")
public CreatePipelineService.PipelineServiceType getServiceType() {
return serviceType;
}
/**
* Type of pipeline service - Airflow or Prefect.
* (Required)
*
*/
@JsonProperty("serviceType")
public void setServiceType(CreatePipelineService.PipelineServiceType serviceType) {
this.serviceType = serviceType;
}
public CreatePipelineService withServiceType(CreatePipelineService.PipelineServiceType serviceType) {
this.serviceType = serviceType;
return this;
}
/**
* Pipeline Connection.
*
*/
@JsonProperty("connection")
public PipelineConnection getConnection() {
return connection;
}
/**
* Pipeline Connection.
*
*/
@JsonProperty("connection")
public void setConnection(PipelineConnection connection) {
this.connection = connection;
}
public CreatePipelineService withConnection(PipelineConnection connection) {
this.connection = connection;
return this;
}
/**
* Tags for this Pipeline Service.
*
*/
@JsonProperty("tags")
public List getTags() {
return tags;
}
/**
* Tags for this Pipeline Service.
*
*/
@JsonProperty("tags")
public void setTags(List tags) {
this.tags = tags;
}
public CreatePipelineService withTags(List tags) {
this.tags = tags;
return this;
}
/**
* Entity Reference List
*
* This schema defines the EntityReferenceList type used for referencing an entity. EntityReference is used for capturing relationships from one entity to another. For example, a table has an attribute called database of type EntityReference that captures the relationship of a table `belongs to a` database.
*
*/
@JsonProperty("owners")
public List getOwners() {
return owners;
}
/**
* Entity Reference List
*
* This schema defines the EntityReferenceList type used for referencing an entity. EntityReference is used for capturing relationships from one entity to another. For example, a table has an attribute called database of type EntityReference that captures the relationship of a table `belongs to a` database.
*
*/
@JsonProperty("owners")
public void setOwners(List owners) {
this.owners = owners;
}
public CreatePipelineService withOwners(List owners) {
this.owners = owners;
return this;
}
/**
* Scheduler Interval for the pipeline in cron format.
*
*/
@JsonProperty("scheduleInterval")
public String getScheduleInterval() {
return scheduleInterval;
}
/**
* Scheduler Interval for the pipeline in cron format.
*
*/
@JsonProperty("scheduleInterval")
public void setScheduleInterval(String scheduleInterval) {
this.scheduleInterval = scheduleInterval;
}
public CreatePipelineService withScheduleInterval(String scheduleInterval) {
this.scheduleInterval = scheduleInterval;
return this;
}
/**
* List of fully qualified names of data products this entity is part of.
*
*/
@JsonProperty("dataProducts")
public List getDataProducts() {
return dataProducts;
}
/**
* List of fully qualified names of data products this entity is part of.
*
*/
@JsonProperty("dataProducts")
public void setDataProducts(List dataProducts) {
this.dataProducts = dataProducts;
}
public CreatePipelineService withDataProducts(List dataProducts) {
this.dataProducts = dataProducts;
return this;
}
/**
* Fully qualified name of the domain the Pipeline Service belongs to.
*
*/
@JsonProperty("domain")
public String getDomain() {
return domain;
}
/**
* Fully qualified name of the domain the Pipeline Service belongs to.
*
*/
@JsonProperty("domain")
public void setDomain(String domain) {
this.domain = domain;
}
public CreatePipelineService withDomain(String domain) {
this.domain = domain;
return this;
}
/**
* Life Cycle
*
* This schema defines Life Cycle Properties.
*
*/
@JsonProperty("lifeCycle")
public LifeCycle getLifeCycle() {
return lifeCycle;
}
/**
* Life Cycle
*
* This schema defines Life Cycle Properties.
*
*/
@JsonProperty("lifeCycle")
public void setLifeCycle(LifeCycle lifeCycle) {
this.lifeCycle = lifeCycle;
}
public CreatePipelineService withLifeCycle(LifeCycle lifeCycle) {
this.lifeCycle = lifeCycle;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(CreatePipelineService.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("name");
sb.append('=');
sb.append(((this.name == null)?"":this.name));
sb.append(',');
sb.append("displayName");
sb.append('=');
sb.append(((this.displayName == null)?"":this.displayName));
sb.append(',');
sb.append("description");
sb.append('=');
sb.append(((this.description == null)?"":this.description));
sb.append(',');
sb.append("serviceType");
sb.append('=');
sb.append(((this.serviceType == null)?"":this.serviceType));
sb.append(',');
sb.append("connection");
sb.append('=');
sb.append(((this.connection == null)?"":this.connection));
sb.append(',');
sb.append("tags");
sb.append('=');
sb.append(((this.tags == null)?"":this.tags));
sb.append(',');
sb.append("owners");
sb.append('=');
sb.append(((this.owners == null)?"":this.owners));
sb.append(',');
sb.append("scheduleInterval");
sb.append('=');
sb.append(((this.scheduleInterval == null)?"":this.scheduleInterval));
sb.append(',');
sb.append("dataProducts");
sb.append('=');
sb.append(((this.dataProducts == null)?"":this.dataProducts));
sb.append(',');
sb.append("domain");
sb.append('=');
sb.append(((this.domain == null)?"":this.domain));
sb.append(',');
sb.append("lifeCycle");
sb.append('=');
sb.append(((this.lifeCycle == null)?"":this.lifeCycle));
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.serviceType == null)? 0 :this.serviceType.hashCode()));
result = ((result* 31)+((this.scheduleInterval == null)? 0 :this.scheduleInterval.hashCode()));
result = ((result* 31)+((this.displayName == null)? 0 :this.displayName.hashCode()));
result = ((result* 31)+((this.domain == null)? 0 :this.domain.hashCode()));
result = ((result* 31)+((this.name == null)? 0 :this.name.hashCode()));
result = ((result* 31)+((this.description == null)? 0 :this.description.hashCode()));
result = ((result* 31)+((this.dataProducts == null)? 0 :this.dataProducts.hashCode()));
result = ((result* 31)+((this.connection == null)? 0 :this.connection.hashCode()));
result = ((result* 31)+((this.owners == null)? 0 :this.owners.hashCode()));
result = ((result* 31)+((this.lifeCycle == null)? 0 :this.lifeCycle.hashCode()));
result = ((result* 31)+((this.tags == null)? 0 :this.tags.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof CreatePipelineService) == false) {
return false;
}
CreatePipelineService rhs = ((CreatePipelineService) other);
return ((((((((((((this.serviceType == rhs.serviceType)||((this.serviceType!= null)&&this.serviceType.equals(rhs.serviceType)))&&((this.scheduleInterval == rhs.scheduleInterval)||((this.scheduleInterval!= null)&&this.scheduleInterval.equals(rhs.scheduleInterval))))&&((this.displayName == rhs.displayName)||((this.displayName!= null)&&this.displayName.equals(rhs.displayName))))&&((this.domain == rhs.domain)||((this.domain!= null)&&this.domain.equals(rhs.domain))))&&((this.name == rhs.name)||((this.name!= null)&&this.name.equals(rhs.name))))&&((this.description == rhs.description)||((this.description!= null)&&this.description.equals(rhs.description))))&&((this.dataProducts == rhs.dataProducts)||((this.dataProducts!= null)&&this.dataProducts.equals(rhs.dataProducts))))&&((this.connection == rhs.connection)||((this.connection!= null)&&this.connection.equals(rhs.connection))))&&((this.owners == rhs.owners)||((this.owners!= null)&&this.owners.equals(rhs.owners))))&&((this.lifeCycle == rhs.lifeCycle)||((this.lifeCycle!= null)&&this.lifeCycle.equals(rhs.lifeCycle))))&&((this.tags == rhs.tags)||((this.tags!= null)&&this.tags.equals(rhs.tags))));
}
/**
* Type of pipeline service - Airflow or Prefect.
*
*/
@Generated("jsonschema2pojo")
public enum PipelineServiceType
implements EnumInterface
{
Airflow("Airflow"),
GluePipeline("GluePipeline"),
Airbyte("Airbyte"),
Fivetran("Fivetran"),
Flink("Flink"),
Dagster("Dagster"),
Nifi("Nifi"),
DomoPipeline("DomoPipeline"),
CustomPipeline("CustomPipeline"),
DatabricksPipeline("DatabricksPipeline"),
Spline("Spline"),
Spark("Spark"),
OpenLineage("OpenLineage"),
KafkaConnect("KafkaConnect"),
DBTCloud("DBTCloud");
private final String value;
private final static Map CONSTANTS = new HashMap();
static {
for (CreatePipelineService.PipelineServiceType c: values()) {
CONSTANTS.put(c.value, c);
}
}
PipelineServiceType(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
@JsonValue
public String value() {
return this.value;
}
@JsonCreator
public static CreatePipelineService.PipelineServiceType fromValue(String value) {
CreatePipelineService.PipelineServiceType constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException(value);
} else {
return constant;
}
}
}
}