Package io.fabric8.kubernetes.api.model
Class PersistentVolumeClaimCondition
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.PersistentVolumeClaimCondition
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<PersistentVolumeClaimConditionBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class PersistentVolumeClaimCondition extends Object implements io.fabric8.kubernetes.api.builder.Editable<PersistentVolumeClaimConditionBuilder>, KubernetesResource
PersistentVolumeClaimCondition contains details about state of pvc- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PersistentVolumeClaimCondition()
No args constructor for use in serializationPersistentVolumeClaimCondition(String lastProbeTime, String lastTransitionTime, String message, String reason, String status, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PersistentVolumeClaimConditionBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getLastProbeTime()
PersistentVolumeClaimCondition contains details about state of pvcString
getLastTransitionTime()
PersistentVolumeClaimCondition contains details about state of pvcString
getMessage()
message is the human-readable message indicating details about last transition.String
getReason()
reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition.String
getStatus()
Status is the status of the condition.String
getType()
Type is the type of the condition.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setLastProbeTime(String lastProbeTime)
PersistentVolumeClaimCondition contains details about state of pvcvoid
setLastTransitionTime(String lastTransitionTime)
PersistentVolumeClaimCondition contains details about state of pvcvoid
setMessage(String message)
message is the human-readable message indicating details about last transition.void
setReason(String reason)
reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition.void
setStatus(String status)
Status is the status of the condition.void
setType(String type)
Type is the type of the condition.PersistentVolumeClaimConditionBuilder
toBuilder()
-
-
-
Method Detail
-
getLastProbeTime
public String getLastProbeTime()
PersistentVolumeClaimCondition contains details about state of pvc
-
setLastProbeTime
public void setLastProbeTime(String lastProbeTime)
PersistentVolumeClaimCondition contains details about state of pvc
-
getLastTransitionTime
public String getLastTransitionTime()
PersistentVolumeClaimCondition contains details about state of pvc
-
setLastTransitionTime
public void setLastTransitionTime(String lastTransitionTime)
PersistentVolumeClaimCondition contains details about state of pvc
-
getMessage
public String getMessage()
message is the human-readable message indicating details about last transition.
-
setMessage
public void setMessage(String message)
message is the human-readable message indicating details about last transition.
-
getReason
public String getReason()
reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "Resizing" that means the underlying persistent volume is being resized.
-
setReason
public void setReason(String reason)
reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "Resizing" that means the underlying persistent volume is being resized.
-
getStatus
public String getStatus()
Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required
-
setStatus
public void setStatus(String status)
Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required
-
getType
public String getType()
Type is the type of the condition. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about
-
setType
public void setType(String type)
Type is the type of the condition. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about
-
edit
public PersistentVolumeClaimConditionBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<PersistentVolumeClaimConditionBuilder>
-
toBuilder
public PersistentVolumeClaimConditionBuilder toBuilder()
-
-