blob: f9c9f77f7ad4b76a099ed731552b3066c501e932 [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001// +build !ignore_autogenerated
2
3/*
4Copyright The Kubernetes Authors.
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17*/
18
19// Code generated by deepcopy-gen. DO NOT EDIT.
20
21package v1beta1
22
23import (
24 v1 "k8s.io/api/core/v1"
25 runtime "k8s.io/apimachinery/pkg/runtime"
26)
27
28// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
29func (in *Overhead) DeepCopyInto(out *Overhead) {
30 *out = *in
31 if in.PodFixed != nil {
32 in, out := &in.PodFixed, &out.PodFixed
33 *out = make(v1.ResourceList, len(*in))
34 for key, val := range *in {
35 (*out)[key] = val.DeepCopy()
36 }
37 }
38 return
39}
40
41// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Overhead.
42func (in *Overhead) DeepCopy() *Overhead {
43 if in == nil {
44 return nil
45 }
46 out := new(Overhead)
47 in.DeepCopyInto(out)
48 return out
49}
50
51// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
52func (in *RuntimeClass) DeepCopyInto(out *RuntimeClass) {
53 *out = *in
54 out.TypeMeta = in.TypeMeta
55 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
56 if in.Overhead != nil {
57 in, out := &in.Overhead, &out.Overhead
58 *out = new(Overhead)
59 (*in).DeepCopyInto(*out)
60 }
61 return
62}
63
64// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClass.
65func (in *RuntimeClass) DeepCopy() *RuntimeClass {
66 if in == nil {
67 return nil
68 }
69 out := new(RuntimeClass)
70 in.DeepCopyInto(out)
71 return out
72}
73
74// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
75func (in *RuntimeClass) DeepCopyObject() runtime.Object {
76 if c := in.DeepCopy(); c != nil {
77 return c
78 }
79 return nil
80}
81
82// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
83func (in *RuntimeClassList) DeepCopyInto(out *RuntimeClassList) {
84 *out = *in
85 out.TypeMeta = in.TypeMeta
86 in.ListMeta.DeepCopyInto(&out.ListMeta)
87 if in.Items != nil {
88 in, out := &in.Items, &out.Items
89 *out = make([]RuntimeClass, len(*in))
90 for i := range *in {
91 (*in)[i].DeepCopyInto(&(*out)[i])
92 }
93 }
94 return
95}
96
97// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClassList.
98func (in *RuntimeClassList) DeepCopy() *RuntimeClassList {
99 if in == nil {
100 return nil
101 }
102 out := new(RuntimeClassList)
103 in.DeepCopyInto(out)
104 return out
105}
106
107// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
108func (in *RuntimeClassList) DeepCopyObject() runtime.Object {
109 if c := in.DeepCopy(); c != nil {
110 return c
111 }
112 return nil
113}