zz_generated.deepcopy.go 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  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. if in.SecretRef != nil {
  24. in, out := &in.SecretRef, &out.SecretRef
  25. *out = new(AWSAuthSecretRef)
  26. (*in).DeepCopyInto(*out)
  27. }
  28. if in.JWTAuth != nil {
  29. in, out := &in.JWTAuth, &out.JWTAuth
  30. *out = new(AWSJWTAuth)
  31. (*in).DeepCopyInto(*out)
  32. }
  33. }
  34. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  35. func (in *AWSAuth) DeepCopy() *AWSAuth {
  36. if in == nil {
  37. return nil
  38. }
  39. out := new(AWSAuth)
  40. in.DeepCopyInto(out)
  41. return out
  42. }
  43. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  44. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  45. *out = *in
  46. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  47. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  48. }
  49. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  50. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  51. if in == nil {
  52. return nil
  53. }
  54. out := new(AWSAuthSecretRef)
  55. in.DeepCopyInto(out)
  56. return out
  57. }
  58. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  59. func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  60. *out = *in
  61. if in.ServiceAccountRef != nil {
  62. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  63. *out = new(metav1.ServiceAccountSelector)
  64. (*in).DeepCopyInto(*out)
  65. }
  66. }
  67. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  68. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  69. if in == nil {
  70. return nil
  71. }
  72. out := new(AWSJWTAuth)
  73. in.DeepCopyInto(out)
  74. return out
  75. }
  76. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  77. func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
  78. *out = *in
  79. in.Auth.DeepCopyInto(&out.Auth)
  80. }
  81. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  82. func (in *AWSProvider) DeepCopy() *AWSProvider {
  83. if in == nil {
  84. return nil
  85. }
  86. out := new(AWSProvider)
  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 *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  92. *out = *in
  93. if in.ClientID != nil {
  94. in, out := &in.ClientID, &out.ClientID
  95. *out = new(metav1.SecretKeySelector)
  96. (*in).DeepCopyInto(*out)
  97. }
  98. if in.ClientSecret != nil {
  99. in, out := &in.ClientSecret, &out.ClientSecret
  100. *out = new(metav1.SecretKeySelector)
  101. (*in).DeepCopyInto(*out)
  102. }
  103. }
  104. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  105. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  106. if in == nil {
  107. return nil
  108. }
  109. out := new(AzureKVAuth)
  110. in.DeepCopyInto(out)
  111. return out
  112. }
  113. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  114. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  115. *out = *in
  116. if in.VaultURL != nil {
  117. in, out := &in.VaultURL, &out.VaultURL
  118. *out = new(string)
  119. **out = **in
  120. }
  121. if in.TenantID != nil {
  122. in, out := &in.TenantID, &out.TenantID
  123. *out = new(string)
  124. **out = **in
  125. }
  126. if in.AuthSecretRef != nil {
  127. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  128. *out = new(AzureKVAuth)
  129. (*in).DeepCopyInto(*out)
  130. }
  131. }
  132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  133. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  134. if in == nil {
  135. return nil
  136. }
  137. out := new(AzureKVProvider)
  138. in.DeepCopyInto(out)
  139. return out
  140. }
  141. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  142. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  143. *out = *in
  144. out.TypeMeta = in.TypeMeta
  145. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  146. in.Spec.DeepCopyInto(&out.Spec)
  147. in.Status.DeepCopyInto(&out.Status)
  148. }
  149. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  150. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  151. if in == nil {
  152. return nil
  153. }
  154. out := new(ClusterSecretStore)
  155. in.DeepCopyInto(out)
  156. return out
  157. }
  158. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  159. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  160. if c := in.DeepCopy(); c != nil {
  161. return c
  162. }
  163. return nil
  164. }
  165. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  166. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  167. *out = *in
  168. out.TypeMeta = in.TypeMeta
  169. in.ListMeta.DeepCopyInto(&out.ListMeta)
  170. if in.Items != nil {
  171. in, out := &in.Items, &out.Items
  172. *out = make([]ClusterSecretStore, len(*in))
  173. for i := range *in {
  174. (*in)[i].DeepCopyInto(&(*out)[i])
  175. }
  176. }
  177. }
  178. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  179. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  180. if in == nil {
  181. return nil
  182. }
  183. out := new(ClusterSecretStoreList)
  184. in.DeepCopyInto(out)
  185. return out
  186. }
  187. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  188. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  189. if c := in.DeepCopy(); c != nil {
  190. return c
  191. }
  192. return nil
  193. }
  194. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  195. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  196. *out = *in
  197. out.TypeMeta = in.TypeMeta
  198. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  199. in.Spec.DeepCopyInto(&out.Spec)
  200. in.Status.DeepCopyInto(&out.Status)
  201. }
  202. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  203. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  204. if in == nil {
  205. return nil
  206. }
  207. out := new(ExternalSecret)
  208. in.DeepCopyInto(out)
  209. return out
  210. }
  211. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  212. func (in *ExternalSecret) DeepCopyObject() runtime.Object {
  213. if c := in.DeepCopy(); c != nil {
  214. return c
  215. }
  216. return nil
  217. }
  218. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  219. func (in *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  220. *out = *in
  221. out.RemoteRef = in.RemoteRef
  222. }
  223. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  224. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  225. if in == nil {
  226. return nil
  227. }
  228. out := new(ExternalSecretData)
  229. in.DeepCopyInto(out)
  230. return out
  231. }
  232. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  233. func (in *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  234. *out = *in
  235. }
  236. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  237. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  238. if in == nil {
  239. return nil
  240. }
  241. out := new(ExternalSecretDataRemoteRef)
  242. in.DeepCopyInto(out)
  243. return out
  244. }
  245. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  246. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  247. *out = *in
  248. out.TypeMeta = in.TypeMeta
  249. in.ListMeta.DeepCopyInto(&out.ListMeta)
  250. if in.Items != nil {
  251. in, out := &in.Items, &out.Items
  252. *out = make([]ExternalSecret, len(*in))
  253. for i := range *in {
  254. (*in)[i].DeepCopyInto(&(*out)[i])
  255. }
  256. }
  257. }
  258. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  259. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  260. if in == nil {
  261. return nil
  262. }
  263. out := new(ExternalSecretList)
  264. in.DeepCopyInto(out)
  265. return out
  266. }
  267. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  268. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  269. if c := in.DeepCopy(); c != nil {
  270. return c
  271. }
  272. return nil
  273. }
  274. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  275. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  276. *out = *in
  277. out.SecretStoreRef = in.SecretStoreRef
  278. in.Target.DeepCopyInto(&out.Target)
  279. if in.RefreshInterval != nil {
  280. in, out := &in.RefreshInterval, &out.RefreshInterval
  281. *out = new(v1.Duration)
  282. **out = **in
  283. }
  284. if in.Data != nil {
  285. in, out := &in.Data, &out.Data
  286. *out = make([]ExternalSecretData, len(*in))
  287. copy(*out, *in)
  288. }
  289. if in.DataFrom != nil {
  290. in, out := &in.DataFrom, &out.DataFrom
  291. *out = make([]ExternalSecretDataRemoteRef, len(*in))
  292. copy(*out, *in)
  293. }
  294. }
  295. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  296. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  297. if in == nil {
  298. return nil
  299. }
  300. out := new(ExternalSecretSpec)
  301. in.DeepCopyInto(out)
  302. return out
  303. }
  304. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  305. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  306. *out = *in
  307. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  308. if in.Conditions != nil {
  309. in, out := &in.Conditions, &out.Conditions
  310. *out = make([]ExternalSecretStatusCondition, len(*in))
  311. for i := range *in {
  312. (*in)[i].DeepCopyInto(&(*out)[i])
  313. }
  314. }
  315. }
  316. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  317. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  318. if in == nil {
  319. return nil
  320. }
  321. out := new(ExternalSecretStatus)
  322. in.DeepCopyInto(out)
  323. return out
  324. }
  325. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  326. func (in *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  327. *out = *in
  328. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  329. }
  330. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  331. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  332. if in == nil {
  333. return nil
  334. }
  335. out := new(ExternalSecretStatusCondition)
  336. in.DeepCopyInto(out)
  337. return out
  338. }
  339. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  340. func (in *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  341. *out = *in
  342. if in.Template != nil {
  343. in, out := &in.Template, &out.Template
  344. *out = new(ExternalSecretTemplate)
  345. (*in).DeepCopyInto(*out)
  346. }
  347. }
  348. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  349. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  350. if in == nil {
  351. return nil
  352. }
  353. out := new(ExternalSecretTarget)
  354. in.DeepCopyInto(out)
  355. return out
  356. }
  357. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  358. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  359. *out = *in
  360. in.Metadata.DeepCopyInto(&out.Metadata)
  361. if in.Data != nil {
  362. in, out := &in.Data, &out.Data
  363. *out = make(map[string]string, len(*in))
  364. for key, val := range *in {
  365. (*out)[key] = val
  366. }
  367. }
  368. if in.TemplateFrom != nil {
  369. in, out := &in.TemplateFrom, &out.TemplateFrom
  370. *out = make([]TemplateFrom, len(*in))
  371. for i := range *in {
  372. (*in)[i].DeepCopyInto(&(*out)[i])
  373. }
  374. }
  375. }
  376. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  377. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  378. if in == nil {
  379. return nil
  380. }
  381. out := new(ExternalSecretTemplate)
  382. in.DeepCopyInto(out)
  383. return out
  384. }
  385. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  386. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  387. *out = *in
  388. if in.Annotations != nil {
  389. in, out := &in.Annotations, &out.Annotations
  390. *out = make(map[string]string, len(*in))
  391. for key, val := range *in {
  392. (*out)[key] = val
  393. }
  394. }
  395. if in.Labels != nil {
  396. in, out := &in.Labels, &out.Labels
  397. *out = make(map[string]string, len(*in))
  398. for key, val := range *in {
  399. (*out)[key] = val
  400. }
  401. }
  402. }
  403. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  404. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  405. if in == nil {
  406. return nil
  407. }
  408. out := new(ExternalSecretTemplateMetadata)
  409. in.DeepCopyInto(out)
  410. return out
  411. }
  412. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  413. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  414. *out = *in
  415. in.SecretRef.DeepCopyInto(&out.SecretRef)
  416. }
  417. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  418. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  419. if in == nil {
  420. return nil
  421. }
  422. out := new(GCPSMAuth)
  423. in.DeepCopyInto(out)
  424. return out
  425. }
  426. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  427. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  428. *out = *in
  429. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  430. }
  431. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  432. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  433. if in == nil {
  434. return nil
  435. }
  436. out := new(GCPSMAuthSecretRef)
  437. in.DeepCopyInto(out)
  438. return out
  439. }
  440. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  441. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  442. *out = *in
  443. in.Auth.DeepCopyInto(&out.Auth)
  444. }
  445. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  446. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  447. if in == nil {
  448. return nil
  449. }
  450. out := new(GCPSMProvider)
  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 *IBMAuth) DeepCopyInto(out *IBMAuth) {
  456. *out = *in
  457. in.SecretRef.DeepCopyInto(&out.SecretRef)
  458. }
  459. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  460. func (in *IBMAuth) DeepCopy() *IBMAuth {
  461. if in == nil {
  462. return nil
  463. }
  464. out := new(IBMAuth)
  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 *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  470. *out = *in
  471. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  472. }
  473. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  474. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  475. if in == nil {
  476. return nil
  477. }
  478. out := new(IBMAuthSecretRef)
  479. in.DeepCopyInto(out)
  480. return out
  481. }
  482. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  483. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  484. *out = *in
  485. in.Auth.DeepCopyInto(&out.Auth)
  486. if in.ServiceURL != nil {
  487. in, out := &in.ServiceURL, &out.ServiceURL
  488. *out = new(string)
  489. **out = **in
  490. }
  491. }
  492. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  493. func (in *IBMProvider) DeepCopy() *IBMProvider {
  494. if in == nil {
  495. return nil
  496. }
  497. out := new(IBMProvider)
  498. in.DeepCopyInto(out)
  499. return out
  500. }
  501. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  502. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  503. *out = *in
  504. out.TypeMeta = in.TypeMeta
  505. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  506. in.Spec.DeepCopyInto(&out.Spec)
  507. in.Status.DeepCopyInto(&out.Status)
  508. }
  509. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  510. func (in *SecretStore) DeepCopy() *SecretStore {
  511. if in == nil {
  512. return nil
  513. }
  514. out := new(SecretStore)
  515. in.DeepCopyInto(out)
  516. return out
  517. }
  518. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  519. func (in *SecretStore) DeepCopyObject() runtime.Object {
  520. if c := in.DeepCopy(); c != nil {
  521. return c
  522. }
  523. return nil
  524. }
  525. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  526. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  527. *out = *in
  528. out.TypeMeta = in.TypeMeta
  529. in.ListMeta.DeepCopyInto(&out.ListMeta)
  530. if in.Items != nil {
  531. in, out := &in.Items, &out.Items
  532. *out = make([]SecretStore, len(*in))
  533. for i := range *in {
  534. (*in)[i].DeepCopyInto(&(*out)[i])
  535. }
  536. }
  537. }
  538. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  539. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  540. if in == nil {
  541. return nil
  542. }
  543. out := new(SecretStoreList)
  544. in.DeepCopyInto(out)
  545. return out
  546. }
  547. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  548. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  549. if c := in.DeepCopy(); c != nil {
  550. return c
  551. }
  552. return nil
  553. }
  554. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  555. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  556. *out = *in
  557. if in.AWS != nil {
  558. in, out := &in.AWS, &out.AWS
  559. *out = new(AWSProvider)
  560. (*in).DeepCopyInto(*out)
  561. }
  562. if in.AzureKV != nil {
  563. in, out := &in.AzureKV, &out.AzureKV
  564. *out = new(AzureKVProvider)
  565. (*in).DeepCopyInto(*out)
  566. }
  567. if in.Vault != nil {
  568. in, out := &in.Vault, &out.Vault
  569. *out = new(VaultProvider)
  570. (*in).DeepCopyInto(*out)
  571. }
  572. if in.GCPSM != nil {
  573. in, out := &in.GCPSM, &out.GCPSM
  574. *out = new(GCPSMProvider)
  575. (*in).DeepCopyInto(*out)
  576. }
  577. if in.IBM != nil {
  578. in, out := &in.IBM, &out.IBM
  579. *out = new(IBMProvider)
  580. (*in).DeepCopyInto(*out)
  581. }
  582. }
  583. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  584. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  585. if in == nil {
  586. return nil
  587. }
  588. out := new(SecretStoreProvider)
  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 *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  594. *out = *in
  595. }
  596. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  597. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  598. if in == nil {
  599. return nil
  600. }
  601. out := new(SecretStoreRef)
  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 *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  607. *out = *in
  608. if in.Provider != nil {
  609. in, out := &in.Provider, &out.Provider
  610. *out = new(SecretStoreProvider)
  611. (*in).DeepCopyInto(*out)
  612. }
  613. }
  614. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  615. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  616. if in == nil {
  617. return nil
  618. }
  619. out := new(SecretStoreSpec)
  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 *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  625. *out = *in
  626. if in.Conditions != nil {
  627. in, out := &in.Conditions, &out.Conditions
  628. *out = make([]SecretStoreStatusCondition, len(*in))
  629. for i := range *in {
  630. (*in)[i].DeepCopyInto(&(*out)[i])
  631. }
  632. }
  633. }
  634. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  635. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  636. if in == nil {
  637. return nil
  638. }
  639. out := new(SecretStoreStatus)
  640. in.DeepCopyInto(out)
  641. return out
  642. }
  643. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  644. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  645. *out = *in
  646. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  647. }
  648. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  649. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  650. if in == nil {
  651. return nil
  652. }
  653. out := new(SecretStoreStatusCondition)
  654. in.DeepCopyInto(out)
  655. return out
  656. }
  657. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  658. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  659. *out = *in
  660. if in.ConfigMap != nil {
  661. in, out := &in.ConfigMap, &out.ConfigMap
  662. *out = new(TemplateRef)
  663. (*in).DeepCopyInto(*out)
  664. }
  665. if in.Secret != nil {
  666. in, out := &in.Secret, &out.Secret
  667. *out = new(TemplateRef)
  668. (*in).DeepCopyInto(*out)
  669. }
  670. }
  671. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  672. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  673. if in == nil {
  674. return nil
  675. }
  676. out := new(TemplateFrom)
  677. in.DeepCopyInto(out)
  678. return out
  679. }
  680. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  681. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  682. *out = *in
  683. if in.Items != nil {
  684. in, out := &in.Items, &out.Items
  685. *out = make([]TemplateRefItem, len(*in))
  686. copy(*out, *in)
  687. }
  688. }
  689. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  690. func (in *TemplateRef) DeepCopy() *TemplateRef {
  691. if in == nil {
  692. return nil
  693. }
  694. out := new(TemplateRef)
  695. in.DeepCopyInto(out)
  696. return out
  697. }
  698. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  699. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  700. *out = *in
  701. }
  702. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  703. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  704. if in == nil {
  705. return nil
  706. }
  707. out := new(TemplateRefItem)
  708. in.DeepCopyInto(out)
  709. return out
  710. }
  711. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  712. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  713. *out = *in
  714. in.SecretRef.DeepCopyInto(&out.SecretRef)
  715. }
  716. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  717. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  718. if in == nil {
  719. return nil
  720. }
  721. out := new(VaultAppRole)
  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 *VaultAuth) DeepCopyInto(out *VaultAuth) {
  727. *out = *in
  728. if in.TokenSecretRef != nil {
  729. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  730. *out = new(metav1.SecretKeySelector)
  731. (*in).DeepCopyInto(*out)
  732. }
  733. if in.AppRole != nil {
  734. in, out := &in.AppRole, &out.AppRole
  735. *out = new(VaultAppRole)
  736. (*in).DeepCopyInto(*out)
  737. }
  738. if in.Kubernetes != nil {
  739. in, out := &in.Kubernetes, &out.Kubernetes
  740. *out = new(VaultKubernetesAuth)
  741. (*in).DeepCopyInto(*out)
  742. }
  743. if in.Ldap != nil {
  744. in, out := &in.Ldap, &out.Ldap
  745. *out = new(VaultLdapAuth)
  746. (*in).DeepCopyInto(*out)
  747. }
  748. if in.Jwt != nil {
  749. in, out := &in.Jwt, &out.Jwt
  750. *out = new(VaultJwtAuth)
  751. (*in).DeepCopyInto(*out)
  752. }
  753. }
  754. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  755. func (in *VaultAuth) DeepCopy() *VaultAuth {
  756. if in == nil {
  757. return nil
  758. }
  759. out := new(VaultAuth)
  760. in.DeepCopyInto(out)
  761. return out
  762. }
  763. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  764. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  765. *out = *in
  766. in.SecretRef.DeepCopyInto(&out.SecretRef)
  767. }
  768. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  769. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  770. if in == nil {
  771. return nil
  772. }
  773. out := new(VaultJwtAuth)
  774. in.DeepCopyInto(out)
  775. return out
  776. }
  777. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  778. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  779. *out = *in
  780. if in.ServiceAccountRef != nil {
  781. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  782. *out = new(metav1.ServiceAccountSelector)
  783. (*in).DeepCopyInto(*out)
  784. }
  785. if in.SecretRef != nil {
  786. in, out := &in.SecretRef, &out.SecretRef
  787. *out = new(metav1.SecretKeySelector)
  788. (*in).DeepCopyInto(*out)
  789. }
  790. }
  791. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  792. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  793. if in == nil {
  794. return nil
  795. }
  796. out := new(VaultKubernetesAuth)
  797. in.DeepCopyInto(out)
  798. return out
  799. }
  800. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  801. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  802. *out = *in
  803. in.SecretRef.DeepCopyInto(&out.SecretRef)
  804. }
  805. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  806. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  807. if in == nil {
  808. return nil
  809. }
  810. out := new(VaultLdapAuth)
  811. in.DeepCopyInto(out)
  812. return out
  813. }
  814. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  815. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  816. *out = *in
  817. in.Auth.DeepCopyInto(&out.Auth)
  818. if in.Namespace != nil {
  819. in, out := &in.Namespace, &out.Namespace
  820. *out = new(string)
  821. **out = **in
  822. }
  823. if in.CABundle != nil {
  824. in, out := &in.CABundle, &out.CABundle
  825. *out = make([]byte, len(*in))
  826. copy(*out, *in)
  827. }
  828. }
  829. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  830. func (in *VaultProvider) DeepCopy() *VaultProvider {
  831. if in == nil {
  832. return nil
  833. }
  834. out := new(VaultProvider)
  835. in.DeepCopyInto(out)
  836. return out
  837. }