girishk | e7ca43b | 2019-10-10 12:30:03 +0000 | [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 v1beta1 |
| 22 | |
| 23 | import ( |
| 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. |
| 28 | func (in *RuntimeClass) DeepCopyInto(out *RuntimeClass) { |
| 29 | *out = *in |
| 30 | out.TypeMeta = in.TypeMeta |
| 31 | in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| 32 | return |
| 33 | } |
| 34 | |
| 35 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClass. |
| 36 | func (in *RuntimeClass) DeepCopy() *RuntimeClass { |
| 37 | if in == nil { |
| 38 | return nil |
| 39 | } |
| 40 | out := new(RuntimeClass) |
| 41 | in.DeepCopyInto(out) |
| 42 | return out |
| 43 | } |
| 44 | |
| 45 | // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| 46 | func (in *RuntimeClass) DeepCopyObject() runtime.Object { |
| 47 | if c := in.DeepCopy(); c != nil { |
| 48 | return c |
| 49 | } |
| 50 | return nil |
| 51 | } |
| 52 | |
| 53 | // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| 54 | func (in *RuntimeClassList) DeepCopyInto(out *RuntimeClassList) { |
| 55 | *out = *in |
| 56 | out.TypeMeta = in.TypeMeta |
| 57 | in.ListMeta.DeepCopyInto(&out.ListMeta) |
| 58 | if in.Items != nil { |
| 59 | in, out := &in.Items, &out.Items |
| 60 | *out = make([]RuntimeClass, len(*in)) |
| 61 | for i := range *in { |
| 62 | (*in)[i].DeepCopyInto(&(*out)[i]) |
| 63 | } |
| 64 | } |
| 65 | return |
| 66 | } |
| 67 | |
| 68 | // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RuntimeClassList. |
| 69 | func (in *RuntimeClassList) DeepCopy() *RuntimeClassList { |
| 70 | if in == nil { |
| 71 | return nil |
| 72 | } |
| 73 | out := new(RuntimeClassList) |
| 74 | in.DeepCopyInto(out) |
| 75 | return out |
| 76 | } |
| 77 | |
| 78 | // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| 79 | func (in *RuntimeClassList) DeepCopyObject() runtime.Object { |
| 80 | if c := in.DeepCopy(); c != nil { |
| 81 | return c |
| 82 | } |
| 83 | return nil |
| 84 | } |