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