zz_generated.deepcopy.go 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. //go: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 v1beta1
  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. if in.SessionToken != nil {
  49. in, out := &in.SessionToken, &out.SessionToken
  50. *out = new(metav1.SecretKeySelector)
  51. (*in).DeepCopyInto(*out)
  52. }
  53. }
  54. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  55. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  56. if in == nil {
  57. return nil
  58. }
  59. out := new(AWSAuthSecretRef)
  60. in.DeepCopyInto(out)
  61. return out
  62. }
  63. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  64. func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  65. *out = *in
  66. if in.ServiceAccountRef != nil {
  67. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  68. *out = new(metav1.ServiceAccountSelector)
  69. (*in).DeepCopyInto(*out)
  70. }
  71. }
  72. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  73. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  74. if in == nil {
  75. return nil
  76. }
  77. out := new(AWSJWTAuth)
  78. in.DeepCopyInto(out)
  79. return out
  80. }
  81. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  82. func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
  83. *out = *in
  84. in.Auth.DeepCopyInto(&out.Auth)
  85. if in.AdditionalRoles != nil {
  86. in, out := &in.AdditionalRoles, &out.AdditionalRoles
  87. *out = make([]string, len(*in))
  88. copy(*out, *in)
  89. }
  90. if in.SessionTags != nil {
  91. in, out := &in.SessionTags, &out.SessionTags
  92. *out = make([]*Tag, len(*in))
  93. for i := range *in {
  94. if (*in)[i] != nil {
  95. in, out := &(*in)[i], &(*out)[i]
  96. *out = new(Tag)
  97. **out = **in
  98. }
  99. }
  100. }
  101. if in.TransitiveTagKeys != nil {
  102. in, out := &in.TransitiveTagKeys, &out.TransitiveTagKeys
  103. *out = make([]*string, len(*in))
  104. for i := range *in {
  105. if (*in)[i] != nil {
  106. in, out := &(*in)[i], &(*out)[i]
  107. *out = new(string)
  108. **out = **in
  109. }
  110. }
  111. }
  112. }
  113. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  114. func (in *AWSProvider) DeepCopy() *AWSProvider {
  115. if in == nil {
  116. return nil
  117. }
  118. out := new(AWSProvider)
  119. in.DeepCopyInto(out)
  120. return out
  121. }
  122. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  123. func (in *AkeylessAuth) DeepCopyInto(out *AkeylessAuth) {
  124. *out = *in
  125. in.SecretRef.DeepCopyInto(&out.SecretRef)
  126. if in.KubernetesAuth != nil {
  127. in, out := &in.KubernetesAuth, &out.KubernetesAuth
  128. *out = new(AkeylessKubernetesAuth)
  129. (*in).DeepCopyInto(*out)
  130. }
  131. }
  132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuth.
  133. func (in *AkeylessAuth) DeepCopy() *AkeylessAuth {
  134. if in == nil {
  135. return nil
  136. }
  137. out := new(AkeylessAuth)
  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 *AkeylessAuthSecretRef) DeepCopyInto(out *AkeylessAuthSecretRef) {
  143. *out = *in
  144. in.AccessID.DeepCopyInto(&out.AccessID)
  145. in.AccessType.DeepCopyInto(&out.AccessType)
  146. in.AccessTypeParam.DeepCopyInto(&out.AccessTypeParam)
  147. }
  148. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuthSecretRef.
  149. func (in *AkeylessAuthSecretRef) DeepCopy() *AkeylessAuthSecretRef {
  150. if in == nil {
  151. return nil
  152. }
  153. out := new(AkeylessAuthSecretRef)
  154. in.DeepCopyInto(out)
  155. return out
  156. }
  157. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  158. func (in *AkeylessKubernetesAuth) DeepCopyInto(out *AkeylessKubernetesAuth) {
  159. *out = *in
  160. if in.ServiceAccountRef != nil {
  161. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  162. *out = new(metav1.ServiceAccountSelector)
  163. (*in).DeepCopyInto(*out)
  164. }
  165. if in.SecretRef != nil {
  166. in, out := &in.SecretRef, &out.SecretRef
  167. *out = new(metav1.SecretKeySelector)
  168. (*in).DeepCopyInto(*out)
  169. }
  170. }
  171. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessKubernetesAuth.
  172. func (in *AkeylessKubernetesAuth) DeepCopy() *AkeylessKubernetesAuth {
  173. if in == nil {
  174. return nil
  175. }
  176. out := new(AkeylessKubernetesAuth)
  177. in.DeepCopyInto(out)
  178. return out
  179. }
  180. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  181. func (in *AkeylessProvider) DeepCopyInto(out *AkeylessProvider) {
  182. *out = *in
  183. if in.AkeylessGWApiURL != nil {
  184. in, out := &in.AkeylessGWApiURL, &out.AkeylessGWApiURL
  185. *out = new(string)
  186. **out = **in
  187. }
  188. if in.Auth != nil {
  189. in, out := &in.Auth, &out.Auth
  190. *out = new(AkeylessAuth)
  191. (*in).DeepCopyInto(*out)
  192. }
  193. if in.CABundle != nil {
  194. in, out := &in.CABundle, &out.CABundle
  195. *out = make([]byte, len(*in))
  196. copy(*out, *in)
  197. }
  198. if in.CAProvider != nil {
  199. in, out := &in.CAProvider, &out.CAProvider
  200. *out = new(CAProvider)
  201. (*in).DeepCopyInto(*out)
  202. }
  203. }
  204. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessProvider.
  205. func (in *AkeylessProvider) DeepCopy() *AkeylessProvider {
  206. if in == nil {
  207. return nil
  208. }
  209. out := new(AkeylessProvider)
  210. in.DeepCopyInto(out)
  211. return out
  212. }
  213. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  214. func (in *AlibabaAuth) DeepCopyInto(out *AlibabaAuth) {
  215. *out = *in
  216. if in.SecretRef != nil {
  217. in, out := &in.SecretRef, &out.SecretRef
  218. *out = new(AlibabaAuthSecretRef)
  219. (*in).DeepCopyInto(*out)
  220. }
  221. if in.RRSAAuth != nil {
  222. in, out := &in.RRSAAuth, &out.RRSAAuth
  223. *out = new(AlibabaRRSAAuth)
  224. **out = **in
  225. }
  226. }
  227. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuth.
  228. func (in *AlibabaAuth) DeepCopy() *AlibabaAuth {
  229. if in == nil {
  230. return nil
  231. }
  232. out := new(AlibabaAuth)
  233. in.DeepCopyInto(out)
  234. return out
  235. }
  236. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  237. func (in *AlibabaAuthSecretRef) DeepCopyInto(out *AlibabaAuthSecretRef) {
  238. *out = *in
  239. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  240. in.AccessKeySecret.DeepCopyInto(&out.AccessKeySecret)
  241. }
  242. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuthSecretRef.
  243. func (in *AlibabaAuthSecretRef) DeepCopy() *AlibabaAuthSecretRef {
  244. if in == nil {
  245. return nil
  246. }
  247. out := new(AlibabaAuthSecretRef)
  248. in.DeepCopyInto(out)
  249. return out
  250. }
  251. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  252. func (in *AlibabaProvider) DeepCopyInto(out *AlibabaProvider) {
  253. *out = *in
  254. in.Auth.DeepCopyInto(&out.Auth)
  255. }
  256. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaProvider.
  257. func (in *AlibabaProvider) DeepCopy() *AlibabaProvider {
  258. if in == nil {
  259. return nil
  260. }
  261. out := new(AlibabaProvider)
  262. in.DeepCopyInto(out)
  263. return out
  264. }
  265. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  266. func (in *AlibabaRRSAAuth) DeepCopyInto(out *AlibabaRRSAAuth) {
  267. *out = *in
  268. }
  269. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaRRSAAuth.
  270. func (in *AlibabaRRSAAuth) DeepCopy() *AlibabaRRSAAuth {
  271. if in == nil {
  272. return nil
  273. }
  274. out := new(AlibabaRRSAAuth)
  275. in.DeepCopyInto(out)
  276. return out
  277. }
  278. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  279. func (in *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  280. *out = *in
  281. if in.ClientID != nil {
  282. in, out := &in.ClientID, &out.ClientID
  283. *out = new(metav1.SecretKeySelector)
  284. (*in).DeepCopyInto(*out)
  285. }
  286. if in.ClientSecret != nil {
  287. in, out := &in.ClientSecret, &out.ClientSecret
  288. *out = new(metav1.SecretKeySelector)
  289. (*in).DeepCopyInto(*out)
  290. }
  291. }
  292. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  293. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  294. if in == nil {
  295. return nil
  296. }
  297. out := new(AzureKVAuth)
  298. in.DeepCopyInto(out)
  299. return out
  300. }
  301. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  302. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  303. *out = *in
  304. if in.AuthType != nil {
  305. in, out := &in.AuthType, &out.AuthType
  306. *out = new(AzureAuthType)
  307. **out = **in
  308. }
  309. if in.VaultURL != nil {
  310. in, out := &in.VaultURL, &out.VaultURL
  311. *out = new(string)
  312. **out = **in
  313. }
  314. if in.TenantID != nil {
  315. in, out := &in.TenantID, &out.TenantID
  316. *out = new(string)
  317. **out = **in
  318. }
  319. if in.AuthSecretRef != nil {
  320. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  321. *out = new(AzureKVAuth)
  322. (*in).DeepCopyInto(*out)
  323. }
  324. if in.ServiceAccountRef != nil {
  325. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  326. *out = new(metav1.ServiceAccountSelector)
  327. (*in).DeepCopyInto(*out)
  328. }
  329. if in.IdentityID != nil {
  330. in, out := &in.IdentityID, &out.IdentityID
  331. *out = new(string)
  332. **out = **in
  333. }
  334. }
  335. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  336. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  337. if in == nil {
  338. return nil
  339. }
  340. out := new(AzureKVProvider)
  341. in.DeepCopyInto(out)
  342. return out
  343. }
  344. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  345. func (in *CAProvider) DeepCopyInto(out *CAProvider) {
  346. *out = *in
  347. if in.Namespace != nil {
  348. in, out := &in.Namespace, &out.Namespace
  349. *out = new(string)
  350. **out = **in
  351. }
  352. }
  353. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CAProvider.
  354. func (in *CAProvider) DeepCopy() *CAProvider {
  355. if in == nil {
  356. return nil
  357. }
  358. out := new(CAProvider)
  359. in.DeepCopyInto(out)
  360. return out
  361. }
  362. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  363. func (in *CertAuth) DeepCopyInto(out *CertAuth) {
  364. *out = *in
  365. in.ClientCert.DeepCopyInto(&out.ClientCert)
  366. in.ClientKey.DeepCopyInto(&out.ClientKey)
  367. }
  368. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertAuth.
  369. func (in *CertAuth) DeepCopy() *CertAuth {
  370. if in == nil {
  371. return nil
  372. }
  373. out := new(CertAuth)
  374. in.DeepCopyInto(out)
  375. return out
  376. }
  377. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  378. func (in *ClusterExternalSecret) DeepCopyInto(out *ClusterExternalSecret) {
  379. *out = *in
  380. out.TypeMeta = in.TypeMeta
  381. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  382. in.Spec.DeepCopyInto(&out.Spec)
  383. in.Status.DeepCopyInto(&out.Status)
  384. }
  385. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecret.
  386. func (in *ClusterExternalSecret) DeepCopy() *ClusterExternalSecret {
  387. if in == nil {
  388. return nil
  389. }
  390. out := new(ClusterExternalSecret)
  391. in.DeepCopyInto(out)
  392. return out
  393. }
  394. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  395. func (in *ClusterExternalSecret) DeepCopyObject() runtime.Object {
  396. if c := in.DeepCopy(); c != nil {
  397. return c
  398. }
  399. return nil
  400. }
  401. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  402. func (in *ClusterExternalSecretList) DeepCopyInto(out *ClusterExternalSecretList) {
  403. *out = *in
  404. out.TypeMeta = in.TypeMeta
  405. in.ListMeta.DeepCopyInto(&out.ListMeta)
  406. if in.Items != nil {
  407. in, out := &in.Items, &out.Items
  408. *out = make([]ClusterExternalSecret, len(*in))
  409. for i := range *in {
  410. (*in)[i].DeepCopyInto(&(*out)[i])
  411. }
  412. }
  413. }
  414. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretList.
  415. func (in *ClusterExternalSecretList) DeepCopy() *ClusterExternalSecretList {
  416. if in == nil {
  417. return nil
  418. }
  419. out := new(ClusterExternalSecretList)
  420. in.DeepCopyInto(out)
  421. return out
  422. }
  423. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  424. func (in *ClusterExternalSecretList) DeepCopyObject() runtime.Object {
  425. if c := in.DeepCopy(); c != nil {
  426. return c
  427. }
  428. return nil
  429. }
  430. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  431. func (in *ClusterExternalSecretNamespaceFailure) DeepCopyInto(out *ClusterExternalSecretNamespaceFailure) {
  432. *out = *in
  433. }
  434. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretNamespaceFailure.
  435. func (in *ClusterExternalSecretNamespaceFailure) DeepCopy() *ClusterExternalSecretNamespaceFailure {
  436. if in == nil {
  437. return nil
  438. }
  439. out := new(ClusterExternalSecretNamespaceFailure)
  440. in.DeepCopyInto(out)
  441. return out
  442. }
  443. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  444. func (in *ClusterExternalSecretSpec) DeepCopyInto(out *ClusterExternalSecretSpec) {
  445. *out = *in
  446. in.ExternalSecretSpec.DeepCopyInto(&out.ExternalSecretSpec)
  447. in.ExternalSecretMetadata.DeepCopyInto(&out.ExternalSecretMetadata)
  448. in.NamespaceSelector.DeepCopyInto(&out.NamespaceSelector)
  449. if in.RefreshInterval != nil {
  450. in, out := &in.RefreshInterval, &out.RefreshInterval
  451. *out = new(v1.Duration)
  452. **out = **in
  453. }
  454. }
  455. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretSpec.
  456. func (in *ClusterExternalSecretSpec) DeepCopy() *ClusterExternalSecretSpec {
  457. if in == nil {
  458. return nil
  459. }
  460. out := new(ClusterExternalSecretSpec)
  461. in.DeepCopyInto(out)
  462. return out
  463. }
  464. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  465. func (in *ClusterExternalSecretStatus) DeepCopyInto(out *ClusterExternalSecretStatus) {
  466. *out = *in
  467. if in.FailedNamespaces != nil {
  468. in, out := &in.FailedNamespaces, &out.FailedNamespaces
  469. *out = make([]ClusterExternalSecretNamespaceFailure, len(*in))
  470. copy(*out, *in)
  471. }
  472. if in.ProvisionedNamespaces != nil {
  473. in, out := &in.ProvisionedNamespaces, &out.ProvisionedNamespaces
  474. *out = make([]string, len(*in))
  475. copy(*out, *in)
  476. }
  477. if in.Conditions != nil {
  478. in, out := &in.Conditions, &out.Conditions
  479. *out = make([]ClusterExternalSecretStatusCondition, len(*in))
  480. copy(*out, *in)
  481. }
  482. }
  483. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatus.
  484. func (in *ClusterExternalSecretStatus) DeepCopy() *ClusterExternalSecretStatus {
  485. if in == nil {
  486. return nil
  487. }
  488. out := new(ClusterExternalSecretStatus)
  489. in.DeepCopyInto(out)
  490. return out
  491. }
  492. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  493. func (in *ClusterExternalSecretStatusCondition) DeepCopyInto(out *ClusterExternalSecretStatusCondition) {
  494. *out = *in
  495. }
  496. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatusCondition.
  497. func (in *ClusterExternalSecretStatusCondition) DeepCopy() *ClusterExternalSecretStatusCondition {
  498. if in == nil {
  499. return nil
  500. }
  501. out := new(ClusterExternalSecretStatusCondition)
  502. in.DeepCopyInto(out)
  503. return out
  504. }
  505. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  506. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  507. *out = *in
  508. out.TypeMeta = in.TypeMeta
  509. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  510. in.Spec.DeepCopyInto(&out.Spec)
  511. in.Status.DeepCopyInto(&out.Status)
  512. }
  513. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  514. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  515. if in == nil {
  516. return nil
  517. }
  518. out := new(ClusterSecretStore)
  519. in.DeepCopyInto(out)
  520. return out
  521. }
  522. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  523. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  524. if c := in.DeepCopy(); c != nil {
  525. return c
  526. }
  527. return nil
  528. }
  529. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  530. func (in *ClusterSecretStoreCondition) DeepCopyInto(out *ClusterSecretStoreCondition) {
  531. *out = *in
  532. if in.NamespaceSelector != nil {
  533. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  534. *out = new(v1.LabelSelector)
  535. (*in).DeepCopyInto(*out)
  536. }
  537. if in.Namespaces != nil {
  538. in, out := &in.Namespaces, &out.Namespaces
  539. *out = make([]string, len(*in))
  540. copy(*out, *in)
  541. }
  542. }
  543. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreCondition.
  544. func (in *ClusterSecretStoreCondition) DeepCopy() *ClusterSecretStoreCondition {
  545. if in == nil {
  546. return nil
  547. }
  548. out := new(ClusterSecretStoreCondition)
  549. in.DeepCopyInto(out)
  550. return out
  551. }
  552. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  553. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  554. *out = *in
  555. out.TypeMeta = in.TypeMeta
  556. in.ListMeta.DeepCopyInto(&out.ListMeta)
  557. if in.Items != nil {
  558. in, out := &in.Items, &out.Items
  559. *out = make([]ClusterSecretStore, len(*in))
  560. for i := range *in {
  561. (*in)[i].DeepCopyInto(&(*out)[i])
  562. }
  563. }
  564. }
  565. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  566. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  567. if in == nil {
  568. return nil
  569. }
  570. out := new(ClusterSecretStoreList)
  571. in.DeepCopyInto(out)
  572. return out
  573. }
  574. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  575. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  576. if c := in.DeepCopy(); c != nil {
  577. return c
  578. }
  579. return nil
  580. }
  581. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  582. func (in *ConjurApikey) DeepCopyInto(out *ConjurApikey) {
  583. *out = *in
  584. if in.UserRef != nil {
  585. in, out := &in.UserRef, &out.UserRef
  586. *out = new(metav1.SecretKeySelector)
  587. (*in).DeepCopyInto(*out)
  588. }
  589. if in.APIKeyRef != nil {
  590. in, out := &in.APIKeyRef, &out.APIKeyRef
  591. *out = new(metav1.SecretKeySelector)
  592. (*in).DeepCopyInto(*out)
  593. }
  594. }
  595. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurApikey.
  596. func (in *ConjurApikey) DeepCopy() *ConjurApikey {
  597. if in == nil {
  598. return nil
  599. }
  600. out := new(ConjurApikey)
  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 *ConjurAuth) DeepCopyInto(out *ConjurAuth) {
  606. *out = *in
  607. if in.Apikey != nil {
  608. in, out := &in.Apikey, &out.Apikey
  609. *out = new(ConjurApikey)
  610. (*in).DeepCopyInto(*out)
  611. }
  612. }
  613. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurAuth.
  614. func (in *ConjurAuth) DeepCopy() *ConjurAuth {
  615. if in == nil {
  616. return nil
  617. }
  618. out := new(ConjurAuth)
  619. in.DeepCopyInto(out)
  620. return out
  621. }
  622. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  623. func (in *ConjurProvider) DeepCopyInto(out *ConjurProvider) {
  624. *out = *in
  625. in.Auth.DeepCopyInto(&out.Auth)
  626. }
  627. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurProvider.
  628. func (in *ConjurProvider) DeepCopy() *ConjurProvider {
  629. if in == nil {
  630. return nil
  631. }
  632. out := new(ConjurProvider)
  633. in.DeepCopyInto(out)
  634. return out
  635. }
  636. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  637. func (in *DelineaProvider) DeepCopyInto(out *DelineaProvider) {
  638. *out = *in
  639. if in.ClientID != nil {
  640. in, out := &in.ClientID, &out.ClientID
  641. *out = new(DelineaProviderSecretRef)
  642. (*in).DeepCopyInto(*out)
  643. }
  644. if in.ClientSecret != nil {
  645. in, out := &in.ClientSecret, &out.ClientSecret
  646. *out = new(DelineaProviderSecretRef)
  647. (*in).DeepCopyInto(*out)
  648. }
  649. }
  650. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProvider.
  651. func (in *DelineaProvider) DeepCopy() *DelineaProvider {
  652. if in == nil {
  653. return nil
  654. }
  655. out := new(DelineaProvider)
  656. in.DeepCopyInto(out)
  657. return out
  658. }
  659. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  660. func (in *DelineaProviderSecretRef) DeepCopyInto(out *DelineaProviderSecretRef) {
  661. *out = *in
  662. if in.SecretRef != nil {
  663. in, out := &in.SecretRef, &out.SecretRef
  664. *out = new(metav1.SecretKeySelector)
  665. (*in).DeepCopyInto(*out)
  666. }
  667. }
  668. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProviderSecretRef.
  669. func (in *DelineaProviderSecretRef) DeepCopy() *DelineaProviderSecretRef {
  670. if in == nil {
  671. return nil
  672. }
  673. out := new(DelineaProviderSecretRef)
  674. in.DeepCopyInto(out)
  675. return out
  676. }
  677. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  678. func (in *DopplerAuth) DeepCopyInto(out *DopplerAuth) {
  679. *out = *in
  680. in.SecretRef.DeepCopyInto(&out.SecretRef)
  681. }
  682. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuth.
  683. func (in *DopplerAuth) DeepCopy() *DopplerAuth {
  684. if in == nil {
  685. return nil
  686. }
  687. out := new(DopplerAuth)
  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 *DopplerAuthSecretRef) DeepCopyInto(out *DopplerAuthSecretRef) {
  693. *out = *in
  694. in.DopplerToken.DeepCopyInto(&out.DopplerToken)
  695. }
  696. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuthSecretRef.
  697. func (in *DopplerAuthSecretRef) DeepCopy() *DopplerAuthSecretRef {
  698. if in == nil {
  699. return nil
  700. }
  701. out := new(DopplerAuthSecretRef)
  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 *DopplerProvider) DeepCopyInto(out *DopplerProvider) {
  707. *out = *in
  708. if in.Auth != nil {
  709. in, out := &in.Auth, &out.Auth
  710. *out = new(DopplerAuth)
  711. (*in).DeepCopyInto(*out)
  712. }
  713. }
  714. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerProvider.
  715. func (in *DopplerProvider) DeepCopy() *DopplerProvider {
  716. if in == nil {
  717. return nil
  718. }
  719. out := new(DopplerProvider)
  720. in.DeepCopyInto(out)
  721. return out
  722. }
  723. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  724. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  725. *out = *in
  726. out.TypeMeta = in.TypeMeta
  727. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  728. in.Spec.DeepCopyInto(&out.Spec)
  729. in.Status.DeepCopyInto(&out.Status)
  730. }
  731. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  732. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  733. if in == nil {
  734. return nil
  735. }
  736. out := new(ExternalSecret)
  737. in.DeepCopyInto(out)
  738. return out
  739. }
  740. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  741. func (in *ExternalSecret) DeepCopyObject() runtime.Object {
  742. if c := in.DeepCopy(); c != nil {
  743. return c
  744. }
  745. return nil
  746. }
  747. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  748. func (in *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  749. *out = *in
  750. out.RemoteRef = in.RemoteRef
  751. if in.SourceRef != nil {
  752. in, out := &in.SourceRef, &out.SourceRef
  753. *out = new(SourceRef)
  754. (*in).DeepCopyInto(*out)
  755. }
  756. }
  757. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  758. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  759. if in == nil {
  760. return nil
  761. }
  762. out := new(ExternalSecretData)
  763. in.DeepCopyInto(out)
  764. return out
  765. }
  766. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  767. func (in *ExternalSecretDataFromRemoteRef) DeepCopyInto(out *ExternalSecretDataFromRemoteRef) {
  768. *out = *in
  769. if in.Extract != nil {
  770. in, out := &in.Extract, &out.Extract
  771. *out = new(ExternalSecretDataRemoteRef)
  772. **out = **in
  773. }
  774. if in.Find != nil {
  775. in, out := &in.Find, &out.Find
  776. *out = new(ExternalSecretFind)
  777. (*in).DeepCopyInto(*out)
  778. }
  779. if in.Rewrite != nil {
  780. in, out := &in.Rewrite, &out.Rewrite
  781. *out = make([]ExternalSecretRewrite, len(*in))
  782. for i := range *in {
  783. (*in)[i].DeepCopyInto(&(*out)[i])
  784. }
  785. }
  786. if in.SourceRef != nil {
  787. in, out := &in.SourceRef, &out.SourceRef
  788. *out = new(SourceRef)
  789. (*in).DeepCopyInto(*out)
  790. }
  791. }
  792. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataFromRemoteRef.
  793. func (in *ExternalSecretDataFromRemoteRef) DeepCopy() *ExternalSecretDataFromRemoteRef {
  794. if in == nil {
  795. return nil
  796. }
  797. out := new(ExternalSecretDataFromRemoteRef)
  798. in.DeepCopyInto(out)
  799. return out
  800. }
  801. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  802. func (in *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  803. *out = *in
  804. }
  805. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  806. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  807. if in == nil {
  808. return nil
  809. }
  810. out := new(ExternalSecretDataRemoteRef)
  811. in.DeepCopyInto(out)
  812. return out
  813. }
  814. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  815. func (in *ExternalSecretFind) DeepCopyInto(out *ExternalSecretFind) {
  816. *out = *in
  817. if in.Path != nil {
  818. in, out := &in.Path, &out.Path
  819. *out = new(string)
  820. **out = **in
  821. }
  822. if in.Name != nil {
  823. in, out := &in.Name, &out.Name
  824. *out = new(FindName)
  825. **out = **in
  826. }
  827. if in.Tags != nil {
  828. in, out := &in.Tags, &out.Tags
  829. *out = make(map[string]string, len(*in))
  830. for key, val := range *in {
  831. (*out)[key] = val
  832. }
  833. }
  834. }
  835. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretFind.
  836. func (in *ExternalSecretFind) DeepCopy() *ExternalSecretFind {
  837. if in == nil {
  838. return nil
  839. }
  840. out := new(ExternalSecretFind)
  841. in.DeepCopyInto(out)
  842. return out
  843. }
  844. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  845. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  846. *out = *in
  847. out.TypeMeta = in.TypeMeta
  848. in.ListMeta.DeepCopyInto(&out.ListMeta)
  849. if in.Items != nil {
  850. in, out := &in.Items, &out.Items
  851. *out = make([]ExternalSecret, len(*in))
  852. for i := range *in {
  853. (*in)[i].DeepCopyInto(&(*out)[i])
  854. }
  855. }
  856. }
  857. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  858. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  859. if in == nil {
  860. return nil
  861. }
  862. out := new(ExternalSecretList)
  863. in.DeepCopyInto(out)
  864. return out
  865. }
  866. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  867. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  868. if c := in.DeepCopy(); c != nil {
  869. return c
  870. }
  871. return nil
  872. }
  873. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  874. func (in *ExternalSecretMetadata) DeepCopyInto(out *ExternalSecretMetadata) {
  875. *out = *in
  876. if in.Annotations != nil {
  877. in, out := &in.Annotations, &out.Annotations
  878. *out = make(map[string]string, len(*in))
  879. for key, val := range *in {
  880. (*out)[key] = val
  881. }
  882. }
  883. if in.Labels != nil {
  884. in, out := &in.Labels, &out.Labels
  885. *out = make(map[string]string, len(*in))
  886. for key, val := range *in {
  887. (*out)[key] = val
  888. }
  889. }
  890. }
  891. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretMetadata.
  892. func (in *ExternalSecretMetadata) DeepCopy() *ExternalSecretMetadata {
  893. if in == nil {
  894. return nil
  895. }
  896. out := new(ExternalSecretMetadata)
  897. in.DeepCopyInto(out)
  898. return out
  899. }
  900. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  901. func (in *ExternalSecretRewrite) DeepCopyInto(out *ExternalSecretRewrite) {
  902. *out = *in
  903. if in.Regexp != nil {
  904. in, out := &in.Regexp, &out.Regexp
  905. *out = new(ExternalSecretRewriteRegexp)
  906. **out = **in
  907. }
  908. }
  909. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewrite.
  910. func (in *ExternalSecretRewrite) DeepCopy() *ExternalSecretRewrite {
  911. if in == nil {
  912. return nil
  913. }
  914. out := new(ExternalSecretRewrite)
  915. in.DeepCopyInto(out)
  916. return out
  917. }
  918. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  919. func (in *ExternalSecretRewriteRegexp) DeepCopyInto(out *ExternalSecretRewriteRegexp) {
  920. *out = *in
  921. }
  922. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteRegexp.
  923. func (in *ExternalSecretRewriteRegexp) DeepCopy() *ExternalSecretRewriteRegexp {
  924. if in == nil {
  925. return nil
  926. }
  927. out := new(ExternalSecretRewriteRegexp)
  928. in.DeepCopyInto(out)
  929. return out
  930. }
  931. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  932. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  933. *out = *in
  934. out.SecretStoreRef = in.SecretStoreRef
  935. in.Target.DeepCopyInto(&out.Target)
  936. if in.RefreshInterval != nil {
  937. in, out := &in.RefreshInterval, &out.RefreshInterval
  938. *out = new(v1.Duration)
  939. **out = **in
  940. }
  941. if in.Data != nil {
  942. in, out := &in.Data, &out.Data
  943. *out = make([]ExternalSecretData, len(*in))
  944. for i := range *in {
  945. (*in)[i].DeepCopyInto(&(*out)[i])
  946. }
  947. }
  948. if in.DataFrom != nil {
  949. in, out := &in.DataFrom, &out.DataFrom
  950. *out = make([]ExternalSecretDataFromRemoteRef, len(*in))
  951. for i := range *in {
  952. (*in)[i].DeepCopyInto(&(*out)[i])
  953. }
  954. }
  955. }
  956. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  957. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  958. if in == nil {
  959. return nil
  960. }
  961. out := new(ExternalSecretSpec)
  962. in.DeepCopyInto(out)
  963. return out
  964. }
  965. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  966. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  967. *out = *in
  968. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  969. if in.Conditions != nil {
  970. in, out := &in.Conditions, &out.Conditions
  971. *out = make([]ExternalSecretStatusCondition, len(*in))
  972. for i := range *in {
  973. (*in)[i].DeepCopyInto(&(*out)[i])
  974. }
  975. }
  976. out.Binding = in.Binding
  977. }
  978. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  979. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  980. if in == nil {
  981. return nil
  982. }
  983. out := new(ExternalSecretStatus)
  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 *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  989. *out = *in
  990. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  991. }
  992. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  993. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  994. if in == nil {
  995. return nil
  996. }
  997. out := new(ExternalSecretStatusCondition)
  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 *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  1003. *out = *in
  1004. if in.Template != nil {
  1005. in, out := &in.Template, &out.Template
  1006. *out = new(ExternalSecretTemplate)
  1007. (*in).DeepCopyInto(*out)
  1008. }
  1009. }
  1010. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  1011. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  1012. if in == nil {
  1013. return nil
  1014. }
  1015. out := new(ExternalSecretTarget)
  1016. in.DeepCopyInto(out)
  1017. return out
  1018. }
  1019. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1020. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  1021. *out = *in
  1022. in.Metadata.DeepCopyInto(&out.Metadata)
  1023. if in.Data != nil {
  1024. in, out := &in.Data, &out.Data
  1025. *out = make(map[string]string, len(*in))
  1026. for key, val := range *in {
  1027. (*out)[key] = val
  1028. }
  1029. }
  1030. if in.TemplateFrom != nil {
  1031. in, out := &in.TemplateFrom, &out.TemplateFrom
  1032. *out = make([]TemplateFrom, len(*in))
  1033. for i := range *in {
  1034. (*in)[i].DeepCopyInto(&(*out)[i])
  1035. }
  1036. }
  1037. }
  1038. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  1039. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  1040. if in == nil {
  1041. return nil
  1042. }
  1043. out := new(ExternalSecretTemplate)
  1044. in.DeepCopyInto(out)
  1045. return out
  1046. }
  1047. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1048. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  1049. *out = *in
  1050. if in.Annotations != nil {
  1051. in, out := &in.Annotations, &out.Annotations
  1052. *out = make(map[string]string, len(*in))
  1053. for key, val := range *in {
  1054. (*out)[key] = val
  1055. }
  1056. }
  1057. if in.Labels != nil {
  1058. in, out := &in.Labels, &out.Labels
  1059. *out = make(map[string]string, len(*in))
  1060. for key, val := range *in {
  1061. (*out)[key] = val
  1062. }
  1063. }
  1064. }
  1065. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  1066. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  1067. if in == nil {
  1068. return nil
  1069. }
  1070. out := new(ExternalSecretTemplateMetadata)
  1071. in.DeepCopyInto(out)
  1072. return out
  1073. }
  1074. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1075. func (in *ExternalSecretValidator) DeepCopyInto(out *ExternalSecretValidator) {
  1076. *out = *in
  1077. }
  1078. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretValidator.
  1079. func (in *ExternalSecretValidator) DeepCopy() *ExternalSecretValidator {
  1080. if in == nil {
  1081. return nil
  1082. }
  1083. out := new(ExternalSecretValidator)
  1084. in.DeepCopyInto(out)
  1085. return out
  1086. }
  1087. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1088. func (in *FakeProvider) DeepCopyInto(out *FakeProvider) {
  1089. *out = *in
  1090. if in.Data != nil {
  1091. in, out := &in.Data, &out.Data
  1092. *out = make([]FakeProviderData, len(*in))
  1093. for i := range *in {
  1094. (*in)[i].DeepCopyInto(&(*out)[i])
  1095. }
  1096. }
  1097. }
  1098. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProvider.
  1099. func (in *FakeProvider) DeepCopy() *FakeProvider {
  1100. if in == nil {
  1101. return nil
  1102. }
  1103. out := new(FakeProvider)
  1104. in.DeepCopyInto(out)
  1105. return out
  1106. }
  1107. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1108. func (in *FakeProviderData) DeepCopyInto(out *FakeProviderData) {
  1109. *out = *in
  1110. if in.ValueMap != nil {
  1111. in, out := &in.ValueMap, &out.ValueMap
  1112. *out = make(map[string]string, len(*in))
  1113. for key, val := range *in {
  1114. (*out)[key] = val
  1115. }
  1116. }
  1117. }
  1118. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderData.
  1119. func (in *FakeProviderData) DeepCopy() *FakeProviderData {
  1120. if in == nil {
  1121. return nil
  1122. }
  1123. out := new(FakeProviderData)
  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 *FindName) DeepCopyInto(out *FindName) {
  1129. *out = *in
  1130. }
  1131. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FindName.
  1132. func (in *FindName) DeepCopy() *FindName {
  1133. if in == nil {
  1134. return nil
  1135. }
  1136. out := new(FindName)
  1137. in.DeepCopyInto(out)
  1138. return out
  1139. }
  1140. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1141. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  1142. *out = *in
  1143. if in.SecretRef != nil {
  1144. in, out := &in.SecretRef, &out.SecretRef
  1145. *out = new(GCPSMAuthSecretRef)
  1146. (*in).DeepCopyInto(*out)
  1147. }
  1148. if in.WorkloadIdentity != nil {
  1149. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  1150. *out = new(GCPWorkloadIdentity)
  1151. (*in).DeepCopyInto(*out)
  1152. }
  1153. }
  1154. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  1155. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  1156. if in == nil {
  1157. return nil
  1158. }
  1159. out := new(GCPSMAuth)
  1160. in.DeepCopyInto(out)
  1161. return out
  1162. }
  1163. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1164. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  1165. *out = *in
  1166. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  1167. }
  1168. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  1169. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  1170. if in == nil {
  1171. return nil
  1172. }
  1173. out := new(GCPSMAuthSecretRef)
  1174. in.DeepCopyInto(out)
  1175. return out
  1176. }
  1177. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1178. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  1179. *out = *in
  1180. in.Auth.DeepCopyInto(&out.Auth)
  1181. }
  1182. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  1183. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  1184. if in == nil {
  1185. return nil
  1186. }
  1187. out := new(GCPSMProvider)
  1188. in.DeepCopyInto(out)
  1189. return out
  1190. }
  1191. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1192. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  1193. *out = *in
  1194. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  1195. }
  1196. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  1197. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  1198. if in == nil {
  1199. return nil
  1200. }
  1201. out := new(GCPWorkloadIdentity)
  1202. in.DeepCopyInto(out)
  1203. return out
  1204. }
  1205. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1206. func (in *GeneratorRef) DeepCopyInto(out *GeneratorRef) {
  1207. *out = *in
  1208. }
  1209. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorRef.
  1210. func (in *GeneratorRef) DeepCopy() *GeneratorRef {
  1211. if in == nil {
  1212. return nil
  1213. }
  1214. out := new(GeneratorRef)
  1215. in.DeepCopyInto(out)
  1216. return out
  1217. }
  1218. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1219. func (in *GenericStoreValidator) DeepCopyInto(out *GenericStoreValidator) {
  1220. *out = *in
  1221. }
  1222. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericStoreValidator.
  1223. func (in *GenericStoreValidator) DeepCopy() *GenericStoreValidator {
  1224. if in == nil {
  1225. return nil
  1226. }
  1227. out := new(GenericStoreValidator)
  1228. in.DeepCopyInto(out)
  1229. return out
  1230. }
  1231. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1232. func (in *GitlabAuth) DeepCopyInto(out *GitlabAuth) {
  1233. *out = *in
  1234. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1235. }
  1236. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabAuth.
  1237. func (in *GitlabAuth) DeepCopy() *GitlabAuth {
  1238. if in == nil {
  1239. return nil
  1240. }
  1241. out := new(GitlabAuth)
  1242. in.DeepCopyInto(out)
  1243. return out
  1244. }
  1245. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1246. func (in *GitlabProvider) DeepCopyInto(out *GitlabProvider) {
  1247. *out = *in
  1248. in.Auth.DeepCopyInto(&out.Auth)
  1249. if in.GroupIDs != nil {
  1250. in, out := &in.GroupIDs, &out.GroupIDs
  1251. *out = make([]string, len(*in))
  1252. copy(*out, *in)
  1253. }
  1254. }
  1255. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabProvider.
  1256. func (in *GitlabProvider) DeepCopy() *GitlabProvider {
  1257. if in == nil {
  1258. return nil
  1259. }
  1260. out := new(GitlabProvider)
  1261. in.DeepCopyInto(out)
  1262. return out
  1263. }
  1264. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1265. func (in *GitlabSecretRef) DeepCopyInto(out *GitlabSecretRef) {
  1266. *out = *in
  1267. in.AccessToken.DeepCopyInto(&out.AccessToken)
  1268. }
  1269. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabSecretRef.
  1270. func (in *GitlabSecretRef) DeepCopy() *GitlabSecretRef {
  1271. if in == nil {
  1272. return nil
  1273. }
  1274. out := new(GitlabSecretRef)
  1275. in.DeepCopyInto(out)
  1276. return out
  1277. }
  1278. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1279. func (in *IBMAuth) DeepCopyInto(out *IBMAuth) {
  1280. *out = *in
  1281. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1282. out.ContainerAuth = in.ContainerAuth
  1283. }
  1284. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  1285. func (in *IBMAuth) DeepCopy() *IBMAuth {
  1286. if in == nil {
  1287. return nil
  1288. }
  1289. out := new(IBMAuth)
  1290. in.DeepCopyInto(out)
  1291. return out
  1292. }
  1293. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1294. func (in *IBMAuthContainerAuth) DeepCopyInto(out *IBMAuthContainerAuth) {
  1295. *out = *in
  1296. }
  1297. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthContainerAuth.
  1298. func (in *IBMAuthContainerAuth) DeepCopy() *IBMAuthContainerAuth {
  1299. if in == nil {
  1300. return nil
  1301. }
  1302. out := new(IBMAuthContainerAuth)
  1303. in.DeepCopyInto(out)
  1304. return out
  1305. }
  1306. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1307. func (in *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  1308. *out = *in
  1309. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  1310. }
  1311. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  1312. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  1313. if in == nil {
  1314. return nil
  1315. }
  1316. out := new(IBMAuthSecretRef)
  1317. in.DeepCopyInto(out)
  1318. return out
  1319. }
  1320. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1321. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  1322. *out = *in
  1323. in.Auth.DeepCopyInto(&out.Auth)
  1324. if in.ServiceURL != nil {
  1325. in, out := &in.ServiceURL, &out.ServiceURL
  1326. *out = new(string)
  1327. **out = **in
  1328. }
  1329. }
  1330. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  1331. func (in *IBMProvider) DeepCopy() *IBMProvider {
  1332. if in == nil {
  1333. return nil
  1334. }
  1335. out := new(IBMProvider)
  1336. in.DeepCopyInto(out)
  1337. return out
  1338. }
  1339. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1340. func (in *KeeperSecurityProvider) DeepCopyInto(out *KeeperSecurityProvider) {
  1341. *out = *in
  1342. in.Auth.DeepCopyInto(&out.Auth)
  1343. }
  1344. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeeperSecurityProvider.
  1345. func (in *KeeperSecurityProvider) DeepCopy() *KeeperSecurityProvider {
  1346. if in == nil {
  1347. return nil
  1348. }
  1349. out := new(KeeperSecurityProvider)
  1350. in.DeepCopyInto(out)
  1351. return out
  1352. }
  1353. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1354. func (in *KubernetesAuth) DeepCopyInto(out *KubernetesAuth) {
  1355. *out = *in
  1356. if in.Cert != nil {
  1357. in, out := &in.Cert, &out.Cert
  1358. *out = new(CertAuth)
  1359. (*in).DeepCopyInto(*out)
  1360. }
  1361. if in.Token != nil {
  1362. in, out := &in.Token, &out.Token
  1363. *out = new(TokenAuth)
  1364. (*in).DeepCopyInto(*out)
  1365. }
  1366. if in.ServiceAccount != nil {
  1367. in, out := &in.ServiceAccount, &out.ServiceAccount
  1368. *out = new(metav1.ServiceAccountSelector)
  1369. (*in).DeepCopyInto(*out)
  1370. }
  1371. }
  1372. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuth.
  1373. func (in *KubernetesAuth) DeepCopy() *KubernetesAuth {
  1374. if in == nil {
  1375. return nil
  1376. }
  1377. out := new(KubernetesAuth)
  1378. in.DeepCopyInto(out)
  1379. return out
  1380. }
  1381. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1382. func (in *KubernetesProvider) DeepCopyInto(out *KubernetesProvider) {
  1383. *out = *in
  1384. in.Server.DeepCopyInto(&out.Server)
  1385. in.Auth.DeepCopyInto(&out.Auth)
  1386. }
  1387. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesProvider.
  1388. func (in *KubernetesProvider) DeepCopy() *KubernetesProvider {
  1389. if in == nil {
  1390. return nil
  1391. }
  1392. out := new(KubernetesProvider)
  1393. in.DeepCopyInto(out)
  1394. return out
  1395. }
  1396. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1397. func (in *KubernetesServer) DeepCopyInto(out *KubernetesServer) {
  1398. *out = *in
  1399. if in.CABundle != nil {
  1400. in, out := &in.CABundle, &out.CABundle
  1401. *out = make([]byte, len(*in))
  1402. copy(*out, *in)
  1403. }
  1404. if in.CAProvider != nil {
  1405. in, out := &in.CAProvider, &out.CAProvider
  1406. *out = new(CAProvider)
  1407. (*in).DeepCopyInto(*out)
  1408. }
  1409. }
  1410. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesServer.
  1411. func (in *KubernetesServer) DeepCopy() *KubernetesServer {
  1412. if in == nil {
  1413. return nil
  1414. }
  1415. out := new(KubernetesServer)
  1416. in.DeepCopyInto(out)
  1417. return out
  1418. }
  1419. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1420. func (in *NoSecretError) DeepCopyInto(out *NoSecretError) {
  1421. *out = *in
  1422. }
  1423. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoSecretError.
  1424. func (in *NoSecretError) DeepCopy() *NoSecretError {
  1425. if in == nil {
  1426. return nil
  1427. }
  1428. out := new(NoSecretError)
  1429. in.DeepCopyInto(out)
  1430. return out
  1431. }
  1432. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1433. func (in *OnePasswordAuth) DeepCopyInto(out *OnePasswordAuth) {
  1434. *out = *in
  1435. if in.SecretRef != nil {
  1436. in, out := &in.SecretRef, &out.SecretRef
  1437. *out = new(OnePasswordAuthSecretRef)
  1438. (*in).DeepCopyInto(*out)
  1439. }
  1440. }
  1441. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuth.
  1442. func (in *OnePasswordAuth) DeepCopy() *OnePasswordAuth {
  1443. if in == nil {
  1444. return nil
  1445. }
  1446. out := new(OnePasswordAuth)
  1447. in.DeepCopyInto(out)
  1448. return out
  1449. }
  1450. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1451. func (in *OnePasswordAuthSecretRef) DeepCopyInto(out *OnePasswordAuthSecretRef) {
  1452. *out = *in
  1453. in.ConnectToken.DeepCopyInto(&out.ConnectToken)
  1454. }
  1455. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuthSecretRef.
  1456. func (in *OnePasswordAuthSecretRef) DeepCopy() *OnePasswordAuthSecretRef {
  1457. if in == nil {
  1458. return nil
  1459. }
  1460. out := new(OnePasswordAuthSecretRef)
  1461. in.DeepCopyInto(out)
  1462. return out
  1463. }
  1464. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1465. func (in *OnePasswordProvider) DeepCopyInto(out *OnePasswordProvider) {
  1466. *out = *in
  1467. if in.Auth != nil {
  1468. in, out := &in.Auth, &out.Auth
  1469. *out = new(OnePasswordAuth)
  1470. (*in).DeepCopyInto(*out)
  1471. }
  1472. if in.Vaults != nil {
  1473. in, out := &in.Vaults, &out.Vaults
  1474. *out = make(map[string]int, len(*in))
  1475. for key, val := range *in {
  1476. (*out)[key] = val
  1477. }
  1478. }
  1479. }
  1480. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordProvider.
  1481. func (in *OnePasswordProvider) DeepCopy() *OnePasswordProvider {
  1482. if in == nil {
  1483. return nil
  1484. }
  1485. out := new(OnePasswordProvider)
  1486. in.DeepCopyInto(out)
  1487. return out
  1488. }
  1489. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1490. func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
  1491. *out = *in
  1492. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1493. }
  1494. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  1495. func (in *OracleAuth) DeepCopy() *OracleAuth {
  1496. if in == nil {
  1497. return nil
  1498. }
  1499. out := new(OracleAuth)
  1500. in.DeepCopyInto(out)
  1501. return out
  1502. }
  1503. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1504. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  1505. *out = *in
  1506. if in.Auth != nil {
  1507. in, out := &in.Auth, &out.Auth
  1508. *out = new(OracleAuth)
  1509. (*in).DeepCopyInto(*out)
  1510. }
  1511. }
  1512. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  1513. func (in *OracleProvider) DeepCopy() *OracleProvider {
  1514. if in == nil {
  1515. return nil
  1516. }
  1517. out := new(OracleProvider)
  1518. in.DeepCopyInto(out)
  1519. return out
  1520. }
  1521. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1522. func (in *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  1523. *out = *in
  1524. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  1525. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  1526. }
  1527. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  1528. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  1529. if in == nil {
  1530. return nil
  1531. }
  1532. out := new(OracleSecretRef)
  1533. in.DeepCopyInto(out)
  1534. return out
  1535. }
  1536. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1537. func (in *ScalewayProvider) DeepCopyInto(out *ScalewayProvider) {
  1538. *out = *in
  1539. if in.AccessKey != nil {
  1540. in, out := &in.AccessKey, &out.AccessKey
  1541. *out = new(ScalewayProviderSecretRef)
  1542. (*in).DeepCopyInto(*out)
  1543. }
  1544. if in.SecretKey != nil {
  1545. in, out := &in.SecretKey, &out.SecretKey
  1546. *out = new(ScalewayProviderSecretRef)
  1547. (*in).DeepCopyInto(*out)
  1548. }
  1549. }
  1550. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProvider.
  1551. func (in *ScalewayProvider) DeepCopy() *ScalewayProvider {
  1552. if in == nil {
  1553. return nil
  1554. }
  1555. out := new(ScalewayProvider)
  1556. in.DeepCopyInto(out)
  1557. return out
  1558. }
  1559. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1560. func (in *ScalewayProviderSecretRef) DeepCopyInto(out *ScalewayProviderSecretRef) {
  1561. *out = *in
  1562. if in.SecretRef != nil {
  1563. in, out := &in.SecretRef, &out.SecretRef
  1564. *out = new(metav1.SecretKeySelector)
  1565. (*in).DeepCopyInto(*out)
  1566. }
  1567. }
  1568. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProviderSecretRef.
  1569. func (in *ScalewayProviderSecretRef) DeepCopy() *ScalewayProviderSecretRef {
  1570. if in == nil {
  1571. return nil
  1572. }
  1573. out := new(ScalewayProviderSecretRef)
  1574. in.DeepCopyInto(out)
  1575. return out
  1576. }
  1577. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1578. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  1579. *out = *in
  1580. out.TypeMeta = in.TypeMeta
  1581. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1582. in.Spec.DeepCopyInto(&out.Spec)
  1583. in.Status.DeepCopyInto(&out.Status)
  1584. }
  1585. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  1586. func (in *SecretStore) DeepCopy() *SecretStore {
  1587. if in == nil {
  1588. return nil
  1589. }
  1590. out := new(SecretStore)
  1591. in.DeepCopyInto(out)
  1592. return out
  1593. }
  1594. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1595. func (in *SecretStore) DeepCopyObject() runtime.Object {
  1596. if c := in.DeepCopy(); c != nil {
  1597. return c
  1598. }
  1599. return nil
  1600. }
  1601. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1602. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  1603. *out = *in
  1604. out.TypeMeta = in.TypeMeta
  1605. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1606. if in.Items != nil {
  1607. in, out := &in.Items, &out.Items
  1608. *out = make([]SecretStore, len(*in))
  1609. for i := range *in {
  1610. (*in)[i].DeepCopyInto(&(*out)[i])
  1611. }
  1612. }
  1613. }
  1614. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  1615. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  1616. if in == nil {
  1617. return nil
  1618. }
  1619. out := new(SecretStoreList)
  1620. in.DeepCopyInto(out)
  1621. return out
  1622. }
  1623. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1624. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  1625. if c := in.DeepCopy(); c != nil {
  1626. return c
  1627. }
  1628. return nil
  1629. }
  1630. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1631. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  1632. *out = *in
  1633. if in.AWS != nil {
  1634. in, out := &in.AWS, &out.AWS
  1635. *out = new(AWSProvider)
  1636. (*in).DeepCopyInto(*out)
  1637. }
  1638. if in.AzureKV != nil {
  1639. in, out := &in.AzureKV, &out.AzureKV
  1640. *out = new(AzureKVProvider)
  1641. (*in).DeepCopyInto(*out)
  1642. }
  1643. if in.Akeyless != nil {
  1644. in, out := &in.Akeyless, &out.Akeyless
  1645. *out = new(AkeylessProvider)
  1646. (*in).DeepCopyInto(*out)
  1647. }
  1648. if in.Vault != nil {
  1649. in, out := &in.Vault, &out.Vault
  1650. *out = new(VaultProvider)
  1651. (*in).DeepCopyInto(*out)
  1652. }
  1653. if in.GCPSM != nil {
  1654. in, out := &in.GCPSM, &out.GCPSM
  1655. *out = new(GCPSMProvider)
  1656. (*in).DeepCopyInto(*out)
  1657. }
  1658. if in.Oracle != nil {
  1659. in, out := &in.Oracle, &out.Oracle
  1660. *out = new(OracleProvider)
  1661. (*in).DeepCopyInto(*out)
  1662. }
  1663. if in.IBM != nil {
  1664. in, out := &in.IBM, &out.IBM
  1665. *out = new(IBMProvider)
  1666. (*in).DeepCopyInto(*out)
  1667. }
  1668. if in.YandexCertificateManager != nil {
  1669. in, out := &in.YandexCertificateManager, &out.YandexCertificateManager
  1670. *out = new(YandexCertificateManagerProvider)
  1671. (*in).DeepCopyInto(*out)
  1672. }
  1673. if in.YandexLockbox != nil {
  1674. in, out := &in.YandexLockbox, &out.YandexLockbox
  1675. *out = new(YandexLockboxProvider)
  1676. (*in).DeepCopyInto(*out)
  1677. }
  1678. if in.Gitlab != nil {
  1679. in, out := &in.Gitlab, &out.Gitlab
  1680. *out = new(GitlabProvider)
  1681. (*in).DeepCopyInto(*out)
  1682. }
  1683. if in.Alibaba != nil {
  1684. in, out := &in.Alibaba, &out.Alibaba
  1685. *out = new(AlibabaProvider)
  1686. (*in).DeepCopyInto(*out)
  1687. }
  1688. if in.OnePassword != nil {
  1689. in, out := &in.OnePassword, &out.OnePassword
  1690. *out = new(OnePasswordProvider)
  1691. (*in).DeepCopyInto(*out)
  1692. }
  1693. if in.Webhook != nil {
  1694. in, out := &in.Webhook, &out.Webhook
  1695. *out = new(WebhookProvider)
  1696. (*in).DeepCopyInto(*out)
  1697. }
  1698. if in.Kubernetes != nil {
  1699. in, out := &in.Kubernetes, &out.Kubernetes
  1700. *out = new(KubernetesProvider)
  1701. (*in).DeepCopyInto(*out)
  1702. }
  1703. if in.Fake != nil {
  1704. in, out := &in.Fake, &out.Fake
  1705. *out = new(FakeProvider)
  1706. (*in).DeepCopyInto(*out)
  1707. }
  1708. if in.Senhasegura != nil {
  1709. in, out := &in.Senhasegura, &out.Senhasegura
  1710. *out = new(SenhaseguraProvider)
  1711. (*in).DeepCopyInto(*out)
  1712. }
  1713. if in.Scaleway != nil {
  1714. in, out := &in.Scaleway, &out.Scaleway
  1715. *out = new(ScalewayProvider)
  1716. (*in).DeepCopyInto(*out)
  1717. }
  1718. if in.Doppler != nil {
  1719. in, out := &in.Doppler, &out.Doppler
  1720. *out = new(DopplerProvider)
  1721. (*in).DeepCopyInto(*out)
  1722. }
  1723. if in.KeeperSecurity != nil {
  1724. in, out := &in.KeeperSecurity, &out.KeeperSecurity
  1725. *out = new(KeeperSecurityProvider)
  1726. (*in).DeepCopyInto(*out)
  1727. }
  1728. if in.Conjur != nil {
  1729. in, out := &in.Conjur, &out.Conjur
  1730. *out = new(ConjurProvider)
  1731. (*in).DeepCopyInto(*out)
  1732. }
  1733. if in.Delinea != nil {
  1734. in, out := &in.Delinea, &out.Delinea
  1735. *out = new(DelineaProvider)
  1736. (*in).DeepCopyInto(*out)
  1737. }
  1738. }
  1739. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  1740. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  1741. if in == nil {
  1742. return nil
  1743. }
  1744. out := new(SecretStoreProvider)
  1745. in.DeepCopyInto(out)
  1746. return out
  1747. }
  1748. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1749. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  1750. *out = *in
  1751. }
  1752. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  1753. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  1754. if in == nil {
  1755. return nil
  1756. }
  1757. out := new(SecretStoreRef)
  1758. in.DeepCopyInto(out)
  1759. return out
  1760. }
  1761. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1762. func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
  1763. *out = *in
  1764. if in.MaxRetries != nil {
  1765. in, out := &in.MaxRetries, &out.MaxRetries
  1766. *out = new(int32)
  1767. **out = **in
  1768. }
  1769. if in.RetryInterval != nil {
  1770. in, out := &in.RetryInterval, &out.RetryInterval
  1771. *out = new(string)
  1772. **out = **in
  1773. }
  1774. }
  1775. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
  1776. func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
  1777. if in == nil {
  1778. return nil
  1779. }
  1780. out := new(SecretStoreRetrySettings)
  1781. in.DeepCopyInto(out)
  1782. return out
  1783. }
  1784. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1785. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  1786. *out = *in
  1787. if in.Provider != nil {
  1788. in, out := &in.Provider, &out.Provider
  1789. *out = new(SecretStoreProvider)
  1790. (*in).DeepCopyInto(*out)
  1791. }
  1792. if in.RetrySettings != nil {
  1793. in, out := &in.RetrySettings, &out.RetrySettings
  1794. *out = new(SecretStoreRetrySettings)
  1795. (*in).DeepCopyInto(*out)
  1796. }
  1797. if in.Conditions != nil {
  1798. in, out := &in.Conditions, &out.Conditions
  1799. *out = make([]ClusterSecretStoreCondition, len(*in))
  1800. for i := range *in {
  1801. (*in)[i].DeepCopyInto(&(*out)[i])
  1802. }
  1803. }
  1804. }
  1805. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  1806. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  1807. if in == nil {
  1808. return nil
  1809. }
  1810. out := new(SecretStoreSpec)
  1811. in.DeepCopyInto(out)
  1812. return out
  1813. }
  1814. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1815. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  1816. *out = *in
  1817. if in.Conditions != nil {
  1818. in, out := &in.Conditions, &out.Conditions
  1819. *out = make([]SecretStoreStatusCondition, len(*in))
  1820. for i := range *in {
  1821. (*in)[i].DeepCopyInto(&(*out)[i])
  1822. }
  1823. }
  1824. }
  1825. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  1826. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  1827. if in == nil {
  1828. return nil
  1829. }
  1830. out := new(SecretStoreStatus)
  1831. in.DeepCopyInto(out)
  1832. return out
  1833. }
  1834. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1835. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  1836. *out = *in
  1837. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  1838. }
  1839. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  1840. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  1841. if in == nil {
  1842. return nil
  1843. }
  1844. out := new(SecretStoreStatusCondition)
  1845. in.DeepCopyInto(out)
  1846. return out
  1847. }
  1848. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1849. func (in *SenhaseguraAuth) DeepCopyInto(out *SenhaseguraAuth) {
  1850. *out = *in
  1851. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  1852. }
  1853. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraAuth.
  1854. func (in *SenhaseguraAuth) DeepCopy() *SenhaseguraAuth {
  1855. if in == nil {
  1856. return nil
  1857. }
  1858. out := new(SenhaseguraAuth)
  1859. in.DeepCopyInto(out)
  1860. return out
  1861. }
  1862. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1863. func (in *SenhaseguraProvider) DeepCopyInto(out *SenhaseguraProvider) {
  1864. *out = *in
  1865. in.Auth.DeepCopyInto(&out.Auth)
  1866. }
  1867. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraProvider.
  1868. func (in *SenhaseguraProvider) DeepCopy() *SenhaseguraProvider {
  1869. if in == nil {
  1870. return nil
  1871. }
  1872. out := new(SenhaseguraProvider)
  1873. in.DeepCopyInto(out)
  1874. return out
  1875. }
  1876. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1877. func (in *SourceRef) DeepCopyInto(out *SourceRef) {
  1878. *out = *in
  1879. if in.SecretStoreRef != nil {
  1880. in, out := &in.SecretStoreRef, &out.SecretStoreRef
  1881. *out = new(SecretStoreRef)
  1882. **out = **in
  1883. }
  1884. if in.GeneratorRef != nil {
  1885. in, out := &in.GeneratorRef, &out.GeneratorRef
  1886. *out = new(GeneratorRef)
  1887. **out = **in
  1888. }
  1889. }
  1890. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceRef.
  1891. func (in *SourceRef) DeepCopy() *SourceRef {
  1892. if in == nil {
  1893. return nil
  1894. }
  1895. out := new(SourceRef)
  1896. in.DeepCopyInto(out)
  1897. return out
  1898. }
  1899. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1900. func (in *Tag) DeepCopyInto(out *Tag) {
  1901. *out = *in
  1902. }
  1903. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tag.
  1904. func (in *Tag) DeepCopy() *Tag {
  1905. if in == nil {
  1906. return nil
  1907. }
  1908. out := new(Tag)
  1909. in.DeepCopyInto(out)
  1910. return out
  1911. }
  1912. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1913. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  1914. *out = *in
  1915. if in.ConfigMap != nil {
  1916. in, out := &in.ConfigMap, &out.ConfigMap
  1917. *out = new(TemplateRef)
  1918. (*in).DeepCopyInto(*out)
  1919. }
  1920. if in.Secret != nil {
  1921. in, out := &in.Secret, &out.Secret
  1922. *out = new(TemplateRef)
  1923. (*in).DeepCopyInto(*out)
  1924. }
  1925. if in.Literal != nil {
  1926. in, out := &in.Literal, &out.Literal
  1927. *out = new(string)
  1928. **out = **in
  1929. }
  1930. }
  1931. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  1932. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  1933. if in == nil {
  1934. return nil
  1935. }
  1936. out := new(TemplateFrom)
  1937. in.DeepCopyInto(out)
  1938. return out
  1939. }
  1940. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1941. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  1942. *out = *in
  1943. if in.Items != nil {
  1944. in, out := &in.Items, &out.Items
  1945. *out = make([]TemplateRefItem, len(*in))
  1946. copy(*out, *in)
  1947. }
  1948. }
  1949. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  1950. func (in *TemplateRef) DeepCopy() *TemplateRef {
  1951. if in == nil {
  1952. return nil
  1953. }
  1954. out := new(TemplateRef)
  1955. in.DeepCopyInto(out)
  1956. return out
  1957. }
  1958. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1959. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  1960. *out = *in
  1961. }
  1962. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  1963. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  1964. if in == nil {
  1965. return nil
  1966. }
  1967. out := new(TemplateRefItem)
  1968. in.DeepCopyInto(out)
  1969. return out
  1970. }
  1971. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1972. func (in *TokenAuth) DeepCopyInto(out *TokenAuth) {
  1973. *out = *in
  1974. in.BearerToken.DeepCopyInto(&out.BearerToken)
  1975. }
  1976. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenAuth.
  1977. func (in *TokenAuth) DeepCopy() *TokenAuth {
  1978. if in == nil {
  1979. return nil
  1980. }
  1981. out := new(TokenAuth)
  1982. in.DeepCopyInto(out)
  1983. return out
  1984. }
  1985. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1986. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  1987. *out = *in
  1988. if in.RoleRef != nil {
  1989. in, out := &in.RoleRef, &out.RoleRef
  1990. *out = new(metav1.SecretKeySelector)
  1991. (*in).DeepCopyInto(*out)
  1992. }
  1993. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1994. }
  1995. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  1996. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  1997. if in == nil {
  1998. return nil
  1999. }
  2000. out := new(VaultAppRole)
  2001. in.DeepCopyInto(out)
  2002. return out
  2003. }
  2004. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2005. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  2006. *out = *in
  2007. if in.TokenSecretRef != nil {
  2008. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  2009. *out = new(metav1.SecretKeySelector)
  2010. (*in).DeepCopyInto(*out)
  2011. }
  2012. if in.AppRole != nil {
  2013. in, out := &in.AppRole, &out.AppRole
  2014. *out = new(VaultAppRole)
  2015. (*in).DeepCopyInto(*out)
  2016. }
  2017. if in.Kubernetes != nil {
  2018. in, out := &in.Kubernetes, &out.Kubernetes
  2019. *out = new(VaultKubernetesAuth)
  2020. (*in).DeepCopyInto(*out)
  2021. }
  2022. if in.Ldap != nil {
  2023. in, out := &in.Ldap, &out.Ldap
  2024. *out = new(VaultLdapAuth)
  2025. (*in).DeepCopyInto(*out)
  2026. }
  2027. if in.Jwt != nil {
  2028. in, out := &in.Jwt, &out.Jwt
  2029. *out = new(VaultJwtAuth)
  2030. (*in).DeepCopyInto(*out)
  2031. }
  2032. if in.Cert != nil {
  2033. in, out := &in.Cert, &out.Cert
  2034. *out = new(VaultCertAuth)
  2035. (*in).DeepCopyInto(*out)
  2036. }
  2037. if in.Iam != nil {
  2038. in, out := &in.Iam, &out.Iam
  2039. *out = new(VaultIamAuth)
  2040. (*in).DeepCopyInto(*out)
  2041. }
  2042. if in.UserPass != nil {
  2043. in, out := &in.UserPass, &out.UserPass
  2044. *out = new(VaultUserPassAuth)
  2045. (*in).DeepCopyInto(*out)
  2046. }
  2047. }
  2048. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  2049. func (in *VaultAuth) DeepCopy() *VaultAuth {
  2050. if in == nil {
  2051. return nil
  2052. }
  2053. out := new(VaultAuth)
  2054. in.DeepCopyInto(out)
  2055. return out
  2056. }
  2057. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2058. func (in *VaultAwsAuth) DeepCopyInto(out *VaultAwsAuth) {
  2059. *out = *in
  2060. if in.SecretRef != nil {
  2061. in, out := &in.SecretRef, &out.SecretRef
  2062. *out = new(VaultAwsAuthSecretRef)
  2063. (*in).DeepCopyInto(*out)
  2064. }
  2065. if in.JWTAuth != nil {
  2066. in, out := &in.JWTAuth, &out.JWTAuth
  2067. *out = new(VaultAwsJWTAuth)
  2068. (*in).DeepCopyInto(*out)
  2069. }
  2070. }
  2071. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuth.
  2072. func (in *VaultAwsAuth) DeepCopy() *VaultAwsAuth {
  2073. if in == nil {
  2074. return nil
  2075. }
  2076. out := new(VaultAwsAuth)
  2077. in.DeepCopyInto(out)
  2078. return out
  2079. }
  2080. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2081. func (in *VaultAwsAuthSecretRef) DeepCopyInto(out *VaultAwsAuthSecretRef) {
  2082. *out = *in
  2083. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  2084. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  2085. if in.SessionToken != nil {
  2086. in, out := &in.SessionToken, &out.SessionToken
  2087. *out = new(metav1.SecretKeySelector)
  2088. (*in).DeepCopyInto(*out)
  2089. }
  2090. }
  2091. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuthSecretRef.
  2092. func (in *VaultAwsAuthSecretRef) DeepCopy() *VaultAwsAuthSecretRef {
  2093. if in == nil {
  2094. return nil
  2095. }
  2096. out := new(VaultAwsAuthSecretRef)
  2097. in.DeepCopyInto(out)
  2098. return out
  2099. }
  2100. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2101. func (in *VaultAwsJWTAuth) DeepCopyInto(out *VaultAwsJWTAuth) {
  2102. *out = *in
  2103. if in.ServiceAccountRef != nil {
  2104. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  2105. *out = new(metav1.ServiceAccountSelector)
  2106. (*in).DeepCopyInto(*out)
  2107. }
  2108. }
  2109. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsJWTAuth.
  2110. func (in *VaultAwsJWTAuth) DeepCopy() *VaultAwsJWTAuth {
  2111. if in == nil {
  2112. return nil
  2113. }
  2114. out := new(VaultAwsJWTAuth)
  2115. in.DeepCopyInto(out)
  2116. return out
  2117. }
  2118. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2119. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  2120. *out = *in
  2121. in.ClientCert.DeepCopyInto(&out.ClientCert)
  2122. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2123. }
  2124. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  2125. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  2126. if in == nil {
  2127. return nil
  2128. }
  2129. out := new(VaultCertAuth)
  2130. in.DeepCopyInto(out)
  2131. return out
  2132. }
  2133. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2134. func (in *VaultIamAuth) DeepCopyInto(out *VaultIamAuth) {
  2135. *out = *in
  2136. if in.SecretRef != nil {
  2137. in, out := &in.SecretRef, &out.SecretRef
  2138. *out = new(VaultAwsAuthSecretRef)
  2139. (*in).DeepCopyInto(*out)
  2140. }
  2141. if in.JWTAuth != nil {
  2142. in, out := &in.JWTAuth, &out.JWTAuth
  2143. *out = new(VaultAwsJWTAuth)
  2144. (*in).DeepCopyInto(*out)
  2145. }
  2146. }
  2147. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultIamAuth.
  2148. func (in *VaultIamAuth) DeepCopy() *VaultIamAuth {
  2149. if in == nil {
  2150. return nil
  2151. }
  2152. out := new(VaultIamAuth)
  2153. in.DeepCopyInto(out)
  2154. return out
  2155. }
  2156. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2157. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  2158. *out = *in
  2159. if in.SecretRef != nil {
  2160. in, out := &in.SecretRef, &out.SecretRef
  2161. *out = new(metav1.SecretKeySelector)
  2162. (*in).DeepCopyInto(*out)
  2163. }
  2164. if in.KubernetesServiceAccountToken != nil {
  2165. in, out := &in.KubernetesServiceAccountToken, &out.KubernetesServiceAccountToken
  2166. *out = new(VaultKubernetesServiceAccountTokenAuth)
  2167. (*in).DeepCopyInto(*out)
  2168. }
  2169. }
  2170. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  2171. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  2172. if in == nil {
  2173. return nil
  2174. }
  2175. out := new(VaultJwtAuth)
  2176. in.DeepCopyInto(out)
  2177. return out
  2178. }
  2179. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2180. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  2181. *out = *in
  2182. if in.ServiceAccountRef != nil {
  2183. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  2184. *out = new(metav1.ServiceAccountSelector)
  2185. (*in).DeepCopyInto(*out)
  2186. }
  2187. if in.SecretRef != nil {
  2188. in, out := &in.SecretRef, &out.SecretRef
  2189. *out = new(metav1.SecretKeySelector)
  2190. (*in).DeepCopyInto(*out)
  2191. }
  2192. }
  2193. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  2194. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  2195. if in == nil {
  2196. return nil
  2197. }
  2198. out := new(VaultKubernetesAuth)
  2199. in.DeepCopyInto(out)
  2200. return out
  2201. }
  2202. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2203. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopyInto(out *VaultKubernetesServiceAccountTokenAuth) {
  2204. *out = *in
  2205. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  2206. if in.Audiences != nil {
  2207. in, out := &in.Audiences, &out.Audiences
  2208. *out = new([]string)
  2209. if **in != nil {
  2210. in, out := *in, *out
  2211. *out = make([]string, len(*in))
  2212. copy(*out, *in)
  2213. }
  2214. }
  2215. if in.ExpirationSeconds != nil {
  2216. in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
  2217. *out = new(int64)
  2218. **out = **in
  2219. }
  2220. }
  2221. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesServiceAccountTokenAuth.
  2222. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopy() *VaultKubernetesServiceAccountTokenAuth {
  2223. if in == nil {
  2224. return nil
  2225. }
  2226. out := new(VaultKubernetesServiceAccountTokenAuth)
  2227. in.DeepCopyInto(out)
  2228. return out
  2229. }
  2230. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2231. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  2232. *out = *in
  2233. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2234. }
  2235. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  2236. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  2237. if in == nil {
  2238. return nil
  2239. }
  2240. out := new(VaultLdapAuth)
  2241. in.DeepCopyInto(out)
  2242. return out
  2243. }
  2244. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2245. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  2246. *out = *in
  2247. in.Auth.DeepCopyInto(&out.Auth)
  2248. if in.Path != nil {
  2249. in, out := &in.Path, &out.Path
  2250. *out = new(string)
  2251. **out = **in
  2252. }
  2253. if in.Namespace != nil {
  2254. in, out := &in.Namespace, &out.Namespace
  2255. *out = new(string)
  2256. **out = **in
  2257. }
  2258. if in.CABundle != nil {
  2259. in, out := &in.CABundle, &out.CABundle
  2260. *out = make([]byte, len(*in))
  2261. copy(*out, *in)
  2262. }
  2263. if in.CAProvider != nil {
  2264. in, out := &in.CAProvider, &out.CAProvider
  2265. *out = new(CAProvider)
  2266. (*in).DeepCopyInto(*out)
  2267. }
  2268. }
  2269. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  2270. func (in *VaultProvider) DeepCopy() *VaultProvider {
  2271. if in == nil {
  2272. return nil
  2273. }
  2274. out := new(VaultProvider)
  2275. in.DeepCopyInto(out)
  2276. return out
  2277. }
  2278. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2279. func (in *VaultUserPassAuth) DeepCopyInto(out *VaultUserPassAuth) {
  2280. *out = *in
  2281. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2282. }
  2283. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultUserPassAuth.
  2284. func (in *VaultUserPassAuth) DeepCopy() *VaultUserPassAuth {
  2285. if in == nil {
  2286. return nil
  2287. }
  2288. out := new(VaultUserPassAuth)
  2289. in.DeepCopyInto(out)
  2290. return out
  2291. }
  2292. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2293. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  2294. *out = *in
  2295. if in.Namespace != nil {
  2296. in, out := &in.Namespace, &out.Namespace
  2297. *out = new(string)
  2298. **out = **in
  2299. }
  2300. }
  2301. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  2302. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  2303. if in == nil {
  2304. return nil
  2305. }
  2306. out := new(WebhookCAProvider)
  2307. in.DeepCopyInto(out)
  2308. return out
  2309. }
  2310. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2311. func (in *WebhookProvider) DeepCopyInto(out *WebhookProvider) {
  2312. *out = *in
  2313. if in.Headers != nil {
  2314. in, out := &in.Headers, &out.Headers
  2315. *out = make(map[string]string, len(*in))
  2316. for key, val := range *in {
  2317. (*out)[key] = val
  2318. }
  2319. }
  2320. if in.Timeout != nil {
  2321. in, out := &in.Timeout, &out.Timeout
  2322. *out = new(v1.Duration)
  2323. **out = **in
  2324. }
  2325. out.Result = in.Result
  2326. if in.Secrets != nil {
  2327. in, out := &in.Secrets, &out.Secrets
  2328. *out = make([]WebhookSecret, len(*in))
  2329. for i := range *in {
  2330. (*in)[i].DeepCopyInto(&(*out)[i])
  2331. }
  2332. }
  2333. if in.CABundle != nil {
  2334. in, out := &in.CABundle, &out.CABundle
  2335. *out = make([]byte, len(*in))
  2336. copy(*out, *in)
  2337. }
  2338. if in.CAProvider != nil {
  2339. in, out := &in.CAProvider, &out.CAProvider
  2340. *out = new(WebhookCAProvider)
  2341. (*in).DeepCopyInto(*out)
  2342. }
  2343. }
  2344. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookProvider.
  2345. func (in *WebhookProvider) DeepCopy() *WebhookProvider {
  2346. if in == nil {
  2347. return nil
  2348. }
  2349. out := new(WebhookProvider)
  2350. in.DeepCopyInto(out)
  2351. return out
  2352. }
  2353. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2354. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  2355. *out = *in
  2356. }
  2357. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  2358. func (in *WebhookResult) DeepCopy() *WebhookResult {
  2359. if in == nil {
  2360. return nil
  2361. }
  2362. out := new(WebhookResult)
  2363. in.DeepCopyInto(out)
  2364. return out
  2365. }
  2366. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2367. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  2368. *out = *in
  2369. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2370. }
  2371. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  2372. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  2373. if in == nil {
  2374. return nil
  2375. }
  2376. out := new(WebhookSecret)
  2377. in.DeepCopyInto(out)
  2378. return out
  2379. }
  2380. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2381. func (in *YandexCertificateManagerAuth) DeepCopyInto(out *YandexCertificateManagerAuth) {
  2382. *out = *in
  2383. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  2384. }
  2385. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerAuth.
  2386. func (in *YandexCertificateManagerAuth) DeepCopy() *YandexCertificateManagerAuth {
  2387. if in == nil {
  2388. return nil
  2389. }
  2390. out := new(YandexCertificateManagerAuth)
  2391. in.DeepCopyInto(out)
  2392. return out
  2393. }
  2394. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2395. func (in *YandexCertificateManagerCAProvider) DeepCopyInto(out *YandexCertificateManagerCAProvider) {
  2396. *out = *in
  2397. in.Certificate.DeepCopyInto(&out.Certificate)
  2398. }
  2399. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerCAProvider.
  2400. func (in *YandexCertificateManagerCAProvider) DeepCopy() *YandexCertificateManagerCAProvider {
  2401. if in == nil {
  2402. return nil
  2403. }
  2404. out := new(YandexCertificateManagerCAProvider)
  2405. in.DeepCopyInto(out)
  2406. return out
  2407. }
  2408. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2409. func (in *YandexCertificateManagerProvider) DeepCopyInto(out *YandexCertificateManagerProvider) {
  2410. *out = *in
  2411. in.Auth.DeepCopyInto(&out.Auth)
  2412. if in.CAProvider != nil {
  2413. in, out := &in.CAProvider, &out.CAProvider
  2414. *out = new(YandexCertificateManagerCAProvider)
  2415. (*in).DeepCopyInto(*out)
  2416. }
  2417. }
  2418. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerProvider.
  2419. func (in *YandexCertificateManagerProvider) DeepCopy() *YandexCertificateManagerProvider {
  2420. if in == nil {
  2421. return nil
  2422. }
  2423. out := new(YandexCertificateManagerProvider)
  2424. in.DeepCopyInto(out)
  2425. return out
  2426. }
  2427. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2428. func (in *YandexLockboxAuth) DeepCopyInto(out *YandexLockboxAuth) {
  2429. *out = *in
  2430. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  2431. }
  2432. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxAuth.
  2433. func (in *YandexLockboxAuth) DeepCopy() *YandexLockboxAuth {
  2434. if in == nil {
  2435. return nil
  2436. }
  2437. out := new(YandexLockboxAuth)
  2438. in.DeepCopyInto(out)
  2439. return out
  2440. }
  2441. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2442. func (in *YandexLockboxCAProvider) DeepCopyInto(out *YandexLockboxCAProvider) {
  2443. *out = *in
  2444. in.Certificate.DeepCopyInto(&out.Certificate)
  2445. }
  2446. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxCAProvider.
  2447. func (in *YandexLockboxCAProvider) DeepCopy() *YandexLockboxCAProvider {
  2448. if in == nil {
  2449. return nil
  2450. }
  2451. out := new(YandexLockboxCAProvider)
  2452. in.DeepCopyInto(out)
  2453. return out
  2454. }
  2455. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2456. func (in *YandexLockboxProvider) DeepCopyInto(out *YandexLockboxProvider) {
  2457. *out = *in
  2458. in.Auth.DeepCopyInto(&out.Auth)
  2459. if in.CAProvider != nil {
  2460. in, out := &in.CAProvider, &out.CAProvider
  2461. *out = new(YandexLockboxCAProvider)
  2462. (*in).DeepCopyInto(*out)
  2463. }
  2464. }
  2465. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxProvider.
  2466. func (in *YandexLockboxProvider) DeepCopy() *YandexLockboxProvider {
  2467. if in == nil {
  2468. return nil
  2469. }
  2470. out := new(YandexLockboxProvider)
  2471. in.DeepCopyInto(out)
  2472. return out
  2473. }