1
0
mirror of https://github.com/rancher/types.git synced 2025-09-15 22:39:05 +00:00

Update generated code

This commit is contained in:
Darren Shepherd
2018-03-19 15:07:19 -07:00
parent cebb13fdcc
commit 1501b4e5e6
9 changed files with 144 additions and 6 deletions

View File

@@ -39,7 +39,7 @@ const (
PersistentVolumeFieldScaleIO = "scaleIO"
PersistentVolumeFieldState = "state"
PersistentVolumeFieldStatus = "status"
PersistentVolumeFieldStorageClassName = "storageClassName"
PersistentVolumeFieldStorageClassId = "storageClassId"
PersistentVolumeFieldStorageOS = "storageos"
PersistentVolumeFieldTransitioning = "transitioning"
PersistentVolumeFieldTransitioningMessage = "transitioningMessage"
@@ -82,7 +82,7 @@ type PersistentVolume struct {
ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"`
State string `json:"state,omitempty" yaml:"state,omitempty"`
Status *PersistentVolumeStatus `json:"status,omitempty" yaml:"status,omitempty"`
StorageClassName string `json:"storageClassName,omitempty" yaml:"storageClassName,omitempty"`
StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"`
StorageOS *StorageOSPersistentVolumeSource `json:"storageos,omitempty" yaml:"storageos,omitempty"`
Transitioning string `json:"transitioning,omitempty" yaml:"transitioning,omitempty"`
TransitioningMessage string `json:"transitioningMessage,omitempty" yaml:"transitioningMessage,omitempty"`

View File

@@ -26,7 +26,7 @@ const (
PersistentVolumeSpecFieldQuobyte = "quobyte"
PersistentVolumeSpecFieldRBD = "rbd"
PersistentVolumeSpecFieldScaleIO = "scaleIO"
PersistentVolumeSpecFieldStorageClassName = "storageClassName"
PersistentVolumeSpecFieldStorageClassId = "storageClassId"
PersistentVolumeSpecFieldStorageOS = "storageos"
PersistentVolumeSpecFieldVsphereVolume = "vsphereVolume"
)
@@ -56,7 +56,7 @@ type PersistentVolumeSpec struct {
Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" yaml:"quobyte,omitempty"`
RBD *RBDVolumeSource `json:"rbd,omitempty" yaml:"rbd,omitempty"`
ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" yaml:"scaleIO,omitempty"`
StorageClassName string `json:"storageClassName,omitempty" yaml:"storageClassName,omitempty"`
StorageClassId string `json:"storageClassId,omitempty" yaml:"storageClassId,omitempty"`
StorageOS *StorageOSPersistentVolumeSource `json:"storageos,omitempty" yaml:"storageos,omitempty"`
VsphereVolume *VsphereVirtualDiskVolumeSource `json:"vsphereVolume,omitempty" yaml:"vsphereVolume,omitempty"`
}