1
0
mirror of https://github.com/rancher/rke.git synced 2025-04-27 11:21:08 +00:00

Add generated code

This commit is contained in:
Darren Shepherd 2020-07-11 09:10:35 -07:00
parent 6220341b4a
commit e38ebc3798
2 changed files with 1821 additions and 0 deletions

View File

@ -0,0 +1,67 @@
// +build !ignore_autogenerated
/*
Copyright 2020 Rancher Labs, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by deepcopy-gen. DO NOT EDIT.
package kdm
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CisBenchmarkVersionInfo) DeepCopyInto(out *CisBenchmarkVersionInfo) {
*out = *in
if in.SkippedChecks != nil {
in, out := &in.SkippedChecks, &out.SkippedChecks
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.NotApplicableChecks != nil {
in, out := &in.NotApplicableChecks, &out.NotApplicableChecks
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CisBenchmarkVersionInfo.
func (in *CisBenchmarkVersionInfo) DeepCopy() *CisBenchmarkVersionInfo {
if in == nil {
return nil
}
out := new(CisBenchmarkVersionInfo)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *CisConfigParams) DeepCopyInto(out *CisConfigParams) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CisConfigParams.
func (in *CisConfigParams) DeepCopy() *CisConfigParams {
if in == nil {
return nil
}
out := new(CisConfigParams)
in.DeepCopyInto(out)
return out
}

File diff suppressed because it is too large Load Diff