...
1
2
3
4
5
6 package v1
7
8 import (
9 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
10 runtime "k8s.io/apimachinery/pkg/runtime"
11 )
12
13
14 func (in *CELUnion) DeepCopyInto(out *CELUnion) {
15 *out = *in
16 if in.RequiredMember != nil {
17 in, out := &in.RequiredMember, &out.RequiredMember
18 *out = new(string)
19 **out = **in
20 }
21 if in.OptionalMember != nil {
22 in, out := &in.OptionalMember, &out.OptionalMember
23 *out = new(string)
24 **out = **in
25 }
26 return
27 }
28
29
30 func (in *CELUnion) DeepCopy() *CELUnion {
31 if in == nil {
32 return nil
33 }
34 out := new(CELUnion)
35 in.DeepCopyInto(out)
36 return out
37 }
38
39
40 func (in *EvolvingUnion) DeepCopyInto(out *EvolvingUnion) {
41 *out = *in
42 return
43 }
44
45
46 func (in *EvolvingUnion) DeepCopy() *EvolvingUnion {
47 if in == nil {
48 return nil
49 }
50 out := new(EvolvingUnion)
51 in.DeepCopyInto(out)
52 return out
53 }
54
55
56 func (in *StableConfigType) DeepCopyInto(out *StableConfigType) {
57 *out = *in
58 out.TypeMeta = in.TypeMeta
59 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
60 in.Spec.DeepCopyInto(&out.Spec)
61 in.Status.DeepCopyInto(&out.Status)
62 return
63 }
64
65
66 func (in *StableConfigType) DeepCopy() *StableConfigType {
67 if in == nil {
68 return nil
69 }
70 out := new(StableConfigType)
71 in.DeepCopyInto(out)
72 return out
73 }
74
75
76 func (in *StableConfigType) DeepCopyObject() runtime.Object {
77 if c := in.DeepCopy(); c != nil {
78 return c
79 }
80 return nil
81 }
82
83
84 func (in *StableConfigTypeList) DeepCopyInto(out *StableConfigTypeList) {
85 *out = *in
86 out.TypeMeta = in.TypeMeta
87 in.ListMeta.DeepCopyInto(&out.ListMeta)
88 if in.Items != nil {
89 in, out := &in.Items, &out.Items
90 *out = make([]StableConfigType, len(*in))
91 for i := range *in {
92 (*in)[i].DeepCopyInto(&(*out)[i])
93 }
94 }
95 return
96 }
97
98
99 func (in *StableConfigTypeList) DeepCopy() *StableConfigTypeList {
100 if in == nil {
101 return nil
102 }
103 out := new(StableConfigTypeList)
104 in.DeepCopyInto(out)
105 return out
106 }
107
108
109 func (in *StableConfigTypeList) DeepCopyObject() runtime.Object {
110 if c := in.DeepCopy(); c != nil {
111 return c
112 }
113 return nil
114 }
115
116
117 func (in *StableConfigTypeSpec) DeepCopyInto(out *StableConfigTypeSpec) {
118 *out = *in
119 out.EvolvingUnion = in.EvolvingUnion
120 in.CELUnion.DeepCopyInto(&out.CELUnion)
121 return
122 }
123
124
125 func (in *StableConfigTypeSpec) DeepCopy() *StableConfigTypeSpec {
126 if in == nil {
127 return nil
128 }
129 out := new(StableConfigTypeSpec)
130 in.DeepCopyInto(out)
131 return out
132 }
133
134
135 func (in *StableConfigTypeStatus) DeepCopyInto(out *StableConfigTypeStatus) {
136 *out = *in
137 if in.Conditions != nil {
138 in, out := &in.Conditions, &out.Conditions
139 *out = make([]metav1.Condition, len(*in))
140 for i := range *in {
141 (*in)[i].DeepCopyInto(&(*out)[i])
142 }
143 }
144 return
145 }
146
147
148 func (in *StableConfigTypeStatus) DeepCopy() *StableConfigTypeStatus {
149 if in == nil {
150 return nil
151 }
152 out := new(StableConfigTypeStatus)
153 in.DeepCopyInto(out)
154 return out
155 }
156
View as plain text