1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 23:08:25 +00:00

Update generated code

This commit is contained in:
zionwu
2018-04-16 19:58:31 +08:00
parent 2357e6acc1
commit 162f5bbe73

View File

@@ -6,6 +6,7 @@ const (
SMTPConfigFieldHost = "host"
SMTPConfigFieldPassword = "password"
SMTPConfigFieldPort = "port"
SMTPConfigFieldSender = "sender"
SMTPConfigFieldTLS = "tls"
SMTPConfigFieldUsername = "username"
)
@@ -15,6 +16,7 @@ type SMTPConfig struct {
Host string `json:"host,omitempty" yaml:"host,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty"`
Port int64 `json:"port,omitempty" yaml:"port,omitempty"`
Sender string `json:"sender,omitempty" yaml:"sender,omitempty"`
TLS bool `json:"tls,omitempty" yaml:"tls,omitempty"`
Username string `json:"username,omitempty" yaml:"username,omitempty"`
}