Files
go/kubernetes/client/v1_persistent_volume_claim_status.go
Haowei Cai 6181687d2e Generated API change for kubernetes 1.10
Settings:
    export KUBERNETES_BRANCH="release-1.10"
    export CLIENT_VERSION="0.1.0a1"
    export PACKAGE_NAME="client"
2018-03-21 14:15:19 -07:00

27 lines
1.0 KiB
Go

/*
* 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"`
}