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

org.openmetadata.schema.api.policies.CreatePolicy Maven / Gradle / Ivy

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

package org.openmetadata.schema.api.policies;

import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
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.entity.policies.accessControl.Rule;
import org.openmetadata.schema.type.EntityReference;


/**
 * CreatePolicyRequest
 * 

* Create Policy Entity Request * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "name", "displayName", "description", "owners", "rules", "enabled", "location", "domain" }) @Generated("jsonschema2pojo") public class CreatePolicy 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; /** * Title for this Policy. * */ @JsonProperty("displayName") @JsonPropertyDescription("Title for this Policy.") private String displayName; /** * Text in Markdown format.@om-field-type * */ @JsonProperty("description") @JsonPropertyDescription("Text in Markdown format.") private String description; /** * 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; /** * A set of rules associated with the Policy. * (Required) * */ @JsonProperty("rules") @JsonPropertyDescription("A set of rules associated with the Policy.") @Valid @NotNull private List rules = new ArrayList(); /** * Is the policy enabled. * */ @JsonProperty("enabled") @JsonPropertyDescription("Is the policy enabled.") private Boolean enabled = true; /** * Unique id used to identify an entity. * */ @JsonProperty("location") @JsonPropertyDescription("Unique id used to identify an entity.") private UUID location; /** * Fully qualified name of the domain the Table belongs to. * */ @JsonProperty("domain") @JsonPropertyDescription("Fully qualified name of the domain the Table belongs to.") private String domain; /** * 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 CreatePolicy withName(String name) { this.name = name; return this; } /** * Title for this Policy. * */ @JsonProperty("displayName") public String getDisplayName() { return displayName; } /** * Title for this Policy. * */ @JsonProperty("displayName") public void setDisplayName(String displayName) { this.displayName = displayName; } public CreatePolicy 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 CreatePolicy withDescription(String description) { this.description = description; 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 CreatePolicy withOwners(List owners) { this.owners = owners; return this; } /** * A set of rules associated with the Policy. * (Required) * */ @JsonProperty("rules") public List getRules() { return rules; } /** * A set of rules associated with the Policy. * (Required) * */ @JsonProperty("rules") public void setRules(List rules) { this.rules = rules; } public CreatePolicy withRules(List rules) { this.rules = rules; return this; } /** * Is the policy enabled. * */ @JsonProperty("enabled") public Boolean getEnabled() { return enabled; } /** * Is the policy enabled. * */ @JsonProperty("enabled") public void setEnabled(Boolean enabled) { this.enabled = enabled; } public CreatePolicy withEnabled(Boolean enabled) { this.enabled = enabled; return this; } /** * Unique id used to identify an entity. * */ @JsonProperty("location") public UUID getLocation() { return location; } /** * Unique id used to identify an entity. * */ @JsonProperty("location") public void setLocation(UUID location) { this.location = location; } public CreatePolicy withLocation(UUID location) { this.location = location; return this; } /** * Fully qualified name of the domain the Table belongs to. * */ @JsonProperty("domain") public String getDomain() { return domain; } /** * Fully qualified name of the domain the Table belongs to. * */ @JsonProperty("domain") public void setDomain(String domain) { this.domain = domain; } public CreatePolicy withDomain(String domain) { this.domain = domain; return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(CreatePolicy.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("owners"); sb.append('='); sb.append(((this.owners == null)?"":this.owners)); sb.append(','); sb.append("rules"); sb.append('='); sb.append(((this.rules == null)?"":this.rules)); sb.append(','); sb.append("enabled"); sb.append('='); sb.append(((this.enabled == null)?"":this.enabled)); sb.append(','); sb.append("location"); sb.append('='); sb.append(((this.location == null)?"":this.location)); sb.append(','); sb.append("domain"); sb.append('='); sb.append(((this.domain == null)?"":this.domain)); 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.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.owners == null)? 0 :this.owners.hashCode())); result = ((result* 31)+((this.rules == null)? 0 :this.rules.hashCode())); result = ((result* 31)+((this.location == null)? 0 :this.location.hashCode())); result = ((result* 31)+((this.enabled == null)? 0 :this.enabled.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof CreatePolicy) == false) { return false; } CreatePolicy rhs = ((CreatePolicy) other); return (((((((((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.owners == rhs.owners)||((this.owners!= null)&&this.owners.equals(rhs.owners))))&&((this.rules == rhs.rules)||((this.rules!= null)&&this.rules.equals(rhs.rules))))&&((this.location == rhs.location)||((this.location!= null)&&this.location.equals(rhs.location))))&&((this.enabled == rhs.enabled)||((this.enabled!= null)&&this.enabled.equals(rhs.enabled)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy