io.fabric8.kubernetes.api.model.ISCSIVolumeSource Maven / Gradle / Ivy
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 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({
"fsType",
"iqn",
"lun",
"readOnly",
"targetPortal"
})
public class ISCSIVolumeSource {
/**
* file system type to mount
*
*/
@JsonProperty("fsType")
private String fsType;
/**
* iSCSI Qualified Name
*
*/
@JsonProperty("iqn")
private String iqn;
/**
* iscsi target lun number
*
*/
@JsonProperty("lun")
private Integer lun;
/**
* read-only if true
*
*/
@JsonProperty("readOnly")
private Boolean readOnly;
/**
* iSCSI target portal
*
*/
@JsonProperty("targetPortal")
private String targetPortal;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ISCSIVolumeSource() {
}
/**
*
* @param targetPortal
* @param fsType
* @param readOnly
* @param lun
* @param iqn
*/
public ISCSIVolumeSource(String fsType, String iqn, Integer lun, Boolean readOnly, String targetPortal) {
this.fsType = fsType;
this.iqn = iqn;
this.lun = lun;
this.readOnly = readOnly;
this.targetPortal = targetPortal;
}
/**
* file system type to mount
*
* @return
* The fsType
*/
@JsonProperty("fsType")
public String getFsType() {
return fsType;
}
/**
* file system type to mount
*
* @param fsType
* The fsType
*/
@JsonProperty("fsType")
public void setFsType(String fsType) {
this.fsType = fsType;
}
/**
* iSCSI Qualified Name
*
* @return
* The iqn
*/
@JsonProperty("iqn")
public String getIqn() {
return iqn;
}
/**
* iSCSI Qualified Name
*
* @param iqn
* The iqn
*/
@JsonProperty("iqn")
public void setIqn(String iqn) {
this.iqn = iqn;
}
/**
* iscsi target lun number
*
* @return
* The lun
*/
@JsonProperty("lun")
public Integer getLun() {
return lun;
}
/**
* iscsi target lun number
*
* @param lun
* The lun
*/
@JsonProperty("lun")
public void setLun(Integer lun) {
this.lun = lun;
}
/**
* read-only if true
*
* @return
* The readOnly
*/
@JsonProperty("readOnly")
public Boolean getReadOnly() {
return readOnly;
}
/**
* read-only if true
*
* @param readOnly
* The readOnly
*/
@JsonProperty("readOnly")
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
/**
* iSCSI target portal
*
* @return
* The targetPortal
*/
@JsonProperty("targetPortal")
public String getTargetPortal() {
return targetPortal;
}
/**
* iSCSI target portal
*
* @param targetPortal
* The targetPortal
*/
@JsonProperty("targetPortal")
public void setTargetPortal(String targetPortal) {
this.targetPortal = targetPortal;
}
@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(fsType).append(iqn).append(lun).append(readOnly).append(targetPortal).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ISCSIVolumeSource) == false) {
return false;
}
ISCSIVolumeSource rhs = ((ISCSIVolumeSource) other);
return new EqualsBuilder().append(fsType, rhs.fsType).append(iqn, rhs.iqn).append(lun, rhs.lun).append(readOnly, rhs.readOnly).append(targetPortal, rhs.targetPortal).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy