1
0
mirror of https://github.com/rancher/types.git synced 2025-06-26 21:51:33 +00:00

generate code

This commit is contained in:
Aiwantaozi 2018-10-20 11:22:24 +08:00 committed by Alena Prokharchyk
parent 1fd00cc153
commit ae0a3c2e9b

View File

@ -12,6 +12,7 @@ const (
ElasticsearchConfigFieldEndpoint = "endpoint"
ElasticsearchConfigFieldIndexPrefix = "indexPrefix"
ElasticsearchConfigFieldSSLVerify = "sslVerify"
ElasticsearchConfigFieldSSLVersion = "sslVersion"
)
type ElasticsearchConfig struct {
@ -25,4 +26,5 @@ type ElasticsearchConfig struct {
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
IndexPrefix string `json:"indexPrefix,omitempty" yaml:"indexPrefix,omitempty"`
SSLVerify bool `json:"sslVerify,omitempty" yaml:"sslVerify,omitempty"`
SSLVersion string `json:"sslVersion,omitempty" yaml:"sslVersion,omitempty"`
}