1
0
mirror of https://github.com/rancher/types.git synced 2025-08-30 19:32:18 +00:00

Update generated code

This commit is contained in:
zionwu 2018-04-10 20:49:53 +08:00
parent 964d8b5c80
commit ccc3335115

View File

@ -2,11 +2,11 @@ package client
const (
HostPathVolumeSourceType = "hostPathVolumeSource"
HostPathVolumeSourceFieldKind = "kind"
HostPathVolumeSourceFieldPath = "path"
HostPathVolumeSourceFieldType = "type"
)
type HostPathVolumeSource struct {
Kind string `json:"kind,omitempty" yaml:"kind,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Type string `json:"type,omitempty" yaml:"type,omitempty"`
}