1
0
mirror of https://github.com/rancher/types.git synced 2025-04-27 10:20:48 +00:00

generated changes

This commit is contained in:
Murali Paluru 2019-12-12 14:14:53 -08:00 committed by Alena Prokharchyk
parent c2fa09c78a
commit e0ab923a63
2 changed files with 10 additions and 13 deletions

View File

@ -927,11 +927,6 @@ func (in *ChangePasswordInput) DeepCopy() *ChangePasswordInput {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CisScanConfig) DeepCopyInto(out *CisScanConfig) {
*out = *in
if in.Skip != nil {
in, out := &in.Skip, &out.Skip
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}
@ -1924,7 +1919,7 @@ func (in *ClusterScanConfig) DeepCopyInto(out *ClusterScanConfig) {
if in.CisScanConfig != nil {
in, out := &in.CisScanConfig, &out.CisScanConfig
*out = new(CisScanConfig)
(*in).DeepCopyInto(*out)
**out = **in
}
return
}

View File

@ -1,14 +1,16 @@
package client
const (
CisScanConfigType = "cisScanConfig"
CisScanConfigFieldDebugMaster = "debugMaster"
CisScanConfigFieldDebugWorker = "debugWorker"
CisScanConfigFieldSkip = "skip"
CisScanConfigType = "cisScanConfig"
CisScanConfigFieldDebugMaster = "debugMaster"
CisScanConfigFieldDebugWorker = "debugWorker"
CisScanConfigFieldOverrideBenchmarkVersion = "overrideBenchmarkVersion"
CisScanConfigFieldSkip = "skip"
)
type CisScanConfig struct {
DebugMaster bool `json:"debugMaster,omitempty" yaml:"debugMaster,omitempty"`
DebugWorker bool `json:"debugWorker,omitempty" yaml:"debugWorker,omitempty"`
Skip []string `json:"skip,omitempty" yaml:"skip,omitempty"`
DebugMaster bool `json:"debugMaster,omitempty" yaml:"debugMaster,omitempty"`
DebugWorker bool `json:"debugWorker,omitempty" yaml:"debugWorker,omitempty"`
OverrideBenchmarkVersion string `json:"overrideBenchmarkVersion,omitempty" yaml:"overrideBenchmarkVersion,omitempty"`
Skip string `json:"skip,omitempty" yaml:"skip,omitempty"`
}