me.snowdrop.applicationcrd.api.model.IngressSelector Maven / Gradle / Ivy
package me.snowdrop.applicationcrd.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.constraints.NotNull;
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.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"apiVersion",
"fieldPath",
"host",
"kind",
"name",
"namespace",
"path",
"resourceVersion",
"uid"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = false, builderPackage = "io.fabric8.kubernetes.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
}, refs = {
@BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class)
})
public class IngressSelector implements KubernetesResource
{
/**
*
* (Required)
*
*/
@NotNull
@JsonProperty("apiVersion")
private String apiVersion = "app.k8s.io/v1beta1";
/**
*
*
*/
@JsonProperty("fieldPath")
private String fieldPath;
/**
*
*
*/
@JsonProperty("host")
private String host;
/**
*
* (Required)
*
*/
@NotNull
@JsonProperty("kind")
private String kind = "IngressSelector";
/**
*
*
*/
@JsonProperty("name")
private String name;
/**
*
*
*/
@JsonProperty("namespace")
private String namespace;
/**
*
*
*/
@JsonProperty("path")
private String path;
/**
*
*
*/
@JsonProperty("resourceVersion")
private String resourceVersion;
/**
*
*
*/
@JsonProperty("uid")
private String uid;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public IngressSelector() {
}
/**
*
* @param path
* @param uid
* @param apiVersion
* @param kind
* @param resourceVersion
* @param fieldPath
* @param host
* @param name
* @param namespace
*/
public IngressSelector(String apiVersion, String fieldPath, String host, String kind, String name, String namespace, String path, String resourceVersion, String uid) {
this.apiVersion = apiVersion;
this.fieldPath = fieldPath;
this.host = host;
this.kind = kind;
this.name = name;
this.namespace = namespace;
this.path = path;
this.resourceVersion = resourceVersion;
this.uid = uid;
}
/**
*
* (Required)
*
* @return
* The apiVersion
*/
@JsonProperty("apiVersion")
public String getApiVersion() {
return apiVersion;
}
/**
*
* (Required)
*
* @param apiVersion
* The apiVersion
*/
@JsonProperty("apiVersion")
public void setApiVersion(String apiVersion) {
this.apiVersion = apiVersion;
}
/**
*
*
* @return
* The fieldPath
*/
@JsonProperty("fieldPath")
public String getFieldPath() {
return fieldPath;
}
/**
*
*
* @param fieldPath
* The fieldPath
*/
@JsonProperty("fieldPath")
public void setFieldPath(String fieldPath) {
this.fieldPath = fieldPath;
}
/**
*
*
* @return
* The host
*/
@JsonProperty("host")
public String getHost() {
return host;
}
/**
*
*
* @param host
* The host
*/
@JsonProperty("host")
public void setHost(String host) {
this.host = host;
}
/**
*
* (Required)
*
* @return
* The kind
*/
@JsonProperty("kind")
public String getKind() {
return kind;
}
/**
*
* (Required)
*
* @param kind
* The kind
*/
@JsonProperty("kind")
public void setKind(String kind) {
this.kind = kind;
}
/**
*
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
/**
*
*
* @return
* The namespace
*/
@JsonProperty("namespace")
public String getNamespace() {
return namespace;
}
/**
*
*
* @param namespace
* The namespace
*/
@JsonProperty("namespace")
public void setNamespace(String namespace) {
this.namespace = namespace;
}
/**
*
*
* @return
* The path
*/
@JsonProperty("path")
public String getPath() {
return path;
}
/**
*
*
* @param path
* The path
*/
@JsonProperty("path")
public void setPath(String path) {
this.path = path;
}
/**
*
*
* @return
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public String getResourceVersion() {
return resourceVersion;
}
/**
*
*
* @param resourceVersion
* The resourceVersion
*/
@JsonProperty("resourceVersion")
public void setResourceVersion(String resourceVersion) {
this.resourceVersion = resourceVersion;
}
/**
*
*
* @return
* The uid
*/
@JsonProperty("uid")
public String getUid() {
return uid;
}
/**
*
*
* @param uid
* The uid
*/
@JsonProperty("uid")
public void setUid(String uid) {
this.uid = uid;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy