zz_generated.deepcopy.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  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. metav1 "github.com/external-secrets/external-secrets/apis/meta/v1"
  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 *AWSAuth) DeepCopyInto(out *AWSAuth) {
  22. *out = *in
  23. in.SecretRef.DeepCopyInto(&out.SecretRef)
  24. }
  25. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  26. func (in *AWSAuth) DeepCopy() *AWSAuth {
  27. if in == nil {
  28. return nil
  29. }
  30. out := new(AWSAuth)
  31. in.DeepCopyInto(out)
  32. return out
  33. }
  34. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  35. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  36. *out = *in
  37. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  38. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  39. }
  40. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  41. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  42. if in == nil {
  43. return nil
  44. }
  45. out := new(AWSAuthSecretRef)
  46. in.DeepCopyInto(out)
  47. return out
  48. }
  49. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  50. func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
  51. *out = *in
  52. if in.Auth != nil {
  53. in, out := &in.Auth, &out.Auth
  54. *out = new(AWSAuth)
  55. (*in).DeepCopyInto(*out)
  56. }
  57. }
  58. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  59. func (in *AWSProvider) DeepCopy() *AWSProvider {
  60. if in == nil {
  61. return nil
  62. }
  63. out := new(AWSProvider)
  64. in.DeepCopyInto(out)
  65. return out
  66. }
  67. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  68. func (in *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  69. *out = *in
  70. if in.ClientID != nil {
  71. in, out := &in.ClientID, &out.ClientID
  72. *out = new(metav1.SecretKeySelector)
  73. (*in).DeepCopyInto(*out)
  74. }
  75. if in.ClientSecret != nil {
  76. in, out := &in.ClientSecret, &out.ClientSecret
  77. *out = new(metav1.SecretKeySelector)
  78. (*in).DeepCopyInto(*out)
  79. }
  80. }
  81. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  82. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  83. if in == nil {
  84. return nil
  85. }
  86. out := new(AzureKVAuth)
  87. in.DeepCopyInto(out)
  88. return out
  89. }
  90. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  91. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  92. *out = *in
  93. if in.VaultURL != nil {
  94. in, out := &in.VaultURL, &out.VaultURL
  95. *out = new(string)
  96. **out = **in
  97. }
  98. if in.TenantID != nil {
  99. in, out := &in.TenantID, &out.TenantID
  100. *out = new(string)
  101. **out = **in
  102. }
  103. if in.AuthSecretRef != nil {
  104. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  105. *out = new(AzureKVAuth)
  106. (*in).DeepCopyInto(*out)
  107. }
  108. }
  109. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  110. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  111. if in == nil {
  112. return nil
  113. }
  114. out := new(AzureKVProvider)
  115. in.DeepCopyInto(out)
  116. return out
  117. }
  118. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  119. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  120. *out = *in
  121. out.TypeMeta = in.TypeMeta
  122. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  123. in.Spec.DeepCopyInto(&out.Spec)
  124. in.Status.DeepCopyInto(&out.Status)
  125. }
  126. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  127. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  128. if in == nil {
  129. return nil
  130. }
  131. out := new(ClusterSecretStore)
  132. in.DeepCopyInto(out)
  133. return out
  134. }
  135. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  136. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  137. if c := in.DeepCopy(); c != nil {
  138. return c
  139. }
  140. return nil
  141. }
  142. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  143. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  144. *out = *in
  145. out.TypeMeta = in.TypeMeta
  146. in.ListMeta.DeepCopyInto(&out.ListMeta)
  147. if in.Items != nil {
  148. in, out := &in.Items, &out.Items
  149. *out = make([]ClusterSecretStore, len(*in))
  150. for i := range *in {
  151. (*in)[i].DeepCopyInto(&(*out)[i])
  152. }
  153. }
  154. }
  155. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  156. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  157. if in == nil {
  158. return nil
  159. }
  160. out := new(ClusterSecretStoreList)
  161. in.DeepCopyInto(out)
  162. return out
  163. }
  164. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  165. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  166. if c := in.DeepCopy(); c != nil {
  167. return c
  168. }
  169. return nil
  170. }
  171. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  172. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  173. *out = *in
  174. out.TypeMeta = in.TypeMeta
  175. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  176. in.Spec.DeepCopyInto(&out.Spec)
  177. in.Status.DeepCopyInto(&out.Status)
  178. }
  179. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  180. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  181. if in == nil {
  182. return nil
  183. }
  184. out := new(ExternalSecret)
  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 *ExternalSecret) 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 *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  197. *out = *in
  198. out.RemoteRef = in.RemoteRef
  199. }
  200. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  201. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  202. if in == nil {
  203. return nil
  204. }
  205. out := new(ExternalSecretData)
  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 *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  211. *out = *in
  212. }
  213. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  214. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  215. if in == nil {
  216. return nil
  217. }
  218. out := new(ExternalSecretDataRemoteRef)
  219. in.DeepCopyInto(out)
  220. return out
  221. }
  222. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  223. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  224. *out = *in
  225. out.TypeMeta = in.TypeMeta
  226. in.ListMeta.DeepCopyInto(&out.ListMeta)
  227. if in.Items != nil {
  228. in, out := &in.Items, &out.Items
  229. *out = make([]ExternalSecret, len(*in))
  230. for i := range *in {
  231. (*in)[i].DeepCopyInto(&(*out)[i])
  232. }
  233. }
  234. }
  235. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  236. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  237. if in == nil {
  238. return nil
  239. }
  240. out := new(ExternalSecretList)
  241. in.DeepCopyInto(out)
  242. return out
  243. }
  244. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  245. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  246. if c := in.DeepCopy(); c != nil {
  247. return c
  248. }
  249. return nil
  250. }
  251. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  252. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  253. *out = *in
  254. out.SecretStoreRef = in.SecretStoreRef
  255. in.Target.DeepCopyInto(&out.Target)
  256. if in.RefreshInterval != nil {
  257. in, out := &in.RefreshInterval, &out.RefreshInterval
  258. *out = new(v1.Duration)
  259. **out = **in
  260. }
  261. if in.Data != nil {
  262. in, out := &in.Data, &out.Data
  263. *out = make([]ExternalSecretData, len(*in))
  264. copy(*out, *in)
  265. }
  266. if in.DataFrom != nil {
  267. in, out := &in.DataFrom, &out.DataFrom
  268. *out = make([]ExternalSecretDataRemoteRef, len(*in))
  269. copy(*out, *in)
  270. }
  271. }
  272. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  273. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  274. if in == nil {
  275. return nil
  276. }
  277. out := new(ExternalSecretSpec)
  278. in.DeepCopyInto(out)
  279. return out
  280. }
  281. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  282. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  283. *out = *in
  284. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  285. if in.Conditions != nil {
  286. in, out := &in.Conditions, &out.Conditions
  287. *out = make([]ExternalSecretStatusCondition, len(*in))
  288. for i := range *in {
  289. (*in)[i].DeepCopyInto(&(*out)[i])
  290. }
  291. }
  292. }
  293. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  294. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  295. if in == nil {
  296. return nil
  297. }
  298. out := new(ExternalSecretStatus)
  299. in.DeepCopyInto(out)
  300. return out
  301. }
  302. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  303. func (in *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  304. *out = *in
  305. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  306. }
  307. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  308. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  309. if in == nil {
  310. return nil
  311. }
  312. out := new(ExternalSecretStatusCondition)
  313. in.DeepCopyInto(out)
  314. return out
  315. }
  316. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  317. func (in *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  318. *out = *in
  319. if in.Template != nil {
  320. in, out := &in.Template, &out.Template
  321. *out = new(ExternalSecretTemplate)
  322. (*in).DeepCopyInto(*out)
  323. }
  324. }
  325. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  326. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  327. if in == nil {
  328. return nil
  329. }
  330. out := new(ExternalSecretTarget)
  331. in.DeepCopyInto(out)
  332. return out
  333. }
  334. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  335. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  336. *out = *in
  337. in.Metadata.DeepCopyInto(&out.Metadata)
  338. if in.Data != nil {
  339. in, out := &in.Data, &out.Data
  340. *out = make(map[string]string, len(*in))
  341. for key, val := range *in {
  342. (*out)[key] = val
  343. }
  344. }
  345. }
  346. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  347. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  348. if in == nil {
  349. return nil
  350. }
  351. out := new(ExternalSecretTemplate)
  352. in.DeepCopyInto(out)
  353. return out
  354. }
  355. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  356. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  357. *out = *in
  358. if in.Annotations != nil {
  359. in, out := &in.Annotations, &out.Annotations
  360. *out = make(map[string]string, len(*in))
  361. for key, val := range *in {
  362. (*out)[key] = val
  363. }
  364. }
  365. if in.Labels != nil {
  366. in, out := &in.Labels, &out.Labels
  367. *out = make(map[string]string, len(*in))
  368. for key, val := range *in {
  369. (*out)[key] = val
  370. }
  371. }
  372. }
  373. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  374. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  375. if in == nil {
  376. return nil
  377. }
  378. out := new(ExternalSecretTemplateMetadata)
  379. in.DeepCopyInto(out)
  380. return out
  381. }
  382. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  383. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  384. *out = *in
  385. in.SecretRef.DeepCopyInto(&out.SecretRef)
  386. }
  387. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  388. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  389. if in == nil {
  390. return nil
  391. }
  392. out := new(GCPSMAuth)
  393. in.DeepCopyInto(out)
  394. return out
  395. }
  396. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  397. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  398. *out = *in
  399. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  400. }
  401. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  402. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  403. if in == nil {
  404. return nil
  405. }
  406. out := new(GCPSMAuthSecretRef)
  407. in.DeepCopyInto(out)
  408. return out
  409. }
  410. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  411. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  412. *out = *in
  413. in.Auth.DeepCopyInto(&out.Auth)
  414. }
  415. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  416. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  417. if in == nil {
  418. return nil
  419. }
  420. out := new(GCPSMProvider)
  421. in.DeepCopyInto(out)
  422. return out
  423. }
  424. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  425. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  426. *out = *in
  427. out.TypeMeta = in.TypeMeta
  428. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  429. in.Spec.DeepCopyInto(&out.Spec)
  430. in.Status.DeepCopyInto(&out.Status)
  431. }
  432. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  433. func (in *SecretStore) DeepCopy() *SecretStore {
  434. if in == nil {
  435. return nil
  436. }
  437. out := new(SecretStore)
  438. in.DeepCopyInto(out)
  439. return out
  440. }
  441. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  442. func (in *SecretStore) DeepCopyObject() runtime.Object {
  443. if c := in.DeepCopy(); c != nil {
  444. return c
  445. }
  446. return nil
  447. }
  448. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  449. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  450. *out = *in
  451. out.TypeMeta = in.TypeMeta
  452. in.ListMeta.DeepCopyInto(&out.ListMeta)
  453. if in.Items != nil {
  454. in, out := &in.Items, &out.Items
  455. *out = make([]SecretStore, len(*in))
  456. for i := range *in {
  457. (*in)[i].DeepCopyInto(&(*out)[i])
  458. }
  459. }
  460. }
  461. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  462. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  463. if in == nil {
  464. return nil
  465. }
  466. out := new(SecretStoreList)
  467. in.DeepCopyInto(out)
  468. return out
  469. }
  470. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  471. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  472. if c := in.DeepCopy(); c != nil {
  473. return c
  474. }
  475. return nil
  476. }
  477. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  478. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  479. *out = *in
  480. if in.AWS != nil {
  481. in, out := &in.AWS, &out.AWS
  482. *out = new(AWSProvider)
  483. (*in).DeepCopyInto(*out)
  484. }
  485. if in.AzureKV != nil {
  486. in, out := &in.AzureKV, &out.AzureKV
  487. *out = new(AzureKVProvider)
  488. (*in).DeepCopyInto(*out)
  489. }
  490. if in.Vault != nil {
  491. in, out := &in.Vault, &out.Vault
  492. *out = new(VaultProvider)
  493. (*in).DeepCopyInto(*out)
  494. }
  495. if in.GCPSM != nil {
  496. in, out := &in.GCPSM, &out.GCPSM
  497. *out = new(GCPSMProvider)
  498. (*in).DeepCopyInto(*out)
  499. }
  500. }
  501. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  502. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  503. if in == nil {
  504. return nil
  505. }
  506. out := new(SecretStoreProvider)
  507. in.DeepCopyInto(out)
  508. return out
  509. }
  510. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  511. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  512. *out = *in
  513. }
  514. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  515. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  516. if in == nil {
  517. return nil
  518. }
  519. out := new(SecretStoreRef)
  520. in.DeepCopyInto(out)
  521. return out
  522. }
  523. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  524. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  525. *out = *in
  526. if in.Provider != nil {
  527. in, out := &in.Provider, &out.Provider
  528. *out = new(SecretStoreProvider)
  529. (*in).DeepCopyInto(*out)
  530. }
  531. }
  532. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  533. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  534. if in == nil {
  535. return nil
  536. }
  537. out := new(SecretStoreSpec)
  538. in.DeepCopyInto(out)
  539. return out
  540. }
  541. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  542. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  543. *out = *in
  544. if in.Conditions != nil {
  545. in, out := &in.Conditions, &out.Conditions
  546. *out = make([]SecretStoreStatusCondition, len(*in))
  547. for i := range *in {
  548. (*in)[i].DeepCopyInto(&(*out)[i])
  549. }
  550. }
  551. }
  552. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  553. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  554. if in == nil {
  555. return nil
  556. }
  557. out := new(SecretStoreStatus)
  558. in.DeepCopyInto(out)
  559. return out
  560. }
  561. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  562. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  563. *out = *in
  564. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  565. }
  566. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  567. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  568. if in == nil {
  569. return nil
  570. }
  571. out := new(SecretStoreStatusCondition)
  572. in.DeepCopyInto(out)
  573. return out
  574. }
  575. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  576. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  577. *out = *in
  578. in.SecretRef.DeepCopyInto(&out.SecretRef)
  579. }
  580. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  581. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  582. if in == nil {
  583. return nil
  584. }
  585. out := new(VaultAppRole)
  586. in.DeepCopyInto(out)
  587. return out
  588. }
  589. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  590. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  591. *out = *in
  592. if in.TokenSecretRef != nil {
  593. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  594. *out = new(metav1.SecretKeySelector)
  595. (*in).DeepCopyInto(*out)
  596. }
  597. if in.AppRole != nil {
  598. in, out := &in.AppRole, &out.AppRole
  599. *out = new(VaultAppRole)
  600. (*in).DeepCopyInto(*out)
  601. }
  602. if in.Kubernetes != nil {
  603. in, out := &in.Kubernetes, &out.Kubernetes
  604. *out = new(VaultKubernetesAuth)
  605. (*in).DeepCopyInto(*out)
  606. }
  607. if in.Ldap != nil {
  608. in, out := &in.Ldap, &out.Ldap
  609. *out = new(VaultLdapAuth)
  610. (*in).DeepCopyInto(*out)
  611. }
  612. if in.Jwt != nil {
  613. in, out := &in.Jwt, &out.Jwt
  614. *out = new(VaultJwtAuth)
  615. (*in).DeepCopyInto(*out)
  616. }
  617. }
  618. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  619. func (in *VaultAuth) DeepCopy() *VaultAuth {
  620. if in == nil {
  621. return nil
  622. }
  623. out := new(VaultAuth)
  624. in.DeepCopyInto(out)
  625. return out
  626. }
  627. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  628. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  629. *out = *in
  630. in.SecretRef.DeepCopyInto(&out.SecretRef)
  631. }
  632. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  633. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  634. if in == nil {
  635. return nil
  636. }
  637. out := new(VaultJwtAuth)
  638. in.DeepCopyInto(out)
  639. return out
  640. }
  641. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  642. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  643. *out = *in
  644. if in.ServiceAccountRef != nil {
  645. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  646. *out = new(metav1.ServiceAccountSelector)
  647. (*in).DeepCopyInto(*out)
  648. }
  649. if in.SecretRef != nil {
  650. in, out := &in.SecretRef, &out.SecretRef
  651. *out = new(metav1.SecretKeySelector)
  652. (*in).DeepCopyInto(*out)
  653. }
  654. }
  655. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  656. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  657. if in == nil {
  658. return nil
  659. }
  660. out := new(VaultKubernetesAuth)
  661. in.DeepCopyInto(out)
  662. return out
  663. }
  664. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  665. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  666. *out = *in
  667. in.SecretRef.DeepCopyInto(&out.SecretRef)
  668. }
  669. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  670. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  671. if in == nil {
  672. return nil
  673. }
  674. out := new(VaultLdapAuth)
  675. in.DeepCopyInto(out)
  676. return out
  677. }
  678. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  679. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  680. *out = *in
  681. in.Auth.DeepCopyInto(&out.Auth)
  682. if in.Namespace != nil {
  683. in, out := &in.Namespace, &out.Namespace
  684. *out = new(string)
  685. **out = **in
  686. }
  687. if in.CABundle != nil {
  688. in, out := &in.CABundle, &out.CABundle
  689. *out = make([]byte, len(*in))
  690. copy(*out, *in)
  691. }
  692. }
  693. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  694. func (in *VaultProvider) DeepCopy() *VaultProvider {
  695. if in == nil {
  696. return nil
  697. }
  698. out := new(VaultProvider)
  699. in.DeepCopyInto(out)
  700. return out
  701. }