io.alauda.kubernetes.api.model.StorageOSVolumeSource Maven / Gradle / Ivy
package io.alauda.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 com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.alauda.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",
"fsType",
"readOnly",
"secretRef",
"volumeName",
"volumeNamespace"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class StorageOSVolumeSource implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("fsType")
private String fsType;
/**
*
*
*/
@JsonProperty("readOnly")
private Boolean readOnly;
/**
*
*
*/
@JsonProperty("secretRef")
@Valid
private LocalObjectReference secretRef;
/**
*
*
*/
@JsonProperty("volumeName")
private String volumeName;
/**
*
*
*/
@JsonProperty("volumeNamespace")
private String volumeNamespace;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public StorageOSVolumeSource() {
}
/**
*
* @param volumeNamespace
* @param volumeName
* @param secretRef
* @param readOnly
* @param fsType
*/
public StorageOSVolumeSource(String fsType, Boolean readOnly, LocalObjectReference secretRef, String volumeName, String volumeNamespace) {
this.fsType = fsType;
this.readOnly = readOnly;
this.secretRef = secretRef;
this.volumeName = volumeName;
this.volumeNamespace = volumeNamespace;
}
/**
*
*
* @return
* The fsType
*/
@JsonProperty("fsType")
public String getFsType() {
return fsType;
}
/**
*
*
* @param fsType
* The fsType
*/
@JsonProperty("fsType")
public void setFsType(String fsType) {
this.fsType = fsType;
}
/**
*
*
* @return
* The readOnly
*/
@JsonProperty("readOnly")
public Boolean getReadOnly() {
return readOnly;
}
/**
*
*
* @param readOnly
* The readOnly
*/
@JsonProperty("readOnly")
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
/**
*
*
* @return
* The secretRef
*/
@JsonProperty("secretRef")
public LocalObjectReference getSecretRef() {
return secretRef;
}
/**
*
*
* @param secretRef
* The secretRef
*/
@JsonProperty("secretRef")
public void setSecretRef(LocalObjectReference secretRef) {
this.secretRef = secretRef;
}
/**
*
*
* @return
* The volumeName
*/
@JsonProperty("volumeName")
public String getVolumeName() {
return volumeName;
}
/**
*
*
* @param volumeName
* The volumeName
*/
@JsonProperty("volumeName")
public void setVolumeName(String volumeName) {
this.volumeName = volumeName;
}
/**
*
*
* @return
* The volumeNamespace
*/
@JsonProperty("volumeNamespace")
public String getVolumeNamespace() {
return volumeNamespace;
}
/**
*
*
* @param volumeNamespace
* The volumeNamespace
*/
@JsonProperty("volumeNamespace")
public void setVolumeNamespace(String volumeNamespace) {
this.volumeNamespace = volumeNamespace;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}