zz_generated.deepcopy.go 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435
  1. //go:build !ignore_autogenerated
  2. // +build !ignore_autogenerated
  3. /*
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. // Code generated by controller-gen. DO NOT EDIT.
  15. package v1alpha1
  16. import (
  17. metav1 "github.com/external-secrets/external-secrets/apis/meta/v1"
  18. "k8s.io/apimachinery/pkg/apis/meta/v1"
  19. "k8s.io/apimachinery/pkg/runtime"
  20. )
  21. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  22. func (in *AWSAuth) DeepCopyInto(out *AWSAuth) {
  23. *out = *in
  24. if in.SecretRef != nil {
  25. in, out := &in.SecretRef, &out.SecretRef
  26. *out = new(AWSAuthSecretRef)
  27. (*in).DeepCopyInto(*out)
  28. }
  29. if in.JWTAuth != nil {
  30. in, out := &in.JWTAuth, &out.JWTAuth
  31. *out = new(AWSJWTAuth)
  32. (*in).DeepCopyInto(*out)
  33. }
  34. }
  35. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  36. func (in *AWSAuth) DeepCopy() *AWSAuth {
  37. if in == nil {
  38. return nil
  39. }
  40. out := new(AWSAuth)
  41. in.DeepCopyInto(out)
  42. return out
  43. }
  44. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  45. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  46. *out = *in
  47. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  48. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  49. }
  50. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  51. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  52. if in == nil {
  53. return nil
  54. }
  55. out := new(AWSAuthSecretRef)
  56. in.DeepCopyInto(out)
  57. return out
  58. }
  59. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  60. func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  61. *out = *in
  62. if in.ServiceAccountRef != nil {
  63. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  64. *out = new(metav1.ServiceAccountSelector)
  65. (*in).DeepCopyInto(*out)
  66. }
  67. }
  68. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  69. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  70. if in == nil {
  71. return nil
  72. }
  73. out := new(AWSJWTAuth)
  74. in.DeepCopyInto(out)
  75. return out
  76. }
  77. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  78. func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
  79. *out = *in
  80. in.Auth.DeepCopyInto(&out.Auth)
  81. }
  82. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  83. func (in *AWSProvider) DeepCopy() *AWSProvider {
  84. if in == nil {
  85. return nil
  86. }
  87. out := new(AWSProvider)
  88. in.DeepCopyInto(out)
  89. return out
  90. }
  91. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  92. func (in *AkeylessAuth) DeepCopyInto(out *AkeylessAuth) {
  93. *out = *in
  94. in.SecretRef.DeepCopyInto(&out.SecretRef)
  95. }
  96. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuth.
  97. func (in *AkeylessAuth) DeepCopy() *AkeylessAuth {
  98. if in == nil {
  99. return nil
  100. }
  101. out := new(AkeylessAuth)
  102. in.DeepCopyInto(out)
  103. return out
  104. }
  105. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  106. func (in *AkeylessAuthSecretRef) DeepCopyInto(out *AkeylessAuthSecretRef) {
  107. *out = *in
  108. in.AccessID.DeepCopyInto(&out.AccessID)
  109. in.AccessType.DeepCopyInto(&out.AccessType)
  110. in.AccessTypeParam.DeepCopyInto(&out.AccessTypeParam)
  111. }
  112. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuthSecretRef.
  113. func (in *AkeylessAuthSecretRef) DeepCopy() *AkeylessAuthSecretRef {
  114. if in == nil {
  115. return nil
  116. }
  117. out := new(AkeylessAuthSecretRef)
  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 *AkeylessProvider) DeepCopyInto(out *AkeylessProvider) {
  123. *out = *in
  124. if in.AkeylessGWApiURL != nil {
  125. in, out := &in.AkeylessGWApiURL, &out.AkeylessGWApiURL
  126. *out = new(string)
  127. **out = **in
  128. }
  129. if in.Auth != nil {
  130. in, out := &in.Auth, &out.Auth
  131. *out = new(AkeylessAuth)
  132. (*in).DeepCopyInto(*out)
  133. }
  134. }
  135. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessProvider.
  136. func (in *AkeylessProvider) DeepCopy() *AkeylessProvider {
  137. if in == nil {
  138. return nil
  139. }
  140. out := new(AkeylessProvider)
  141. in.DeepCopyInto(out)
  142. return out
  143. }
  144. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  145. func (in *AlibabaAuth) DeepCopyInto(out *AlibabaAuth) {
  146. *out = *in
  147. in.SecretRef.DeepCopyInto(&out.SecretRef)
  148. }
  149. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuth.
  150. func (in *AlibabaAuth) DeepCopy() *AlibabaAuth {
  151. if in == nil {
  152. return nil
  153. }
  154. out := new(AlibabaAuth)
  155. in.DeepCopyInto(out)
  156. return out
  157. }
  158. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  159. func (in *AlibabaAuthSecretRef) DeepCopyInto(out *AlibabaAuthSecretRef) {
  160. *out = *in
  161. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  162. in.AccessKeySecret.DeepCopyInto(&out.AccessKeySecret)
  163. }
  164. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuthSecretRef.
  165. func (in *AlibabaAuthSecretRef) DeepCopy() *AlibabaAuthSecretRef {
  166. if in == nil {
  167. return nil
  168. }
  169. out := new(AlibabaAuthSecretRef)
  170. in.DeepCopyInto(out)
  171. return out
  172. }
  173. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  174. func (in *AlibabaProvider) DeepCopyInto(out *AlibabaProvider) {
  175. *out = *in
  176. if in.Auth != nil {
  177. in, out := &in.Auth, &out.Auth
  178. *out = new(AlibabaAuth)
  179. (*in).DeepCopyInto(*out)
  180. }
  181. }
  182. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaProvider.
  183. func (in *AlibabaProvider) DeepCopy() *AlibabaProvider {
  184. if in == nil {
  185. return nil
  186. }
  187. out := new(AlibabaProvider)
  188. in.DeepCopyInto(out)
  189. return out
  190. }
  191. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  192. func (in *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  193. *out = *in
  194. if in.ClientID != nil {
  195. in, out := &in.ClientID, &out.ClientID
  196. *out = new(metav1.SecretKeySelector)
  197. (*in).DeepCopyInto(*out)
  198. }
  199. if in.ClientSecret != nil {
  200. in, out := &in.ClientSecret, &out.ClientSecret
  201. *out = new(metav1.SecretKeySelector)
  202. (*in).DeepCopyInto(*out)
  203. }
  204. }
  205. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  206. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  207. if in == nil {
  208. return nil
  209. }
  210. out := new(AzureKVAuth)
  211. in.DeepCopyInto(out)
  212. return out
  213. }
  214. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  215. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  216. *out = *in
  217. if in.AuthType != nil {
  218. in, out := &in.AuthType, &out.AuthType
  219. *out = new(AuthType)
  220. **out = **in
  221. }
  222. if in.VaultURL != nil {
  223. in, out := &in.VaultURL, &out.VaultURL
  224. *out = new(string)
  225. **out = **in
  226. }
  227. if in.TenantID != nil {
  228. in, out := &in.TenantID, &out.TenantID
  229. *out = new(string)
  230. **out = **in
  231. }
  232. if in.AuthSecretRef != nil {
  233. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  234. *out = new(AzureKVAuth)
  235. (*in).DeepCopyInto(*out)
  236. }
  237. if in.IdentityID != nil {
  238. in, out := &in.IdentityID, &out.IdentityID
  239. *out = new(string)
  240. **out = **in
  241. }
  242. }
  243. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  244. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  245. if in == nil {
  246. return nil
  247. }
  248. out := new(AzureKVProvider)
  249. in.DeepCopyInto(out)
  250. return out
  251. }
  252. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  253. func (in *CAProvider) DeepCopyInto(out *CAProvider) {
  254. *out = *in
  255. if in.Namespace != nil {
  256. in, out := &in.Namespace, &out.Namespace
  257. *out = new(string)
  258. **out = **in
  259. }
  260. }
  261. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CAProvider.
  262. func (in *CAProvider) DeepCopy() *CAProvider {
  263. if in == nil {
  264. return nil
  265. }
  266. out := new(CAProvider)
  267. in.DeepCopyInto(out)
  268. return out
  269. }
  270. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  271. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  272. *out = *in
  273. out.TypeMeta = in.TypeMeta
  274. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  275. in.Spec.DeepCopyInto(&out.Spec)
  276. in.Status.DeepCopyInto(&out.Status)
  277. }
  278. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  279. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  280. if in == nil {
  281. return nil
  282. }
  283. out := new(ClusterSecretStore)
  284. in.DeepCopyInto(out)
  285. return out
  286. }
  287. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  288. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  289. if c := in.DeepCopy(); c != nil {
  290. return c
  291. }
  292. return nil
  293. }
  294. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  295. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  296. *out = *in
  297. out.TypeMeta = in.TypeMeta
  298. in.ListMeta.DeepCopyInto(&out.ListMeta)
  299. if in.Items != nil {
  300. in, out := &in.Items, &out.Items
  301. *out = make([]ClusterSecretStore, len(*in))
  302. for i := range *in {
  303. (*in)[i].DeepCopyInto(&(*out)[i])
  304. }
  305. }
  306. }
  307. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  308. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  309. if in == nil {
  310. return nil
  311. }
  312. out := new(ClusterSecretStoreList)
  313. in.DeepCopyInto(out)
  314. return out
  315. }
  316. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  317. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  318. if c := in.DeepCopy(); c != nil {
  319. return c
  320. }
  321. return nil
  322. }
  323. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  324. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  325. *out = *in
  326. out.TypeMeta = in.TypeMeta
  327. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  328. in.Spec.DeepCopyInto(&out.Spec)
  329. in.Status.DeepCopyInto(&out.Status)
  330. }
  331. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  332. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  333. if in == nil {
  334. return nil
  335. }
  336. out := new(ExternalSecret)
  337. in.DeepCopyInto(out)
  338. return out
  339. }
  340. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  341. func (in *ExternalSecret) DeepCopyObject() runtime.Object {
  342. if c := in.DeepCopy(); c != nil {
  343. return c
  344. }
  345. return nil
  346. }
  347. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  348. func (in *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  349. *out = *in
  350. out.RemoteRef = in.RemoteRef
  351. }
  352. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  353. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  354. if in == nil {
  355. return nil
  356. }
  357. out := new(ExternalSecretData)
  358. in.DeepCopyInto(out)
  359. return out
  360. }
  361. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  362. func (in *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  363. *out = *in
  364. }
  365. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  366. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  367. if in == nil {
  368. return nil
  369. }
  370. out := new(ExternalSecretDataRemoteRef)
  371. in.DeepCopyInto(out)
  372. return out
  373. }
  374. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  375. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  376. *out = *in
  377. out.TypeMeta = in.TypeMeta
  378. in.ListMeta.DeepCopyInto(&out.ListMeta)
  379. if in.Items != nil {
  380. in, out := &in.Items, &out.Items
  381. *out = make([]ExternalSecret, len(*in))
  382. for i := range *in {
  383. (*in)[i].DeepCopyInto(&(*out)[i])
  384. }
  385. }
  386. }
  387. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  388. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  389. if in == nil {
  390. return nil
  391. }
  392. out := new(ExternalSecretList)
  393. in.DeepCopyInto(out)
  394. return out
  395. }
  396. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  397. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  398. if c := in.DeepCopy(); c != nil {
  399. return c
  400. }
  401. return nil
  402. }
  403. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  404. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  405. *out = *in
  406. out.SecretStoreRef = in.SecretStoreRef
  407. in.Target.DeepCopyInto(&out.Target)
  408. if in.RefreshInterval != nil {
  409. in, out := &in.RefreshInterval, &out.RefreshInterval
  410. *out = new(v1.Duration)
  411. **out = **in
  412. }
  413. if in.Data != nil {
  414. in, out := &in.Data, &out.Data
  415. *out = make([]ExternalSecretData, len(*in))
  416. copy(*out, *in)
  417. }
  418. if in.DataFrom != nil {
  419. in, out := &in.DataFrom, &out.DataFrom
  420. *out = make([]ExternalSecretDataRemoteRef, len(*in))
  421. copy(*out, *in)
  422. }
  423. }
  424. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  425. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  426. if in == nil {
  427. return nil
  428. }
  429. out := new(ExternalSecretSpec)
  430. in.DeepCopyInto(out)
  431. return out
  432. }
  433. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  434. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  435. *out = *in
  436. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  437. if in.Conditions != nil {
  438. in, out := &in.Conditions, &out.Conditions
  439. *out = make([]ExternalSecretStatusCondition, len(*in))
  440. for i := range *in {
  441. (*in)[i].DeepCopyInto(&(*out)[i])
  442. }
  443. }
  444. }
  445. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  446. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  447. if in == nil {
  448. return nil
  449. }
  450. out := new(ExternalSecretStatus)
  451. in.DeepCopyInto(out)
  452. return out
  453. }
  454. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  455. func (in *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  456. *out = *in
  457. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  458. }
  459. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  460. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  461. if in == nil {
  462. return nil
  463. }
  464. out := new(ExternalSecretStatusCondition)
  465. in.DeepCopyInto(out)
  466. return out
  467. }
  468. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  469. func (in *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  470. *out = *in
  471. if in.Template != nil {
  472. in, out := &in.Template, &out.Template
  473. *out = new(ExternalSecretTemplate)
  474. (*in).DeepCopyInto(*out)
  475. }
  476. }
  477. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  478. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  479. if in == nil {
  480. return nil
  481. }
  482. out := new(ExternalSecretTarget)
  483. in.DeepCopyInto(out)
  484. return out
  485. }
  486. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  487. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  488. *out = *in
  489. in.Metadata.DeepCopyInto(&out.Metadata)
  490. if in.Data != nil {
  491. in, out := &in.Data, &out.Data
  492. *out = make(map[string]string, len(*in))
  493. for key, val := range *in {
  494. (*out)[key] = val
  495. }
  496. }
  497. if in.TemplateFrom != nil {
  498. in, out := &in.TemplateFrom, &out.TemplateFrom
  499. *out = make([]TemplateFrom, len(*in))
  500. for i := range *in {
  501. (*in)[i].DeepCopyInto(&(*out)[i])
  502. }
  503. }
  504. }
  505. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  506. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  507. if in == nil {
  508. return nil
  509. }
  510. out := new(ExternalSecretTemplate)
  511. in.DeepCopyInto(out)
  512. return out
  513. }
  514. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  515. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  516. *out = *in
  517. if in.Annotations != nil {
  518. in, out := &in.Annotations, &out.Annotations
  519. *out = make(map[string]string, len(*in))
  520. for key, val := range *in {
  521. (*out)[key] = val
  522. }
  523. }
  524. if in.Labels != nil {
  525. in, out := &in.Labels, &out.Labels
  526. *out = make(map[string]string, len(*in))
  527. for key, val := range *in {
  528. (*out)[key] = val
  529. }
  530. }
  531. }
  532. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  533. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  534. if in == nil {
  535. return nil
  536. }
  537. out := new(ExternalSecretTemplateMetadata)
  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 *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  543. *out = *in
  544. if in.SecretRef != nil {
  545. in, out := &in.SecretRef, &out.SecretRef
  546. *out = new(GCPSMAuthSecretRef)
  547. (*in).DeepCopyInto(*out)
  548. }
  549. if in.WorkloadIdentity != nil {
  550. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  551. *out = new(GCPWorkloadIdentity)
  552. (*in).DeepCopyInto(*out)
  553. }
  554. }
  555. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  556. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  557. if in == nil {
  558. return nil
  559. }
  560. out := new(GCPSMAuth)
  561. in.DeepCopyInto(out)
  562. return out
  563. }
  564. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  565. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  566. *out = *in
  567. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  568. }
  569. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  570. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  571. if in == nil {
  572. return nil
  573. }
  574. out := new(GCPSMAuthSecretRef)
  575. in.DeepCopyInto(out)
  576. return out
  577. }
  578. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  579. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  580. *out = *in
  581. in.Auth.DeepCopyInto(&out.Auth)
  582. }
  583. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  584. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  585. if in == nil {
  586. return nil
  587. }
  588. out := new(GCPSMProvider)
  589. in.DeepCopyInto(out)
  590. return out
  591. }
  592. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  593. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  594. *out = *in
  595. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  596. }
  597. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  598. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  599. if in == nil {
  600. return nil
  601. }
  602. out := new(GCPWorkloadIdentity)
  603. in.DeepCopyInto(out)
  604. return out
  605. }
  606. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  607. func (in *GitlabAuth) DeepCopyInto(out *GitlabAuth) {
  608. *out = *in
  609. in.SecretRef.DeepCopyInto(&out.SecretRef)
  610. }
  611. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabAuth.
  612. func (in *GitlabAuth) DeepCopy() *GitlabAuth {
  613. if in == nil {
  614. return nil
  615. }
  616. out := new(GitlabAuth)
  617. in.DeepCopyInto(out)
  618. return out
  619. }
  620. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  621. func (in *GitlabProvider) DeepCopyInto(out *GitlabProvider) {
  622. *out = *in
  623. in.Auth.DeepCopyInto(&out.Auth)
  624. }
  625. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabProvider.
  626. func (in *GitlabProvider) DeepCopy() *GitlabProvider {
  627. if in == nil {
  628. return nil
  629. }
  630. out := new(GitlabProvider)
  631. in.DeepCopyInto(out)
  632. return out
  633. }
  634. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  635. func (in *GitlabSecretRef) DeepCopyInto(out *GitlabSecretRef) {
  636. *out = *in
  637. in.AccessToken.DeepCopyInto(&out.AccessToken)
  638. }
  639. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabSecretRef.
  640. func (in *GitlabSecretRef) DeepCopy() *GitlabSecretRef {
  641. if in == nil {
  642. return nil
  643. }
  644. out := new(GitlabSecretRef)
  645. in.DeepCopyInto(out)
  646. return out
  647. }
  648. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  649. func (in *IBMAuth) DeepCopyInto(out *IBMAuth) {
  650. *out = *in
  651. in.SecretRef.DeepCopyInto(&out.SecretRef)
  652. }
  653. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  654. func (in *IBMAuth) DeepCopy() *IBMAuth {
  655. if in == nil {
  656. return nil
  657. }
  658. out := new(IBMAuth)
  659. in.DeepCopyInto(out)
  660. return out
  661. }
  662. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  663. func (in *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  664. *out = *in
  665. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  666. }
  667. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  668. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  669. if in == nil {
  670. return nil
  671. }
  672. out := new(IBMAuthSecretRef)
  673. in.DeepCopyInto(out)
  674. return out
  675. }
  676. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  677. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  678. *out = *in
  679. in.Auth.DeepCopyInto(&out.Auth)
  680. if in.ServiceURL != nil {
  681. in, out := &in.ServiceURL, &out.ServiceURL
  682. *out = new(string)
  683. **out = **in
  684. }
  685. }
  686. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  687. func (in *IBMProvider) DeepCopy() *IBMProvider {
  688. if in == nil {
  689. return nil
  690. }
  691. out := new(IBMProvider)
  692. in.DeepCopyInto(out)
  693. return out
  694. }
  695. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  696. func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
  697. *out = *in
  698. in.SecretRef.DeepCopyInto(&out.SecretRef)
  699. }
  700. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  701. func (in *OracleAuth) DeepCopy() *OracleAuth {
  702. if in == nil {
  703. return nil
  704. }
  705. out := new(OracleAuth)
  706. in.DeepCopyInto(out)
  707. return out
  708. }
  709. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  710. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  711. *out = *in
  712. in.Auth.DeepCopyInto(&out.Auth)
  713. }
  714. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  715. func (in *OracleProvider) DeepCopy() *OracleProvider {
  716. if in == nil {
  717. return nil
  718. }
  719. out := new(OracleProvider)
  720. in.DeepCopyInto(out)
  721. return out
  722. }
  723. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  724. func (in *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  725. *out = *in
  726. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  727. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  728. }
  729. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  730. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  731. if in == nil {
  732. return nil
  733. }
  734. out := new(OracleSecretRef)
  735. in.DeepCopyInto(out)
  736. return out
  737. }
  738. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  739. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  740. *out = *in
  741. out.TypeMeta = in.TypeMeta
  742. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  743. in.Spec.DeepCopyInto(&out.Spec)
  744. in.Status.DeepCopyInto(&out.Status)
  745. }
  746. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  747. func (in *SecretStore) DeepCopy() *SecretStore {
  748. if in == nil {
  749. return nil
  750. }
  751. out := new(SecretStore)
  752. in.DeepCopyInto(out)
  753. return out
  754. }
  755. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  756. func (in *SecretStore) DeepCopyObject() runtime.Object {
  757. if c := in.DeepCopy(); c != nil {
  758. return c
  759. }
  760. return nil
  761. }
  762. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  763. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  764. *out = *in
  765. out.TypeMeta = in.TypeMeta
  766. in.ListMeta.DeepCopyInto(&out.ListMeta)
  767. if in.Items != nil {
  768. in, out := &in.Items, &out.Items
  769. *out = make([]SecretStore, len(*in))
  770. for i := range *in {
  771. (*in)[i].DeepCopyInto(&(*out)[i])
  772. }
  773. }
  774. }
  775. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  776. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  777. if in == nil {
  778. return nil
  779. }
  780. out := new(SecretStoreList)
  781. in.DeepCopyInto(out)
  782. return out
  783. }
  784. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  785. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  786. if c := in.DeepCopy(); c != nil {
  787. return c
  788. }
  789. return nil
  790. }
  791. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  792. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  793. *out = *in
  794. if in.AWS != nil {
  795. in, out := &in.AWS, &out.AWS
  796. *out = new(AWSProvider)
  797. (*in).DeepCopyInto(*out)
  798. }
  799. if in.AzureKV != nil {
  800. in, out := &in.AzureKV, &out.AzureKV
  801. *out = new(AzureKVProvider)
  802. (*in).DeepCopyInto(*out)
  803. }
  804. if in.Akeyless != nil {
  805. in, out := &in.Akeyless, &out.Akeyless
  806. *out = new(AkeylessProvider)
  807. (*in).DeepCopyInto(*out)
  808. }
  809. if in.Vault != nil {
  810. in, out := &in.Vault, &out.Vault
  811. *out = new(VaultProvider)
  812. (*in).DeepCopyInto(*out)
  813. }
  814. if in.GCPSM != nil {
  815. in, out := &in.GCPSM, &out.GCPSM
  816. *out = new(GCPSMProvider)
  817. (*in).DeepCopyInto(*out)
  818. }
  819. if in.Oracle != nil {
  820. in, out := &in.Oracle, &out.Oracle
  821. *out = new(OracleProvider)
  822. (*in).DeepCopyInto(*out)
  823. }
  824. if in.IBM != nil {
  825. in, out := &in.IBM, &out.IBM
  826. *out = new(IBMProvider)
  827. (*in).DeepCopyInto(*out)
  828. }
  829. if in.YandexLockbox != nil {
  830. in, out := &in.YandexLockbox, &out.YandexLockbox
  831. *out = new(YandexLockboxProvider)
  832. (*in).DeepCopyInto(*out)
  833. }
  834. if in.Gitlab != nil {
  835. in, out := &in.Gitlab, &out.Gitlab
  836. *out = new(GitlabProvider)
  837. (*in).DeepCopyInto(*out)
  838. }
  839. if in.Alibaba != nil {
  840. in, out := &in.Alibaba, &out.Alibaba
  841. *out = new(AlibabaProvider)
  842. (*in).DeepCopyInto(*out)
  843. }
  844. if in.Webhook != nil {
  845. in, out := &in.Webhook, &out.Webhook
  846. *out = new(WebhookProvider)
  847. (*in).DeepCopyInto(*out)
  848. }
  849. }
  850. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  851. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  852. if in == nil {
  853. return nil
  854. }
  855. out := new(SecretStoreProvider)
  856. in.DeepCopyInto(out)
  857. return out
  858. }
  859. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  860. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  861. *out = *in
  862. }
  863. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  864. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  865. if in == nil {
  866. return nil
  867. }
  868. out := new(SecretStoreRef)
  869. in.DeepCopyInto(out)
  870. return out
  871. }
  872. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  873. func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
  874. *out = *in
  875. if in.MaxRetries != nil {
  876. in, out := &in.MaxRetries, &out.MaxRetries
  877. *out = new(int32)
  878. **out = **in
  879. }
  880. if in.RetryInterval != nil {
  881. in, out := &in.RetryInterval, &out.RetryInterval
  882. *out = new(string)
  883. **out = **in
  884. }
  885. }
  886. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
  887. func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
  888. if in == nil {
  889. return nil
  890. }
  891. out := new(SecretStoreRetrySettings)
  892. in.DeepCopyInto(out)
  893. return out
  894. }
  895. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  896. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  897. *out = *in
  898. if in.Provider != nil {
  899. in, out := &in.Provider, &out.Provider
  900. *out = new(SecretStoreProvider)
  901. (*in).DeepCopyInto(*out)
  902. }
  903. if in.RetrySettings != nil {
  904. in, out := &in.RetrySettings, &out.RetrySettings
  905. *out = new(SecretStoreRetrySettings)
  906. (*in).DeepCopyInto(*out)
  907. }
  908. }
  909. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  910. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  911. if in == nil {
  912. return nil
  913. }
  914. out := new(SecretStoreSpec)
  915. in.DeepCopyInto(out)
  916. return out
  917. }
  918. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  919. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  920. *out = *in
  921. if in.Conditions != nil {
  922. in, out := &in.Conditions, &out.Conditions
  923. *out = make([]SecretStoreStatusCondition, len(*in))
  924. for i := range *in {
  925. (*in)[i].DeepCopyInto(&(*out)[i])
  926. }
  927. }
  928. }
  929. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  930. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  931. if in == nil {
  932. return nil
  933. }
  934. out := new(SecretStoreStatus)
  935. in.DeepCopyInto(out)
  936. return out
  937. }
  938. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  939. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  940. *out = *in
  941. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  942. }
  943. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  944. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  945. if in == nil {
  946. return nil
  947. }
  948. out := new(SecretStoreStatusCondition)
  949. in.DeepCopyInto(out)
  950. return out
  951. }
  952. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  953. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  954. *out = *in
  955. if in.ConfigMap != nil {
  956. in, out := &in.ConfigMap, &out.ConfigMap
  957. *out = new(TemplateRef)
  958. (*in).DeepCopyInto(*out)
  959. }
  960. if in.Secret != nil {
  961. in, out := &in.Secret, &out.Secret
  962. *out = new(TemplateRef)
  963. (*in).DeepCopyInto(*out)
  964. }
  965. }
  966. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  967. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  968. if in == nil {
  969. return nil
  970. }
  971. out := new(TemplateFrom)
  972. in.DeepCopyInto(out)
  973. return out
  974. }
  975. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  976. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  977. *out = *in
  978. if in.Items != nil {
  979. in, out := &in.Items, &out.Items
  980. *out = make([]TemplateRefItem, len(*in))
  981. copy(*out, *in)
  982. }
  983. }
  984. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  985. func (in *TemplateRef) DeepCopy() *TemplateRef {
  986. if in == nil {
  987. return nil
  988. }
  989. out := new(TemplateRef)
  990. in.DeepCopyInto(out)
  991. return out
  992. }
  993. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  994. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  995. *out = *in
  996. }
  997. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  998. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  999. if in == nil {
  1000. return nil
  1001. }
  1002. out := new(TemplateRefItem)
  1003. in.DeepCopyInto(out)
  1004. return out
  1005. }
  1006. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1007. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  1008. *out = *in
  1009. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1010. }
  1011. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  1012. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  1013. if in == nil {
  1014. return nil
  1015. }
  1016. out := new(VaultAppRole)
  1017. in.DeepCopyInto(out)
  1018. return out
  1019. }
  1020. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1021. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  1022. *out = *in
  1023. if in.TokenSecretRef != nil {
  1024. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  1025. *out = new(metav1.SecretKeySelector)
  1026. (*in).DeepCopyInto(*out)
  1027. }
  1028. if in.AppRole != nil {
  1029. in, out := &in.AppRole, &out.AppRole
  1030. *out = new(VaultAppRole)
  1031. (*in).DeepCopyInto(*out)
  1032. }
  1033. if in.Kubernetes != nil {
  1034. in, out := &in.Kubernetes, &out.Kubernetes
  1035. *out = new(VaultKubernetesAuth)
  1036. (*in).DeepCopyInto(*out)
  1037. }
  1038. if in.Ldap != nil {
  1039. in, out := &in.Ldap, &out.Ldap
  1040. *out = new(VaultLdapAuth)
  1041. (*in).DeepCopyInto(*out)
  1042. }
  1043. if in.Jwt != nil {
  1044. in, out := &in.Jwt, &out.Jwt
  1045. *out = new(VaultJwtAuth)
  1046. (*in).DeepCopyInto(*out)
  1047. }
  1048. if in.Cert != nil {
  1049. in, out := &in.Cert, &out.Cert
  1050. *out = new(VaultCertAuth)
  1051. (*in).DeepCopyInto(*out)
  1052. }
  1053. }
  1054. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  1055. func (in *VaultAuth) DeepCopy() *VaultAuth {
  1056. if in == nil {
  1057. return nil
  1058. }
  1059. out := new(VaultAuth)
  1060. in.DeepCopyInto(out)
  1061. return out
  1062. }
  1063. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1064. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  1065. *out = *in
  1066. in.ClientCert.DeepCopyInto(&out.ClientCert)
  1067. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1068. }
  1069. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  1070. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  1071. if in == nil {
  1072. return nil
  1073. }
  1074. out := new(VaultCertAuth)
  1075. in.DeepCopyInto(out)
  1076. return out
  1077. }
  1078. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1079. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  1080. *out = *in
  1081. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1082. }
  1083. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  1084. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  1085. if in == nil {
  1086. return nil
  1087. }
  1088. out := new(VaultJwtAuth)
  1089. in.DeepCopyInto(out)
  1090. return out
  1091. }
  1092. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1093. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  1094. *out = *in
  1095. if in.ServiceAccountRef != nil {
  1096. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  1097. *out = new(metav1.ServiceAccountSelector)
  1098. (*in).DeepCopyInto(*out)
  1099. }
  1100. if in.SecretRef != nil {
  1101. in, out := &in.SecretRef, &out.SecretRef
  1102. *out = new(metav1.SecretKeySelector)
  1103. (*in).DeepCopyInto(*out)
  1104. }
  1105. }
  1106. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  1107. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  1108. if in == nil {
  1109. return nil
  1110. }
  1111. out := new(VaultKubernetesAuth)
  1112. in.DeepCopyInto(out)
  1113. return out
  1114. }
  1115. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1116. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  1117. *out = *in
  1118. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1119. }
  1120. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  1121. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  1122. if in == nil {
  1123. return nil
  1124. }
  1125. out := new(VaultLdapAuth)
  1126. in.DeepCopyInto(out)
  1127. return out
  1128. }
  1129. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1130. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  1131. *out = *in
  1132. in.Auth.DeepCopyInto(&out.Auth)
  1133. if in.Path != nil {
  1134. in, out := &in.Path, &out.Path
  1135. *out = new(string)
  1136. **out = **in
  1137. }
  1138. if in.Namespace != nil {
  1139. in, out := &in.Namespace, &out.Namespace
  1140. *out = new(string)
  1141. **out = **in
  1142. }
  1143. if in.CABundle != nil {
  1144. in, out := &in.CABundle, &out.CABundle
  1145. *out = make([]byte, len(*in))
  1146. copy(*out, *in)
  1147. }
  1148. if in.CAProvider != nil {
  1149. in, out := &in.CAProvider, &out.CAProvider
  1150. *out = new(CAProvider)
  1151. (*in).DeepCopyInto(*out)
  1152. }
  1153. }
  1154. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  1155. func (in *VaultProvider) DeepCopy() *VaultProvider {
  1156. if in == nil {
  1157. return nil
  1158. }
  1159. out := new(VaultProvider)
  1160. in.DeepCopyInto(out)
  1161. return out
  1162. }
  1163. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1164. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  1165. *out = *in
  1166. if in.Namespace != nil {
  1167. in, out := &in.Namespace, &out.Namespace
  1168. *out = new(string)
  1169. **out = **in
  1170. }
  1171. }
  1172. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  1173. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  1174. if in == nil {
  1175. return nil
  1176. }
  1177. out := new(WebhookCAProvider)
  1178. in.DeepCopyInto(out)
  1179. return out
  1180. }
  1181. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1182. func (in *WebhookProvider) DeepCopyInto(out *WebhookProvider) {
  1183. *out = *in
  1184. if in.Headers != nil {
  1185. in, out := &in.Headers, &out.Headers
  1186. *out = make(map[string]string, len(*in))
  1187. for key, val := range *in {
  1188. (*out)[key] = val
  1189. }
  1190. }
  1191. if in.Timeout != nil {
  1192. in, out := &in.Timeout, &out.Timeout
  1193. *out = new(v1.Duration)
  1194. **out = **in
  1195. }
  1196. out.Result = in.Result
  1197. if in.Secrets != nil {
  1198. in, out := &in.Secrets, &out.Secrets
  1199. *out = make([]WebhookSecret, len(*in))
  1200. for i := range *in {
  1201. (*in)[i].DeepCopyInto(&(*out)[i])
  1202. }
  1203. }
  1204. if in.CABundle != nil {
  1205. in, out := &in.CABundle, &out.CABundle
  1206. *out = make([]byte, len(*in))
  1207. copy(*out, *in)
  1208. }
  1209. if in.CAProvider != nil {
  1210. in, out := &in.CAProvider, &out.CAProvider
  1211. *out = new(WebhookCAProvider)
  1212. (*in).DeepCopyInto(*out)
  1213. }
  1214. }
  1215. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookProvider.
  1216. func (in *WebhookProvider) DeepCopy() *WebhookProvider {
  1217. if in == nil {
  1218. return nil
  1219. }
  1220. out := new(WebhookProvider)
  1221. in.DeepCopyInto(out)
  1222. return out
  1223. }
  1224. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1225. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  1226. *out = *in
  1227. }
  1228. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  1229. func (in *WebhookResult) DeepCopy() *WebhookResult {
  1230. if in == nil {
  1231. return nil
  1232. }
  1233. out := new(WebhookResult)
  1234. in.DeepCopyInto(out)
  1235. return out
  1236. }
  1237. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1238. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  1239. *out = *in
  1240. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1241. }
  1242. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  1243. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  1244. if in == nil {
  1245. return nil
  1246. }
  1247. out := new(WebhookSecret)
  1248. in.DeepCopyInto(out)
  1249. return out
  1250. }
  1251. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1252. func (in *YandexLockboxAuth) DeepCopyInto(out *YandexLockboxAuth) {
  1253. *out = *in
  1254. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  1255. }
  1256. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxAuth.
  1257. func (in *YandexLockboxAuth) DeepCopy() *YandexLockboxAuth {
  1258. if in == nil {
  1259. return nil
  1260. }
  1261. out := new(YandexLockboxAuth)
  1262. in.DeepCopyInto(out)
  1263. return out
  1264. }
  1265. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1266. func (in *YandexLockboxCAProvider) DeepCopyInto(out *YandexLockboxCAProvider) {
  1267. *out = *in
  1268. in.Certificate.DeepCopyInto(&out.Certificate)
  1269. }
  1270. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxCAProvider.
  1271. func (in *YandexLockboxCAProvider) DeepCopy() *YandexLockboxCAProvider {
  1272. if in == nil {
  1273. return nil
  1274. }
  1275. out := new(YandexLockboxCAProvider)
  1276. in.DeepCopyInto(out)
  1277. return out
  1278. }
  1279. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1280. func (in *YandexLockboxProvider) DeepCopyInto(out *YandexLockboxProvider) {
  1281. *out = *in
  1282. in.Auth.DeepCopyInto(&out.Auth)
  1283. if in.CAProvider != nil {
  1284. in, out := &in.CAProvider, &out.CAProvider
  1285. *out = new(YandexLockboxCAProvider)
  1286. (*in).DeepCopyInto(*out)
  1287. }
  1288. }
  1289. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxProvider.
  1290. func (in *YandexLockboxProvider) DeepCopy() *YandexLockboxProvider {
  1291. if in == nil {
  1292. return nil
  1293. }
  1294. out := new(YandexLockboxProvider)
  1295. in.DeepCopyInto(out)
  1296. return out
  1297. }