1
0
mirror of https://github.com/rancher/types.git synced 2025-08-02 05:11:59 +00:00

generate code

This commit is contained in:
Aiwantaozi 2019-01-28 19:19:37 +08:00 committed by Craig Jellick
parent 7247d13971
commit 964af90c2c

View File

@ -1,10 +1,16 @@
package client
const (
CustomTargetConfigType = "customTargetConfig"
CustomTargetConfigFieldContent = "content"
CustomTargetConfigType = "customTargetConfig"
CustomTargetConfigFieldCertificate = "certificate"
CustomTargetConfigFieldClientCert = "clientCert"
CustomTargetConfigFieldClientKey = "clientKey"
CustomTargetConfigFieldContent = "content"
)
type CustomTargetConfig struct {
Content string `json:"content,omitempty" yaml:"content,omitempty"`
Certificate string `json:"certificate,omitempty" yaml:"certificate,omitempty"`
ClientCert string `json:"clientCert,omitempty" yaml:"clientCert,omitempty"`
ClientKey string `json:"clientKey,omitempty" yaml:"clientKey,omitempty"`
Content string `json:"content,omitempty" yaml:"content,omitempty"`
}