
In bringing back Clayton's PR piece-by-piece this was almost as easy to implement as his version, and is much more like what I think we should be doing. Specifically, any time which defines a .DeepCopy() method will have that method called preferentially. Otherwise we generate our own functions for deep-copying. This affected exactly one type - resource.Quantity. In applying this heuristic, several places in the generated code were simplified. To achieve this I had to convert types.Type.Methods from a slice to a map, which seems correct anyway (to do by-name lookups).
150 lines
4.5 KiB
Go
150 lines
4.5 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2016 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.
|
|
*/
|
|
|
|
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
|
|
|
|
package autoscaling
|
|
|
|
import (
|
|
api "k8s.io/kubernetes/pkg/api"
|
|
unversioned "k8s.io/kubernetes/pkg/api/unversioned"
|
|
conversion "k8s.io/kubernetes/pkg/conversion"
|
|
)
|
|
|
|
func init() {
|
|
if err := api.Scheme.AddGeneratedDeepCopyFuncs(
|
|
DeepCopy_autoscaling_CrossVersionObjectReference,
|
|
DeepCopy_autoscaling_HorizontalPodAutoscaler,
|
|
DeepCopy_autoscaling_HorizontalPodAutoscalerList,
|
|
DeepCopy_autoscaling_HorizontalPodAutoscalerSpec,
|
|
DeepCopy_autoscaling_HorizontalPodAutoscalerStatus,
|
|
DeepCopy_autoscaling_Scale,
|
|
DeepCopy_autoscaling_ScaleSpec,
|
|
DeepCopy_autoscaling_ScaleStatus,
|
|
); err != nil {
|
|
// if one of the deep copy functions is malformed, detect it immediately.
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func DeepCopy_autoscaling_CrossVersionObjectReference(in CrossVersionObjectReference, out *CrossVersionObjectReference, c *conversion.Cloner) error {
|
|
out.Kind = in.Kind
|
|
out.Name = in.Name
|
|
out.APIVersion = in.APIVersion
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_HorizontalPodAutoscaler(in HorizontalPodAutoscaler, out *HorizontalPodAutoscaler, c *conversion.Cloner) error {
|
|
out.TypeMeta = in.TypeMeta
|
|
if err := api.DeepCopy_api_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil {
|
|
return err
|
|
}
|
|
if err := DeepCopy_autoscaling_HorizontalPodAutoscalerSpec(in.Spec, &out.Spec, c); err != nil {
|
|
return err
|
|
}
|
|
if err := DeepCopy_autoscaling_HorizontalPodAutoscalerStatus(in.Status, &out.Status, c); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_HorizontalPodAutoscalerList(in HorizontalPodAutoscalerList, out *HorizontalPodAutoscalerList, c *conversion.Cloner) error {
|
|
out.TypeMeta = in.TypeMeta
|
|
out.ListMeta = in.ListMeta
|
|
if in.Items != nil {
|
|
in, out := in.Items, &out.Items
|
|
*out = make([]HorizontalPodAutoscaler, len(in))
|
|
for i := range in {
|
|
if err := DeepCopy_autoscaling_HorizontalPodAutoscaler(in[i], &(*out)[i], c); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
} else {
|
|
out.Items = nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_HorizontalPodAutoscalerSpec(in HorizontalPodAutoscalerSpec, out *HorizontalPodAutoscalerSpec, c *conversion.Cloner) error {
|
|
out.ScaleTargetRef = in.ScaleTargetRef
|
|
if in.MinReplicas != nil {
|
|
in, out := in.MinReplicas, &out.MinReplicas
|
|
*out = new(int32)
|
|
**out = *in
|
|
} else {
|
|
out.MinReplicas = nil
|
|
}
|
|
out.MaxReplicas = in.MaxReplicas
|
|
if in.TargetCPUUtilizationPercentage != nil {
|
|
in, out := in.TargetCPUUtilizationPercentage, &out.TargetCPUUtilizationPercentage
|
|
*out = new(int32)
|
|
**out = *in
|
|
} else {
|
|
out.TargetCPUUtilizationPercentage = nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_HorizontalPodAutoscalerStatus(in HorizontalPodAutoscalerStatus, out *HorizontalPodAutoscalerStatus, c *conversion.Cloner) error {
|
|
if in.ObservedGeneration != nil {
|
|
in, out := in.ObservedGeneration, &out.ObservedGeneration
|
|
*out = new(int64)
|
|
**out = *in
|
|
} else {
|
|
out.ObservedGeneration = nil
|
|
}
|
|
if in.LastScaleTime != nil {
|
|
in, out := in.LastScaleTime, &out.LastScaleTime
|
|
*out = new(unversioned.Time)
|
|
**out = in.DeepCopy()
|
|
} else {
|
|
out.LastScaleTime = nil
|
|
}
|
|
out.CurrentReplicas = in.CurrentReplicas
|
|
out.DesiredReplicas = in.DesiredReplicas
|
|
if in.CurrentCPUUtilizationPercentage != nil {
|
|
in, out := in.CurrentCPUUtilizationPercentage, &out.CurrentCPUUtilizationPercentage
|
|
*out = new(int32)
|
|
**out = *in
|
|
} else {
|
|
out.CurrentCPUUtilizationPercentage = nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_Scale(in Scale, out *Scale, c *conversion.Cloner) error {
|
|
out.TypeMeta = in.TypeMeta
|
|
if err := api.DeepCopy_api_ObjectMeta(in.ObjectMeta, &out.ObjectMeta, c); err != nil {
|
|
return err
|
|
}
|
|
out.Spec = in.Spec
|
|
out.Status = in.Status
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_ScaleSpec(in ScaleSpec, out *ScaleSpec, c *conversion.Cloner) error {
|
|
out.Replicas = in.Replicas
|
|
return nil
|
|
}
|
|
|
|
func DeepCopy_autoscaling_ScaleStatus(in ScaleStatus, out *ScaleStatus, c *conversion.Cloner) error {
|
|
out.Replicas = in.Replicas
|
|
out.Selector = in.Selector
|
|
return nil
|
|
}
|