2017-02-07 21:33:23 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
2017-04-07 10:49:53 +00:00
|
|
|
Copyright 2017 The Kubernetes Authors.
|
2017-02-07 21:33:23 +00:00
|
|
|
|
|
|
|
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 (
|
2017-04-07 10:49:53 +00:00
|
|
|
api "k8s.io/client-go/pkg/api"
|
|
|
|
unversioned "k8s.io/client-go/pkg/api/unversioned"
|
|
|
|
conversion "k8s.io/client-go/pkg/conversion"
|
|
|
|
runtime "k8s.io/client-go/pkg/runtime"
|
2017-02-07 21:33:23 +00:00
|
|
|
reflect "reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
SchemeBuilder.Register(RegisterDeepCopies)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterDeepCopies adds deep-copy functions to the given scheme. Public
|
|
|
|
// to allow building arbitrary schemes.
|
|
|
|
func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
|
|
|
return scheme.AddGeneratedDeepCopyFuncs(
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_CrossVersionObjectReference, InType: reflect.TypeOf(&CrossVersionObjectReference{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_HorizontalPodAutoscaler, InType: reflect.TypeOf(&HorizontalPodAutoscaler{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_HorizontalPodAutoscalerList, InType: reflect.TypeOf(&HorizontalPodAutoscalerList{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_HorizontalPodAutoscalerSpec, InType: reflect.TypeOf(&HorizontalPodAutoscalerSpec{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_HorizontalPodAutoscalerStatus, InType: reflect.TypeOf(&HorizontalPodAutoscalerStatus{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_Scale, InType: reflect.TypeOf(&Scale{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_ScaleSpec, InType: reflect.TypeOf(&ScaleSpec{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_autoscaling_ScaleStatus, InType: reflect.TypeOf(&ScaleStatus{})},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_autoscaling_CrossVersionObjectReference(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*CrossVersionObjectReference)
|
|
|
|
out := out.(*CrossVersionObjectReference)
|
|
|
|
out.Kind = in.Kind
|
|
|
|
out.Name = in.Name
|
|
|
|
out.APIVersion = in.APIVersion
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_autoscaling_HorizontalPodAutoscaler(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*HorizontalPodAutoscaler)
|
|
|
|
out := out.(*HorizontalPodAutoscaler)
|
|
|
|
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 interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*HorizontalPodAutoscalerList)
|
|
|
|
out := out.(*HorizontalPodAutoscalerList)
|
|
|
|
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 interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*HorizontalPodAutoscalerSpec)
|
|
|
|
out := out.(*HorizontalPodAutoscalerSpec)
|
|
|
|
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 interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*HorizontalPodAutoscalerStatus)
|
|
|
|
out := out.(*HorizontalPodAutoscalerStatus)
|
|
|
|
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 interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*Scale)
|
|
|
|
out := out.(*Scale)
|
|
|
|
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 interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*ScaleSpec)
|
|
|
|
out := out.(*ScaleSpec)
|
|
|
|
out.Replicas = in.Replicas
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_autoscaling_ScaleStatus(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*ScaleStatus)
|
|
|
|
out := out.(*ScaleStatus)
|
|
|
|
out.Replicas = in.Replicas
|
|
|
|
out.Selector = in.Selector
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|