zz_generated.deepcopy.go 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  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 *OracleAuth) DeepCopyInto(out *OracleAuth) {
  503. *out = *in
  504. in.SecretRef.DeepCopyInto(&out.SecretRef)
  505. }
  506. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  507. func (in *OracleAuth) DeepCopy() *OracleAuth {
  508. if in == nil {
  509. return nil
  510. }
  511. out := new(OracleAuth)
  512. in.DeepCopyInto(out)
  513. return out
  514. }
  515. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  516. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  517. *out = *in
  518. in.Auth.DeepCopyInto(&out.Auth)
  519. }
  520. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  521. func (in *OracleProvider) DeepCopy() *OracleProvider {
  522. if in == nil {
  523. return nil
  524. }
  525. out := new(OracleProvider)
  526. in.DeepCopyInto(out)
  527. return out
  528. }
  529. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  530. func (in *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  531. *out = *in
  532. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  533. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  534. }
  535. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  536. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  537. if in == nil {
  538. return nil
  539. }
  540. out := new(OracleSecretRef)
  541. in.DeepCopyInto(out)
  542. return out
  543. }
  544. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  545. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  546. *out = *in
  547. out.TypeMeta = in.TypeMeta
  548. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  549. in.Spec.DeepCopyInto(&out.Spec)
  550. in.Status.DeepCopyInto(&out.Status)
  551. }
  552. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  553. func (in *SecretStore) DeepCopy() *SecretStore {
  554. if in == nil {
  555. return nil
  556. }
  557. out := new(SecretStore)
  558. in.DeepCopyInto(out)
  559. return out
  560. }
  561. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  562. func (in *SecretStore) DeepCopyObject() runtime.Object {
  563. if c := in.DeepCopy(); c != nil {
  564. return c
  565. }
  566. return nil
  567. }
  568. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  569. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  570. *out = *in
  571. out.TypeMeta = in.TypeMeta
  572. in.ListMeta.DeepCopyInto(&out.ListMeta)
  573. if in.Items != nil {
  574. in, out := &in.Items, &out.Items
  575. *out = make([]SecretStore, len(*in))
  576. for i := range *in {
  577. (*in)[i].DeepCopyInto(&(*out)[i])
  578. }
  579. }
  580. }
  581. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  582. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  583. if in == nil {
  584. return nil
  585. }
  586. out := new(SecretStoreList)
  587. in.DeepCopyInto(out)
  588. return out
  589. }
  590. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  591. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  592. if c := in.DeepCopy(); c != nil {
  593. return c
  594. }
  595. return nil
  596. }
  597. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  598. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  599. *out = *in
  600. if in.AWS != nil {
  601. in, out := &in.AWS, &out.AWS
  602. *out = new(AWSProvider)
  603. (*in).DeepCopyInto(*out)
  604. }
  605. if in.AzureKV != nil {
  606. in, out := &in.AzureKV, &out.AzureKV
  607. *out = new(AzureKVProvider)
  608. (*in).DeepCopyInto(*out)
  609. }
  610. if in.Vault != nil {
  611. in, out := &in.Vault, &out.Vault
  612. *out = new(VaultProvider)
  613. (*in).DeepCopyInto(*out)
  614. }
  615. if in.GCPSM != nil {
  616. in, out := &in.GCPSM, &out.GCPSM
  617. *out = new(GCPSMProvider)
  618. (*in).DeepCopyInto(*out)
  619. }
  620. if in.Oracle != nil {
  621. in, out := &in.Oracle, &out.Oracle
  622. *out = new(OracleProvider)
  623. (*in).DeepCopyInto(*out)
  624. }
  625. if in.IBM != nil {
  626. in, out := &in.IBM, &out.IBM
  627. *out = new(IBMProvider)
  628. (*in).DeepCopyInto(*out)
  629. }
  630. }
  631. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  632. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  633. if in == nil {
  634. return nil
  635. }
  636. out := new(SecretStoreProvider)
  637. in.DeepCopyInto(out)
  638. return out
  639. }
  640. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  641. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  642. *out = *in
  643. }
  644. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  645. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  646. if in == nil {
  647. return nil
  648. }
  649. out := new(SecretStoreRef)
  650. in.DeepCopyInto(out)
  651. return out
  652. }
  653. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  654. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  655. *out = *in
  656. if in.Provider != nil {
  657. in, out := &in.Provider, &out.Provider
  658. *out = new(SecretStoreProvider)
  659. (*in).DeepCopyInto(*out)
  660. }
  661. }
  662. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  663. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  664. if in == nil {
  665. return nil
  666. }
  667. out := new(SecretStoreSpec)
  668. in.DeepCopyInto(out)
  669. return out
  670. }
  671. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  672. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  673. *out = *in
  674. if in.Conditions != nil {
  675. in, out := &in.Conditions, &out.Conditions
  676. *out = make([]SecretStoreStatusCondition, len(*in))
  677. for i := range *in {
  678. (*in)[i].DeepCopyInto(&(*out)[i])
  679. }
  680. }
  681. }
  682. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  683. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  684. if in == nil {
  685. return nil
  686. }
  687. out := new(SecretStoreStatus)
  688. in.DeepCopyInto(out)
  689. return out
  690. }
  691. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  692. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  693. *out = *in
  694. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  695. }
  696. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  697. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  698. if in == nil {
  699. return nil
  700. }
  701. out := new(SecretStoreStatusCondition)
  702. in.DeepCopyInto(out)
  703. return out
  704. }
  705. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  706. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  707. *out = *in
  708. if in.ConfigMap != nil {
  709. in, out := &in.ConfigMap, &out.ConfigMap
  710. *out = new(TemplateRef)
  711. (*in).DeepCopyInto(*out)
  712. }
  713. if in.Secret != nil {
  714. in, out := &in.Secret, &out.Secret
  715. *out = new(TemplateRef)
  716. (*in).DeepCopyInto(*out)
  717. }
  718. }
  719. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  720. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  721. if in == nil {
  722. return nil
  723. }
  724. out := new(TemplateFrom)
  725. in.DeepCopyInto(out)
  726. return out
  727. }
  728. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  729. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  730. *out = *in
  731. if in.Items != nil {
  732. in, out := &in.Items, &out.Items
  733. *out = make([]TemplateRefItem, len(*in))
  734. copy(*out, *in)
  735. }
  736. }
  737. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  738. func (in *TemplateRef) DeepCopy() *TemplateRef {
  739. if in == nil {
  740. return nil
  741. }
  742. out := new(TemplateRef)
  743. in.DeepCopyInto(out)
  744. return out
  745. }
  746. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  747. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  748. *out = *in
  749. }
  750. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  751. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  752. if in == nil {
  753. return nil
  754. }
  755. out := new(TemplateRefItem)
  756. in.DeepCopyInto(out)
  757. return out
  758. }
  759. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  760. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  761. *out = *in
  762. in.SecretRef.DeepCopyInto(&out.SecretRef)
  763. }
  764. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  765. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  766. if in == nil {
  767. return nil
  768. }
  769. out := new(VaultAppRole)
  770. in.DeepCopyInto(out)
  771. return out
  772. }
  773. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  774. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  775. *out = *in
  776. if in.TokenSecretRef != nil {
  777. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  778. *out = new(metav1.SecretKeySelector)
  779. (*in).DeepCopyInto(*out)
  780. }
  781. if in.AppRole != nil {
  782. in, out := &in.AppRole, &out.AppRole
  783. *out = new(VaultAppRole)
  784. (*in).DeepCopyInto(*out)
  785. }
  786. if in.Kubernetes != nil {
  787. in, out := &in.Kubernetes, &out.Kubernetes
  788. *out = new(VaultKubernetesAuth)
  789. (*in).DeepCopyInto(*out)
  790. }
  791. if in.Ldap != nil {
  792. in, out := &in.Ldap, &out.Ldap
  793. *out = new(VaultLdapAuth)
  794. (*in).DeepCopyInto(*out)
  795. }
  796. if in.Jwt != nil {
  797. in, out := &in.Jwt, &out.Jwt
  798. *out = new(VaultJwtAuth)
  799. (*in).DeepCopyInto(*out)
  800. }
  801. if in.Cert != nil {
  802. in, out := &in.Cert, &out.Cert
  803. *out = new(VaultCertAuth)
  804. (*in).DeepCopyInto(*out)
  805. }
  806. }
  807. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  808. func (in *VaultAuth) DeepCopy() *VaultAuth {
  809. if in == nil {
  810. return nil
  811. }
  812. out := new(VaultAuth)
  813. in.DeepCopyInto(out)
  814. return out
  815. }
  816. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  817. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  818. *out = *in
  819. in.ClientCert.DeepCopyInto(&out.ClientCert)
  820. in.SecretRef.DeepCopyInto(&out.SecretRef)
  821. }
  822. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  823. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  824. if in == nil {
  825. return nil
  826. }
  827. out := new(VaultCertAuth)
  828. in.DeepCopyInto(out)
  829. return out
  830. }
  831. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  832. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  833. *out = *in
  834. in.SecretRef.DeepCopyInto(&out.SecretRef)
  835. }
  836. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  837. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  838. if in == nil {
  839. return nil
  840. }
  841. out := new(VaultJwtAuth)
  842. in.DeepCopyInto(out)
  843. return out
  844. }
  845. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  846. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  847. *out = *in
  848. if in.ServiceAccountRef != nil {
  849. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  850. *out = new(metav1.ServiceAccountSelector)
  851. (*in).DeepCopyInto(*out)
  852. }
  853. if in.SecretRef != nil {
  854. in, out := &in.SecretRef, &out.SecretRef
  855. *out = new(metav1.SecretKeySelector)
  856. (*in).DeepCopyInto(*out)
  857. }
  858. }
  859. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  860. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  861. if in == nil {
  862. return nil
  863. }
  864. out := new(VaultKubernetesAuth)
  865. in.DeepCopyInto(out)
  866. return out
  867. }
  868. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  869. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  870. *out = *in
  871. in.SecretRef.DeepCopyInto(&out.SecretRef)
  872. }
  873. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  874. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  875. if in == nil {
  876. return nil
  877. }
  878. out := new(VaultLdapAuth)
  879. in.DeepCopyInto(out)
  880. return out
  881. }
  882. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  883. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  884. *out = *in
  885. in.Auth.DeepCopyInto(&out.Auth)
  886. if in.Namespace != nil {
  887. in, out := &in.Namespace, &out.Namespace
  888. *out = new(string)
  889. **out = **in
  890. }
  891. if in.CABundle != nil {
  892. in, out := &in.CABundle, &out.CABundle
  893. *out = make([]byte, len(*in))
  894. copy(*out, *in)
  895. }
  896. }
  897. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  898. func (in *VaultProvider) DeepCopy() *VaultProvider {
  899. if in == nil {
  900. return nil
  901. }
  902. out := new(VaultProvider)
  903. in.DeepCopyInto(out)
  904. return out
  905. }