mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-28 21:55:48 +00:00
118 lines
3.2 KiB
Go
Generated
118 lines
3.2 KiB
Go
Generated
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright The Kubernetes Authors.
|
|
|
|
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 componentconfig
|
|
|
|
import (
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CloudControllerManagerConfiguration) DeepCopyInto(out *CloudControllerManagerConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.Generic.DeepCopyInto(&out.Generic)
|
|
out.KubeCloudShared = in.KubeCloudShared
|
|
out.ServiceController = in.ServiceController
|
|
out.NodeStatusUpdateFrequency = in.NodeStatusUpdateFrequency
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudControllerManagerConfiguration.
|
|
func (in *CloudControllerManagerConfiguration) DeepCopy() *CloudControllerManagerConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CloudControllerManagerConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *CloudControllerManagerConfiguration) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *IPPortVar) DeepCopyInto(out *IPPortVar) {
|
|
*out = *in
|
|
if in.Val != nil {
|
|
in, out := &in.Val, &out.Val
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPPortVar.
|
|
func (in *IPPortVar) DeepCopy() *IPPortVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(IPPortVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *IPVar) DeepCopyInto(out *IPVar) {
|
|
*out = *in
|
|
if in.Val != nil {
|
|
in, out := &in.Val, &out.Val
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPVar.
|
|
func (in *IPVar) DeepCopy() *IPVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(IPVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PortRangeVar) DeepCopyInto(out *PortRangeVar) {
|
|
*out = *in
|
|
if in.Val != nil {
|
|
in, out := &in.Val, &out.Val
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortRangeVar.
|
|
func (in *PortRangeVar) DeepCopy() *PortRangeVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PortRangeVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|