
io.kubernetes.client.models.V1CinderVolumeSource Maven / Gradle / Ivy
/*
* Kubernetes
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v1.11.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.kubernetes.client.models;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.kubernetes.client.models.V1LocalObjectReference;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.
*/
@ApiModel(description = "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.")
public class V1CinderVolumeSource {
@SerializedName("fsType")
private String fsType = null;
@SerializedName("readOnly")
private Boolean readOnly = null;
@SerializedName("secretRef")
private V1LocalObjectReference secretRef = null;
@SerializedName("volumeID")
private String volumeID = null;
public V1CinderVolumeSource fsType(String fsType) {
this.fsType = fsType;
return this;
}
/**
* Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
* @return fsType
**/
@ApiModelProperty(value = "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md")
public String getFsType() {
return fsType;
}
public void setFsType(String fsType) {
this.fsType = fsType;
}
public V1CinderVolumeSource readOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
/**
* Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
* @return readOnly
**/
@ApiModelProperty(value = "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md")
public Boolean isReadOnly() {
return readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public V1CinderVolumeSource secretRef(V1LocalObjectReference secretRef) {
this.secretRef = secretRef;
return this;
}
/**
* Optional: points to a secret object containing parameters used to connect to OpenStack.
* @return secretRef
**/
@ApiModelProperty(value = "Optional: points to a secret object containing parameters used to connect to OpenStack.")
public V1LocalObjectReference getSecretRef() {
return secretRef;
}
public void setSecretRef(V1LocalObjectReference secretRef) {
this.secretRef = secretRef;
}
public V1CinderVolumeSource volumeID(String volumeID) {
this.volumeID = volumeID;
return this;
}
/**
* volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
* @return volumeID
**/
@ApiModelProperty(required = true, value = "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md")
public String getVolumeID() {
return volumeID;
}
public void setVolumeID(String volumeID) {
this.volumeID = volumeID;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1CinderVolumeSource v1CinderVolumeSource = (V1CinderVolumeSource) o;
return Objects.equals(this.fsType, v1CinderVolumeSource.fsType) &&
Objects.equals(this.readOnly, v1CinderVolumeSource.readOnly) &&
Objects.equals(this.secretRef, v1CinderVolumeSource.secretRef) &&
Objects.equals(this.volumeID, v1CinderVolumeSource.volumeID);
}
@Override
public int hashCode() {
return Objects.hash(fsType, readOnly, secretRef, volumeID);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1CinderVolumeSource {\n");
sb.append(" fsType: ").append(toIndentedString(fsType)).append("\n");
sb.append(" readOnly: ").append(toIndentedString(readOnly)).append("\n");
sb.append(" secretRef: ").append(toIndentedString(secretRef)).append("\n");
sb.append(" volumeID: ").append(toIndentedString(volumeID)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy