blob: 77bd9a6b431327091e30dc09a16a921c512afc75 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001// +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 internalversion
22
23import (
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.
28func (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] = nil
38 } else {
39 (*out)[i] = (*in)[i].DeepCopyObject()
40 }
41 }
42 }
43 return
44}
45
46// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new List.
47func (in *List) DeepCopy() *List {
48 if in == nil {
49 return nil
50 }
51 out := new(List)
52 in.DeepCopyInto(out)
53 return out
54}
55
56// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
57func (in *List) DeepCopyObject() runtime.Object {
58 if c := in.DeepCopy(); c != nil {
59 return c
60 }
61 return nil
62}
63
64// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
65func (in *ListOptions) DeepCopyInto(out *ListOptions) {
66 *out = *in
67 out.TypeMeta = in.TypeMeta
68 if in.LabelSelector == nil {
69 out.LabelSelector = nil
70 } else {
71 out.LabelSelector = in.LabelSelector.DeepCopySelector()
72 }
73 if in.FieldSelector == nil {
74 out.FieldSelector = nil
75 } else {
76 out.FieldSelector = in.FieldSelector.DeepCopySelector()
77 }
78 if in.TimeoutSeconds != nil {
79 in, out := &in.TimeoutSeconds, &out.TimeoutSeconds
80 if *in == nil {
81 *out = nil
82 } else {
83 *out = new(int64)
84 **out = **in
85 }
86 }
87 return
88}
89
90// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ListOptions.
91func (in *ListOptions) DeepCopy() *ListOptions {
92 if in == nil {
93 return nil
94 }
95 out := new(ListOptions)
96 in.DeepCopyInto(out)
97 return out
98}
99
100// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
101func (in *ListOptions) DeepCopyObject() runtime.Object {
102 if c := in.DeepCopy(); c != nil {
103 return c
104 }
105 return nil
106}