2016-03-17 10:15:35 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
2015-10-30 21:23:53 +00:00
|
|
|
/*
|
2016-03-17 10:15:35 +00:00
|
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
2015-10-30 21:23:53 +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.
|
|
|
|
*/
|
|
|
|
|
2016-03-17 10:15:35 +00:00
|
|
|
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
|
2015-10-30 21:23:53 +00:00
|
|
|
|
|
|
|
package metrics
|
|
|
|
|
2016-03-17 10:15:35 +00:00
|
|
|
import (
|
|
|
|
api "k8s.io/kubernetes/pkg/api"
|
|
|
|
unversioned "k8s.io/kubernetes/pkg/api/unversioned"
|
|
|
|
conversion "k8s.io/kubernetes/pkg/conversion"
|
|
|
|
)
|
2015-10-30 21:23:53 +00:00
|
|
|
|
|
|
|
func init() {
|
2016-03-17 10:15:35 +00:00
|
|
|
if err := api.Scheme.AddGeneratedDeepCopyFuncs(
|
|
|
|
DeepCopy_metrics_RawNode,
|
|
|
|
DeepCopy_metrics_RawPod,
|
|
|
|
); err != nil {
|
2015-10-30 21:23:53 +00:00
|
|
|
// if one of the deep copy functions is malformed, detect it immediately.
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
2016-03-17 10:15:35 +00:00
|
|
|
|
|
|
|
func DeepCopy_metrics_RawNode(in RawNode, out *RawNode, c *conversion.Cloner) error {
|
|
|
|
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_metrics_RawPod(in RawPod, out *RawPod, c *conversion.Cloner) error {
|
|
|
|
if err := unversioned.DeepCopy_unversioned_TypeMeta(in.TypeMeta, &out.TypeMeta, c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|