zz_generated.deepcopy.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. // +build !ignore_autogenerated
  2. /*
  3. Copyright 2018 The Knative Authors
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. // Code generated by deepcopy-gen. DO NOT EDIT.
  15. package v1alpha1
  16. import (
  17. runtime "k8s.io/apimachinery/pkg/runtime"
  18. )
  19. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  20. func (in *AddressStatus) DeepCopyInto(out *AddressStatus) {
  21. *out = *in
  22. if in.Address != nil {
  23. in, out := &in.Address, &out.Address
  24. *out = new(Addressable)
  25. **out = **in
  26. }
  27. return
  28. }
  29. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressStatus.
  30. func (in *AddressStatus) DeepCopy() *AddressStatus {
  31. if in == nil {
  32. return nil
  33. }
  34. out := new(AddressStatus)
  35. in.DeepCopyInto(out)
  36. return out
  37. }
  38. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  39. func (in *Addressable) DeepCopyInto(out *Addressable) {
  40. *out = *in
  41. return
  42. }
  43. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Addressable.
  44. func (in *Addressable) DeepCopy() *Addressable {
  45. if in == nil {
  46. return nil
  47. }
  48. out := new(Addressable)
  49. in.DeepCopyInto(out)
  50. return out
  51. }
  52. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  53. func (in *AddressableType) DeepCopyInto(out *AddressableType) {
  54. *out = *in
  55. out.TypeMeta = in.TypeMeta
  56. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  57. in.Status.DeepCopyInto(&out.Status)
  58. return
  59. }
  60. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressableType.
  61. func (in *AddressableType) DeepCopy() *AddressableType {
  62. if in == nil {
  63. return nil
  64. }
  65. out := new(AddressableType)
  66. in.DeepCopyInto(out)
  67. return out
  68. }
  69. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  70. func (in *AddressableType) DeepCopyObject() runtime.Object {
  71. if c := in.DeepCopy(); c != nil {
  72. return c
  73. }
  74. return nil
  75. }
  76. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  77. func (in *AddressableTypeList) DeepCopyInto(out *AddressableTypeList) {
  78. *out = *in
  79. out.TypeMeta = in.TypeMeta
  80. out.ListMeta = in.ListMeta
  81. if in.Items != nil {
  82. in, out := &in.Items, &out.Items
  83. *out = make([]AddressableType, len(*in))
  84. for i := range *in {
  85. (*in)[i].DeepCopyInto(&(*out)[i])
  86. }
  87. }
  88. return
  89. }
  90. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddressableTypeList.
  91. func (in *AddressableTypeList) DeepCopy() *AddressableTypeList {
  92. if in == nil {
  93. return nil
  94. }
  95. out := new(AddressableTypeList)
  96. in.DeepCopyInto(out)
  97. return out
  98. }
  99. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  100. func (in *AddressableTypeList) DeepCopyObject() runtime.Object {
  101. if c := in.DeepCopy(); c != nil {
  102. return c
  103. }
  104. return nil
  105. }
  106. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  107. func (in *Condition) DeepCopyInto(out *Condition) {
  108. *out = *in
  109. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  110. return
  111. }
  112. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Condition.
  113. func (in *Condition) DeepCopy() *Condition {
  114. if in == nil {
  115. return nil
  116. }
  117. out := new(Condition)
  118. in.DeepCopyInto(out)
  119. return out
  120. }
  121. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  122. func (in Conditions) DeepCopyInto(out *Conditions) {
  123. {
  124. in := &in
  125. *out = make(Conditions, len(*in))
  126. for i := range *in {
  127. (*in)[i].DeepCopyInto(&(*out)[i])
  128. }
  129. return
  130. }
  131. }
  132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Conditions.
  133. func (in Conditions) DeepCopy() Conditions {
  134. if in == nil {
  135. return nil
  136. }
  137. out := new(Conditions)
  138. in.DeepCopyInto(out)
  139. return *out
  140. }
  141. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  142. func (in *Generational) DeepCopyInto(out *Generational) {
  143. *out = *in
  144. out.TypeMeta = in.TypeMeta
  145. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  146. out.Spec = in.Spec
  147. return
  148. }
  149. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Generational.
  150. func (in *Generational) DeepCopy() *Generational {
  151. if in == nil {
  152. return nil
  153. }
  154. out := new(Generational)
  155. in.DeepCopyInto(out)
  156. return out
  157. }
  158. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  159. func (in *Generational) DeepCopyObject() runtime.Object {
  160. if c := in.DeepCopy(); c != nil {
  161. return c
  162. }
  163. return nil
  164. }
  165. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  166. func (in *GenerationalList) DeepCopyInto(out *GenerationalList) {
  167. *out = *in
  168. out.TypeMeta = in.TypeMeta
  169. out.ListMeta = in.ListMeta
  170. if in.Items != nil {
  171. in, out := &in.Items, &out.Items
  172. *out = make([]Generational, len(*in))
  173. for i := range *in {
  174. (*in)[i].DeepCopyInto(&(*out)[i])
  175. }
  176. }
  177. return
  178. }
  179. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenerationalList.
  180. func (in *GenerationalList) DeepCopy() *GenerationalList {
  181. if in == nil {
  182. return nil
  183. }
  184. out := new(GenerationalList)
  185. in.DeepCopyInto(out)
  186. return out
  187. }
  188. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  189. func (in *GenerationalList) DeepCopyObject() runtime.Object {
  190. if c := in.DeepCopy(); c != nil {
  191. return c
  192. }
  193. return nil
  194. }
  195. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  196. func (in *GenerationalSpec) DeepCopyInto(out *GenerationalSpec) {
  197. *out = *in
  198. return
  199. }
  200. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenerationalSpec.
  201. func (in *GenerationalSpec) DeepCopy() *GenerationalSpec {
  202. if in == nil {
  203. return nil
  204. }
  205. out := new(GenerationalSpec)
  206. in.DeepCopyInto(out)
  207. return out
  208. }
  209. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  210. func (in *KResource) DeepCopyInto(out *KResource) {
  211. *out = *in
  212. out.TypeMeta = in.TypeMeta
  213. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  214. in.Status.DeepCopyInto(&out.Status)
  215. return
  216. }
  217. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KResource.
  218. func (in *KResource) DeepCopy() *KResource {
  219. if in == nil {
  220. return nil
  221. }
  222. out := new(KResource)
  223. in.DeepCopyInto(out)
  224. return out
  225. }
  226. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  227. func (in *KResource) DeepCopyObject() runtime.Object {
  228. if c := in.DeepCopy(); c != nil {
  229. return c
  230. }
  231. return nil
  232. }
  233. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  234. func (in *KResourceList) DeepCopyInto(out *KResourceList) {
  235. *out = *in
  236. out.TypeMeta = in.TypeMeta
  237. out.ListMeta = in.ListMeta
  238. if in.Items != nil {
  239. in, out := &in.Items, &out.Items
  240. *out = make([]KResource, len(*in))
  241. for i := range *in {
  242. (*in)[i].DeepCopyInto(&(*out)[i])
  243. }
  244. }
  245. return
  246. }
  247. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KResourceList.
  248. func (in *KResourceList) DeepCopy() *KResourceList {
  249. if in == nil {
  250. return nil
  251. }
  252. out := new(KResourceList)
  253. in.DeepCopyInto(out)
  254. return out
  255. }
  256. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  257. func (in *KResourceList) DeepCopyObject() runtime.Object {
  258. if c := in.DeepCopy(); c != nil {
  259. return c
  260. }
  261. return nil
  262. }
  263. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  264. func (in *KResourceStatus) DeepCopyInto(out *KResourceStatus) {
  265. *out = *in
  266. if in.Conditions != nil {
  267. in, out := &in.Conditions, &out.Conditions
  268. *out = make(Conditions, len(*in))
  269. for i := range *in {
  270. (*in)[i].DeepCopyInto(&(*out)[i])
  271. }
  272. }
  273. return
  274. }
  275. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KResourceStatus.
  276. func (in *KResourceStatus) DeepCopy() *KResourceStatus {
  277. if in == nil {
  278. return nil
  279. }
  280. out := new(KResourceStatus)
  281. in.DeepCopyInto(out)
  282. return out
  283. }
  284. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  285. func (in *LegacyTarget) DeepCopyInto(out *LegacyTarget) {
  286. *out = *in
  287. out.TypeMeta = in.TypeMeta
  288. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  289. out.Status = in.Status
  290. return
  291. }
  292. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTarget.
  293. func (in *LegacyTarget) DeepCopy() *LegacyTarget {
  294. if in == nil {
  295. return nil
  296. }
  297. out := new(LegacyTarget)
  298. in.DeepCopyInto(out)
  299. return out
  300. }
  301. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  302. func (in *LegacyTarget) DeepCopyObject() runtime.Object {
  303. if c := in.DeepCopy(); c != nil {
  304. return c
  305. }
  306. return nil
  307. }
  308. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  309. func (in *LegacyTargetList) DeepCopyInto(out *LegacyTargetList) {
  310. *out = *in
  311. out.TypeMeta = in.TypeMeta
  312. out.ListMeta = in.ListMeta
  313. if in.Items != nil {
  314. in, out := &in.Items, &out.Items
  315. *out = make([]LegacyTarget, len(*in))
  316. for i := range *in {
  317. (*in)[i].DeepCopyInto(&(*out)[i])
  318. }
  319. }
  320. return
  321. }
  322. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTargetList.
  323. func (in *LegacyTargetList) DeepCopy() *LegacyTargetList {
  324. if in == nil {
  325. return nil
  326. }
  327. out := new(LegacyTargetList)
  328. in.DeepCopyInto(out)
  329. return out
  330. }
  331. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  332. func (in *LegacyTargetList) DeepCopyObject() runtime.Object {
  333. if c := in.DeepCopy(); c != nil {
  334. return c
  335. }
  336. return nil
  337. }
  338. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  339. func (in *LegacyTargetable) DeepCopyInto(out *LegacyTargetable) {
  340. *out = *in
  341. return
  342. }
  343. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LegacyTargetable.
  344. func (in *LegacyTargetable) DeepCopy() *LegacyTargetable {
  345. if in == nil {
  346. return nil
  347. }
  348. out := new(LegacyTargetable)
  349. in.DeepCopyInto(out)
  350. return out
  351. }
  352. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  353. func (in *Target) DeepCopyInto(out *Target) {
  354. *out = *in
  355. out.TypeMeta = in.TypeMeta
  356. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  357. in.Status.DeepCopyInto(&out.Status)
  358. return
  359. }
  360. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Target.
  361. func (in *Target) DeepCopy() *Target {
  362. if in == nil {
  363. return nil
  364. }
  365. out := new(Target)
  366. in.DeepCopyInto(out)
  367. return out
  368. }
  369. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  370. func (in *Target) DeepCopyObject() runtime.Object {
  371. if c := in.DeepCopy(); c != nil {
  372. return c
  373. }
  374. return nil
  375. }
  376. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  377. func (in *TargetList) DeepCopyInto(out *TargetList) {
  378. *out = *in
  379. out.TypeMeta = in.TypeMeta
  380. out.ListMeta = in.ListMeta
  381. if in.Items != nil {
  382. in, out := &in.Items, &out.Items
  383. *out = make([]Target, len(*in))
  384. for i := range *in {
  385. (*in)[i].DeepCopyInto(&(*out)[i])
  386. }
  387. }
  388. return
  389. }
  390. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetList.
  391. func (in *TargetList) DeepCopy() *TargetList {
  392. if in == nil {
  393. return nil
  394. }
  395. out := new(TargetList)
  396. in.DeepCopyInto(out)
  397. return out
  398. }
  399. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  400. func (in *TargetList) DeepCopyObject() runtime.Object {
  401. if c := in.DeepCopy(); c != nil {
  402. return c
  403. }
  404. return nil
  405. }
  406. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  407. func (in *TargetStatus) DeepCopyInto(out *TargetStatus) {
  408. *out = *in
  409. if in.Targetable != nil {
  410. in, out := &in.Targetable, &out.Targetable
  411. *out = new(Targetable)
  412. **out = **in
  413. }
  414. return
  415. }
  416. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetStatus.
  417. func (in *TargetStatus) DeepCopy() *TargetStatus {
  418. if in == nil {
  419. return nil
  420. }
  421. out := new(TargetStatus)
  422. in.DeepCopyInto(out)
  423. return out
  424. }
  425. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  426. func (in *Targetable) DeepCopyInto(out *Targetable) {
  427. *out = *in
  428. return
  429. }
  430. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Targetable.
  431. func (in *Targetable) DeepCopy() *Targetable {
  432. if in == nil {
  433. return nil
  434. }
  435. out := new(Targetable)
  436. in.DeepCopyInto(out)
  437. return out
  438. }