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:
orangedeng
2019-01-21 18:25:09 +08:00
committed by Craig Jellick
parent 074a619617
commit c336a0b929

View File

@@ -15,6 +15,7 @@ const (
SettingFieldName = "name"
SettingFieldOwnerReferences = "ownerReferences"
SettingFieldRemoved = "removed"
SettingFieldSource = "source"
SettingFieldUUID = "uuid"
SettingFieldValue = "value"
)
@@ -30,6 +31,7 @@ type Setting struct {
Name string `json:"name,omitempty" yaml:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
Source string `json:"source,omitempty" yaml:"source,omitempty"`
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
Value string `json:"value,omitempty" yaml:"value,omitempty"`
}