
io.fabric8.kubernetes.api.model.CSIVolumeSource Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
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.sundr.builder.annotations.Buildable;
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",
"driver",
"fsType",
"nodePublishSecretRef",
"readOnly",
"volumeAttributes"
})
@ToString
@EqualsAndHashCode
@Setter
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = true, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder")
public class CSIVolumeSource implements KubernetesResource
{
@JsonProperty("driver")
private java.lang.String driver;
@JsonProperty("fsType")
private java.lang.String fsType;
@JsonProperty("nodePublishSecretRef")
private LocalObjectReference nodePublishSecretRef;
@JsonProperty("readOnly")
private Boolean readOnly;
@JsonProperty("volumeAttributes")
private Map volumeAttributes;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public CSIVolumeSource() {
}
/**
*
* @param driver
* @param nodePublishSecretRef
* @param readOnly
* @param fsType
* @param volumeAttributes
*/
public CSIVolumeSource(java.lang.String driver, java.lang.String fsType, LocalObjectReference nodePublishSecretRef, Boolean readOnly, Map volumeAttributes) {
super();
this.driver = driver;
this.fsType = fsType;
this.nodePublishSecretRef = nodePublishSecretRef;
this.readOnly = readOnly;
this.volumeAttributes = volumeAttributes;
}
@JsonProperty("driver")
public java.lang.String getDriver() {
return driver;
}
@JsonProperty("driver")
public void setDriver(java.lang.String driver) {
this.driver = driver;
}
@JsonProperty("fsType")
public java.lang.String getFsType() {
return fsType;
}
@JsonProperty("fsType")
public void setFsType(java.lang.String fsType) {
this.fsType = fsType;
}
@JsonProperty("nodePublishSecretRef")
public LocalObjectReference getNodePublishSecretRef() {
return nodePublishSecretRef;
}
@JsonProperty("nodePublishSecretRef")
public void setNodePublishSecretRef(LocalObjectReference nodePublishSecretRef) {
this.nodePublishSecretRef = nodePublishSecretRef;
}
@JsonProperty("readOnly")
public Boolean getReadOnly() {
return readOnly;
}
@JsonProperty("readOnly")
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
@JsonProperty("volumeAttributes")
public Map getVolumeAttributes() {
return volumeAttributes;
}
@JsonProperty("volumeAttributes")
public void setVolumeAttributes(Map volumeAttributes) {
this.volumeAttributes = volumeAttributes;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(java.lang.String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy