io.fabric8.kubernetes.api.model.Volume Maven / Gradle / Ivy
package io.fabric8.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 org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"name",
"source"
})
public class Volume {
/**
* volume name; must be a DNS_LABEL and unique within the pod
*
*/
@JsonProperty("name")
private String name;
/**
*
*
*/
@JsonProperty("source")
@Valid
private VolumeSource source;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public Volume() {
}
/**
*
* @param source
* @param name
*/
public Volume(String name, VolumeSource source) {
this.name = name;
this.source = source;
}
/**
* volume name; must be a DNS_LABEL and unique within the pod
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
* volume name; must be a DNS_LABEL and unique within the pod
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
/**
*
*
* @return
* The source
*/
@JsonProperty("source")
public VolumeSource getSource() {
return source;
}
/**
*
*
* @param source
* The source
*/
@JsonProperty("source")
public void setSource(VolumeSource source) {
this.source = source;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(name).append(source).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Volume) == false) {
return false;
}
Volume rhs = ((Volume) other);
return new EqualsBuilder().append(name, rhs.name).append(source, rhs.source).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy