zz_generated.deepcopy.go 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488
  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 *FakeProvider) DeepCopyInto(out *FakeProvider) {
  543. *out = *in
  544. if in.Data != nil {
  545. in, out := &in.Data, &out.Data
  546. *out = make([]FakeProviderData, len(*in))
  547. for i := range *in {
  548. (*in)[i].DeepCopyInto(&(*out)[i])
  549. }
  550. }
  551. }
  552. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProvider.
  553. func (in *FakeProvider) DeepCopy() *FakeProvider {
  554. if in == nil {
  555. return nil
  556. }
  557. out := new(FakeProvider)
  558. in.DeepCopyInto(out)
  559. return out
  560. }
  561. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  562. func (in *FakeProviderData) DeepCopyInto(out *FakeProviderData) {
  563. *out = *in
  564. if in.ValueMap != nil {
  565. in, out := &in.ValueMap, &out.ValueMap
  566. *out = make(map[string]string, len(*in))
  567. for key, val := range *in {
  568. (*out)[key] = val
  569. }
  570. }
  571. }
  572. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderData.
  573. func (in *FakeProviderData) DeepCopy() *FakeProviderData {
  574. if in == nil {
  575. return nil
  576. }
  577. out := new(FakeProviderData)
  578. in.DeepCopyInto(out)
  579. return out
  580. }
  581. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  582. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  583. *out = *in
  584. if in.SecretRef != nil {
  585. in, out := &in.SecretRef, &out.SecretRef
  586. *out = new(GCPSMAuthSecretRef)
  587. (*in).DeepCopyInto(*out)
  588. }
  589. if in.WorkloadIdentity != nil {
  590. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  591. *out = new(GCPWorkloadIdentity)
  592. (*in).DeepCopyInto(*out)
  593. }
  594. }
  595. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  596. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  597. if in == nil {
  598. return nil
  599. }
  600. out := new(GCPSMAuth)
  601. in.DeepCopyInto(out)
  602. return out
  603. }
  604. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  605. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  606. *out = *in
  607. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  608. }
  609. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  610. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  611. if in == nil {
  612. return nil
  613. }
  614. out := new(GCPSMAuthSecretRef)
  615. in.DeepCopyInto(out)
  616. return out
  617. }
  618. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  619. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  620. *out = *in
  621. in.Auth.DeepCopyInto(&out.Auth)
  622. }
  623. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  624. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  625. if in == nil {
  626. return nil
  627. }
  628. out := new(GCPSMProvider)
  629. in.DeepCopyInto(out)
  630. return out
  631. }
  632. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  633. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  634. *out = *in
  635. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  636. }
  637. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  638. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  639. if in == nil {
  640. return nil
  641. }
  642. out := new(GCPWorkloadIdentity)
  643. in.DeepCopyInto(out)
  644. return out
  645. }
  646. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  647. func (in *GitlabAuth) DeepCopyInto(out *GitlabAuth) {
  648. *out = *in
  649. in.SecretRef.DeepCopyInto(&out.SecretRef)
  650. }
  651. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabAuth.
  652. func (in *GitlabAuth) DeepCopy() *GitlabAuth {
  653. if in == nil {
  654. return nil
  655. }
  656. out := new(GitlabAuth)
  657. in.DeepCopyInto(out)
  658. return out
  659. }
  660. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  661. func (in *GitlabProvider) DeepCopyInto(out *GitlabProvider) {
  662. *out = *in
  663. in.Auth.DeepCopyInto(&out.Auth)
  664. }
  665. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabProvider.
  666. func (in *GitlabProvider) DeepCopy() *GitlabProvider {
  667. if in == nil {
  668. return nil
  669. }
  670. out := new(GitlabProvider)
  671. in.DeepCopyInto(out)
  672. return out
  673. }
  674. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  675. func (in *GitlabSecretRef) DeepCopyInto(out *GitlabSecretRef) {
  676. *out = *in
  677. in.AccessToken.DeepCopyInto(&out.AccessToken)
  678. }
  679. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabSecretRef.
  680. func (in *GitlabSecretRef) DeepCopy() *GitlabSecretRef {
  681. if in == nil {
  682. return nil
  683. }
  684. out := new(GitlabSecretRef)
  685. in.DeepCopyInto(out)
  686. return out
  687. }
  688. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  689. func (in *IBMAuth) DeepCopyInto(out *IBMAuth) {
  690. *out = *in
  691. in.SecretRef.DeepCopyInto(&out.SecretRef)
  692. }
  693. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  694. func (in *IBMAuth) DeepCopy() *IBMAuth {
  695. if in == nil {
  696. return nil
  697. }
  698. out := new(IBMAuth)
  699. in.DeepCopyInto(out)
  700. return out
  701. }
  702. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  703. func (in *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  704. *out = *in
  705. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  706. }
  707. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  708. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  709. if in == nil {
  710. return nil
  711. }
  712. out := new(IBMAuthSecretRef)
  713. in.DeepCopyInto(out)
  714. return out
  715. }
  716. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  717. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  718. *out = *in
  719. in.Auth.DeepCopyInto(&out.Auth)
  720. if in.ServiceURL != nil {
  721. in, out := &in.ServiceURL, &out.ServiceURL
  722. *out = new(string)
  723. **out = **in
  724. }
  725. }
  726. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  727. func (in *IBMProvider) DeepCopy() *IBMProvider {
  728. if in == nil {
  729. return nil
  730. }
  731. out := new(IBMProvider)
  732. in.DeepCopyInto(out)
  733. return out
  734. }
  735. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  736. func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
  737. *out = *in
  738. in.SecretRef.DeepCopyInto(&out.SecretRef)
  739. }
  740. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  741. func (in *OracleAuth) DeepCopy() *OracleAuth {
  742. if in == nil {
  743. return nil
  744. }
  745. out := new(OracleAuth)
  746. in.DeepCopyInto(out)
  747. return out
  748. }
  749. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  750. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  751. *out = *in
  752. if in.Auth != nil {
  753. in, out := &in.Auth, &out.Auth
  754. *out = new(OracleAuth)
  755. (*in).DeepCopyInto(*out)
  756. }
  757. }
  758. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  759. func (in *OracleProvider) DeepCopy() *OracleProvider {
  760. if in == nil {
  761. return nil
  762. }
  763. out := new(OracleProvider)
  764. in.DeepCopyInto(out)
  765. return out
  766. }
  767. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  768. func (in *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  769. *out = *in
  770. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  771. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  772. }
  773. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  774. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  775. if in == nil {
  776. return nil
  777. }
  778. out := new(OracleSecretRef)
  779. in.DeepCopyInto(out)
  780. return out
  781. }
  782. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  783. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  784. *out = *in
  785. out.TypeMeta = in.TypeMeta
  786. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  787. in.Spec.DeepCopyInto(&out.Spec)
  788. in.Status.DeepCopyInto(&out.Status)
  789. }
  790. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  791. func (in *SecretStore) DeepCopy() *SecretStore {
  792. if in == nil {
  793. return nil
  794. }
  795. out := new(SecretStore)
  796. in.DeepCopyInto(out)
  797. return out
  798. }
  799. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  800. func (in *SecretStore) DeepCopyObject() runtime.Object {
  801. if c := in.DeepCopy(); c != nil {
  802. return c
  803. }
  804. return nil
  805. }
  806. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  807. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  808. *out = *in
  809. out.TypeMeta = in.TypeMeta
  810. in.ListMeta.DeepCopyInto(&out.ListMeta)
  811. if in.Items != nil {
  812. in, out := &in.Items, &out.Items
  813. *out = make([]SecretStore, len(*in))
  814. for i := range *in {
  815. (*in)[i].DeepCopyInto(&(*out)[i])
  816. }
  817. }
  818. }
  819. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  820. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  821. if in == nil {
  822. return nil
  823. }
  824. out := new(SecretStoreList)
  825. in.DeepCopyInto(out)
  826. return out
  827. }
  828. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  829. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  830. if c := in.DeepCopy(); c != nil {
  831. return c
  832. }
  833. return nil
  834. }
  835. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  836. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  837. *out = *in
  838. if in.AWS != nil {
  839. in, out := &in.AWS, &out.AWS
  840. *out = new(AWSProvider)
  841. (*in).DeepCopyInto(*out)
  842. }
  843. if in.AzureKV != nil {
  844. in, out := &in.AzureKV, &out.AzureKV
  845. *out = new(AzureKVProvider)
  846. (*in).DeepCopyInto(*out)
  847. }
  848. if in.Akeyless != nil {
  849. in, out := &in.Akeyless, &out.Akeyless
  850. *out = new(AkeylessProvider)
  851. (*in).DeepCopyInto(*out)
  852. }
  853. if in.Vault != nil {
  854. in, out := &in.Vault, &out.Vault
  855. *out = new(VaultProvider)
  856. (*in).DeepCopyInto(*out)
  857. }
  858. if in.GCPSM != nil {
  859. in, out := &in.GCPSM, &out.GCPSM
  860. *out = new(GCPSMProvider)
  861. (*in).DeepCopyInto(*out)
  862. }
  863. if in.Oracle != nil {
  864. in, out := &in.Oracle, &out.Oracle
  865. *out = new(OracleProvider)
  866. (*in).DeepCopyInto(*out)
  867. }
  868. if in.IBM != nil {
  869. in, out := &in.IBM, &out.IBM
  870. *out = new(IBMProvider)
  871. (*in).DeepCopyInto(*out)
  872. }
  873. if in.YandexLockbox != nil {
  874. in, out := &in.YandexLockbox, &out.YandexLockbox
  875. *out = new(YandexLockboxProvider)
  876. (*in).DeepCopyInto(*out)
  877. }
  878. if in.Gitlab != nil {
  879. in, out := &in.Gitlab, &out.Gitlab
  880. *out = new(GitlabProvider)
  881. (*in).DeepCopyInto(*out)
  882. }
  883. if in.Alibaba != nil {
  884. in, out := &in.Alibaba, &out.Alibaba
  885. *out = new(AlibabaProvider)
  886. (*in).DeepCopyInto(*out)
  887. }
  888. if in.Webhook != nil {
  889. in, out := &in.Webhook, &out.Webhook
  890. *out = new(WebhookProvider)
  891. (*in).DeepCopyInto(*out)
  892. }
  893. if in.Fake != nil {
  894. in, out := &in.Fake, &out.Fake
  895. *out = new(FakeProvider)
  896. (*in).DeepCopyInto(*out)
  897. }
  898. }
  899. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  900. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  901. if in == nil {
  902. return nil
  903. }
  904. out := new(SecretStoreProvider)
  905. in.DeepCopyInto(out)
  906. return out
  907. }
  908. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  909. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  910. *out = *in
  911. }
  912. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  913. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  914. if in == nil {
  915. return nil
  916. }
  917. out := new(SecretStoreRef)
  918. in.DeepCopyInto(out)
  919. return out
  920. }
  921. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  922. func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
  923. *out = *in
  924. if in.MaxRetries != nil {
  925. in, out := &in.MaxRetries, &out.MaxRetries
  926. *out = new(int32)
  927. **out = **in
  928. }
  929. if in.RetryInterval != nil {
  930. in, out := &in.RetryInterval, &out.RetryInterval
  931. *out = new(string)
  932. **out = **in
  933. }
  934. }
  935. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
  936. func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
  937. if in == nil {
  938. return nil
  939. }
  940. out := new(SecretStoreRetrySettings)
  941. in.DeepCopyInto(out)
  942. return out
  943. }
  944. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  945. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  946. *out = *in
  947. if in.Provider != nil {
  948. in, out := &in.Provider, &out.Provider
  949. *out = new(SecretStoreProvider)
  950. (*in).DeepCopyInto(*out)
  951. }
  952. if in.RetrySettings != nil {
  953. in, out := &in.RetrySettings, &out.RetrySettings
  954. *out = new(SecretStoreRetrySettings)
  955. (*in).DeepCopyInto(*out)
  956. }
  957. }
  958. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  959. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  960. if in == nil {
  961. return nil
  962. }
  963. out := new(SecretStoreSpec)
  964. in.DeepCopyInto(out)
  965. return out
  966. }
  967. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  968. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  969. *out = *in
  970. if in.Conditions != nil {
  971. in, out := &in.Conditions, &out.Conditions
  972. *out = make([]SecretStoreStatusCondition, len(*in))
  973. for i := range *in {
  974. (*in)[i].DeepCopyInto(&(*out)[i])
  975. }
  976. }
  977. }
  978. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  979. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  980. if in == nil {
  981. return nil
  982. }
  983. out := new(SecretStoreStatus)
  984. in.DeepCopyInto(out)
  985. return out
  986. }
  987. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  988. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  989. *out = *in
  990. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  991. }
  992. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  993. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  994. if in == nil {
  995. return nil
  996. }
  997. out := new(SecretStoreStatusCondition)
  998. in.DeepCopyInto(out)
  999. return out
  1000. }
  1001. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1002. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  1003. *out = *in
  1004. if in.ConfigMap != nil {
  1005. in, out := &in.ConfigMap, &out.ConfigMap
  1006. *out = new(TemplateRef)
  1007. (*in).DeepCopyInto(*out)
  1008. }
  1009. if in.Secret != nil {
  1010. in, out := &in.Secret, &out.Secret
  1011. *out = new(TemplateRef)
  1012. (*in).DeepCopyInto(*out)
  1013. }
  1014. }
  1015. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  1016. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  1017. if in == nil {
  1018. return nil
  1019. }
  1020. out := new(TemplateFrom)
  1021. in.DeepCopyInto(out)
  1022. return out
  1023. }
  1024. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1025. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  1026. *out = *in
  1027. if in.Items != nil {
  1028. in, out := &in.Items, &out.Items
  1029. *out = make([]TemplateRefItem, len(*in))
  1030. copy(*out, *in)
  1031. }
  1032. }
  1033. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  1034. func (in *TemplateRef) DeepCopy() *TemplateRef {
  1035. if in == nil {
  1036. return nil
  1037. }
  1038. out := new(TemplateRef)
  1039. in.DeepCopyInto(out)
  1040. return out
  1041. }
  1042. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1043. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  1044. *out = *in
  1045. }
  1046. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  1047. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  1048. if in == nil {
  1049. return nil
  1050. }
  1051. out := new(TemplateRefItem)
  1052. in.DeepCopyInto(out)
  1053. return out
  1054. }
  1055. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1056. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  1057. *out = *in
  1058. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1059. }
  1060. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  1061. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  1062. if in == nil {
  1063. return nil
  1064. }
  1065. out := new(VaultAppRole)
  1066. in.DeepCopyInto(out)
  1067. return out
  1068. }
  1069. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1070. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  1071. *out = *in
  1072. if in.TokenSecretRef != nil {
  1073. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  1074. *out = new(metav1.SecretKeySelector)
  1075. (*in).DeepCopyInto(*out)
  1076. }
  1077. if in.AppRole != nil {
  1078. in, out := &in.AppRole, &out.AppRole
  1079. *out = new(VaultAppRole)
  1080. (*in).DeepCopyInto(*out)
  1081. }
  1082. if in.Kubernetes != nil {
  1083. in, out := &in.Kubernetes, &out.Kubernetes
  1084. *out = new(VaultKubernetesAuth)
  1085. (*in).DeepCopyInto(*out)
  1086. }
  1087. if in.Ldap != nil {
  1088. in, out := &in.Ldap, &out.Ldap
  1089. *out = new(VaultLdapAuth)
  1090. (*in).DeepCopyInto(*out)
  1091. }
  1092. if in.Jwt != nil {
  1093. in, out := &in.Jwt, &out.Jwt
  1094. *out = new(VaultJwtAuth)
  1095. (*in).DeepCopyInto(*out)
  1096. }
  1097. if in.Cert != nil {
  1098. in, out := &in.Cert, &out.Cert
  1099. *out = new(VaultCertAuth)
  1100. (*in).DeepCopyInto(*out)
  1101. }
  1102. }
  1103. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  1104. func (in *VaultAuth) DeepCopy() *VaultAuth {
  1105. if in == nil {
  1106. return nil
  1107. }
  1108. out := new(VaultAuth)
  1109. in.DeepCopyInto(out)
  1110. return out
  1111. }
  1112. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1113. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  1114. *out = *in
  1115. in.ClientCert.DeepCopyInto(&out.ClientCert)
  1116. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1117. }
  1118. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  1119. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  1120. if in == nil {
  1121. return nil
  1122. }
  1123. out := new(VaultCertAuth)
  1124. in.DeepCopyInto(out)
  1125. return out
  1126. }
  1127. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1128. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  1129. *out = *in
  1130. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1131. }
  1132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  1133. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  1134. if in == nil {
  1135. return nil
  1136. }
  1137. out := new(VaultJwtAuth)
  1138. in.DeepCopyInto(out)
  1139. return out
  1140. }
  1141. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1142. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  1143. *out = *in
  1144. if in.ServiceAccountRef != nil {
  1145. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  1146. *out = new(metav1.ServiceAccountSelector)
  1147. (*in).DeepCopyInto(*out)
  1148. }
  1149. if in.SecretRef != nil {
  1150. in, out := &in.SecretRef, &out.SecretRef
  1151. *out = new(metav1.SecretKeySelector)
  1152. (*in).DeepCopyInto(*out)
  1153. }
  1154. }
  1155. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  1156. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  1157. if in == nil {
  1158. return nil
  1159. }
  1160. out := new(VaultKubernetesAuth)
  1161. in.DeepCopyInto(out)
  1162. return out
  1163. }
  1164. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1165. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  1166. *out = *in
  1167. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1168. }
  1169. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  1170. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  1171. if in == nil {
  1172. return nil
  1173. }
  1174. out := new(VaultLdapAuth)
  1175. in.DeepCopyInto(out)
  1176. return out
  1177. }
  1178. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1179. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  1180. *out = *in
  1181. in.Auth.DeepCopyInto(&out.Auth)
  1182. if in.Path != nil {
  1183. in, out := &in.Path, &out.Path
  1184. *out = new(string)
  1185. **out = **in
  1186. }
  1187. if in.Namespace != nil {
  1188. in, out := &in.Namespace, &out.Namespace
  1189. *out = new(string)
  1190. **out = **in
  1191. }
  1192. if in.CABundle != nil {
  1193. in, out := &in.CABundle, &out.CABundle
  1194. *out = make([]byte, len(*in))
  1195. copy(*out, *in)
  1196. }
  1197. if in.CAProvider != nil {
  1198. in, out := &in.CAProvider, &out.CAProvider
  1199. *out = new(CAProvider)
  1200. (*in).DeepCopyInto(*out)
  1201. }
  1202. }
  1203. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  1204. func (in *VaultProvider) DeepCopy() *VaultProvider {
  1205. if in == nil {
  1206. return nil
  1207. }
  1208. out := new(VaultProvider)
  1209. in.DeepCopyInto(out)
  1210. return out
  1211. }
  1212. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1213. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  1214. *out = *in
  1215. if in.Namespace != nil {
  1216. in, out := &in.Namespace, &out.Namespace
  1217. *out = new(string)
  1218. **out = **in
  1219. }
  1220. }
  1221. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  1222. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  1223. if in == nil {
  1224. return nil
  1225. }
  1226. out := new(WebhookCAProvider)
  1227. in.DeepCopyInto(out)
  1228. return out
  1229. }
  1230. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1231. func (in *WebhookProvider) DeepCopyInto(out *WebhookProvider) {
  1232. *out = *in
  1233. if in.Headers != nil {
  1234. in, out := &in.Headers, &out.Headers
  1235. *out = make(map[string]string, len(*in))
  1236. for key, val := range *in {
  1237. (*out)[key] = val
  1238. }
  1239. }
  1240. if in.Timeout != nil {
  1241. in, out := &in.Timeout, &out.Timeout
  1242. *out = new(v1.Duration)
  1243. **out = **in
  1244. }
  1245. out.Result = in.Result
  1246. if in.Secrets != nil {
  1247. in, out := &in.Secrets, &out.Secrets
  1248. *out = make([]WebhookSecret, len(*in))
  1249. for i := range *in {
  1250. (*in)[i].DeepCopyInto(&(*out)[i])
  1251. }
  1252. }
  1253. if in.CABundle != nil {
  1254. in, out := &in.CABundle, &out.CABundle
  1255. *out = make([]byte, len(*in))
  1256. copy(*out, *in)
  1257. }
  1258. if in.CAProvider != nil {
  1259. in, out := &in.CAProvider, &out.CAProvider
  1260. *out = new(WebhookCAProvider)
  1261. (*in).DeepCopyInto(*out)
  1262. }
  1263. }
  1264. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookProvider.
  1265. func (in *WebhookProvider) DeepCopy() *WebhookProvider {
  1266. if in == nil {
  1267. return nil
  1268. }
  1269. out := new(WebhookProvider)
  1270. in.DeepCopyInto(out)
  1271. return out
  1272. }
  1273. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1274. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  1275. *out = *in
  1276. }
  1277. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  1278. func (in *WebhookResult) DeepCopy() *WebhookResult {
  1279. if in == nil {
  1280. return nil
  1281. }
  1282. out := new(WebhookResult)
  1283. in.DeepCopyInto(out)
  1284. return out
  1285. }
  1286. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1287. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  1288. *out = *in
  1289. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1290. }
  1291. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  1292. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  1293. if in == nil {
  1294. return nil
  1295. }
  1296. out := new(WebhookSecret)
  1297. in.DeepCopyInto(out)
  1298. return out
  1299. }
  1300. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1301. func (in *YandexLockboxAuth) DeepCopyInto(out *YandexLockboxAuth) {
  1302. *out = *in
  1303. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  1304. }
  1305. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxAuth.
  1306. func (in *YandexLockboxAuth) DeepCopy() *YandexLockboxAuth {
  1307. if in == nil {
  1308. return nil
  1309. }
  1310. out := new(YandexLockboxAuth)
  1311. in.DeepCopyInto(out)
  1312. return out
  1313. }
  1314. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1315. func (in *YandexLockboxCAProvider) DeepCopyInto(out *YandexLockboxCAProvider) {
  1316. *out = *in
  1317. in.Certificate.DeepCopyInto(&out.Certificate)
  1318. }
  1319. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxCAProvider.
  1320. func (in *YandexLockboxCAProvider) DeepCopy() *YandexLockboxCAProvider {
  1321. if in == nil {
  1322. return nil
  1323. }
  1324. out := new(YandexLockboxCAProvider)
  1325. in.DeepCopyInto(out)
  1326. return out
  1327. }
  1328. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1329. func (in *YandexLockboxProvider) DeepCopyInto(out *YandexLockboxProvider) {
  1330. *out = *in
  1331. in.Auth.DeepCopyInto(&out.Auth)
  1332. if in.CAProvider != nil {
  1333. in, out := &in.CAProvider, &out.CAProvider
  1334. *out = new(YandexLockboxCAProvider)
  1335. (*in).DeepCopyInto(*out)
  1336. }
  1337. }
  1338. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxProvider.
  1339. func (in *YandexLockboxProvider) DeepCopy() *YandexLockboxProvider {
  1340. if in == nil {
  1341. return nil
  1342. }
  1343. out := new(YandexLockboxProvider)
  1344. in.DeepCopyInto(out)
  1345. return out
  1346. }