Files
go/kubernetes/client/v1_persistent_volume_claim_status.go

27 lines
1.0 KiB
Go
Raw Normal View History

/*
* Kubernetes
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* API version: v1.10.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package client
// PersistentVolumeClaimStatus is the current status of a persistent volume claim.
type V1PersistentVolumeClaimStatus struct {
// 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
AccessModes []string `json:"accessModes,omitempty"`
// Represents the actual resources of the underlying volume.
Capacity map[string]string `json:"capacity,omitempty"`
// Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.
Conditions []V1PersistentVolumeClaimCondition `json:"conditions,omitempty"`
// Phase represents the current phase of PersistentVolumeClaim.
Phase string `json:"phase,omitempty"`
}