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

io.fabric8.kubernetes.api.model.ServerAddressByClientCIDR Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version

package io.fabric8.kubernetes.api.model;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
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.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",
    "clientCIDR",
    "serverAddress"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = true, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class ServerAddressByClientCIDR implements KubernetesResource
{

    /**
     * 
     * 
     */
    @JsonProperty("clientCIDR")
    private String clientCIDR;
    /**
     * 
     * 
     */
    @JsonProperty("serverAddress")
    private String serverAddress;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * No args constructor for use in serialization
     * 
     */
    public ServerAddressByClientCIDR() {
    }

    /**
     * 
     * @param clientCIDR
     * @param serverAddress
     */
    public ServerAddressByClientCIDR(String clientCIDR, String serverAddress) {
        this.clientCIDR = clientCIDR;
        this.serverAddress = serverAddress;
    }

    /**
     * 
     * 
     * @return
     *     The clientCIDR
     */
    @JsonProperty("clientCIDR")
    public String getClientCIDR() {
        return clientCIDR;
    }

    /**
     * 
     * 
     * @param clientCIDR
     *     The clientCIDR
     */
    @JsonProperty("clientCIDR")
    public void setClientCIDR(String clientCIDR) {
        this.clientCIDR = clientCIDR;
    }

    /**
     * 
     * 
     * @return
     *     The serverAddress
     */
    @JsonProperty("serverAddress")
    public String getServerAddress() {
        return serverAddress;
    }

    /**
     * 
     * 
     * @param serverAddress
     *     The serverAddress
     */
    @JsonProperty("serverAddress")
    public void setServerAddress(String serverAddress) {
        this.serverAddress = serverAddress;
    }

    @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