
io.kubernetes.client.models.V1PersistentVolumeStatus 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;
/**
* PersistentVolumeStatus is the current status of a persistent volume.
*/
@ApiModel(description = "PersistentVolumeStatus is the current status of a persistent volume.")
public class V1PersistentVolumeStatus {
@SerializedName("message")
private String message = null;
@SerializedName("phase")
private String phase = null;
@SerializedName("reason")
private String reason = null;
public V1PersistentVolumeStatus message(String message) {
this.message = message;
return this;
}
/**
* A human-readable message indicating details about why the volume is in this state.
* @return message
**/
@ApiModelProperty(value = "A human-readable message indicating details about why the volume is in this state.")
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public V1PersistentVolumeStatus phase(String phase) {
this.phase = phase;
return this;
}
/**
* Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase
* @return phase
**/
@ApiModelProperty(value = "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase")
public String getPhase() {
return phase;
}
public void setPhase(String phase) {
this.phase = phase;
}
public V1PersistentVolumeStatus reason(String reason) {
this.reason = reason;
return this;
}
/**
* Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
* @return reason
**/
@ApiModelProperty(value = "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.")
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1PersistentVolumeStatus v1PersistentVolumeStatus = (V1PersistentVolumeStatus) o;
return Objects.equals(this.message, v1PersistentVolumeStatus.message) &&
Objects.equals(this.phase, v1PersistentVolumeStatus.phase) &&
Objects.equals(this.reason, v1PersistentVolumeStatus.reason);
}
@Override
public int hashCode() {
return Objects.hash(message, phase, reason);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1PersistentVolumeStatus {\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" phase: ").append(toIndentedString(phase)).append("\n");
sb.append(" reason: ").append(toIndentedString(reason)).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