1
0
mirror of https://github.com/rancher/types.git synced 2025-09-17 23:38:20 +00:00

go generate

This commit is contained in:
kinarashah
2018-08-07 09:34:42 -07:00
committed by Craig Jellick
parent ffd8f7ed64
commit eebbe77993

View File

@@ -5,12 +5,12 @@ const (
SecretVolumeSourceFieldDefaultMode = "defaultMode"
SecretVolumeSourceFieldItems = "items"
SecretVolumeSourceFieldOptional = "optional"
SecretVolumeSourceFieldSecretID = "secretId"
SecretVolumeSourceFieldSecretName = "secretName"
)
type SecretVolumeSource struct {
DefaultMode *int64 `json:"defaultMode,omitempty" yaml:"defaultMode,omitempty"`
Items []KeyToPath `json:"items,omitempty" yaml:"items,omitempty"`
Optional *bool `json:"optional,omitempty" yaml:"optional,omitempty"`
SecretID string `json:"secretId,omitempty" yaml:"secretId,omitempty"`
SecretName string `json:"secretName,omitempty" yaml:"secretName,omitempty"`
}