
io.kubernetes.client.models.V1PortworxVolumeSource 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.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* PortworxVolumeSource represents a Portworx volume resource.
*/
@ApiModel(description = "PortworxVolumeSource represents a Portworx volume resource.")
public class V1PortworxVolumeSource {
@SerializedName("fsType")
private String fsType = null;
@SerializedName("readOnly")
private Boolean readOnly = null;
@SerializedName("volumeID")
private String volumeID = null;
public V1PortworxVolumeSource fsType(String fsType) {
this.fsType = fsType;
return this;
}
/**
* FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.
* @return fsType
**/
@ApiModelProperty(value = "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.")
public String getFsType() {
return fsType;
}
public void setFsType(String fsType) {
this.fsType = fsType;
}
public V1PortworxVolumeSource readOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
/**
* Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
* @return readOnly
**/
@ApiModelProperty(value = "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.")
public Boolean isReadOnly() {
return readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public V1PortworxVolumeSource volumeID(String volumeID) {
this.volumeID = volumeID;
return this;
}
/**
* VolumeID uniquely identifies a Portworx volume
* @return volumeID
**/
@ApiModelProperty(required = true, value = "VolumeID uniquely identifies a Portworx volume")
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;
}
V1PortworxVolumeSource v1PortworxVolumeSource = (V1PortworxVolumeSource) o;
return Objects.equals(this.fsType, v1PortworxVolumeSource.fsType) &&
Objects.equals(this.readOnly, v1PortworxVolumeSource.readOnly) &&
Objects.equals(this.volumeID, v1PortworxVolumeSource.volumeID);
}
@Override
public int hashCode() {
return Objects.hash(fsType, readOnly, volumeID);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1PortworxVolumeSource {\n");
sb.append(" fsType: ").append(toIndentedString(fsType)).append("\n");
sb.append(" readOnly: ").append(toIndentedString(readOnly)).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