zz_generated.deepcopy.go 15 KB

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