zz_generated.deepcopy.go 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  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. if in.TemplateFrom != nil {
  346. in, out := &in.TemplateFrom, &out.TemplateFrom
  347. *out = make([]TemplateFrom, len(*in))
  348. for i := range *in {
  349. (*in)[i].DeepCopyInto(&(*out)[i])
  350. }
  351. }
  352. }
  353. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  354. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  355. if in == nil {
  356. return nil
  357. }
  358. out := new(ExternalSecretTemplate)
  359. in.DeepCopyInto(out)
  360. return out
  361. }
  362. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  363. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  364. *out = *in
  365. if in.Annotations != nil {
  366. in, out := &in.Annotations, &out.Annotations
  367. *out = make(map[string]string, len(*in))
  368. for key, val := range *in {
  369. (*out)[key] = val
  370. }
  371. }
  372. if in.Labels != nil {
  373. in, out := &in.Labels, &out.Labels
  374. *out = make(map[string]string, len(*in))
  375. for key, val := range *in {
  376. (*out)[key] = val
  377. }
  378. }
  379. }
  380. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  381. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  382. if in == nil {
  383. return nil
  384. }
  385. out := new(ExternalSecretTemplateMetadata)
  386. in.DeepCopyInto(out)
  387. return out
  388. }
  389. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  390. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  391. *out = *in
  392. in.SecretRef.DeepCopyInto(&out.SecretRef)
  393. }
  394. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  395. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  396. if in == nil {
  397. return nil
  398. }
  399. out := new(GCPSMAuth)
  400. in.DeepCopyInto(out)
  401. return out
  402. }
  403. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  404. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  405. *out = *in
  406. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  407. }
  408. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  409. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  410. if in == nil {
  411. return nil
  412. }
  413. out := new(GCPSMAuthSecretRef)
  414. in.DeepCopyInto(out)
  415. return out
  416. }
  417. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  418. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  419. *out = *in
  420. in.Auth.DeepCopyInto(&out.Auth)
  421. }
  422. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  423. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  424. if in == nil {
  425. return nil
  426. }
  427. out := new(GCPSMProvider)
  428. in.DeepCopyInto(out)
  429. return out
  430. }
  431. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  432. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  433. *out = *in
  434. out.TypeMeta = in.TypeMeta
  435. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  436. in.Spec.DeepCopyInto(&out.Spec)
  437. in.Status.DeepCopyInto(&out.Status)
  438. }
  439. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  440. func (in *SecretStore) DeepCopy() *SecretStore {
  441. if in == nil {
  442. return nil
  443. }
  444. out := new(SecretStore)
  445. in.DeepCopyInto(out)
  446. return out
  447. }
  448. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  449. func (in *SecretStore) DeepCopyObject() runtime.Object {
  450. if c := in.DeepCopy(); c != nil {
  451. return c
  452. }
  453. return nil
  454. }
  455. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  456. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  457. *out = *in
  458. out.TypeMeta = in.TypeMeta
  459. in.ListMeta.DeepCopyInto(&out.ListMeta)
  460. if in.Items != nil {
  461. in, out := &in.Items, &out.Items
  462. *out = make([]SecretStore, len(*in))
  463. for i := range *in {
  464. (*in)[i].DeepCopyInto(&(*out)[i])
  465. }
  466. }
  467. }
  468. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  469. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  470. if in == nil {
  471. return nil
  472. }
  473. out := new(SecretStoreList)
  474. in.DeepCopyInto(out)
  475. return out
  476. }
  477. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  478. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  479. if c := in.DeepCopy(); c != nil {
  480. return c
  481. }
  482. return nil
  483. }
  484. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  485. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  486. *out = *in
  487. if in.AWS != nil {
  488. in, out := &in.AWS, &out.AWS
  489. *out = new(AWSProvider)
  490. (*in).DeepCopyInto(*out)
  491. }
  492. if in.AzureKV != nil {
  493. in, out := &in.AzureKV, &out.AzureKV
  494. *out = new(AzureKVProvider)
  495. (*in).DeepCopyInto(*out)
  496. }
  497. if in.Vault != nil {
  498. in, out := &in.Vault, &out.Vault
  499. *out = new(VaultProvider)
  500. (*in).DeepCopyInto(*out)
  501. }
  502. if in.GCPSM != nil {
  503. in, out := &in.GCPSM, &out.GCPSM
  504. *out = new(GCPSMProvider)
  505. (*in).DeepCopyInto(*out)
  506. }
  507. }
  508. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  509. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  510. if in == nil {
  511. return nil
  512. }
  513. out := new(SecretStoreProvider)
  514. in.DeepCopyInto(out)
  515. return out
  516. }
  517. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  518. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  519. *out = *in
  520. }
  521. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  522. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  523. if in == nil {
  524. return nil
  525. }
  526. out := new(SecretStoreRef)
  527. in.DeepCopyInto(out)
  528. return out
  529. }
  530. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  531. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  532. *out = *in
  533. if in.Provider != nil {
  534. in, out := &in.Provider, &out.Provider
  535. *out = new(SecretStoreProvider)
  536. (*in).DeepCopyInto(*out)
  537. }
  538. }
  539. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  540. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  541. if in == nil {
  542. return nil
  543. }
  544. out := new(SecretStoreSpec)
  545. in.DeepCopyInto(out)
  546. return out
  547. }
  548. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  549. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  550. *out = *in
  551. if in.Conditions != nil {
  552. in, out := &in.Conditions, &out.Conditions
  553. *out = make([]SecretStoreStatusCondition, len(*in))
  554. for i := range *in {
  555. (*in)[i].DeepCopyInto(&(*out)[i])
  556. }
  557. }
  558. }
  559. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  560. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  561. if in == nil {
  562. return nil
  563. }
  564. out := new(SecretStoreStatus)
  565. in.DeepCopyInto(out)
  566. return out
  567. }
  568. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  569. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  570. *out = *in
  571. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  572. }
  573. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  574. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  575. if in == nil {
  576. return nil
  577. }
  578. out := new(SecretStoreStatusCondition)
  579. in.DeepCopyInto(out)
  580. return out
  581. }
  582. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  583. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  584. *out = *in
  585. if in.ConfigMap != nil {
  586. in, out := &in.ConfigMap, &out.ConfigMap
  587. *out = new(TemplateRef)
  588. (*in).DeepCopyInto(*out)
  589. }
  590. if in.Secret != nil {
  591. in, out := &in.Secret, &out.Secret
  592. *out = new(TemplateRef)
  593. (*in).DeepCopyInto(*out)
  594. }
  595. }
  596. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  597. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  598. if in == nil {
  599. return nil
  600. }
  601. out := new(TemplateFrom)
  602. in.DeepCopyInto(out)
  603. return out
  604. }
  605. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  606. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  607. *out = *in
  608. if in.Items != nil {
  609. in, out := &in.Items, &out.Items
  610. *out = make([]TemplateRefItem, len(*in))
  611. copy(*out, *in)
  612. }
  613. }
  614. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  615. func (in *TemplateRef) DeepCopy() *TemplateRef {
  616. if in == nil {
  617. return nil
  618. }
  619. out := new(TemplateRef)
  620. in.DeepCopyInto(out)
  621. return out
  622. }
  623. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  624. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  625. *out = *in
  626. }
  627. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  628. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  629. if in == nil {
  630. return nil
  631. }
  632. out := new(TemplateRefItem)
  633. in.DeepCopyInto(out)
  634. return out
  635. }
  636. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  637. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  638. *out = *in
  639. in.SecretRef.DeepCopyInto(&out.SecretRef)
  640. }
  641. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  642. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  643. if in == nil {
  644. return nil
  645. }
  646. out := new(VaultAppRole)
  647. in.DeepCopyInto(out)
  648. return out
  649. }
  650. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  651. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  652. *out = *in
  653. if in.TokenSecretRef != nil {
  654. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  655. *out = new(metav1.SecretKeySelector)
  656. (*in).DeepCopyInto(*out)
  657. }
  658. if in.AppRole != nil {
  659. in, out := &in.AppRole, &out.AppRole
  660. *out = new(VaultAppRole)
  661. (*in).DeepCopyInto(*out)
  662. }
  663. if in.Kubernetes != nil {
  664. in, out := &in.Kubernetes, &out.Kubernetes
  665. *out = new(VaultKubernetesAuth)
  666. (*in).DeepCopyInto(*out)
  667. }
  668. if in.Ldap != nil {
  669. in, out := &in.Ldap, &out.Ldap
  670. *out = new(VaultLdapAuth)
  671. (*in).DeepCopyInto(*out)
  672. }
  673. if in.Jwt != nil {
  674. in, out := &in.Jwt, &out.Jwt
  675. *out = new(VaultJwtAuth)
  676. (*in).DeepCopyInto(*out)
  677. }
  678. }
  679. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  680. func (in *VaultAuth) DeepCopy() *VaultAuth {
  681. if in == nil {
  682. return nil
  683. }
  684. out := new(VaultAuth)
  685. in.DeepCopyInto(out)
  686. return out
  687. }
  688. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  689. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  690. *out = *in
  691. in.SecretRef.DeepCopyInto(&out.SecretRef)
  692. }
  693. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  694. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  695. if in == nil {
  696. return nil
  697. }
  698. out := new(VaultJwtAuth)
  699. in.DeepCopyInto(out)
  700. return out
  701. }
  702. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  703. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  704. *out = *in
  705. if in.ServiceAccountRef != nil {
  706. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  707. *out = new(metav1.ServiceAccountSelector)
  708. (*in).DeepCopyInto(*out)
  709. }
  710. if in.SecretRef != nil {
  711. in, out := &in.SecretRef, &out.SecretRef
  712. *out = new(metav1.SecretKeySelector)
  713. (*in).DeepCopyInto(*out)
  714. }
  715. }
  716. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  717. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  718. if in == nil {
  719. return nil
  720. }
  721. out := new(VaultKubernetesAuth)
  722. in.DeepCopyInto(out)
  723. return out
  724. }
  725. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  726. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  727. *out = *in
  728. in.SecretRef.DeepCopyInto(&out.SecretRef)
  729. }
  730. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  731. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  732. if in == nil {
  733. return nil
  734. }
  735. out := new(VaultLdapAuth)
  736. in.DeepCopyInto(out)
  737. return out
  738. }
  739. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  740. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  741. *out = *in
  742. in.Auth.DeepCopyInto(&out.Auth)
  743. if in.Namespace != nil {
  744. in, out := &in.Namespace, &out.Namespace
  745. *out = new(string)
  746. **out = **in
  747. }
  748. if in.CABundle != nil {
  749. in, out := &in.CABundle, &out.CABundle
  750. *out = make([]byte, len(*in))
  751. copy(*out, *in)
  752. }
  753. }
  754. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  755. func (in *VaultProvider) DeepCopy() *VaultProvider {
  756. if in == nil {
  757. return nil
  758. }
  759. out := new(VaultProvider)
  760. in.DeepCopyInto(out)
  761. return out
  762. }