io.fabric8.openshift.api.model.installer.v1.Networking Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.installer.v1;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
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.Container;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"clusterNetwork",
"deprecatedClusterNetworks",
"machineCIDR",
"machineNetwork",
"networkType",
"serviceCIDR",
"serviceNetwork",
"type"
})
@ToString
@EqualsAndHashCode
@Setter
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
@BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class),
@BuildableReference(Container.class),
@BuildableReference(PodTemplateSpec.class),
@BuildableReference(ResourceRequirements.class),
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
@BuildableReference(PersistentVolumeClaim.class)
})
public class Networking implements KubernetesResource
{
@JsonProperty("clusterNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List clusterNetwork = new ArrayList();
@JsonProperty("deprecatedClusterNetworks")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List deprecatedClusterNetworks = new ArrayList();
@JsonProperty("machineCIDR")
private String machineCIDR;
@JsonProperty("machineNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List machineNetwork = new ArrayList();
@JsonProperty("networkType")
private String networkType;
@JsonProperty("serviceCIDR")
private String serviceCIDR;
@JsonProperty("serviceNetwork")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List serviceNetwork = new ArrayList();
@JsonProperty("type")
private String type;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public Networking() {
}
/**
*
* @param machineNetwork
* @param deprecatedClusterNetworks
* @param serviceNetwork
* @param clusterNetwork
* @param machineCIDR
* @param networkType
* @param type
* @param serviceCIDR
*/
public Networking(List clusterNetwork, List deprecatedClusterNetworks, String machineCIDR, List machineNetwork, String networkType, String serviceCIDR, List serviceNetwork, String type) {
super();
this.clusterNetwork = clusterNetwork;
this.deprecatedClusterNetworks = deprecatedClusterNetworks;
this.machineCIDR = machineCIDR;
this.machineNetwork = machineNetwork;
this.networkType = networkType;
this.serviceCIDR = serviceCIDR;
this.serviceNetwork = serviceNetwork;
this.type = type;
}
@JsonProperty("clusterNetwork")
public List getClusterNetwork() {
return clusterNetwork;
}
@JsonProperty("clusterNetwork")
public void setClusterNetwork(List clusterNetwork) {
this.clusterNetwork = clusterNetwork;
}
@JsonProperty("deprecatedClusterNetworks")
public List getDeprecatedClusterNetworks() {
return deprecatedClusterNetworks;
}
@JsonProperty("deprecatedClusterNetworks")
public void setDeprecatedClusterNetworks(List deprecatedClusterNetworks) {
this.deprecatedClusterNetworks = deprecatedClusterNetworks;
}
@JsonProperty("machineCIDR")
public String getMachineCIDR() {
return machineCIDR;
}
@JsonProperty("machineCIDR")
public void setMachineCIDR(String machineCIDR) {
this.machineCIDR = machineCIDR;
}
@JsonProperty("machineNetwork")
public List getMachineNetwork() {
return machineNetwork;
}
@JsonProperty("machineNetwork")
public void setMachineNetwork(List machineNetwork) {
this.machineNetwork = machineNetwork;
}
@JsonProperty("networkType")
public String getNetworkType() {
return networkType;
}
@JsonProperty("networkType")
public void setNetworkType(String networkType) {
this.networkType = networkType;
}
@JsonProperty("serviceCIDR")
public String getServiceCIDR() {
return serviceCIDR;
}
@JsonProperty("serviceCIDR")
public void setServiceCIDR(String serviceCIDR) {
this.serviceCIDR = serviceCIDR;
}
@JsonProperty("serviceNetwork")
public List getServiceNetwork() {
return serviceNetwork;
}
@JsonProperty("serviceNetwork")
public void setServiceNetwork(List serviceNetwork) {
this.serviceNetwork = serviceNetwork;
}
@JsonProperty("type")
public String getType() {
return type;
}
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy