zz_generated.deepcopy.go 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. //go:build !ignore_autogenerated
  2. /*
  3. Copyright © The ESO 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. https://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 controller-gen. DO NOT EDIT.
  15. package v2alpha1
  16. import (
  17. "k8s.io/apimachinery/pkg/apis/meta/v1"
  18. "k8s.io/apimachinery/pkg/runtime"
  19. )
  20. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  21. func (in *BackendObjectReference) DeepCopyInto(out *BackendObjectReference) {
  22. *out = *in
  23. }
  24. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendObjectReference.
  25. func (in *BackendObjectReference) DeepCopy() *BackendObjectReference {
  26. if in == nil {
  27. return nil
  28. }
  29. out := new(BackendObjectReference)
  30. in.DeepCopyInto(out)
  31. return out
  32. }
  33. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  34. func (in *ClusterProviderStore) DeepCopyInto(out *ClusterProviderStore) {
  35. *out = *in
  36. out.TypeMeta = in.TypeMeta
  37. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  38. in.Spec.DeepCopyInto(&out.Spec)
  39. in.Status.DeepCopyInto(&out.Status)
  40. }
  41. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStore.
  42. func (in *ClusterProviderStore) DeepCopy() *ClusterProviderStore {
  43. if in == nil {
  44. return nil
  45. }
  46. out := new(ClusterProviderStore)
  47. in.DeepCopyInto(out)
  48. return out
  49. }
  50. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  51. func (in *ClusterProviderStore) DeepCopyObject() runtime.Object {
  52. if c := in.DeepCopy(); c != nil {
  53. return c
  54. }
  55. return nil
  56. }
  57. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  58. func (in *ClusterProviderStoreList) DeepCopyInto(out *ClusterProviderStoreList) {
  59. *out = *in
  60. out.TypeMeta = in.TypeMeta
  61. in.ListMeta.DeepCopyInto(&out.ListMeta)
  62. if in.Items != nil {
  63. in, out := &in.Items, &out.Items
  64. *out = make([]ClusterProviderStore, len(*in))
  65. for i := range *in {
  66. (*in)[i].DeepCopyInto(&(*out)[i])
  67. }
  68. }
  69. }
  70. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreList.
  71. func (in *ClusterProviderStoreList) DeepCopy() *ClusterProviderStoreList {
  72. if in == nil {
  73. return nil
  74. }
  75. out := new(ClusterProviderStoreList)
  76. in.DeepCopyInto(out)
  77. return out
  78. }
  79. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  80. func (in *ClusterProviderStoreList) DeepCopyObject() runtime.Object {
  81. if c := in.DeepCopy(); c != nil {
  82. return c
  83. }
  84. return nil
  85. }
  86. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  87. func (in *ClusterProviderStoreSpec) DeepCopyInto(out *ClusterProviderStoreSpec) {
  88. *out = *in
  89. out.RuntimeRef = in.RuntimeRef
  90. out.BackendRef = in.BackendRef
  91. if in.Conditions != nil {
  92. in, out := &in.Conditions, &out.Conditions
  93. *out = make([]StoreNamespaceCondition, len(*in))
  94. for i := range *in {
  95. (*in)[i].DeepCopyInto(&(*out)[i])
  96. }
  97. }
  98. }
  99. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreSpec.
  100. func (in *ClusterProviderStoreSpec) DeepCopy() *ClusterProviderStoreSpec {
  101. if in == nil {
  102. return nil
  103. }
  104. out := new(ClusterProviderStoreSpec)
  105. in.DeepCopyInto(out)
  106. return out
  107. }
  108. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  109. func (in *ClusterProviderStoreValidator) DeepCopyInto(out *ClusterProviderStoreValidator) {
  110. *out = *in
  111. }
  112. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterProviderStoreValidator.
  113. func (in *ClusterProviderStoreValidator) DeepCopy() *ClusterProviderStoreValidator {
  114. if in == nil {
  115. return nil
  116. }
  117. out := new(ClusterProviderStoreValidator)
  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 *ProviderStore) DeepCopyInto(out *ProviderStore) {
  123. *out = *in
  124. out.TypeMeta = in.TypeMeta
  125. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  126. out.Spec = in.Spec
  127. in.Status.DeepCopyInto(&out.Status)
  128. }
  129. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStore.
  130. func (in *ProviderStore) DeepCopy() *ProviderStore {
  131. if in == nil {
  132. return nil
  133. }
  134. out := new(ProviderStore)
  135. in.DeepCopyInto(out)
  136. return out
  137. }
  138. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  139. func (in *ProviderStore) DeepCopyObject() runtime.Object {
  140. if c := in.DeepCopy(); c != nil {
  141. return c
  142. }
  143. return nil
  144. }
  145. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  146. func (in *ProviderStoreCondition) DeepCopyInto(out *ProviderStoreCondition) {
  147. *out = *in
  148. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  149. }
  150. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreCondition.
  151. func (in *ProviderStoreCondition) DeepCopy() *ProviderStoreCondition {
  152. if in == nil {
  153. return nil
  154. }
  155. out := new(ProviderStoreCondition)
  156. in.DeepCopyInto(out)
  157. return out
  158. }
  159. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  160. func (in *ProviderStoreList) DeepCopyInto(out *ProviderStoreList) {
  161. *out = *in
  162. out.TypeMeta = in.TypeMeta
  163. in.ListMeta.DeepCopyInto(&out.ListMeta)
  164. if in.Items != nil {
  165. in, out := &in.Items, &out.Items
  166. *out = make([]ProviderStore, len(*in))
  167. for i := range *in {
  168. (*in)[i].DeepCopyInto(&(*out)[i])
  169. }
  170. }
  171. }
  172. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreList.
  173. func (in *ProviderStoreList) DeepCopy() *ProviderStoreList {
  174. if in == nil {
  175. return nil
  176. }
  177. out := new(ProviderStoreList)
  178. in.DeepCopyInto(out)
  179. return out
  180. }
  181. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  182. func (in *ProviderStoreList) DeepCopyObject() runtime.Object {
  183. if c := in.DeepCopy(); c != nil {
  184. return c
  185. }
  186. return nil
  187. }
  188. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  189. func (in *ProviderStoreSpec) DeepCopyInto(out *ProviderStoreSpec) {
  190. *out = *in
  191. out.RuntimeRef = in.RuntimeRef
  192. out.BackendRef = in.BackendRef
  193. }
  194. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreSpec.
  195. func (in *ProviderStoreSpec) DeepCopy() *ProviderStoreSpec {
  196. if in == nil {
  197. return nil
  198. }
  199. out := new(ProviderStoreSpec)
  200. in.DeepCopyInto(out)
  201. return out
  202. }
  203. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  204. func (in *ProviderStoreStatus) DeepCopyInto(out *ProviderStoreStatus) {
  205. *out = *in
  206. if in.Conditions != nil {
  207. in, out := &in.Conditions, &out.Conditions
  208. *out = make([]ProviderStoreCondition, len(*in))
  209. for i := range *in {
  210. (*in)[i].DeepCopyInto(&(*out)[i])
  211. }
  212. }
  213. }
  214. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreStatus.
  215. func (in *ProviderStoreStatus) DeepCopy() *ProviderStoreStatus {
  216. if in == nil {
  217. return nil
  218. }
  219. out := new(ProviderStoreStatus)
  220. in.DeepCopyInto(out)
  221. return out
  222. }
  223. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  224. func (in *ProviderStoreValidator) DeepCopyInto(out *ProviderStoreValidator) {
  225. *out = *in
  226. }
  227. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderStoreValidator.
  228. func (in *ProviderStoreValidator) DeepCopy() *ProviderStoreValidator {
  229. if in == nil {
  230. return nil
  231. }
  232. out := new(ProviderStoreValidator)
  233. in.DeepCopyInto(out)
  234. return out
  235. }
  236. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  237. func (in *StoreNamespaceCondition) DeepCopyInto(out *StoreNamespaceCondition) {
  238. *out = *in
  239. if in.NamespaceSelector != nil {
  240. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  241. *out = new(v1.LabelSelector)
  242. (*in).DeepCopyInto(*out)
  243. }
  244. if in.Namespaces != nil {
  245. in, out := &in.Namespaces, &out.Namespaces
  246. *out = make([]string, len(*in))
  247. copy(*out, *in)
  248. }
  249. if in.NamespaceRegexes != nil {
  250. in, out := &in.NamespaceRegexes, &out.NamespaceRegexes
  251. *out = make([]string, len(*in))
  252. copy(*out, *in)
  253. }
  254. }
  255. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreNamespaceCondition.
  256. func (in *StoreNamespaceCondition) DeepCopy() *StoreNamespaceCondition {
  257. if in == nil {
  258. return nil
  259. }
  260. out := new(StoreNamespaceCondition)
  261. in.DeepCopyInto(out)
  262. return out
  263. }
  264. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  265. func (in *StoreRuntimeRef) DeepCopyInto(out *StoreRuntimeRef) {
  266. *out = *in
  267. }
  268. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreRuntimeRef.
  269. func (in *StoreRuntimeRef) DeepCopy() *StoreRuntimeRef {
  270. if in == nil {
  271. return nil
  272. }
  273. out := new(StoreRuntimeRef)
  274. in.DeepCopyInto(out)
  275. return out
  276. }