io.alauda.kubernetes.api.model.MultiBranchPipeline Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.alauda.kubernetes.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"behaviours",
"orphaned"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class MultiBranchPipeline implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("behaviours")
@Valid
private MultiBranchBehaviours behaviours;
/**
*
*
*/
@JsonProperty("orphaned")
@Valid
private MultiBranchOrphan orphaned;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public MultiBranchPipeline() {
}
/**
*
* @param orphaned
* @param behaviours
*/
public MultiBranchPipeline(MultiBranchBehaviours behaviours, MultiBranchOrphan orphaned) {
this.behaviours = behaviours;
this.orphaned = orphaned;
}
/**
*
*
* @return
* The behaviours
*/
@JsonProperty("behaviours")
public MultiBranchBehaviours getBehaviours() {
return behaviours;
}
/**
*
*
* @param behaviours
* The behaviours
*/
@JsonProperty("behaviours")
public void setBehaviours(MultiBranchBehaviours behaviours) {
this.behaviours = behaviours;
}
/**
*
*
* @return
* The orphaned
*/
@JsonProperty("orphaned")
public MultiBranchOrphan getOrphaned() {
return orphaned;
}
/**
*
*
* @param orphaned
* The orphaned
*/
@JsonProperty("orphaned")
public void setOrphaned(MultiBranchOrphan orphaned) {
this.orphaned = orphaned;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}