
io.kubernetes.client.models.V1PersistentVolumeClaimStatus 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.custom.Quantity;
import io.kubernetes.client.models.V1PersistentVolumeClaimCondition;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* PersistentVolumeClaimStatus is the current status of a persistent volume claim.
*/
@ApiModel(description = "PersistentVolumeClaimStatus is the current status of a persistent volume claim.")
public class V1PersistentVolumeClaimStatus {
@SerializedName("accessModes")
private List accessModes = null;
@SerializedName("capacity")
private Map capacity = null;
@SerializedName("conditions")
private List conditions = null;
@SerializedName("phase")
private String phase = null;
public V1PersistentVolumeClaimStatus accessModes(List accessModes) {
this.accessModes = accessModes;
return this;
}
public V1PersistentVolumeClaimStatus addAccessModesItem(String accessModesItem) {
if (this.accessModes == null) {
this.accessModes = new ArrayList();
}
this.accessModes.add(accessModesItem);
return this;
}
/**
* AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
* @return accessModes
**/
@ApiModelProperty(value = "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1")
public List getAccessModes() {
return accessModes;
}
public void setAccessModes(List accessModes) {
this.accessModes = accessModes;
}
public V1PersistentVolumeClaimStatus capacity(Map capacity) {
this.capacity = capacity;
return this;
}
public V1PersistentVolumeClaimStatus putCapacityItem(String key, Quantity capacityItem) {
if (this.capacity == null) {
this.capacity = new HashMap();
}
this.capacity.put(key, capacityItem);
return this;
}
/**
* Represents the actual resources of the underlying volume.
* @return capacity
**/
@ApiModelProperty(value = "Represents the actual resources of the underlying volume.")
public Map getCapacity() {
return capacity;
}
public void setCapacity(Map capacity) {
this.capacity = capacity;
}
public V1PersistentVolumeClaimStatus conditions(List conditions) {
this.conditions = conditions;
return this;
}
public V1PersistentVolumeClaimStatus addConditionsItem(V1PersistentVolumeClaimCondition conditionsItem) {
if (this.conditions == null) {
this.conditions = new ArrayList();
}
this.conditions.add(conditionsItem);
return this;
}
/**
* Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.
* @return conditions
**/
@ApiModelProperty(value = "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.")
public List getConditions() {
return conditions;
}
public void setConditions(List conditions) {
this.conditions = conditions;
}
public V1PersistentVolumeClaimStatus phase(String phase) {
this.phase = phase;
return this;
}
/**
* Phase represents the current phase of PersistentVolumeClaim.
* @return phase
**/
@ApiModelProperty(value = "Phase represents the current phase of PersistentVolumeClaim.")
public String getPhase() {
return phase;
}
public void setPhase(String phase) {
this.phase = phase;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V1PersistentVolumeClaimStatus v1PersistentVolumeClaimStatus = (V1PersistentVolumeClaimStatus) o;
return Objects.equals(this.accessModes, v1PersistentVolumeClaimStatus.accessModes) &&
Objects.equals(this.capacity, v1PersistentVolumeClaimStatus.capacity) &&
Objects.equals(this.conditions, v1PersistentVolumeClaimStatus.conditions) &&
Objects.equals(this.phase, v1PersistentVolumeClaimStatus.phase);
}
@Override
public int hashCode() {
return Objects.hash(accessModes, capacity, conditions, phase);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V1PersistentVolumeClaimStatus {\n");
sb.append(" accessModes: ").append(toIndentedString(accessModes)).append("\n");
sb.append(" capacity: ").append(toIndentedString(capacity)).append("\n");
sb.append(" conditions: ").append(toIndentedString(conditions)).append("\n");
sb.append(" phase: ").append(toIndentedString(phase)).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