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

org.openmetadata.schema.api.data.CreateMetric Maven / Gradle / Ivy

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

package org.openmetadata.schema.api.data;

import java.util.ArrayList;
import java.util.List;
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.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.openmetadata.schema.CreateEntity;
import org.openmetadata.schema.type.EntityReference;
import org.openmetadata.schema.type.MetricGranularity;
import org.openmetadata.schema.type.MetricType;
import org.openmetadata.schema.type.MetricUnitOfMeasurement;
import org.openmetadata.schema.type.TagLabel;


/**
 * CreateMetricRequest
 * 

* Create Metric entity request * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "name", "displayName", "description", "metricExpression", "metricType", "unitOfMeasurement", "granularity", "relatedMetrics", "owners", "tags", "domain", "dataProducts", "extension" }) @Generated("jsonschema2pojo") public class CreateMetric 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 metric. * */ @JsonProperty("displayName") @JsonPropertyDescription("Display Name that identifies this metric.") private String displayName; /** * Text in Markdown format.@om-field-type * */ @JsonProperty("description") @JsonPropertyDescription("Text in Markdown format.") private String description; @JsonProperty("metricExpression") @Valid private MetricExpression metricExpression; /** * This schema defines the type of Metric. * */ @JsonProperty("metricType") @JsonPropertyDescription("This schema defines the type of Metric.") private MetricType metricType; /** * This schema defines the type of Metric's unit of measurement. * */ @JsonProperty("unitOfMeasurement") @JsonPropertyDescription("This schema defines the type of Metric's unit of measurement.") private MetricUnitOfMeasurement unitOfMeasurement; /** * This schema defines the type of Metric's granularity. * */ @JsonProperty("granularity") @JsonPropertyDescription("This schema defines the type of Metric's granularity.") private MetricGranularity granularity; /** * Other array of related metric fully qualified names that are related to this Metric. * */ @JsonProperty("relatedMetrics") @JsonPropertyDescription("Other array of related metric fully qualified names that are related to this Metric.") @Valid private List relatedMetrics = new ArrayList(); /** * 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; /** * Tags for this metric * */ @JsonProperty("tags") @JsonPropertyDescription("Tags for this metric") @Valid private List tags = null; /** * Fully qualified name of the domain the Metric belongs to. * */ @JsonProperty("domain") @JsonPropertyDescription("Fully qualified name of the domain the Metric belongs to.") private String domain; /** * 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(); /** * Entity extension data with custom attributes added to the entity. * */ @JsonProperty("extension") @JsonPropertyDescription("Entity extension data with custom attributes added to the entity.") private Object extension; /** * 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 CreateMetric withName(String name) { this.name = name; return this; } /** * Display Name that identifies this metric. * */ @JsonProperty("displayName") public String getDisplayName() { return displayName; } /** * Display Name that identifies this metric. * */ @JsonProperty("displayName") public void setDisplayName(String displayName) { this.displayName = displayName; } public CreateMetric 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 CreateMetric withDescription(String description) { this.description = description; return this; } @JsonProperty("metricExpression") public MetricExpression getMetricExpression() { return metricExpression; } @JsonProperty("metricExpression") public void setMetricExpression(MetricExpression metricExpression) { this.metricExpression = metricExpression; } public CreateMetric withMetricExpression(MetricExpression metricExpression) { this.metricExpression = metricExpression; return this; } /** * This schema defines the type of Metric. * */ @JsonProperty("metricType") public MetricType getMetricType() { return metricType; } /** * This schema defines the type of Metric. * */ @JsonProperty("metricType") public void setMetricType(MetricType metricType) { this.metricType = metricType; } public CreateMetric withMetricType(MetricType metricType) { this.metricType = metricType; return this; } /** * This schema defines the type of Metric's unit of measurement. * */ @JsonProperty("unitOfMeasurement") public MetricUnitOfMeasurement getUnitOfMeasurement() { return unitOfMeasurement; } /** * This schema defines the type of Metric's unit of measurement. * */ @JsonProperty("unitOfMeasurement") public void setUnitOfMeasurement(MetricUnitOfMeasurement unitOfMeasurement) { this.unitOfMeasurement = unitOfMeasurement; } public CreateMetric withUnitOfMeasurement(MetricUnitOfMeasurement unitOfMeasurement) { this.unitOfMeasurement = unitOfMeasurement; return this; } /** * This schema defines the type of Metric's granularity. * */ @JsonProperty("granularity") public MetricGranularity getGranularity() { return granularity; } /** * This schema defines the type of Metric's granularity. * */ @JsonProperty("granularity") public void setGranularity(MetricGranularity granularity) { this.granularity = granularity; } public CreateMetric withGranularity(MetricGranularity granularity) { this.granularity = granularity; return this; } /** * Other array of related metric fully qualified names that are related to this Metric. * */ @JsonProperty("relatedMetrics") public List getRelatedMetrics() { return relatedMetrics; } /** * Other array of related metric fully qualified names that are related to this Metric. * */ @JsonProperty("relatedMetrics") public void setRelatedMetrics(List relatedMetrics) { this.relatedMetrics = relatedMetrics; } public CreateMetric withRelatedMetrics(List relatedMetrics) { this.relatedMetrics = relatedMetrics; 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 CreateMetric withOwners(List owners) { this.owners = owners; return this; } /** * Tags for this metric * */ @JsonProperty("tags") public List getTags() { return tags; } /** * Tags for this metric * */ @JsonProperty("tags") public void setTags(List tags) { this.tags = tags; } public CreateMetric withTags(List tags) { this.tags = tags; return this; } /** * Fully qualified name of the domain the Metric belongs to. * */ @JsonProperty("domain") public String getDomain() { return domain; } /** * Fully qualified name of the domain the Metric belongs to. * */ @JsonProperty("domain") public void setDomain(String domain) { this.domain = domain; } public CreateMetric withDomain(String domain) { this.domain = domain; 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 CreateMetric withDataProducts(List dataProducts) { this.dataProducts = dataProducts; return this; } /** * Entity extension data with custom attributes added to the entity. * */ @JsonProperty("extension") public Object getExtension() { return extension; } /** * Entity extension data with custom attributes added to the entity. * */ @JsonProperty("extension") public void setExtension(Object extension) { this.extension = extension; } public CreateMetric withExtension(Object extension) { this.extension = extension; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(CreateMetric.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("metricExpression"); sb.append('='); sb.append(((this.metricExpression == null)?"":this.metricExpression)); sb.append(','); sb.append("metricType"); sb.append('='); sb.append(((this.metricType == null)?"":this.metricType)); sb.append(','); sb.append("unitOfMeasurement"); sb.append('='); sb.append(((this.unitOfMeasurement == null)?"":this.unitOfMeasurement)); sb.append(','); sb.append("granularity"); sb.append('='); sb.append(((this.granularity == null)?"":this.granularity)); sb.append(','); sb.append("relatedMetrics"); sb.append('='); sb.append(((this.relatedMetrics == null)?"":this.relatedMetrics)); sb.append(','); sb.append("owners"); sb.append('='); sb.append(((this.owners == null)?"":this.owners)); sb.append(','); sb.append("tags"); sb.append('='); sb.append(((this.tags == null)?"":this.tags)); sb.append(','); sb.append("domain"); sb.append('='); sb.append(((this.domain == null)?"":this.domain)); sb.append(','); sb.append("dataProducts"); sb.append('='); sb.append(((this.dataProducts == null)?"":this.dataProducts)); sb.append(','); sb.append("extension"); sb.append('='); sb.append(((this.extension == null)?"":this.extension)); 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.unitOfMeasurement == null)? 0 :this.unitOfMeasurement.hashCode())); result = ((result* 31)+((this.extension == null)? 0 :this.extension.hashCode())); result = ((result* 31)+((this.relatedMetrics == null)? 0 :this.relatedMetrics.hashCode())); result = ((result* 31)+((this.displayName == null)? 0 :this.displayName.hashCode())); result = ((result* 31)+((this.metricExpression == null)? 0 :this.metricExpression.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.owners == null)? 0 :this.owners.hashCode())); result = ((result* 31)+((this.tags == null)? 0 :this.tags.hashCode())); result = ((result* 31)+((this.metricType == null)? 0 :this.metricType.hashCode())); result = ((result* 31)+((this.granularity == null)? 0 :this.granularity.hashCode())); result = ((result* 31)+((this.domain == null)? 0 :this.domain.hashCode())); result = ((result* 31)+((this.name == null)? 0 :this.name.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof CreateMetric) == false) { return false; } CreateMetric rhs = ((CreateMetric) other); return ((((((((((((((this.unitOfMeasurement == rhs.unitOfMeasurement)||((this.unitOfMeasurement!= null)&&this.unitOfMeasurement.equals(rhs.unitOfMeasurement)))&&((this.extension == rhs.extension)||((this.extension!= null)&&this.extension.equals(rhs.extension))))&&((this.relatedMetrics == rhs.relatedMetrics)||((this.relatedMetrics!= null)&&this.relatedMetrics.equals(rhs.relatedMetrics))))&&((this.displayName == rhs.displayName)||((this.displayName!= null)&&this.displayName.equals(rhs.displayName))))&&((this.metricExpression == rhs.metricExpression)||((this.metricExpression!= null)&&this.metricExpression.equals(rhs.metricExpression))))&&((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.owners == rhs.owners)||((this.owners!= null)&&this.owners.equals(rhs.owners))))&&((this.tags == rhs.tags)||((this.tags!= null)&&this.tags.equals(rhs.tags))))&&((this.metricType == rhs.metricType)||((this.metricType!= null)&&this.metricType.equals(rhs.metricType))))&&((this.granularity == rhs.granularity)||((this.granularity!= null)&&this.granularity.equals(rhs.granularity))))&&((this.domain == rhs.domain)||((this.domain!= null)&&this.domain.equals(rhs.domain))))&&((this.name == rhs.name)||((this.name!= null)&&this.name.equals(rhs.name)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy