Code refactoring for bpa operator
[icn.git] / cmd / bpa-operator / vendor / k8s.io / apimachinery / pkg / apis / meta / internalversion / zz_generated.deepcopy.go
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 internalversion
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 *List) DeepCopyInto(out *List) {
29         *out = *in
30         out.TypeMeta = in.TypeMeta
31         out.ListMeta = in.ListMeta
32         if in.Items != nil {
33                 in, out := &in.Items, &out.Items
34                 *out = make([]runtime.Object, len(*in))
35                 for i := range *in {
36                         if (*in)[i] != nil {
37                                 (*out)[i] = (*in)[i].DeepCopyObject()
38                         }
39                 }
40         }
41         return
42 }
43
44 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new List.
45 func (in *List) DeepCopy() *List {
46         if in == nil {
47                 return nil
48         }
49         out := new(List)
50         in.DeepCopyInto(out)
51         return out
52 }
53
54 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
55 func (in *List) DeepCopyObject() runtime.Object {
56         if c := in.DeepCopy(); c != nil {
57                 return c
58         }
59         return nil
60 }
61
62 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
63 func (in *ListOptions) DeepCopyInto(out *ListOptions) {
64         *out = *in
65         out.TypeMeta = in.TypeMeta
66         if in.LabelSelector != nil {
67                 out.LabelSelector = in.LabelSelector.DeepCopySelector()
68         }
69         if in.FieldSelector != nil {
70                 out.FieldSelector = in.FieldSelector.DeepCopySelector()
71         }
72         if in.TimeoutSeconds != nil {
73                 in, out := &in.TimeoutSeconds, &out.TimeoutSeconds
74                 *out = new(int64)
75                 **out = **in
76         }
77         return
78 }
79
80 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListOptions.
81 func (in *ListOptions) DeepCopy() *ListOptions {
82         if in == nil {
83                 return nil
84         }
85         out := new(ListOptions)
86         in.DeepCopyInto(out)
87         return out
88 }
89
90 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
91 func (in *ListOptions) DeepCopyObject() runtime.Object {
92         if c := in.DeepCopy(); c != nil {
93                 return c
94         }
95         return nil
96 }