
io.kubernetes.client.models.V1RBDPersistentVolumeSource 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.V1SecretReference;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.
*/
@ApiModel(description = "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.")
public class V1RBDPersistentVolumeSource {
@SerializedName("fsType")
private String fsType = null;
@SerializedName("image")
private String image = null;
@SerializedName("keyring")
private String keyring = null;
@SerializedName("monitors")
private List monitors = new ArrayList();
@SerializedName("pool")
private String pool = null;
@SerializedName("readOnly")
private Boolean readOnly = null;
@SerializedName("secretRef")
private V1SecretReference secretRef = null;
@SerializedName("user")
private String user = null;
public V1RBDPersistentVolumeSource fsType(String fsType) {
this.fsType = fsType;
return this;
}
/**
* Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd
* @return fsType
**/
@ApiModelProperty(value = "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd")
public String getFsType() {
return fsType;
}
public void setFsType(String fsType) {
this.fsType = fsType;
}
public V1RBDPersistentVolumeSource image(String image) {
this.image = image;
return this;
}
/**
* The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return image
**/
@ApiModelProperty(required = true, value = "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public V1RBDPersistentVolumeSource keyring(String keyring) {
this.keyring = keyring;
return this;
}
/**
* Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return keyring
**/
@ApiModelProperty(value = "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public String getKeyring() {
return keyring;
}
public void setKeyring(String keyring) {
this.keyring = keyring;
}
public V1RBDPersistentVolumeSource monitors(List monitors) {
this.monitors = monitors;
return this;
}
public V1RBDPersistentVolumeSource addMonitorsItem(String monitorsItem) {
this.monitors.add(monitorsItem);
return this;
}
/**
* A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return monitors
**/
@ApiModelProperty(required = true, value = "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public List getMonitors() {
return monitors;
}
public void setMonitors(List monitors) {
this.monitors = monitors;
}
public V1RBDPersistentVolumeSource pool(String pool) {
this.pool = pool;
return this;
}
/**
* The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return pool
**/
@ApiModelProperty(value = "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public String getPool() {
return pool;
}
public void setPool(String pool) {
this.pool = pool;
}
public V1RBDPersistentVolumeSource readOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
/**
* ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return readOnly
**/
@ApiModelProperty(value = "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public Boolean isReadOnly() {
return readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public V1RBDPersistentVolumeSource secretRef(V1SecretReference secretRef) {
this.secretRef = secretRef;
return this;
}
/**
* SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return secretRef
**/
@ApiModelProperty(value = "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public V1SecretReference getSecretRef() {
return secretRef;
}
public void setSecretRef(V1SecretReference secretRef) {
this.secretRef = secretRef;
}
public V1RBDPersistentVolumeSource user(String user) {
this.user = user;
return this;
}
/**
* The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it
* @return user
**/
@ApiModelProperty(value = "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it")
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1RBDPersistentVolumeSource v1RBDPersistentVolumeSource = (V1RBDPersistentVolumeSource) o;
return Objects.equals(this.fsType, v1RBDPersistentVolumeSource.fsType) &&
Objects.equals(this.image, v1RBDPersistentVolumeSource.image) &&
Objects.equals(this.keyring, v1RBDPersistentVolumeSource.keyring) &&
Objects.equals(this.monitors, v1RBDPersistentVolumeSource.monitors) &&
Objects.equals(this.pool, v1RBDPersistentVolumeSource.pool) &&
Objects.equals(this.readOnly, v1RBDPersistentVolumeSource.readOnly) &&
Objects.equals(this.secretRef, v1RBDPersistentVolumeSource.secretRef) &&
Objects.equals(this.user, v1RBDPersistentVolumeSource.user);
}
@Override
public int hashCode() {
return Objects.hash(fsType, image, keyring, monitors, pool, readOnly, secretRef, user);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1RBDPersistentVolumeSource {\n");
sb.append(" fsType: ").append(toIndentedString(fsType)).append("\n");
sb.append(" image: ").append(toIndentedString(image)).append("\n");
sb.append(" keyring: ").append(toIndentedString(keyring)).append("\n");
sb.append(" monitors: ").append(toIndentedString(monitors)).append("\n");
sb.append(" pool: ").append(toIndentedString(pool)).append("\n");
sb.append(" readOnly: ").append(toIndentedString(readOnly)).append("\n");
sb.append(" secretRef: ").append(toIndentedString(secretRef)).append("\n");
sb.append(" user: ").append(toIndentedString(user)).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