blob: b77db1b150d54aef4d4fbed9133c6f0dd296334e [file] [log] [blame]
sslobodrd046be82019-01-16 10:02:22 -05001// +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 v1beta1
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 *PartialObjectMetadata) DeepCopyInto(out *PartialObjectMetadata) {
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 PartialObjectMetadata.
36func (in *PartialObjectMetadata) DeepCopy() *PartialObjectMetadata {
37 if in == nil {
38 return nil
39 }
40 out := new(PartialObjectMetadata)
41 in.DeepCopyInto(out)
42 return out
43}
44
45// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
46func (in *PartialObjectMetadata) 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.
54func (in *PartialObjectMetadataList) DeepCopyInto(out *PartialObjectMetadataList) {
55 *out = *in
56 out.TypeMeta = in.TypeMeta
57 if in.Items != nil {
58 in, out := &in.Items, &out.Items
59 *out = make([]*PartialObjectMetadata, len(*in))
60 for i := range *in {
61 if (*in)[i] != nil {
62 in, out := &(*in)[i], &(*out)[i]
63 *out = new(PartialObjectMetadata)
64 (*in).DeepCopyInto(*out)
65 }
66 }
67 }
68 return
69}
70
71// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PartialObjectMetadataList.
72func (in *PartialObjectMetadataList) DeepCopy() *PartialObjectMetadataList {
73 if in == nil {
74 return nil
75 }
76 out := new(PartialObjectMetadataList)
77 in.DeepCopyInto(out)
78 return out
79}
80
81// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
82func (in *PartialObjectMetadataList) DeepCopyObject() runtime.Object {
83 if c := in.DeepCopy(); c != nil {
84 return c
85 }
86 return nil
87}
88
89// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
90func (in *Table) DeepCopyInto(out *Table) {
91 *out = *in
92 out.TypeMeta = in.TypeMeta
93 out.ListMeta = in.ListMeta
94 if in.ColumnDefinitions != nil {
95 in, out := &in.ColumnDefinitions, &out.ColumnDefinitions
96 *out = make([]TableColumnDefinition, len(*in))
97 copy(*out, *in)
98 }
99 if in.Rows != nil {
100 in, out := &in.Rows, &out.Rows
101 *out = make([]TableRow, len(*in))
102 for i := range *in {
103 (*in)[i].DeepCopyInto(&(*out)[i])
104 }
105 }
106 return
107}
108
109// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Table.
110func (in *Table) DeepCopy() *Table {
111 if in == nil {
112 return nil
113 }
114 out := new(Table)
115 in.DeepCopyInto(out)
116 return out
117}
118
119// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
120func (in *Table) DeepCopyObject() runtime.Object {
121 if c := in.DeepCopy(); c != nil {
122 return c
123 }
124 return nil
125}
126
127// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
128func (in *TableColumnDefinition) DeepCopyInto(out *TableColumnDefinition) {
129 *out = *in
130 return
131}
132
133// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableColumnDefinition.
134func (in *TableColumnDefinition) DeepCopy() *TableColumnDefinition {
135 if in == nil {
136 return nil
137 }
138 out := new(TableColumnDefinition)
139 in.DeepCopyInto(out)
140 return out
141}
142
143// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
144func (in *TableOptions) DeepCopyInto(out *TableOptions) {
145 *out = *in
146 out.TypeMeta = in.TypeMeta
147 return
148}
149
150// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableOptions.
151func (in *TableOptions) DeepCopy() *TableOptions {
152 if in == nil {
153 return nil
154 }
155 out := new(TableOptions)
156 in.DeepCopyInto(out)
157 return out
158}
159
160// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
161func (in *TableOptions) DeepCopyObject() runtime.Object {
162 if c := in.DeepCopy(); c != nil {
163 return c
164 }
165 return nil
166}
167
168// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
169func (in *TableRow) DeepCopyInto(out *TableRow) {
170 clone := in.DeepCopy()
171 *out = *clone
172 return
173}
174
175// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
176func (in *TableRowCondition) DeepCopyInto(out *TableRowCondition) {
177 *out = *in
178 return
179}
180
181// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableRowCondition.
182func (in *TableRowCondition) DeepCopy() *TableRowCondition {
183 if in == nil {
184 return nil
185 }
186 out := new(TableRowCondition)
187 in.DeepCopyInto(out)
188 return out
189}