zz_generated.deepcopy.go 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612
  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.SecretsManager != nil {
  102. in, out := &in.SecretsManager, &out.SecretsManager
  103. *out = new(SecretsManager)
  104. **out = **in
  105. }
  106. if in.TransitiveTagKeys != nil {
  107. in, out := &in.TransitiveTagKeys, &out.TransitiveTagKeys
  108. *out = make([]*string, len(*in))
  109. for i := range *in {
  110. if (*in)[i] != nil {
  111. in, out := &(*in)[i], &(*out)[i]
  112. *out = new(string)
  113. **out = **in
  114. }
  115. }
  116. }
  117. }
  118. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  119. func (in *AWSProvider) DeepCopy() *AWSProvider {
  120. if in == nil {
  121. return nil
  122. }
  123. out := new(AWSProvider)
  124. in.DeepCopyInto(out)
  125. return out
  126. }
  127. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  128. func (in *AkeylessAuth) DeepCopyInto(out *AkeylessAuth) {
  129. *out = *in
  130. in.SecretRef.DeepCopyInto(&out.SecretRef)
  131. if in.KubernetesAuth != nil {
  132. in, out := &in.KubernetesAuth, &out.KubernetesAuth
  133. *out = new(AkeylessKubernetesAuth)
  134. (*in).DeepCopyInto(*out)
  135. }
  136. }
  137. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuth.
  138. func (in *AkeylessAuth) DeepCopy() *AkeylessAuth {
  139. if in == nil {
  140. return nil
  141. }
  142. out := new(AkeylessAuth)
  143. in.DeepCopyInto(out)
  144. return out
  145. }
  146. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  147. func (in *AkeylessAuthSecretRef) DeepCopyInto(out *AkeylessAuthSecretRef) {
  148. *out = *in
  149. in.AccessID.DeepCopyInto(&out.AccessID)
  150. in.AccessType.DeepCopyInto(&out.AccessType)
  151. in.AccessTypeParam.DeepCopyInto(&out.AccessTypeParam)
  152. }
  153. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuthSecretRef.
  154. func (in *AkeylessAuthSecretRef) DeepCopy() *AkeylessAuthSecretRef {
  155. if in == nil {
  156. return nil
  157. }
  158. out := new(AkeylessAuthSecretRef)
  159. in.DeepCopyInto(out)
  160. return out
  161. }
  162. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  163. func (in *AkeylessKubernetesAuth) DeepCopyInto(out *AkeylessKubernetesAuth) {
  164. *out = *in
  165. if in.ServiceAccountRef != nil {
  166. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  167. *out = new(metav1.ServiceAccountSelector)
  168. (*in).DeepCopyInto(*out)
  169. }
  170. if in.SecretRef != nil {
  171. in, out := &in.SecretRef, &out.SecretRef
  172. *out = new(metav1.SecretKeySelector)
  173. (*in).DeepCopyInto(*out)
  174. }
  175. }
  176. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessKubernetesAuth.
  177. func (in *AkeylessKubernetesAuth) DeepCopy() *AkeylessKubernetesAuth {
  178. if in == nil {
  179. return nil
  180. }
  181. out := new(AkeylessKubernetesAuth)
  182. in.DeepCopyInto(out)
  183. return out
  184. }
  185. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  186. func (in *AkeylessProvider) DeepCopyInto(out *AkeylessProvider) {
  187. *out = *in
  188. if in.AkeylessGWApiURL != nil {
  189. in, out := &in.AkeylessGWApiURL, &out.AkeylessGWApiURL
  190. *out = new(string)
  191. **out = **in
  192. }
  193. if in.Auth != nil {
  194. in, out := &in.Auth, &out.Auth
  195. *out = new(AkeylessAuth)
  196. (*in).DeepCopyInto(*out)
  197. }
  198. if in.CABundle != nil {
  199. in, out := &in.CABundle, &out.CABundle
  200. *out = make([]byte, len(*in))
  201. copy(*out, *in)
  202. }
  203. if in.CAProvider != nil {
  204. in, out := &in.CAProvider, &out.CAProvider
  205. *out = new(CAProvider)
  206. (*in).DeepCopyInto(*out)
  207. }
  208. }
  209. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessProvider.
  210. func (in *AkeylessProvider) DeepCopy() *AkeylessProvider {
  211. if in == nil {
  212. return nil
  213. }
  214. out := new(AkeylessProvider)
  215. in.DeepCopyInto(out)
  216. return out
  217. }
  218. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  219. func (in *AlibabaAuth) DeepCopyInto(out *AlibabaAuth) {
  220. *out = *in
  221. if in.SecretRef != nil {
  222. in, out := &in.SecretRef, &out.SecretRef
  223. *out = new(AlibabaAuthSecretRef)
  224. (*in).DeepCopyInto(*out)
  225. }
  226. if in.RRSAAuth != nil {
  227. in, out := &in.RRSAAuth, &out.RRSAAuth
  228. *out = new(AlibabaRRSAAuth)
  229. **out = **in
  230. }
  231. }
  232. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuth.
  233. func (in *AlibabaAuth) DeepCopy() *AlibabaAuth {
  234. if in == nil {
  235. return nil
  236. }
  237. out := new(AlibabaAuth)
  238. in.DeepCopyInto(out)
  239. return out
  240. }
  241. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  242. func (in *AlibabaAuthSecretRef) DeepCopyInto(out *AlibabaAuthSecretRef) {
  243. *out = *in
  244. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  245. in.AccessKeySecret.DeepCopyInto(&out.AccessKeySecret)
  246. }
  247. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaAuthSecretRef.
  248. func (in *AlibabaAuthSecretRef) DeepCopy() *AlibabaAuthSecretRef {
  249. if in == nil {
  250. return nil
  251. }
  252. out := new(AlibabaAuthSecretRef)
  253. in.DeepCopyInto(out)
  254. return out
  255. }
  256. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  257. func (in *AlibabaProvider) DeepCopyInto(out *AlibabaProvider) {
  258. *out = *in
  259. in.Auth.DeepCopyInto(&out.Auth)
  260. }
  261. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaProvider.
  262. func (in *AlibabaProvider) DeepCopy() *AlibabaProvider {
  263. if in == nil {
  264. return nil
  265. }
  266. out := new(AlibabaProvider)
  267. in.DeepCopyInto(out)
  268. return out
  269. }
  270. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  271. func (in *AlibabaRRSAAuth) DeepCopyInto(out *AlibabaRRSAAuth) {
  272. *out = *in
  273. }
  274. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AlibabaRRSAAuth.
  275. func (in *AlibabaRRSAAuth) DeepCopy() *AlibabaRRSAAuth {
  276. if in == nil {
  277. return nil
  278. }
  279. out := new(AlibabaRRSAAuth)
  280. in.DeepCopyInto(out)
  281. return out
  282. }
  283. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  284. func (in *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  285. *out = *in
  286. if in.ClientID != nil {
  287. in, out := &in.ClientID, &out.ClientID
  288. *out = new(metav1.SecretKeySelector)
  289. (*in).DeepCopyInto(*out)
  290. }
  291. if in.TenantID != nil {
  292. in, out := &in.TenantID, &out.TenantID
  293. *out = new(metav1.SecretKeySelector)
  294. (*in).DeepCopyInto(*out)
  295. }
  296. if in.ClientSecret != nil {
  297. in, out := &in.ClientSecret, &out.ClientSecret
  298. *out = new(metav1.SecretKeySelector)
  299. (*in).DeepCopyInto(*out)
  300. }
  301. if in.ClientCertificate != nil {
  302. in, out := &in.ClientCertificate, &out.ClientCertificate
  303. *out = new(metav1.SecretKeySelector)
  304. (*in).DeepCopyInto(*out)
  305. }
  306. }
  307. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  308. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  309. if in == nil {
  310. return nil
  311. }
  312. out := new(AzureKVAuth)
  313. in.DeepCopyInto(out)
  314. return out
  315. }
  316. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  317. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  318. *out = *in
  319. if in.AuthType != nil {
  320. in, out := &in.AuthType, &out.AuthType
  321. *out = new(AzureAuthType)
  322. **out = **in
  323. }
  324. if in.VaultURL != nil {
  325. in, out := &in.VaultURL, &out.VaultURL
  326. *out = new(string)
  327. **out = **in
  328. }
  329. if in.TenantID != nil {
  330. in, out := &in.TenantID, &out.TenantID
  331. *out = new(string)
  332. **out = **in
  333. }
  334. if in.AuthSecretRef != nil {
  335. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  336. *out = new(AzureKVAuth)
  337. (*in).DeepCopyInto(*out)
  338. }
  339. if in.ServiceAccountRef != nil {
  340. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  341. *out = new(metav1.ServiceAccountSelector)
  342. (*in).DeepCopyInto(*out)
  343. }
  344. if in.IdentityID != nil {
  345. in, out := &in.IdentityID, &out.IdentityID
  346. *out = new(string)
  347. **out = **in
  348. }
  349. }
  350. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  351. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  352. if in == nil {
  353. return nil
  354. }
  355. out := new(AzureKVProvider)
  356. in.DeepCopyInto(out)
  357. return out
  358. }
  359. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  360. func (in *BeyondTrustProviderSecretRef) DeepCopyInto(out *BeyondTrustProviderSecretRef) {
  361. *out = *in
  362. if in.SecretRef != nil {
  363. in, out := &in.SecretRef, &out.SecretRef
  364. *out = new(metav1.SecretKeySelector)
  365. (*in).DeepCopyInto(*out)
  366. }
  367. }
  368. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondTrustProviderSecretRef.
  369. func (in *BeyondTrustProviderSecretRef) DeepCopy() *BeyondTrustProviderSecretRef {
  370. if in == nil {
  371. return nil
  372. }
  373. out := new(BeyondTrustProviderSecretRef)
  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 *BeyondtrustAuth) DeepCopyInto(out *BeyondtrustAuth) {
  379. *out = *in
  380. if in.APIKey != nil {
  381. in, out := &in.APIKey, &out.APIKey
  382. *out = new(BeyondTrustProviderSecretRef)
  383. (*in).DeepCopyInto(*out)
  384. }
  385. if in.ClientID != nil {
  386. in, out := &in.ClientID, &out.ClientID
  387. *out = new(BeyondTrustProviderSecretRef)
  388. (*in).DeepCopyInto(*out)
  389. }
  390. if in.ClientSecret != nil {
  391. in, out := &in.ClientSecret, &out.ClientSecret
  392. *out = new(BeyondTrustProviderSecretRef)
  393. (*in).DeepCopyInto(*out)
  394. }
  395. if in.Certificate != nil {
  396. in, out := &in.Certificate, &out.Certificate
  397. *out = new(BeyondTrustProviderSecretRef)
  398. (*in).DeepCopyInto(*out)
  399. }
  400. if in.CertificateKey != nil {
  401. in, out := &in.CertificateKey, &out.CertificateKey
  402. *out = new(BeyondTrustProviderSecretRef)
  403. (*in).DeepCopyInto(*out)
  404. }
  405. }
  406. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustAuth.
  407. func (in *BeyondtrustAuth) DeepCopy() *BeyondtrustAuth {
  408. if in == nil {
  409. return nil
  410. }
  411. out := new(BeyondtrustAuth)
  412. in.DeepCopyInto(out)
  413. return out
  414. }
  415. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  416. func (in *BeyondtrustProvider) DeepCopyInto(out *BeyondtrustProvider) {
  417. *out = *in
  418. if in.Auth != nil {
  419. in, out := &in.Auth, &out.Auth
  420. *out = new(BeyondtrustAuth)
  421. (*in).DeepCopyInto(*out)
  422. }
  423. if in.Server != nil {
  424. in, out := &in.Server, &out.Server
  425. *out = new(BeyondtrustServer)
  426. **out = **in
  427. }
  428. }
  429. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustProvider.
  430. func (in *BeyondtrustProvider) DeepCopy() *BeyondtrustProvider {
  431. if in == nil {
  432. return nil
  433. }
  434. out := new(BeyondtrustProvider)
  435. in.DeepCopyInto(out)
  436. return out
  437. }
  438. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  439. func (in *BeyondtrustServer) DeepCopyInto(out *BeyondtrustServer) {
  440. *out = *in
  441. }
  442. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustServer.
  443. func (in *BeyondtrustServer) DeepCopy() *BeyondtrustServer {
  444. if in == nil {
  445. return nil
  446. }
  447. out := new(BeyondtrustServer)
  448. in.DeepCopyInto(out)
  449. return out
  450. }
  451. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  452. func (in *BitwardenSecretsManagerAuth) DeepCopyInto(out *BitwardenSecretsManagerAuth) {
  453. *out = *in
  454. in.SecretRef.DeepCopyInto(&out.SecretRef)
  455. }
  456. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerAuth.
  457. func (in *BitwardenSecretsManagerAuth) DeepCopy() *BitwardenSecretsManagerAuth {
  458. if in == nil {
  459. return nil
  460. }
  461. out := new(BitwardenSecretsManagerAuth)
  462. in.DeepCopyInto(out)
  463. return out
  464. }
  465. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  466. func (in *BitwardenSecretsManagerProvider) DeepCopyInto(out *BitwardenSecretsManagerProvider) {
  467. *out = *in
  468. if in.CAProvider != nil {
  469. in, out := &in.CAProvider, &out.CAProvider
  470. *out = new(CAProvider)
  471. (*in).DeepCopyInto(*out)
  472. }
  473. in.Auth.DeepCopyInto(&out.Auth)
  474. }
  475. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerProvider.
  476. func (in *BitwardenSecretsManagerProvider) DeepCopy() *BitwardenSecretsManagerProvider {
  477. if in == nil {
  478. return nil
  479. }
  480. out := new(BitwardenSecretsManagerProvider)
  481. in.DeepCopyInto(out)
  482. return out
  483. }
  484. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  485. func (in *BitwardenSecretsManagerSecretRef) DeepCopyInto(out *BitwardenSecretsManagerSecretRef) {
  486. *out = *in
  487. in.Credentials.DeepCopyInto(&out.Credentials)
  488. }
  489. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerSecretRef.
  490. func (in *BitwardenSecretsManagerSecretRef) DeepCopy() *BitwardenSecretsManagerSecretRef {
  491. if in == nil {
  492. return nil
  493. }
  494. out := new(BitwardenSecretsManagerSecretRef)
  495. in.DeepCopyInto(out)
  496. return out
  497. }
  498. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  499. func (in *CAProvider) DeepCopyInto(out *CAProvider) {
  500. *out = *in
  501. if in.Namespace != nil {
  502. in, out := &in.Namespace, &out.Namespace
  503. *out = new(string)
  504. **out = **in
  505. }
  506. }
  507. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CAProvider.
  508. func (in *CAProvider) DeepCopy() *CAProvider {
  509. if in == nil {
  510. return nil
  511. }
  512. out := new(CAProvider)
  513. in.DeepCopyInto(out)
  514. return out
  515. }
  516. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  517. func (in *CertAuth) DeepCopyInto(out *CertAuth) {
  518. *out = *in
  519. in.ClientCert.DeepCopyInto(&out.ClientCert)
  520. in.ClientKey.DeepCopyInto(&out.ClientKey)
  521. }
  522. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertAuth.
  523. func (in *CertAuth) DeepCopy() *CertAuth {
  524. if in == nil {
  525. return nil
  526. }
  527. out := new(CertAuth)
  528. in.DeepCopyInto(out)
  529. return out
  530. }
  531. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  532. func (in *ChefAuth) DeepCopyInto(out *ChefAuth) {
  533. *out = *in
  534. in.SecretRef.DeepCopyInto(&out.SecretRef)
  535. }
  536. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefAuth.
  537. func (in *ChefAuth) DeepCopy() *ChefAuth {
  538. if in == nil {
  539. return nil
  540. }
  541. out := new(ChefAuth)
  542. in.DeepCopyInto(out)
  543. return out
  544. }
  545. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  546. func (in *ChefAuthSecretRef) DeepCopyInto(out *ChefAuthSecretRef) {
  547. *out = *in
  548. in.SecretKey.DeepCopyInto(&out.SecretKey)
  549. }
  550. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefAuthSecretRef.
  551. func (in *ChefAuthSecretRef) DeepCopy() *ChefAuthSecretRef {
  552. if in == nil {
  553. return nil
  554. }
  555. out := new(ChefAuthSecretRef)
  556. in.DeepCopyInto(out)
  557. return out
  558. }
  559. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  560. func (in *ChefProvider) DeepCopyInto(out *ChefProvider) {
  561. *out = *in
  562. if in.Auth != nil {
  563. in, out := &in.Auth, &out.Auth
  564. *out = new(ChefAuth)
  565. (*in).DeepCopyInto(*out)
  566. }
  567. }
  568. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefProvider.
  569. func (in *ChefProvider) DeepCopy() *ChefProvider {
  570. if in == nil {
  571. return nil
  572. }
  573. out := new(ChefProvider)
  574. in.DeepCopyInto(out)
  575. return out
  576. }
  577. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  578. func (in *ClusterExternalSecret) DeepCopyInto(out *ClusterExternalSecret) {
  579. *out = *in
  580. out.TypeMeta = in.TypeMeta
  581. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  582. in.Spec.DeepCopyInto(&out.Spec)
  583. in.Status.DeepCopyInto(&out.Status)
  584. }
  585. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecret.
  586. func (in *ClusterExternalSecret) DeepCopy() *ClusterExternalSecret {
  587. if in == nil {
  588. return nil
  589. }
  590. out := new(ClusterExternalSecret)
  591. in.DeepCopyInto(out)
  592. return out
  593. }
  594. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  595. func (in *ClusterExternalSecret) DeepCopyObject() runtime.Object {
  596. if c := in.DeepCopy(); c != nil {
  597. return c
  598. }
  599. return nil
  600. }
  601. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  602. func (in *ClusterExternalSecretList) DeepCopyInto(out *ClusterExternalSecretList) {
  603. *out = *in
  604. out.TypeMeta = in.TypeMeta
  605. in.ListMeta.DeepCopyInto(&out.ListMeta)
  606. if in.Items != nil {
  607. in, out := &in.Items, &out.Items
  608. *out = make([]ClusterExternalSecret, len(*in))
  609. for i := range *in {
  610. (*in)[i].DeepCopyInto(&(*out)[i])
  611. }
  612. }
  613. }
  614. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretList.
  615. func (in *ClusterExternalSecretList) DeepCopy() *ClusterExternalSecretList {
  616. if in == nil {
  617. return nil
  618. }
  619. out := new(ClusterExternalSecretList)
  620. in.DeepCopyInto(out)
  621. return out
  622. }
  623. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  624. func (in *ClusterExternalSecretList) DeepCopyObject() runtime.Object {
  625. if c := in.DeepCopy(); c != nil {
  626. return c
  627. }
  628. return nil
  629. }
  630. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  631. func (in *ClusterExternalSecretNamespaceFailure) DeepCopyInto(out *ClusterExternalSecretNamespaceFailure) {
  632. *out = *in
  633. }
  634. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretNamespaceFailure.
  635. func (in *ClusterExternalSecretNamespaceFailure) DeepCopy() *ClusterExternalSecretNamespaceFailure {
  636. if in == nil {
  637. return nil
  638. }
  639. out := new(ClusterExternalSecretNamespaceFailure)
  640. in.DeepCopyInto(out)
  641. return out
  642. }
  643. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  644. func (in *ClusterExternalSecretSpec) DeepCopyInto(out *ClusterExternalSecretSpec) {
  645. *out = *in
  646. in.ExternalSecretSpec.DeepCopyInto(&out.ExternalSecretSpec)
  647. in.ExternalSecretMetadata.DeepCopyInto(&out.ExternalSecretMetadata)
  648. if in.NamespaceSelector != nil {
  649. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  650. *out = new(v1.LabelSelector)
  651. (*in).DeepCopyInto(*out)
  652. }
  653. if in.NamespaceSelectors != nil {
  654. in, out := &in.NamespaceSelectors, &out.NamespaceSelectors
  655. *out = make([]*v1.LabelSelector, len(*in))
  656. for i := range *in {
  657. if (*in)[i] != nil {
  658. in, out := &(*in)[i], &(*out)[i]
  659. *out = new(v1.LabelSelector)
  660. (*in).DeepCopyInto(*out)
  661. }
  662. }
  663. }
  664. if in.Namespaces != nil {
  665. in, out := &in.Namespaces, &out.Namespaces
  666. *out = make([]string, len(*in))
  667. copy(*out, *in)
  668. }
  669. if in.RefreshInterval != nil {
  670. in, out := &in.RefreshInterval, &out.RefreshInterval
  671. *out = new(v1.Duration)
  672. **out = **in
  673. }
  674. }
  675. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretSpec.
  676. func (in *ClusterExternalSecretSpec) DeepCopy() *ClusterExternalSecretSpec {
  677. if in == nil {
  678. return nil
  679. }
  680. out := new(ClusterExternalSecretSpec)
  681. in.DeepCopyInto(out)
  682. return out
  683. }
  684. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  685. func (in *ClusterExternalSecretStatus) DeepCopyInto(out *ClusterExternalSecretStatus) {
  686. *out = *in
  687. if in.FailedNamespaces != nil {
  688. in, out := &in.FailedNamespaces, &out.FailedNamespaces
  689. *out = make([]ClusterExternalSecretNamespaceFailure, len(*in))
  690. copy(*out, *in)
  691. }
  692. if in.ProvisionedNamespaces != nil {
  693. in, out := &in.ProvisionedNamespaces, &out.ProvisionedNamespaces
  694. *out = make([]string, len(*in))
  695. copy(*out, *in)
  696. }
  697. if in.Conditions != nil {
  698. in, out := &in.Conditions, &out.Conditions
  699. *out = make([]ClusterExternalSecretStatusCondition, len(*in))
  700. copy(*out, *in)
  701. }
  702. }
  703. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatus.
  704. func (in *ClusterExternalSecretStatus) DeepCopy() *ClusterExternalSecretStatus {
  705. if in == nil {
  706. return nil
  707. }
  708. out := new(ClusterExternalSecretStatus)
  709. in.DeepCopyInto(out)
  710. return out
  711. }
  712. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  713. func (in *ClusterExternalSecretStatusCondition) DeepCopyInto(out *ClusterExternalSecretStatusCondition) {
  714. *out = *in
  715. }
  716. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatusCondition.
  717. func (in *ClusterExternalSecretStatusCondition) DeepCopy() *ClusterExternalSecretStatusCondition {
  718. if in == nil {
  719. return nil
  720. }
  721. out := new(ClusterExternalSecretStatusCondition)
  722. in.DeepCopyInto(out)
  723. return out
  724. }
  725. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  726. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  727. *out = *in
  728. out.TypeMeta = in.TypeMeta
  729. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  730. in.Spec.DeepCopyInto(&out.Spec)
  731. in.Status.DeepCopyInto(&out.Status)
  732. }
  733. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  734. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  735. if in == nil {
  736. return nil
  737. }
  738. out := new(ClusterSecretStore)
  739. in.DeepCopyInto(out)
  740. return out
  741. }
  742. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  743. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  744. if c := in.DeepCopy(); c != nil {
  745. return c
  746. }
  747. return nil
  748. }
  749. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  750. func (in *ClusterSecretStoreCondition) DeepCopyInto(out *ClusterSecretStoreCondition) {
  751. *out = *in
  752. if in.NamespaceSelector != nil {
  753. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  754. *out = new(v1.LabelSelector)
  755. (*in).DeepCopyInto(*out)
  756. }
  757. if in.Namespaces != nil {
  758. in, out := &in.Namespaces, &out.Namespaces
  759. *out = make([]string, len(*in))
  760. copy(*out, *in)
  761. }
  762. if in.NamespaceRegexes != nil {
  763. in, out := &in.NamespaceRegexes, &out.NamespaceRegexes
  764. *out = make([]string, len(*in))
  765. copy(*out, *in)
  766. }
  767. }
  768. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreCondition.
  769. func (in *ClusterSecretStoreCondition) DeepCopy() *ClusterSecretStoreCondition {
  770. if in == nil {
  771. return nil
  772. }
  773. out := new(ClusterSecretStoreCondition)
  774. in.DeepCopyInto(out)
  775. return out
  776. }
  777. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  778. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  779. *out = *in
  780. out.TypeMeta = in.TypeMeta
  781. in.ListMeta.DeepCopyInto(&out.ListMeta)
  782. if in.Items != nil {
  783. in, out := &in.Items, &out.Items
  784. *out = make([]ClusterSecretStore, len(*in))
  785. for i := range *in {
  786. (*in)[i].DeepCopyInto(&(*out)[i])
  787. }
  788. }
  789. }
  790. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  791. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  792. if in == nil {
  793. return nil
  794. }
  795. out := new(ClusterSecretStoreList)
  796. in.DeepCopyInto(out)
  797. return out
  798. }
  799. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  800. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  801. if c := in.DeepCopy(); c != nil {
  802. return c
  803. }
  804. return nil
  805. }
  806. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  807. func (in *ConjurAPIKey) DeepCopyInto(out *ConjurAPIKey) {
  808. *out = *in
  809. if in.UserRef != nil {
  810. in, out := &in.UserRef, &out.UserRef
  811. *out = new(metav1.SecretKeySelector)
  812. (*in).DeepCopyInto(*out)
  813. }
  814. if in.APIKeyRef != nil {
  815. in, out := &in.APIKeyRef, &out.APIKeyRef
  816. *out = new(metav1.SecretKeySelector)
  817. (*in).DeepCopyInto(*out)
  818. }
  819. }
  820. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurAPIKey.
  821. func (in *ConjurAPIKey) DeepCopy() *ConjurAPIKey {
  822. if in == nil {
  823. return nil
  824. }
  825. out := new(ConjurAPIKey)
  826. in.DeepCopyInto(out)
  827. return out
  828. }
  829. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  830. func (in *ConjurAuth) DeepCopyInto(out *ConjurAuth) {
  831. *out = *in
  832. if in.APIKey != nil {
  833. in, out := &in.APIKey, &out.APIKey
  834. *out = new(ConjurAPIKey)
  835. (*in).DeepCopyInto(*out)
  836. }
  837. if in.Jwt != nil {
  838. in, out := &in.Jwt, &out.Jwt
  839. *out = new(ConjurJWT)
  840. (*in).DeepCopyInto(*out)
  841. }
  842. }
  843. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurAuth.
  844. func (in *ConjurAuth) DeepCopy() *ConjurAuth {
  845. if in == nil {
  846. return nil
  847. }
  848. out := new(ConjurAuth)
  849. in.DeepCopyInto(out)
  850. return out
  851. }
  852. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  853. func (in *ConjurJWT) DeepCopyInto(out *ConjurJWT) {
  854. *out = *in
  855. if in.SecretRef != nil {
  856. in, out := &in.SecretRef, &out.SecretRef
  857. *out = new(metav1.SecretKeySelector)
  858. (*in).DeepCopyInto(*out)
  859. }
  860. if in.ServiceAccountRef != nil {
  861. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  862. *out = new(metav1.ServiceAccountSelector)
  863. (*in).DeepCopyInto(*out)
  864. }
  865. }
  866. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurJWT.
  867. func (in *ConjurJWT) DeepCopy() *ConjurJWT {
  868. if in == nil {
  869. return nil
  870. }
  871. out := new(ConjurJWT)
  872. in.DeepCopyInto(out)
  873. return out
  874. }
  875. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  876. func (in *ConjurProvider) DeepCopyInto(out *ConjurProvider) {
  877. *out = *in
  878. if in.CAProvider != nil {
  879. in, out := &in.CAProvider, &out.CAProvider
  880. *out = new(CAProvider)
  881. (*in).DeepCopyInto(*out)
  882. }
  883. in.Auth.DeepCopyInto(&out.Auth)
  884. }
  885. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurProvider.
  886. func (in *ConjurProvider) DeepCopy() *ConjurProvider {
  887. if in == nil {
  888. return nil
  889. }
  890. out := new(ConjurProvider)
  891. in.DeepCopyInto(out)
  892. return out
  893. }
  894. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  895. func (in *DelineaProvider) DeepCopyInto(out *DelineaProvider) {
  896. *out = *in
  897. if in.ClientID != nil {
  898. in, out := &in.ClientID, &out.ClientID
  899. *out = new(DelineaProviderSecretRef)
  900. (*in).DeepCopyInto(*out)
  901. }
  902. if in.ClientSecret != nil {
  903. in, out := &in.ClientSecret, &out.ClientSecret
  904. *out = new(DelineaProviderSecretRef)
  905. (*in).DeepCopyInto(*out)
  906. }
  907. }
  908. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProvider.
  909. func (in *DelineaProvider) DeepCopy() *DelineaProvider {
  910. if in == nil {
  911. return nil
  912. }
  913. out := new(DelineaProvider)
  914. in.DeepCopyInto(out)
  915. return out
  916. }
  917. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  918. func (in *DelineaProviderSecretRef) DeepCopyInto(out *DelineaProviderSecretRef) {
  919. *out = *in
  920. if in.SecretRef != nil {
  921. in, out := &in.SecretRef, &out.SecretRef
  922. *out = new(metav1.SecretKeySelector)
  923. (*in).DeepCopyInto(*out)
  924. }
  925. }
  926. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProviderSecretRef.
  927. func (in *DelineaProviderSecretRef) DeepCopy() *DelineaProviderSecretRef {
  928. if in == nil {
  929. return nil
  930. }
  931. out := new(DelineaProviderSecretRef)
  932. in.DeepCopyInto(out)
  933. return out
  934. }
  935. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  936. func (in *Device42Auth) DeepCopyInto(out *Device42Auth) {
  937. *out = *in
  938. in.SecretRef.DeepCopyInto(&out.SecretRef)
  939. }
  940. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Device42Auth.
  941. func (in *Device42Auth) DeepCopy() *Device42Auth {
  942. if in == nil {
  943. return nil
  944. }
  945. out := new(Device42Auth)
  946. in.DeepCopyInto(out)
  947. return out
  948. }
  949. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  950. func (in *Device42Provider) DeepCopyInto(out *Device42Provider) {
  951. *out = *in
  952. in.Auth.DeepCopyInto(&out.Auth)
  953. }
  954. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Device42Provider.
  955. func (in *Device42Provider) DeepCopy() *Device42Provider {
  956. if in == nil {
  957. return nil
  958. }
  959. out := new(Device42Provider)
  960. in.DeepCopyInto(out)
  961. return out
  962. }
  963. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  964. func (in *Device42SecretRef) DeepCopyInto(out *Device42SecretRef) {
  965. *out = *in
  966. in.Credentials.DeepCopyInto(&out.Credentials)
  967. }
  968. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Device42SecretRef.
  969. func (in *Device42SecretRef) DeepCopy() *Device42SecretRef {
  970. if in == nil {
  971. return nil
  972. }
  973. out := new(Device42SecretRef)
  974. in.DeepCopyInto(out)
  975. return out
  976. }
  977. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  978. func (in *DopplerAuth) DeepCopyInto(out *DopplerAuth) {
  979. *out = *in
  980. in.SecretRef.DeepCopyInto(&out.SecretRef)
  981. }
  982. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuth.
  983. func (in *DopplerAuth) DeepCopy() *DopplerAuth {
  984. if in == nil {
  985. return nil
  986. }
  987. out := new(DopplerAuth)
  988. in.DeepCopyInto(out)
  989. return out
  990. }
  991. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  992. func (in *DopplerAuthSecretRef) DeepCopyInto(out *DopplerAuthSecretRef) {
  993. *out = *in
  994. in.DopplerToken.DeepCopyInto(&out.DopplerToken)
  995. }
  996. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuthSecretRef.
  997. func (in *DopplerAuthSecretRef) DeepCopy() *DopplerAuthSecretRef {
  998. if in == nil {
  999. return nil
  1000. }
  1001. out := new(DopplerAuthSecretRef)
  1002. in.DeepCopyInto(out)
  1003. return out
  1004. }
  1005. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1006. func (in *DopplerProvider) DeepCopyInto(out *DopplerProvider) {
  1007. *out = *in
  1008. if in.Auth != nil {
  1009. in, out := &in.Auth, &out.Auth
  1010. *out = new(DopplerAuth)
  1011. (*in).DeepCopyInto(*out)
  1012. }
  1013. }
  1014. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerProvider.
  1015. func (in *DopplerProvider) DeepCopy() *DopplerProvider {
  1016. if in == nil {
  1017. return nil
  1018. }
  1019. out := new(DopplerProvider)
  1020. in.DeepCopyInto(out)
  1021. return out
  1022. }
  1023. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1024. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  1025. *out = *in
  1026. out.TypeMeta = in.TypeMeta
  1027. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1028. in.Spec.DeepCopyInto(&out.Spec)
  1029. in.Status.DeepCopyInto(&out.Status)
  1030. }
  1031. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  1032. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  1033. if in == nil {
  1034. return nil
  1035. }
  1036. out := new(ExternalSecret)
  1037. in.DeepCopyInto(out)
  1038. return out
  1039. }
  1040. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1041. func (in *ExternalSecret) DeepCopyObject() runtime.Object {
  1042. if c := in.DeepCopy(); c != nil {
  1043. return c
  1044. }
  1045. return nil
  1046. }
  1047. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1048. func (in *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  1049. *out = *in
  1050. out.RemoteRef = in.RemoteRef
  1051. if in.SourceRef != nil {
  1052. in, out := &in.SourceRef, &out.SourceRef
  1053. *out = new(StoreSourceRef)
  1054. (*in).DeepCopyInto(*out)
  1055. }
  1056. }
  1057. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  1058. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  1059. if in == nil {
  1060. return nil
  1061. }
  1062. out := new(ExternalSecretData)
  1063. in.DeepCopyInto(out)
  1064. return out
  1065. }
  1066. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1067. func (in *ExternalSecretDataFromRemoteRef) DeepCopyInto(out *ExternalSecretDataFromRemoteRef) {
  1068. *out = *in
  1069. if in.Extract != nil {
  1070. in, out := &in.Extract, &out.Extract
  1071. *out = new(ExternalSecretDataRemoteRef)
  1072. **out = **in
  1073. }
  1074. if in.Find != nil {
  1075. in, out := &in.Find, &out.Find
  1076. *out = new(ExternalSecretFind)
  1077. (*in).DeepCopyInto(*out)
  1078. }
  1079. if in.Rewrite != nil {
  1080. in, out := &in.Rewrite, &out.Rewrite
  1081. *out = make([]ExternalSecretRewrite, len(*in))
  1082. for i := range *in {
  1083. (*in)[i].DeepCopyInto(&(*out)[i])
  1084. }
  1085. }
  1086. if in.SourceRef != nil {
  1087. in, out := &in.SourceRef, &out.SourceRef
  1088. *out = new(StoreGeneratorSourceRef)
  1089. (*in).DeepCopyInto(*out)
  1090. }
  1091. }
  1092. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataFromRemoteRef.
  1093. func (in *ExternalSecretDataFromRemoteRef) DeepCopy() *ExternalSecretDataFromRemoteRef {
  1094. if in == nil {
  1095. return nil
  1096. }
  1097. out := new(ExternalSecretDataFromRemoteRef)
  1098. in.DeepCopyInto(out)
  1099. return out
  1100. }
  1101. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1102. func (in *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  1103. *out = *in
  1104. }
  1105. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  1106. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  1107. if in == nil {
  1108. return nil
  1109. }
  1110. out := new(ExternalSecretDataRemoteRef)
  1111. in.DeepCopyInto(out)
  1112. return out
  1113. }
  1114. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1115. func (in *ExternalSecretFind) DeepCopyInto(out *ExternalSecretFind) {
  1116. *out = *in
  1117. if in.Path != nil {
  1118. in, out := &in.Path, &out.Path
  1119. *out = new(string)
  1120. **out = **in
  1121. }
  1122. if in.Name != nil {
  1123. in, out := &in.Name, &out.Name
  1124. *out = new(FindName)
  1125. **out = **in
  1126. }
  1127. if in.Tags != nil {
  1128. in, out := &in.Tags, &out.Tags
  1129. *out = make(map[string]string, len(*in))
  1130. for key, val := range *in {
  1131. (*out)[key] = val
  1132. }
  1133. }
  1134. }
  1135. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretFind.
  1136. func (in *ExternalSecretFind) DeepCopy() *ExternalSecretFind {
  1137. if in == nil {
  1138. return nil
  1139. }
  1140. out := new(ExternalSecretFind)
  1141. in.DeepCopyInto(out)
  1142. return out
  1143. }
  1144. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1145. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  1146. *out = *in
  1147. out.TypeMeta = in.TypeMeta
  1148. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1149. if in.Items != nil {
  1150. in, out := &in.Items, &out.Items
  1151. *out = make([]ExternalSecret, len(*in))
  1152. for i := range *in {
  1153. (*in)[i].DeepCopyInto(&(*out)[i])
  1154. }
  1155. }
  1156. }
  1157. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  1158. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  1159. if in == nil {
  1160. return nil
  1161. }
  1162. out := new(ExternalSecretList)
  1163. in.DeepCopyInto(out)
  1164. return out
  1165. }
  1166. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1167. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  1168. if c := in.DeepCopy(); c != nil {
  1169. return c
  1170. }
  1171. return nil
  1172. }
  1173. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1174. func (in *ExternalSecretMetadata) DeepCopyInto(out *ExternalSecretMetadata) {
  1175. *out = *in
  1176. if in.Annotations != nil {
  1177. in, out := &in.Annotations, &out.Annotations
  1178. *out = make(map[string]string, len(*in))
  1179. for key, val := range *in {
  1180. (*out)[key] = val
  1181. }
  1182. }
  1183. if in.Labels != nil {
  1184. in, out := &in.Labels, &out.Labels
  1185. *out = make(map[string]string, len(*in))
  1186. for key, val := range *in {
  1187. (*out)[key] = val
  1188. }
  1189. }
  1190. }
  1191. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretMetadata.
  1192. func (in *ExternalSecretMetadata) DeepCopy() *ExternalSecretMetadata {
  1193. if in == nil {
  1194. return nil
  1195. }
  1196. out := new(ExternalSecretMetadata)
  1197. in.DeepCopyInto(out)
  1198. return out
  1199. }
  1200. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1201. func (in *ExternalSecretRewrite) DeepCopyInto(out *ExternalSecretRewrite) {
  1202. *out = *in
  1203. if in.Regexp != nil {
  1204. in, out := &in.Regexp, &out.Regexp
  1205. *out = new(ExternalSecretRewriteRegexp)
  1206. **out = **in
  1207. }
  1208. if in.Transform != nil {
  1209. in, out := &in.Transform, &out.Transform
  1210. *out = new(ExternalSecretRewriteTransform)
  1211. **out = **in
  1212. }
  1213. }
  1214. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewrite.
  1215. func (in *ExternalSecretRewrite) DeepCopy() *ExternalSecretRewrite {
  1216. if in == nil {
  1217. return nil
  1218. }
  1219. out := new(ExternalSecretRewrite)
  1220. in.DeepCopyInto(out)
  1221. return out
  1222. }
  1223. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1224. func (in *ExternalSecretRewriteRegexp) DeepCopyInto(out *ExternalSecretRewriteRegexp) {
  1225. *out = *in
  1226. }
  1227. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteRegexp.
  1228. func (in *ExternalSecretRewriteRegexp) DeepCopy() *ExternalSecretRewriteRegexp {
  1229. if in == nil {
  1230. return nil
  1231. }
  1232. out := new(ExternalSecretRewriteRegexp)
  1233. in.DeepCopyInto(out)
  1234. return out
  1235. }
  1236. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1237. func (in *ExternalSecretRewriteTransform) DeepCopyInto(out *ExternalSecretRewriteTransform) {
  1238. *out = *in
  1239. }
  1240. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteTransform.
  1241. func (in *ExternalSecretRewriteTransform) DeepCopy() *ExternalSecretRewriteTransform {
  1242. if in == nil {
  1243. return nil
  1244. }
  1245. out := new(ExternalSecretRewriteTransform)
  1246. in.DeepCopyInto(out)
  1247. return out
  1248. }
  1249. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1250. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  1251. *out = *in
  1252. out.SecretStoreRef = in.SecretStoreRef
  1253. in.Target.DeepCopyInto(&out.Target)
  1254. if in.RefreshInterval != nil {
  1255. in, out := &in.RefreshInterval, &out.RefreshInterval
  1256. *out = new(v1.Duration)
  1257. **out = **in
  1258. }
  1259. if in.Data != nil {
  1260. in, out := &in.Data, &out.Data
  1261. *out = make([]ExternalSecretData, len(*in))
  1262. for i := range *in {
  1263. (*in)[i].DeepCopyInto(&(*out)[i])
  1264. }
  1265. }
  1266. if in.DataFrom != nil {
  1267. in, out := &in.DataFrom, &out.DataFrom
  1268. *out = make([]ExternalSecretDataFromRemoteRef, len(*in))
  1269. for i := range *in {
  1270. (*in)[i].DeepCopyInto(&(*out)[i])
  1271. }
  1272. }
  1273. }
  1274. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  1275. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  1276. if in == nil {
  1277. return nil
  1278. }
  1279. out := new(ExternalSecretSpec)
  1280. in.DeepCopyInto(out)
  1281. return out
  1282. }
  1283. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1284. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  1285. *out = *in
  1286. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  1287. if in.Conditions != nil {
  1288. in, out := &in.Conditions, &out.Conditions
  1289. *out = make([]ExternalSecretStatusCondition, len(*in))
  1290. for i := range *in {
  1291. (*in)[i].DeepCopyInto(&(*out)[i])
  1292. }
  1293. }
  1294. out.Binding = in.Binding
  1295. }
  1296. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  1297. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  1298. if in == nil {
  1299. return nil
  1300. }
  1301. out := new(ExternalSecretStatus)
  1302. in.DeepCopyInto(out)
  1303. return out
  1304. }
  1305. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1306. func (in *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  1307. *out = *in
  1308. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  1309. }
  1310. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  1311. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  1312. if in == nil {
  1313. return nil
  1314. }
  1315. out := new(ExternalSecretStatusCondition)
  1316. in.DeepCopyInto(out)
  1317. return out
  1318. }
  1319. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1320. func (in *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  1321. *out = *in
  1322. if in.Template != nil {
  1323. in, out := &in.Template, &out.Template
  1324. *out = new(ExternalSecretTemplate)
  1325. (*in).DeepCopyInto(*out)
  1326. }
  1327. }
  1328. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  1329. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  1330. if in == nil {
  1331. return nil
  1332. }
  1333. out := new(ExternalSecretTarget)
  1334. in.DeepCopyInto(out)
  1335. return out
  1336. }
  1337. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1338. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  1339. *out = *in
  1340. in.Metadata.DeepCopyInto(&out.Metadata)
  1341. if in.Data != nil {
  1342. in, out := &in.Data, &out.Data
  1343. *out = make(map[string]string, len(*in))
  1344. for key, val := range *in {
  1345. (*out)[key] = val
  1346. }
  1347. }
  1348. if in.TemplateFrom != nil {
  1349. in, out := &in.TemplateFrom, &out.TemplateFrom
  1350. *out = make([]TemplateFrom, len(*in))
  1351. for i := range *in {
  1352. (*in)[i].DeepCopyInto(&(*out)[i])
  1353. }
  1354. }
  1355. }
  1356. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  1357. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  1358. if in == nil {
  1359. return nil
  1360. }
  1361. out := new(ExternalSecretTemplate)
  1362. in.DeepCopyInto(out)
  1363. return out
  1364. }
  1365. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1366. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  1367. *out = *in
  1368. if in.Annotations != nil {
  1369. in, out := &in.Annotations, &out.Annotations
  1370. *out = make(map[string]string, len(*in))
  1371. for key, val := range *in {
  1372. (*out)[key] = val
  1373. }
  1374. }
  1375. if in.Labels != nil {
  1376. in, out := &in.Labels, &out.Labels
  1377. *out = make(map[string]string, len(*in))
  1378. for key, val := range *in {
  1379. (*out)[key] = val
  1380. }
  1381. }
  1382. }
  1383. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  1384. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  1385. if in == nil {
  1386. return nil
  1387. }
  1388. out := new(ExternalSecretTemplateMetadata)
  1389. in.DeepCopyInto(out)
  1390. return out
  1391. }
  1392. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1393. func (in *ExternalSecretValidator) DeepCopyInto(out *ExternalSecretValidator) {
  1394. *out = *in
  1395. }
  1396. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretValidator.
  1397. func (in *ExternalSecretValidator) DeepCopy() *ExternalSecretValidator {
  1398. if in == nil {
  1399. return nil
  1400. }
  1401. out := new(ExternalSecretValidator)
  1402. in.DeepCopyInto(out)
  1403. return out
  1404. }
  1405. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1406. func (in *FakeProvider) DeepCopyInto(out *FakeProvider) {
  1407. *out = *in
  1408. if in.Data != nil {
  1409. in, out := &in.Data, &out.Data
  1410. *out = make([]FakeProviderData, len(*in))
  1411. for i := range *in {
  1412. (*in)[i].DeepCopyInto(&(*out)[i])
  1413. }
  1414. }
  1415. }
  1416. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProvider.
  1417. func (in *FakeProvider) DeepCopy() *FakeProvider {
  1418. if in == nil {
  1419. return nil
  1420. }
  1421. out := new(FakeProvider)
  1422. in.DeepCopyInto(out)
  1423. return out
  1424. }
  1425. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1426. func (in *FakeProviderData) DeepCopyInto(out *FakeProviderData) {
  1427. *out = *in
  1428. if in.ValueMap != nil {
  1429. in, out := &in.ValueMap, &out.ValueMap
  1430. *out = make(map[string]string, len(*in))
  1431. for key, val := range *in {
  1432. (*out)[key] = val
  1433. }
  1434. }
  1435. }
  1436. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderData.
  1437. func (in *FakeProviderData) DeepCopy() *FakeProviderData {
  1438. if in == nil {
  1439. return nil
  1440. }
  1441. out := new(FakeProviderData)
  1442. in.DeepCopyInto(out)
  1443. return out
  1444. }
  1445. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1446. func (in *FindName) DeepCopyInto(out *FindName) {
  1447. *out = *in
  1448. }
  1449. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FindName.
  1450. func (in *FindName) DeepCopy() *FindName {
  1451. if in == nil {
  1452. return nil
  1453. }
  1454. out := new(FindName)
  1455. in.DeepCopyInto(out)
  1456. return out
  1457. }
  1458. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1459. func (in *FortanixProvider) DeepCopyInto(out *FortanixProvider) {
  1460. *out = *in
  1461. if in.APIKey != nil {
  1462. in, out := &in.APIKey, &out.APIKey
  1463. *out = new(FortanixProviderSecretRef)
  1464. (*in).DeepCopyInto(*out)
  1465. }
  1466. }
  1467. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FortanixProvider.
  1468. func (in *FortanixProvider) DeepCopy() *FortanixProvider {
  1469. if in == nil {
  1470. return nil
  1471. }
  1472. out := new(FortanixProvider)
  1473. in.DeepCopyInto(out)
  1474. return out
  1475. }
  1476. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1477. func (in *FortanixProviderSecretRef) DeepCopyInto(out *FortanixProviderSecretRef) {
  1478. *out = *in
  1479. if in.SecretRef != nil {
  1480. in, out := &in.SecretRef, &out.SecretRef
  1481. *out = new(metav1.SecretKeySelector)
  1482. (*in).DeepCopyInto(*out)
  1483. }
  1484. }
  1485. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FortanixProviderSecretRef.
  1486. func (in *FortanixProviderSecretRef) DeepCopy() *FortanixProviderSecretRef {
  1487. if in == nil {
  1488. return nil
  1489. }
  1490. out := new(FortanixProviderSecretRef)
  1491. in.DeepCopyInto(out)
  1492. return out
  1493. }
  1494. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1495. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  1496. *out = *in
  1497. if in.SecretRef != nil {
  1498. in, out := &in.SecretRef, &out.SecretRef
  1499. *out = new(GCPSMAuthSecretRef)
  1500. (*in).DeepCopyInto(*out)
  1501. }
  1502. if in.WorkloadIdentity != nil {
  1503. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  1504. *out = new(GCPWorkloadIdentity)
  1505. (*in).DeepCopyInto(*out)
  1506. }
  1507. }
  1508. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  1509. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  1510. if in == nil {
  1511. return nil
  1512. }
  1513. out := new(GCPSMAuth)
  1514. in.DeepCopyInto(out)
  1515. return out
  1516. }
  1517. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1518. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  1519. *out = *in
  1520. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  1521. }
  1522. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  1523. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  1524. if in == nil {
  1525. return nil
  1526. }
  1527. out := new(GCPSMAuthSecretRef)
  1528. in.DeepCopyInto(out)
  1529. return out
  1530. }
  1531. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1532. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  1533. *out = *in
  1534. in.Auth.DeepCopyInto(&out.Auth)
  1535. }
  1536. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  1537. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  1538. if in == nil {
  1539. return nil
  1540. }
  1541. out := new(GCPSMProvider)
  1542. in.DeepCopyInto(out)
  1543. return out
  1544. }
  1545. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1546. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  1547. *out = *in
  1548. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  1549. }
  1550. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  1551. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  1552. if in == nil {
  1553. return nil
  1554. }
  1555. out := new(GCPWorkloadIdentity)
  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 *GeneratorRef) DeepCopyInto(out *GeneratorRef) {
  1561. *out = *in
  1562. }
  1563. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorRef.
  1564. func (in *GeneratorRef) DeepCopy() *GeneratorRef {
  1565. if in == nil {
  1566. return nil
  1567. }
  1568. out := new(GeneratorRef)
  1569. in.DeepCopyInto(out)
  1570. return out
  1571. }
  1572. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1573. func (in *GenericStoreValidator) DeepCopyInto(out *GenericStoreValidator) {
  1574. *out = *in
  1575. }
  1576. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericStoreValidator.
  1577. func (in *GenericStoreValidator) DeepCopy() *GenericStoreValidator {
  1578. if in == nil {
  1579. return nil
  1580. }
  1581. out := new(GenericStoreValidator)
  1582. in.DeepCopyInto(out)
  1583. return out
  1584. }
  1585. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1586. func (in *GitlabAuth) DeepCopyInto(out *GitlabAuth) {
  1587. *out = *in
  1588. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1589. }
  1590. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabAuth.
  1591. func (in *GitlabAuth) DeepCopy() *GitlabAuth {
  1592. if in == nil {
  1593. return nil
  1594. }
  1595. out := new(GitlabAuth)
  1596. in.DeepCopyInto(out)
  1597. return out
  1598. }
  1599. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1600. func (in *GitlabProvider) DeepCopyInto(out *GitlabProvider) {
  1601. *out = *in
  1602. in.Auth.DeepCopyInto(&out.Auth)
  1603. if in.GroupIDs != nil {
  1604. in, out := &in.GroupIDs, &out.GroupIDs
  1605. *out = make([]string, len(*in))
  1606. copy(*out, *in)
  1607. }
  1608. }
  1609. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabProvider.
  1610. func (in *GitlabProvider) DeepCopy() *GitlabProvider {
  1611. if in == nil {
  1612. return nil
  1613. }
  1614. out := new(GitlabProvider)
  1615. in.DeepCopyInto(out)
  1616. return out
  1617. }
  1618. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1619. func (in *GitlabSecretRef) DeepCopyInto(out *GitlabSecretRef) {
  1620. *out = *in
  1621. in.AccessToken.DeepCopyInto(&out.AccessToken)
  1622. }
  1623. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabSecretRef.
  1624. func (in *GitlabSecretRef) DeepCopy() *GitlabSecretRef {
  1625. if in == nil {
  1626. return nil
  1627. }
  1628. out := new(GitlabSecretRef)
  1629. in.DeepCopyInto(out)
  1630. return out
  1631. }
  1632. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1633. func (in *IBMAuth) DeepCopyInto(out *IBMAuth) {
  1634. *out = *in
  1635. if in.SecretRef != nil {
  1636. in, out := &in.SecretRef, &out.SecretRef
  1637. *out = new(IBMAuthSecretRef)
  1638. (*in).DeepCopyInto(*out)
  1639. }
  1640. if in.ContainerAuth != nil {
  1641. in, out := &in.ContainerAuth, &out.ContainerAuth
  1642. *out = new(IBMAuthContainerAuth)
  1643. **out = **in
  1644. }
  1645. }
  1646. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  1647. func (in *IBMAuth) DeepCopy() *IBMAuth {
  1648. if in == nil {
  1649. return nil
  1650. }
  1651. out := new(IBMAuth)
  1652. in.DeepCopyInto(out)
  1653. return out
  1654. }
  1655. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1656. func (in *IBMAuthContainerAuth) DeepCopyInto(out *IBMAuthContainerAuth) {
  1657. *out = *in
  1658. }
  1659. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthContainerAuth.
  1660. func (in *IBMAuthContainerAuth) DeepCopy() *IBMAuthContainerAuth {
  1661. if in == nil {
  1662. return nil
  1663. }
  1664. out := new(IBMAuthContainerAuth)
  1665. in.DeepCopyInto(out)
  1666. return out
  1667. }
  1668. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1669. func (in *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  1670. *out = *in
  1671. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  1672. }
  1673. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  1674. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  1675. if in == nil {
  1676. return nil
  1677. }
  1678. out := new(IBMAuthSecretRef)
  1679. in.DeepCopyInto(out)
  1680. return out
  1681. }
  1682. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1683. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  1684. *out = *in
  1685. in.Auth.DeepCopyInto(&out.Auth)
  1686. if in.ServiceURL != nil {
  1687. in, out := &in.ServiceURL, &out.ServiceURL
  1688. *out = new(string)
  1689. **out = **in
  1690. }
  1691. }
  1692. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  1693. func (in *IBMProvider) DeepCopy() *IBMProvider {
  1694. if in == nil {
  1695. return nil
  1696. }
  1697. out := new(IBMProvider)
  1698. in.DeepCopyInto(out)
  1699. return out
  1700. }
  1701. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1702. func (in *InfisicalAuth) DeepCopyInto(out *InfisicalAuth) {
  1703. *out = *in
  1704. if in.UniversalAuthCredentials != nil {
  1705. in, out := &in.UniversalAuthCredentials, &out.UniversalAuthCredentials
  1706. *out = new(UniversalAuthCredentials)
  1707. (*in).DeepCopyInto(*out)
  1708. }
  1709. }
  1710. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalAuth.
  1711. func (in *InfisicalAuth) DeepCopy() *InfisicalAuth {
  1712. if in == nil {
  1713. return nil
  1714. }
  1715. out := new(InfisicalAuth)
  1716. in.DeepCopyInto(out)
  1717. return out
  1718. }
  1719. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1720. func (in *InfisicalProvider) DeepCopyInto(out *InfisicalProvider) {
  1721. *out = *in
  1722. in.Auth.DeepCopyInto(&out.Auth)
  1723. out.SecretsScope = in.SecretsScope
  1724. }
  1725. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalProvider.
  1726. func (in *InfisicalProvider) DeepCopy() *InfisicalProvider {
  1727. if in == nil {
  1728. return nil
  1729. }
  1730. out := new(InfisicalProvider)
  1731. in.DeepCopyInto(out)
  1732. return out
  1733. }
  1734. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1735. func (in *KeeperSecurityProvider) DeepCopyInto(out *KeeperSecurityProvider) {
  1736. *out = *in
  1737. in.Auth.DeepCopyInto(&out.Auth)
  1738. }
  1739. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeeperSecurityProvider.
  1740. func (in *KeeperSecurityProvider) DeepCopy() *KeeperSecurityProvider {
  1741. if in == nil {
  1742. return nil
  1743. }
  1744. out := new(KeeperSecurityProvider)
  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 *KubernetesAuth) DeepCopyInto(out *KubernetesAuth) {
  1750. *out = *in
  1751. if in.Cert != nil {
  1752. in, out := &in.Cert, &out.Cert
  1753. *out = new(CertAuth)
  1754. (*in).DeepCopyInto(*out)
  1755. }
  1756. if in.Token != nil {
  1757. in, out := &in.Token, &out.Token
  1758. *out = new(TokenAuth)
  1759. (*in).DeepCopyInto(*out)
  1760. }
  1761. if in.ServiceAccount != nil {
  1762. in, out := &in.ServiceAccount, &out.ServiceAccount
  1763. *out = new(metav1.ServiceAccountSelector)
  1764. (*in).DeepCopyInto(*out)
  1765. }
  1766. }
  1767. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuth.
  1768. func (in *KubernetesAuth) DeepCopy() *KubernetesAuth {
  1769. if in == nil {
  1770. return nil
  1771. }
  1772. out := new(KubernetesAuth)
  1773. in.DeepCopyInto(out)
  1774. return out
  1775. }
  1776. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1777. func (in *KubernetesProvider) DeepCopyInto(out *KubernetesProvider) {
  1778. *out = *in
  1779. in.Server.DeepCopyInto(&out.Server)
  1780. in.Auth.DeepCopyInto(&out.Auth)
  1781. if in.AuthRef != nil {
  1782. in, out := &in.AuthRef, &out.AuthRef
  1783. *out = new(metav1.SecretKeySelector)
  1784. (*in).DeepCopyInto(*out)
  1785. }
  1786. }
  1787. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesProvider.
  1788. func (in *KubernetesProvider) DeepCopy() *KubernetesProvider {
  1789. if in == nil {
  1790. return nil
  1791. }
  1792. out := new(KubernetesProvider)
  1793. in.DeepCopyInto(out)
  1794. return out
  1795. }
  1796. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1797. func (in *KubernetesServer) DeepCopyInto(out *KubernetesServer) {
  1798. *out = *in
  1799. if in.CABundle != nil {
  1800. in, out := &in.CABundle, &out.CABundle
  1801. *out = make([]byte, len(*in))
  1802. copy(*out, *in)
  1803. }
  1804. if in.CAProvider != nil {
  1805. in, out := &in.CAProvider, &out.CAProvider
  1806. *out = new(CAProvider)
  1807. (*in).DeepCopyInto(*out)
  1808. }
  1809. }
  1810. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesServer.
  1811. func (in *KubernetesServer) DeepCopy() *KubernetesServer {
  1812. if in == nil {
  1813. return nil
  1814. }
  1815. out := new(KubernetesServer)
  1816. in.DeepCopyInto(out)
  1817. return out
  1818. }
  1819. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1820. func (in *MachineIdentityScopeInWorkspace) DeepCopyInto(out *MachineIdentityScopeInWorkspace) {
  1821. *out = *in
  1822. }
  1823. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineIdentityScopeInWorkspace.
  1824. func (in *MachineIdentityScopeInWorkspace) DeepCopy() *MachineIdentityScopeInWorkspace {
  1825. if in == nil {
  1826. return nil
  1827. }
  1828. out := new(MachineIdentityScopeInWorkspace)
  1829. in.DeepCopyInto(out)
  1830. return out
  1831. }
  1832. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1833. func (in *NoSecretError) DeepCopyInto(out *NoSecretError) {
  1834. *out = *in
  1835. }
  1836. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoSecretError.
  1837. func (in *NoSecretError) DeepCopy() *NoSecretError {
  1838. if in == nil {
  1839. return nil
  1840. }
  1841. out := new(NoSecretError)
  1842. in.DeepCopyInto(out)
  1843. return out
  1844. }
  1845. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1846. func (in *NotModifiedError) DeepCopyInto(out *NotModifiedError) {
  1847. *out = *in
  1848. }
  1849. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NotModifiedError.
  1850. func (in *NotModifiedError) DeepCopy() *NotModifiedError {
  1851. if in == nil {
  1852. return nil
  1853. }
  1854. out := new(NotModifiedError)
  1855. in.DeepCopyInto(out)
  1856. return out
  1857. }
  1858. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1859. func (in *OnboardbaseAuthSecretRef) DeepCopyInto(out *OnboardbaseAuthSecretRef) {
  1860. *out = *in
  1861. in.OnboardbaseAPIKeyRef.DeepCopyInto(&out.OnboardbaseAPIKeyRef)
  1862. in.OnboardbasePasscodeRef.DeepCopyInto(&out.OnboardbasePasscodeRef)
  1863. }
  1864. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnboardbaseAuthSecretRef.
  1865. func (in *OnboardbaseAuthSecretRef) DeepCopy() *OnboardbaseAuthSecretRef {
  1866. if in == nil {
  1867. return nil
  1868. }
  1869. out := new(OnboardbaseAuthSecretRef)
  1870. in.DeepCopyInto(out)
  1871. return out
  1872. }
  1873. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1874. func (in *OnboardbaseProvider) DeepCopyInto(out *OnboardbaseProvider) {
  1875. *out = *in
  1876. if in.Auth != nil {
  1877. in, out := &in.Auth, &out.Auth
  1878. *out = new(OnboardbaseAuthSecretRef)
  1879. (*in).DeepCopyInto(*out)
  1880. }
  1881. }
  1882. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnboardbaseProvider.
  1883. func (in *OnboardbaseProvider) DeepCopy() *OnboardbaseProvider {
  1884. if in == nil {
  1885. return nil
  1886. }
  1887. out := new(OnboardbaseProvider)
  1888. in.DeepCopyInto(out)
  1889. return out
  1890. }
  1891. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1892. func (in *OnePasswordAuth) DeepCopyInto(out *OnePasswordAuth) {
  1893. *out = *in
  1894. if in.SecretRef != nil {
  1895. in, out := &in.SecretRef, &out.SecretRef
  1896. *out = new(OnePasswordAuthSecretRef)
  1897. (*in).DeepCopyInto(*out)
  1898. }
  1899. }
  1900. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuth.
  1901. func (in *OnePasswordAuth) DeepCopy() *OnePasswordAuth {
  1902. if in == nil {
  1903. return nil
  1904. }
  1905. out := new(OnePasswordAuth)
  1906. in.DeepCopyInto(out)
  1907. return out
  1908. }
  1909. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1910. func (in *OnePasswordAuthSecretRef) DeepCopyInto(out *OnePasswordAuthSecretRef) {
  1911. *out = *in
  1912. in.ConnectToken.DeepCopyInto(&out.ConnectToken)
  1913. }
  1914. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuthSecretRef.
  1915. func (in *OnePasswordAuthSecretRef) DeepCopy() *OnePasswordAuthSecretRef {
  1916. if in == nil {
  1917. return nil
  1918. }
  1919. out := new(OnePasswordAuthSecretRef)
  1920. in.DeepCopyInto(out)
  1921. return out
  1922. }
  1923. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1924. func (in *OnePasswordProvider) DeepCopyInto(out *OnePasswordProvider) {
  1925. *out = *in
  1926. if in.Auth != nil {
  1927. in, out := &in.Auth, &out.Auth
  1928. *out = new(OnePasswordAuth)
  1929. (*in).DeepCopyInto(*out)
  1930. }
  1931. if in.Vaults != nil {
  1932. in, out := &in.Vaults, &out.Vaults
  1933. *out = make(map[string]int, len(*in))
  1934. for key, val := range *in {
  1935. (*out)[key] = val
  1936. }
  1937. }
  1938. }
  1939. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordProvider.
  1940. func (in *OnePasswordProvider) DeepCopy() *OnePasswordProvider {
  1941. if in == nil {
  1942. return nil
  1943. }
  1944. out := new(OnePasswordProvider)
  1945. in.DeepCopyInto(out)
  1946. return out
  1947. }
  1948. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1949. func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
  1950. *out = *in
  1951. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1952. }
  1953. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  1954. func (in *OracleAuth) DeepCopy() *OracleAuth {
  1955. if in == nil {
  1956. return nil
  1957. }
  1958. out := new(OracleAuth)
  1959. in.DeepCopyInto(out)
  1960. return out
  1961. }
  1962. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1963. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  1964. *out = *in
  1965. if in.Auth != nil {
  1966. in, out := &in.Auth, &out.Auth
  1967. *out = new(OracleAuth)
  1968. (*in).DeepCopyInto(*out)
  1969. }
  1970. if in.ServiceAccountRef != nil {
  1971. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  1972. *out = new(metav1.ServiceAccountSelector)
  1973. (*in).DeepCopyInto(*out)
  1974. }
  1975. }
  1976. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  1977. func (in *OracleProvider) DeepCopy() *OracleProvider {
  1978. if in == nil {
  1979. return nil
  1980. }
  1981. out := new(OracleProvider)
  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 *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  1987. *out = *in
  1988. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  1989. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  1990. }
  1991. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  1992. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  1993. if in == nil {
  1994. return nil
  1995. }
  1996. out := new(OracleSecretRef)
  1997. in.DeepCopyInto(out)
  1998. return out
  1999. }
  2000. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2001. func (in *PassboltAuth) DeepCopyInto(out *PassboltAuth) {
  2002. *out = *in
  2003. if in.PasswordSecretRef != nil {
  2004. in, out := &in.PasswordSecretRef, &out.PasswordSecretRef
  2005. *out = new(metav1.SecretKeySelector)
  2006. (*in).DeepCopyInto(*out)
  2007. }
  2008. if in.PrivateKeySecretRef != nil {
  2009. in, out := &in.PrivateKeySecretRef, &out.PrivateKeySecretRef
  2010. *out = new(metav1.SecretKeySelector)
  2011. (*in).DeepCopyInto(*out)
  2012. }
  2013. }
  2014. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassboltAuth.
  2015. func (in *PassboltAuth) DeepCopy() *PassboltAuth {
  2016. if in == nil {
  2017. return nil
  2018. }
  2019. out := new(PassboltAuth)
  2020. in.DeepCopyInto(out)
  2021. return out
  2022. }
  2023. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2024. func (in *PassboltProvider) DeepCopyInto(out *PassboltProvider) {
  2025. *out = *in
  2026. if in.Auth != nil {
  2027. in, out := &in.Auth, &out.Auth
  2028. *out = new(PassboltAuth)
  2029. (*in).DeepCopyInto(*out)
  2030. }
  2031. }
  2032. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassboltProvider.
  2033. func (in *PassboltProvider) DeepCopy() *PassboltProvider {
  2034. if in == nil {
  2035. return nil
  2036. }
  2037. out := new(PassboltProvider)
  2038. in.DeepCopyInto(out)
  2039. return out
  2040. }
  2041. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2042. func (in *PasswordDepotAuth) DeepCopyInto(out *PasswordDepotAuth) {
  2043. *out = *in
  2044. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2045. }
  2046. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotAuth.
  2047. func (in *PasswordDepotAuth) DeepCopy() *PasswordDepotAuth {
  2048. if in == nil {
  2049. return nil
  2050. }
  2051. out := new(PasswordDepotAuth)
  2052. in.DeepCopyInto(out)
  2053. return out
  2054. }
  2055. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2056. func (in *PasswordDepotProvider) DeepCopyInto(out *PasswordDepotProvider) {
  2057. *out = *in
  2058. in.Auth.DeepCopyInto(&out.Auth)
  2059. }
  2060. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotProvider.
  2061. func (in *PasswordDepotProvider) DeepCopy() *PasswordDepotProvider {
  2062. if in == nil {
  2063. return nil
  2064. }
  2065. out := new(PasswordDepotProvider)
  2066. in.DeepCopyInto(out)
  2067. return out
  2068. }
  2069. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2070. func (in *PasswordDepotSecretRef) DeepCopyInto(out *PasswordDepotSecretRef) {
  2071. *out = *in
  2072. in.Credentials.DeepCopyInto(&out.Credentials)
  2073. }
  2074. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotSecretRef.
  2075. func (in *PasswordDepotSecretRef) DeepCopy() *PasswordDepotSecretRef {
  2076. if in == nil {
  2077. return nil
  2078. }
  2079. out := new(PasswordDepotSecretRef)
  2080. in.DeepCopyInto(out)
  2081. return out
  2082. }
  2083. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2084. func (in *PreviderAuth) DeepCopyInto(out *PreviderAuth) {
  2085. *out = *in
  2086. if in.SecretRef != nil {
  2087. in, out := &in.SecretRef, &out.SecretRef
  2088. *out = new(PreviderAuthSecretRef)
  2089. (*in).DeepCopyInto(*out)
  2090. }
  2091. }
  2092. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderAuth.
  2093. func (in *PreviderAuth) DeepCopy() *PreviderAuth {
  2094. if in == nil {
  2095. return nil
  2096. }
  2097. out := new(PreviderAuth)
  2098. in.DeepCopyInto(out)
  2099. return out
  2100. }
  2101. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2102. func (in *PreviderAuthSecretRef) DeepCopyInto(out *PreviderAuthSecretRef) {
  2103. *out = *in
  2104. in.AccessToken.DeepCopyInto(&out.AccessToken)
  2105. }
  2106. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderAuthSecretRef.
  2107. func (in *PreviderAuthSecretRef) DeepCopy() *PreviderAuthSecretRef {
  2108. if in == nil {
  2109. return nil
  2110. }
  2111. out := new(PreviderAuthSecretRef)
  2112. in.DeepCopyInto(out)
  2113. return out
  2114. }
  2115. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2116. func (in *PreviderProvider) DeepCopyInto(out *PreviderProvider) {
  2117. *out = *in
  2118. in.Auth.DeepCopyInto(&out.Auth)
  2119. }
  2120. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderProvider.
  2121. func (in *PreviderProvider) DeepCopy() *PreviderProvider {
  2122. if in == nil {
  2123. return nil
  2124. }
  2125. out := new(PreviderProvider)
  2126. in.DeepCopyInto(out)
  2127. return out
  2128. }
  2129. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2130. func (in *PulumiProvider) DeepCopyInto(out *PulumiProvider) {
  2131. *out = *in
  2132. if in.AccessToken != nil {
  2133. in, out := &in.AccessToken, &out.AccessToken
  2134. *out = new(PulumiProviderSecretRef)
  2135. (*in).DeepCopyInto(*out)
  2136. }
  2137. }
  2138. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PulumiProvider.
  2139. func (in *PulumiProvider) DeepCopy() *PulumiProvider {
  2140. if in == nil {
  2141. return nil
  2142. }
  2143. out := new(PulumiProvider)
  2144. in.DeepCopyInto(out)
  2145. return out
  2146. }
  2147. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2148. func (in *PulumiProviderSecretRef) DeepCopyInto(out *PulumiProviderSecretRef) {
  2149. *out = *in
  2150. if in.SecretRef != nil {
  2151. in, out := &in.SecretRef, &out.SecretRef
  2152. *out = new(metav1.SecretKeySelector)
  2153. (*in).DeepCopyInto(*out)
  2154. }
  2155. }
  2156. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PulumiProviderSecretRef.
  2157. func (in *PulumiProviderSecretRef) DeepCopy() *PulumiProviderSecretRef {
  2158. if in == nil {
  2159. return nil
  2160. }
  2161. out := new(PulumiProviderSecretRef)
  2162. in.DeepCopyInto(out)
  2163. return out
  2164. }
  2165. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2166. func (in *ScalewayProvider) DeepCopyInto(out *ScalewayProvider) {
  2167. *out = *in
  2168. if in.AccessKey != nil {
  2169. in, out := &in.AccessKey, &out.AccessKey
  2170. *out = new(ScalewayProviderSecretRef)
  2171. (*in).DeepCopyInto(*out)
  2172. }
  2173. if in.SecretKey != nil {
  2174. in, out := &in.SecretKey, &out.SecretKey
  2175. *out = new(ScalewayProviderSecretRef)
  2176. (*in).DeepCopyInto(*out)
  2177. }
  2178. }
  2179. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProvider.
  2180. func (in *ScalewayProvider) DeepCopy() *ScalewayProvider {
  2181. if in == nil {
  2182. return nil
  2183. }
  2184. out := new(ScalewayProvider)
  2185. in.DeepCopyInto(out)
  2186. return out
  2187. }
  2188. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2189. func (in *ScalewayProviderSecretRef) DeepCopyInto(out *ScalewayProviderSecretRef) {
  2190. *out = *in
  2191. if in.SecretRef != nil {
  2192. in, out := &in.SecretRef, &out.SecretRef
  2193. *out = new(metav1.SecretKeySelector)
  2194. (*in).DeepCopyInto(*out)
  2195. }
  2196. }
  2197. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProviderSecretRef.
  2198. func (in *ScalewayProviderSecretRef) DeepCopy() *ScalewayProviderSecretRef {
  2199. if in == nil {
  2200. return nil
  2201. }
  2202. out := new(ScalewayProviderSecretRef)
  2203. in.DeepCopyInto(out)
  2204. return out
  2205. }
  2206. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2207. func (in *SecretServerProvider) DeepCopyInto(out *SecretServerProvider) {
  2208. *out = *in
  2209. if in.Username != nil {
  2210. in, out := &in.Username, &out.Username
  2211. *out = new(SecretServerProviderRef)
  2212. (*in).DeepCopyInto(*out)
  2213. }
  2214. if in.Password != nil {
  2215. in, out := &in.Password, &out.Password
  2216. *out = new(SecretServerProviderRef)
  2217. (*in).DeepCopyInto(*out)
  2218. }
  2219. }
  2220. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretServerProvider.
  2221. func (in *SecretServerProvider) DeepCopy() *SecretServerProvider {
  2222. if in == nil {
  2223. return nil
  2224. }
  2225. out := new(SecretServerProvider)
  2226. in.DeepCopyInto(out)
  2227. return out
  2228. }
  2229. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2230. func (in *SecretServerProviderRef) DeepCopyInto(out *SecretServerProviderRef) {
  2231. *out = *in
  2232. if in.SecretRef != nil {
  2233. in, out := &in.SecretRef, &out.SecretRef
  2234. *out = new(metav1.SecretKeySelector)
  2235. (*in).DeepCopyInto(*out)
  2236. }
  2237. }
  2238. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretServerProviderRef.
  2239. func (in *SecretServerProviderRef) DeepCopy() *SecretServerProviderRef {
  2240. if in == nil {
  2241. return nil
  2242. }
  2243. out := new(SecretServerProviderRef)
  2244. in.DeepCopyInto(out)
  2245. return out
  2246. }
  2247. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2248. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  2249. *out = *in
  2250. out.TypeMeta = in.TypeMeta
  2251. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  2252. in.Spec.DeepCopyInto(&out.Spec)
  2253. in.Status.DeepCopyInto(&out.Status)
  2254. }
  2255. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  2256. func (in *SecretStore) DeepCopy() *SecretStore {
  2257. if in == nil {
  2258. return nil
  2259. }
  2260. out := new(SecretStore)
  2261. in.DeepCopyInto(out)
  2262. return out
  2263. }
  2264. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  2265. func (in *SecretStore) DeepCopyObject() runtime.Object {
  2266. if c := in.DeepCopy(); c != nil {
  2267. return c
  2268. }
  2269. return nil
  2270. }
  2271. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2272. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  2273. *out = *in
  2274. out.TypeMeta = in.TypeMeta
  2275. in.ListMeta.DeepCopyInto(&out.ListMeta)
  2276. if in.Items != nil {
  2277. in, out := &in.Items, &out.Items
  2278. *out = make([]SecretStore, len(*in))
  2279. for i := range *in {
  2280. (*in)[i].DeepCopyInto(&(*out)[i])
  2281. }
  2282. }
  2283. }
  2284. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  2285. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  2286. if in == nil {
  2287. return nil
  2288. }
  2289. out := new(SecretStoreList)
  2290. in.DeepCopyInto(out)
  2291. return out
  2292. }
  2293. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  2294. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  2295. if c := in.DeepCopy(); c != nil {
  2296. return c
  2297. }
  2298. return nil
  2299. }
  2300. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2301. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  2302. *out = *in
  2303. if in.AWS != nil {
  2304. in, out := &in.AWS, &out.AWS
  2305. *out = new(AWSProvider)
  2306. (*in).DeepCopyInto(*out)
  2307. }
  2308. if in.AzureKV != nil {
  2309. in, out := &in.AzureKV, &out.AzureKV
  2310. *out = new(AzureKVProvider)
  2311. (*in).DeepCopyInto(*out)
  2312. }
  2313. if in.Akeyless != nil {
  2314. in, out := &in.Akeyless, &out.Akeyless
  2315. *out = new(AkeylessProvider)
  2316. (*in).DeepCopyInto(*out)
  2317. }
  2318. if in.BitwardenSecretsManager != nil {
  2319. in, out := &in.BitwardenSecretsManager, &out.BitwardenSecretsManager
  2320. *out = new(BitwardenSecretsManagerProvider)
  2321. (*in).DeepCopyInto(*out)
  2322. }
  2323. if in.Vault != nil {
  2324. in, out := &in.Vault, &out.Vault
  2325. *out = new(VaultProvider)
  2326. (*in).DeepCopyInto(*out)
  2327. }
  2328. if in.GCPSM != nil {
  2329. in, out := &in.GCPSM, &out.GCPSM
  2330. *out = new(GCPSMProvider)
  2331. (*in).DeepCopyInto(*out)
  2332. }
  2333. if in.Oracle != nil {
  2334. in, out := &in.Oracle, &out.Oracle
  2335. *out = new(OracleProvider)
  2336. (*in).DeepCopyInto(*out)
  2337. }
  2338. if in.IBM != nil {
  2339. in, out := &in.IBM, &out.IBM
  2340. *out = new(IBMProvider)
  2341. (*in).DeepCopyInto(*out)
  2342. }
  2343. if in.YandexCertificateManager != nil {
  2344. in, out := &in.YandexCertificateManager, &out.YandexCertificateManager
  2345. *out = new(YandexCertificateManagerProvider)
  2346. (*in).DeepCopyInto(*out)
  2347. }
  2348. if in.YandexLockbox != nil {
  2349. in, out := &in.YandexLockbox, &out.YandexLockbox
  2350. *out = new(YandexLockboxProvider)
  2351. (*in).DeepCopyInto(*out)
  2352. }
  2353. if in.Gitlab != nil {
  2354. in, out := &in.Gitlab, &out.Gitlab
  2355. *out = new(GitlabProvider)
  2356. (*in).DeepCopyInto(*out)
  2357. }
  2358. if in.Alibaba != nil {
  2359. in, out := &in.Alibaba, &out.Alibaba
  2360. *out = new(AlibabaProvider)
  2361. (*in).DeepCopyInto(*out)
  2362. }
  2363. if in.OnePassword != nil {
  2364. in, out := &in.OnePassword, &out.OnePassword
  2365. *out = new(OnePasswordProvider)
  2366. (*in).DeepCopyInto(*out)
  2367. }
  2368. if in.Webhook != nil {
  2369. in, out := &in.Webhook, &out.Webhook
  2370. *out = new(WebhookProvider)
  2371. (*in).DeepCopyInto(*out)
  2372. }
  2373. if in.Kubernetes != nil {
  2374. in, out := &in.Kubernetes, &out.Kubernetes
  2375. *out = new(KubernetesProvider)
  2376. (*in).DeepCopyInto(*out)
  2377. }
  2378. if in.Fake != nil {
  2379. in, out := &in.Fake, &out.Fake
  2380. *out = new(FakeProvider)
  2381. (*in).DeepCopyInto(*out)
  2382. }
  2383. if in.Senhasegura != nil {
  2384. in, out := &in.Senhasegura, &out.Senhasegura
  2385. *out = new(SenhaseguraProvider)
  2386. (*in).DeepCopyInto(*out)
  2387. }
  2388. if in.Scaleway != nil {
  2389. in, out := &in.Scaleway, &out.Scaleway
  2390. *out = new(ScalewayProvider)
  2391. (*in).DeepCopyInto(*out)
  2392. }
  2393. if in.Doppler != nil {
  2394. in, out := &in.Doppler, &out.Doppler
  2395. *out = new(DopplerProvider)
  2396. (*in).DeepCopyInto(*out)
  2397. }
  2398. if in.Previder != nil {
  2399. in, out := &in.Previder, &out.Previder
  2400. *out = new(PreviderProvider)
  2401. (*in).DeepCopyInto(*out)
  2402. }
  2403. if in.Onboardbase != nil {
  2404. in, out := &in.Onboardbase, &out.Onboardbase
  2405. *out = new(OnboardbaseProvider)
  2406. (*in).DeepCopyInto(*out)
  2407. }
  2408. if in.KeeperSecurity != nil {
  2409. in, out := &in.KeeperSecurity, &out.KeeperSecurity
  2410. *out = new(KeeperSecurityProvider)
  2411. (*in).DeepCopyInto(*out)
  2412. }
  2413. if in.Conjur != nil {
  2414. in, out := &in.Conjur, &out.Conjur
  2415. *out = new(ConjurProvider)
  2416. (*in).DeepCopyInto(*out)
  2417. }
  2418. if in.Delinea != nil {
  2419. in, out := &in.Delinea, &out.Delinea
  2420. *out = new(DelineaProvider)
  2421. (*in).DeepCopyInto(*out)
  2422. }
  2423. if in.SecretServer != nil {
  2424. in, out := &in.SecretServer, &out.SecretServer
  2425. *out = new(SecretServerProvider)
  2426. (*in).DeepCopyInto(*out)
  2427. }
  2428. if in.Chef != nil {
  2429. in, out := &in.Chef, &out.Chef
  2430. *out = new(ChefProvider)
  2431. (*in).DeepCopyInto(*out)
  2432. }
  2433. if in.Pulumi != nil {
  2434. in, out := &in.Pulumi, &out.Pulumi
  2435. *out = new(PulumiProvider)
  2436. (*in).DeepCopyInto(*out)
  2437. }
  2438. if in.Fortanix != nil {
  2439. in, out := &in.Fortanix, &out.Fortanix
  2440. *out = new(FortanixProvider)
  2441. (*in).DeepCopyInto(*out)
  2442. }
  2443. if in.PasswordDepot != nil {
  2444. in, out := &in.PasswordDepot, &out.PasswordDepot
  2445. *out = new(PasswordDepotProvider)
  2446. (*in).DeepCopyInto(*out)
  2447. }
  2448. if in.Passbolt != nil {
  2449. in, out := &in.Passbolt, &out.Passbolt
  2450. *out = new(PassboltProvider)
  2451. (*in).DeepCopyInto(*out)
  2452. }
  2453. if in.Device42 != nil {
  2454. in, out := &in.Device42, &out.Device42
  2455. *out = new(Device42Provider)
  2456. (*in).DeepCopyInto(*out)
  2457. }
  2458. if in.Infisical != nil {
  2459. in, out := &in.Infisical, &out.Infisical
  2460. *out = new(InfisicalProvider)
  2461. (*in).DeepCopyInto(*out)
  2462. }
  2463. if in.Beyondtrust != nil {
  2464. in, out := &in.Beyondtrust, &out.Beyondtrust
  2465. *out = new(BeyondtrustProvider)
  2466. (*in).DeepCopyInto(*out)
  2467. }
  2468. }
  2469. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  2470. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  2471. if in == nil {
  2472. return nil
  2473. }
  2474. out := new(SecretStoreProvider)
  2475. in.DeepCopyInto(out)
  2476. return out
  2477. }
  2478. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2479. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  2480. *out = *in
  2481. }
  2482. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  2483. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  2484. if in == nil {
  2485. return nil
  2486. }
  2487. out := new(SecretStoreRef)
  2488. in.DeepCopyInto(out)
  2489. return out
  2490. }
  2491. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2492. func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
  2493. *out = *in
  2494. if in.MaxRetries != nil {
  2495. in, out := &in.MaxRetries, &out.MaxRetries
  2496. *out = new(int32)
  2497. **out = **in
  2498. }
  2499. if in.RetryInterval != nil {
  2500. in, out := &in.RetryInterval, &out.RetryInterval
  2501. *out = new(string)
  2502. **out = **in
  2503. }
  2504. }
  2505. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
  2506. func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
  2507. if in == nil {
  2508. return nil
  2509. }
  2510. out := new(SecretStoreRetrySettings)
  2511. in.DeepCopyInto(out)
  2512. return out
  2513. }
  2514. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2515. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  2516. *out = *in
  2517. if in.Provider != nil {
  2518. in, out := &in.Provider, &out.Provider
  2519. *out = new(SecretStoreProvider)
  2520. (*in).DeepCopyInto(*out)
  2521. }
  2522. if in.RetrySettings != nil {
  2523. in, out := &in.RetrySettings, &out.RetrySettings
  2524. *out = new(SecretStoreRetrySettings)
  2525. (*in).DeepCopyInto(*out)
  2526. }
  2527. if in.Conditions != nil {
  2528. in, out := &in.Conditions, &out.Conditions
  2529. *out = make([]ClusterSecretStoreCondition, len(*in))
  2530. for i := range *in {
  2531. (*in)[i].DeepCopyInto(&(*out)[i])
  2532. }
  2533. }
  2534. }
  2535. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  2536. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  2537. if in == nil {
  2538. return nil
  2539. }
  2540. out := new(SecretStoreSpec)
  2541. in.DeepCopyInto(out)
  2542. return out
  2543. }
  2544. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2545. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  2546. *out = *in
  2547. if in.Conditions != nil {
  2548. in, out := &in.Conditions, &out.Conditions
  2549. *out = make([]SecretStoreStatusCondition, len(*in))
  2550. for i := range *in {
  2551. (*in)[i].DeepCopyInto(&(*out)[i])
  2552. }
  2553. }
  2554. }
  2555. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  2556. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  2557. if in == nil {
  2558. return nil
  2559. }
  2560. out := new(SecretStoreStatus)
  2561. in.DeepCopyInto(out)
  2562. return out
  2563. }
  2564. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2565. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  2566. *out = *in
  2567. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  2568. }
  2569. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  2570. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  2571. if in == nil {
  2572. return nil
  2573. }
  2574. out := new(SecretStoreStatusCondition)
  2575. in.DeepCopyInto(out)
  2576. return out
  2577. }
  2578. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2579. func (in *SecretsManager) DeepCopyInto(out *SecretsManager) {
  2580. *out = *in
  2581. }
  2582. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretsManager.
  2583. func (in *SecretsManager) DeepCopy() *SecretsManager {
  2584. if in == nil {
  2585. return nil
  2586. }
  2587. out := new(SecretsManager)
  2588. in.DeepCopyInto(out)
  2589. return out
  2590. }
  2591. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2592. func (in *SenhaseguraAuth) DeepCopyInto(out *SenhaseguraAuth) {
  2593. *out = *in
  2594. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  2595. }
  2596. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraAuth.
  2597. func (in *SenhaseguraAuth) DeepCopy() *SenhaseguraAuth {
  2598. if in == nil {
  2599. return nil
  2600. }
  2601. out := new(SenhaseguraAuth)
  2602. in.DeepCopyInto(out)
  2603. return out
  2604. }
  2605. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2606. func (in *SenhaseguraProvider) DeepCopyInto(out *SenhaseguraProvider) {
  2607. *out = *in
  2608. in.Auth.DeepCopyInto(&out.Auth)
  2609. }
  2610. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraProvider.
  2611. func (in *SenhaseguraProvider) DeepCopy() *SenhaseguraProvider {
  2612. if in == nil {
  2613. return nil
  2614. }
  2615. out := new(SenhaseguraProvider)
  2616. in.DeepCopyInto(out)
  2617. return out
  2618. }
  2619. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2620. func (in *StoreGeneratorSourceRef) DeepCopyInto(out *StoreGeneratorSourceRef) {
  2621. *out = *in
  2622. if in.SecretStoreRef != nil {
  2623. in, out := &in.SecretStoreRef, &out.SecretStoreRef
  2624. *out = new(SecretStoreRef)
  2625. **out = **in
  2626. }
  2627. if in.GeneratorRef != nil {
  2628. in, out := &in.GeneratorRef, &out.GeneratorRef
  2629. *out = new(GeneratorRef)
  2630. **out = **in
  2631. }
  2632. }
  2633. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreGeneratorSourceRef.
  2634. func (in *StoreGeneratorSourceRef) DeepCopy() *StoreGeneratorSourceRef {
  2635. if in == nil {
  2636. return nil
  2637. }
  2638. out := new(StoreGeneratorSourceRef)
  2639. in.DeepCopyInto(out)
  2640. return out
  2641. }
  2642. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2643. func (in *StoreSourceRef) DeepCopyInto(out *StoreSourceRef) {
  2644. *out = *in
  2645. out.SecretStoreRef = in.SecretStoreRef
  2646. if in.GeneratorRef != nil {
  2647. in, out := &in.GeneratorRef, &out.GeneratorRef
  2648. *out = new(GeneratorRef)
  2649. **out = **in
  2650. }
  2651. }
  2652. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreSourceRef.
  2653. func (in *StoreSourceRef) DeepCopy() *StoreSourceRef {
  2654. if in == nil {
  2655. return nil
  2656. }
  2657. out := new(StoreSourceRef)
  2658. in.DeepCopyInto(out)
  2659. return out
  2660. }
  2661. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2662. func (in *Tag) DeepCopyInto(out *Tag) {
  2663. *out = *in
  2664. }
  2665. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tag.
  2666. func (in *Tag) DeepCopy() *Tag {
  2667. if in == nil {
  2668. return nil
  2669. }
  2670. out := new(Tag)
  2671. in.DeepCopyInto(out)
  2672. return out
  2673. }
  2674. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2675. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  2676. *out = *in
  2677. if in.ConfigMap != nil {
  2678. in, out := &in.ConfigMap, &out.ConfigMap
  2679. *out = new(TemplateRef)
  2680. (*in).DeepCopyInto(*out)
  2681. }
  2682. if in.Secret != nil {
  2683. in, out := &in.Secret, &out.Secret
  2684. *out = new(TemplateRef)
  2685. (*in).DeepCopyInto(*out)
  2686. }
  2687. if in.Literal != nil {
  2688. in, out := &in.Literal, &out.Literal
  2689. *out = new(string)
  2690. **out = **in
  2691. }
  2692. }
  2693. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  2694. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  2695. if in == nil {
  2696. return nil
  2697. }
  2698. out := new(TemplateFrom)
  2699. in.DeepCopyInto(out)
  2700. return out
  2701. }
  2702. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2703. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  2704. *out = *in
  2705. if in.Items != nil {
  2706. in, out := &in.Items, &out.Items
  2707. *out = make([]TemplateRefItem, len(*in))
  2708. copy(*out, *in)
  2709. }
  2710. }
  2711. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  2712. func (in *TemplateRef) DeepCopy() *TemplateRef {
  2713. if in == nil {
  2714. return nil
  2715. }
  2716. out := new(TemplateRef)
  2717. in.DeepCopyInto(out)
  2718. return out
  2719. }
  2720. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2721. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  2722. *out = *in
  2723. }
  2724. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  2725. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  2726. if in == nil {
  2727. return nil
  2728. }
  2729. out := new(TemplateRefItem)
  2730. in.DeepCopyInto(out)
  2731. return out
  2732. }
  2733. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2734. func (in *TokenAuth) DeepCopyInto(out *TokenAuth) {
  2735. *out = *in
  2736. in.BearerToken.DeepCopyInto(&out.BearerToken)
  2737. }
  2738. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenAuth.
  2739. func (in *TokenAuth) DeepCopy() *TokenAuth {
  2740. if in == nil {
  2741. return nil
  2742. }
  2743. out := new(TokenAuth)
  2744. in.DeepCopyInto(out)
  2745. return out
  2746. }
  2747. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2748. func (in *UniversalAuthCredentials) DeepCopyInto(out *UniversalAuthCredentials) {
  2749. *out = *in
  2750. in.ClientID.DeepCopyInto(&out.ClientID)
  2751. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  2752. }
  2753. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UniversalAuthCredentials.
  2754. func (in *UniversalAuthCredentials) DeepCopy() *UniversalAuthCredentials {
  2755. if in == nil {
  2756. return nil
  2757. }
  2758. out := new(UniversalAuthCredentials)
  2759. in.DeepCopyInto(out)
  2760. return out
  2761. }
  2762. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2763. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  2764. *out = *in
  2765. if in.RoleRef != nil {
  2766. in, out := &in.RoleRef, &out.RoleRef
  2767. *out = new(metav1.SecretKeySelector)
  2768. (*in).DeepCopyInto(*out)
  2769. }
  2770. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2771. }
  2772. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  2773. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  2774. if in == nil {
  2775. return nil
  2776. }
  2777. out := new(VaultAppRole)
  2778. in.DeepCopyInto(out)
  2779. return out
  2780. }
  2781. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2782. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  2783. *out = *in
  2784. if in.Namespace != nil {
  2785. in, out := &in.Namespace, &out.Namespace
  2786. *out = new(string)
  2787. **out = **in
  2788. }
  2789. if in.TokenSecretRef != nil {
  2790. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  2791. *out = new(metav1.SecretKeySelector)
  2792. (*in).DeepCopyInto(*out)
  2793. }
  2794. if in.AppRole != nil {
  2795. in, out := &in.AppRole, &out.AppRole
  2796. *out = new(VaultAppRole)
  2797. (*in).DeepCopyInto(*out)
  2798. }
  2799. if in.Kubernetes != nil {
  2800. in, out := &in.Kubernetes, &out.Kubernetes
  2801. *out = new(VaultKubernetesAuth)
  2802. (*in).DeepCopyInto(*out)
  2803. }
  2804. if in.Ldap != nil {
  2805. in, out := &in.Ldap, &out.Ldap
  2806. *out = new(VaultLdapAuth)
  2807. (*in).DeepCopyInto(*out)
  2808. }
  2809. if in.Jwt != nil {
  2810. in, out := &in.Jwt, &out.Jwt
  2811. *out = new(VaultJwtAuth)
  2812. (*in).DeepCopyInto(*out)
  2813. }
  2814. if in.Cert != nil {
  2815. in, out := &in.Cert, &out.Cert
  2816. *out = new(VaultCertAuth)
  2817. (*in).DeepCopyInto(*out)
  2818. }
  2819. if in.Iam != nil {
  2820. in, out := &in.Iam, &out.Iam
  2821. *out = new(VaultIamAuth)
  2822. (*in).DeepCopyInto(*out)
  2823. }
  2824. if in.UserPass != nil {
  2825. in, out := &in.UserPass, &out.UserPass
  2826. *out = new(VaultUserPassAuth)
  2827. (*in).DeepCopyInto(*out)
  2828. }
  2829. }
  2830. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  2831. func (in *VaultAuth) DeepCopy() *VaultAuth {
  2832. if in == nil {
  2833. return nil
  2834. }
  2835. out := new(VaultAuth)
  2836. in.DeepCopyInto(out)
  2837. return out
  2838. }
  2839. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2840. func (in *VaultAwsAuth) DeepCopyInto(out *VaultAwsAuth) {
  2841. *out = *in
  2842. if in.SecretRef != nil {
  2843. in, out := &in.SecretRef, &out.SecretRef
  2844. *out = new(VaultAwsAuthSecretRef)
  2845. (*in).DeepCopyInto(*out)
  2846. }
  2847. if in.JWTAuth != nil {
  2848. in, out := &in.JWTAuth, &out.JWTAuth
  2849. *out = new(VaultAwsJWTAuth)
  2850. (*in).DeepCopyInto(*out)
  2851. }
  2852. }
  2853. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuth.
  2854. func (in *VaultAwsAuth) DeepCopy() *VaultAwsAuth {
  2855. if in == nil {
  2856. return nil
  2857. }
  2858. out := new(VaultAwsAuth)
  2859. in.DeepCopyInto(out)
  2860. return out
  2861. }
  2862. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2863. func (in *VaultAwsAuthSecretRef) DeepCopyInto(out *VaultAwsAuthSecretRef) {
  2864. *out = *in
  2865. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  2866. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  2867. if in.SessionToken != nil {
  2868. in, out := &in.SessionToken, &out.SessionToken
  2869. *out = new(metav1.SecretKeySelector)
  2870. (*in).DeepCopyInto(*out)
  2871. }
  2872. }
  2873. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuthSecretRef.
  2874. func (in *VaultAwsAuthSecretRef) DeepCopy() *VaultAwsAuthSecretRef {
  2875. if in == nil {
  2876. return nil
  2877. }
  2878. out := new(VaultAwsAuthSecretRef)
  2879. in.DeepCopyInto(out)
  2880. return out
  2881. }
  2882. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2883. func (in *VaultAwsJWTAuth) DeepCopyInto(out *VaultAwsJWTAuth) {
  2884. *out = *in
  2885. if in.ServiceAccountRef != nil {
  2886. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  2887. *out = new(metav1.ServiceAccountSelector)
  2888. (*in).DeepCopyInto(*out)
  2889. }
  2890. }
  2891. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsJWTAuth.
  2892. func (in *VaultAwsJWTAuth) DeepCopy() *VaultAwsJWTAuth {
  2893. if in == nil {
  2894. return nil
  2895. }
  2896. out := new(VaultAwsJWTAuth)
  2897. in.DeepCopyInto(out)
  2898. return out
  2899. }
  2900. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2901. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  2902. *out = *in
  2903. in.ClientCert.DeepCopyInto(&out.ClientCert)
  2904. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2905. }
  2906. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  2907. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  2908. if in == nil {
  2909. return nil
  2910. }
  2911. out := new(VaultCertAuth)
  2912. in.DeepCopyInto(out)
  2913. return out
  2914. }
  2915. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2916. func (in *VaultClientTLS) DeepCopyInto(out *VaultClientTLS) {
  2917. *out = *in
  2918. if in.CertSecretRef != nil {
  2919. in, out := &in.CertSecretRef, &out.CertSecretRef
  2920. *out = new(metav1.SecretKeySelector)
  2921. (*in).DeepCopyInto(*out)
  2922. }
  2923. if in.KeySecretRef != nil {
  2924. in, out := &in.KeySecretRef, &out.KeySecretRef
  2925. *out = new(metav1.SecretKeySelector)
  2926. (*in).DeepCopyInto(*out)
  2927. }
  2928. }
  2929. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultClientTLS.
  2930. func (in *VaultClientTLS) DeepCopy() *VaultClientTLS {
  2931. if in == nil {
  2932. return nil
  2933. }
  2934. out := new(VaultClientTLS)
  2935. in.DeepCopyInto(out)
  2936. return out
  2937. }
  2938. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2939. func (in *VaultIamAuth) DeepCopyInto(out *VaultIamAuth) {
  2940. *out = *in
  2941. if in.SecretRef != nil {
  2942. in, out := &in.SecretRef, &out.SecretRef
  2943. *out = new(VaultAwsAuthSecretRef)
  2944. (*in).DeepCopyInto(*out)
  2945. }
  2946. if in.JWTAuth != nil {
  2947. in, out := &in.JWTAuth, &out.JWTAuth
  2948. *out = new(VaultAwsJWTAuth)
  2949. (*in).DeepCopyInto(*out)
  2950. }
  2951. }
  2952. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultIamAuth.
  2953. func (in *VaultIamAuth) DeepCopy() *VaultIamAuth {
  2954. if in == nil {
  2955. return nil
  2956. }
  2957. out := new(VaultIamAuth)
  2958. in.DeepCopyInto(out)
  2959. return out
  2960. }
  2961. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2962. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  2963. *out = *in
  2964. if in.SecretRef != nil {
  2965. in, out := &in.SecretRef, &out.SecretRef
  2966. *out = new(metav1.SecretKeySelector)
  2967. (*in).DeepCopyInto(*out)
  2968. }
  2969. if in.KubernetesServiceAccountToken != nil {
  2970. in, out := &in.KubernetesServiceAccountToken, &out.KubernetesServiceAccountToken
  2971. *out = new(VaultKubernetesServiceAccountTokenAuth)
  2972. (*in).DeepCopyInto(*out)
  2973. }
  2974. }
  2975. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  2976. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  2977. if in == nil {
  2978. return nil
  2979. }
  2980. out := new(VaultJwtAuth)
  2981. in.DeepCopyInto(out)
  2982. return out
  2983. }
  2984. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2985. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  2986. *out = *in
  2987. if in.ServiceAccountRef != nil {
  2988. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  2989. *out = new(metav1.ServiceAccountSelector)
  2990. (*in).DeepCopyInto(*out)
  2991. }
  2992. if in.SecretRef != nil {
  2993. in, out := &in.SecretRef, &out.SecretRef
  2994. *out = new(metav1.SecretKeySelector)
  2995. (*in).DeepCopyInto(*out)
  2996. }
  2997. }
  2998. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  2999. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  3000. if in == nil {
  3001. return nil
  3002. }
  3003. out := new(VaultKubernetesAuth)
  3004. in.DeepCopyInto(out)
  3005. return out
  3006. }
  3007. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3008. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopyInto(out *VaultKubernetesServiceAccountTokenAuth) {
  3009. *out = *in
  3010. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  3011. if in.Audiences != nil {
  3012. in, out := &in.Audiences, &out.Audiences
  3013. *out = new([]string)
  3014. if **in != nil {
  3015. in, out := *in, *out
  3016. *out = make([]string, len(*in))
  3017. copy(*out, *in)
  3018. }
  3019. }
  3020. if in.ExpirationSeconds != nil {
  3021. in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
  3022. *out = new(int64)
  3023. **out = **in
  3024. }
  3025. }
  3026. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesServiceAccountTokenAuth.
  3027. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopy() *VaultKubernetesServiceAccountTokenAuth {
  3028. if in == nil {
  3029. return nil
  3030. }
  3031. out := new(VaultKubernetesServiceAccountTokenAuth)
  3032. in.DeepCopyInto(out)
  3033. return out
  3034. }
  3035. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3036. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  3037. *out = *in
  3038. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3039. }
  3040. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  3041. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  3042. if in == nil {
  3043. return nil
  3044. }
  3045. out := new(VaultLdapAuth)
  3046. in.DeepCopyInto(out)
  3047. return out
  3048. }
  3049. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3050. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  3051. *out = *in
  3052. in.Auth.DeepCopyInto(&out.Auth)
  3053. if in.Path != nil {
  3054. in, out := &in.Path, &out.Path
  3055. *out = new(string)
  3056. **out = **in
  3057. }
  3058. if in.Namespace != nil {
  3059. in, out := &in.Namespace, &out.Namespace
  3060. *out = new(string)
  3061. **out = **in
  3062. }
  3063. if in.CABundle != nil {
  3064. in, out := &in.CABundle, &out.CABundle
  3065. *out = make([]byte, len(*in))
  3066. copy(*out, *in)
  3067. }
  3068. in.ClientTLS.DeepCopyInto(&out.ClientTLS)
  3069. if in.CAProvider != nil {
  3070. in, out := &in.CAProvider, &out.CAProvider
  3071. *out = new(CAProvider)
  3072. (*in).DeepCopyInto(*out)
  3073. }
  3074. if in.Headers != nil {
  3075. in, out := &in.Headers, &out.Headers
  3076. *out = make(map[string]string, len(*in))
  3077. for key, val := range *in {
  3078. (*out)[key] = val
  3079. }
  3080. }
  3081. }
  3082. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  3083. func (in *VaultProvider) DeepCopy() *VaultProvider {
  3084. if in == nil {
  3085. return nil
  3086. }
  3087. out := new(VaultProvider)
  3088. in.DeepCopyInto(out)
  3089. return out
  3090. }
  3091. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3092. func (in *VaultUserPassAuth) DeepCopyInto(out *VaultUserPassAuth) {
  3093. *out = *in
  3094. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3095. }
  3096. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultUserPassAuth.
  3097. func (in *VaultUserPassAuth) DeepCopy() *VaultUserPassAuth {
  3098. if in == nil {
  3099. return nil
  3100. }
  3101. out := new(VaultUserPassAuth)
  3102. in.DeepCopyInto(out)
  3103. return out
  3104. }
  3105. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3106. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  3107. *out = *in
  3108. if in.Namespace != nil {
  3109. in, out := &in.Namespace, &out.Namespace
  3110. *out = new(string)
  3111. **out = **in
  3112. }
  3113. }
  3114. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  3115. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  3116. if in == nil {
  3117. return nil
  3118. }
  3119. out := new(WebhookCAProvider)
  3120. in.DeepCopyInto(out)
  3121. return out
  3122. }
  3123. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3124. func (in *WebhookProvider) DeepCopyInto(out *WebhookProvider) {
  3125. *out = *in
  3126. if in.Headers != nil {
  3127. in, out := &in.Headers, &out.Headers
  3128. *out = make(map[string]string, len(*in))
  3129. for key, val := range *in {
  3130. (*out)[key] = val
  3131. }
  3132. }
  3133. if in.Timeout != nil {
  3134. in, out := &in.Timeout, &out.Timeout
  3135. *out = new(v1.Duration)
  3136. **out = **in
  3137. }
  3138. out.Result = in.Result
  3139. if in.Secrets != nil {
  3140. in, out := &in.Secrets, &out.Secrets
  3141. *out = make([]WebhookSecret, len(*in))
  3142. for i := range *in {
  3143. (*in)[i].DeepCopyInto(&(*out)[i])
  3144. }
  3145. }
  3146. if in.CABundle != nil {
  3147. in, out := &in.CABundle, &out.CABundle
  3148. *out = make([]byte, len(*in))
  3149. copy(*out, *in)
  3150. }
  3151. if in.CAProvider != nil {
  3152. in, out := &in.CAProvider, &out.CAProvider
  3153. *out = new(WebhookCAProvider)
  3154. (*in).DeepCopyInto(*out)
  3155. }
  3156. }
  3157. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookProvider.
  3158. func (in *WebhookProvider) DeepCopy() *WebhookProvider {
  3159. if in == nil {
  3160. return nil
  3161. }
  3162. out := new(WebhookProvider)
  3163. in.DeepCopyInto(out)
  3164. return out
  3165. }
  3166. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3167. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  3168. *out = *in
  3169. }
  3170. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  3171. func (in *WebhookResult) DeepCopy() *WebhookResult {
  3172. if in == nil {
  3173. return nil
  3174. }
  3175. out := new(WebhookResult)
  3176. in.DeepCopyInto(out)
  3177. return out
  3178. }
  3179. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3180. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  3181. *out = *in
  3182. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3183. }
  3184. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  3185. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  3186. if in == nil {
  3187. return nil
  3188. }
  3189. out := new(WebhookSecret)
  3190. in.DeepCopyInto(out)
  3191. return out
  3192. }
  3193. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3194. func (in *YandexCertificateManagerAuth) DeepCopyInto(out *YandexCertificateManagerAuth) {
  3195. *out = *in
  3196. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  3197. }
  3198. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerAuth.
  3199. func (in *YandexCertificateManagerAuth) DeepCopy() *YandexCertificateManagerAuth {
  3200. if in == nil {
  3201. return nil
  3202. }
  3203. out := new(YandexCertificateManagerAuth)
  3204. in.DeepCopyInto(out)
  3205. return out
  3206. }
  3207. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3208. func (in *YandexCertificateManagerCAProvider) DeepCopyInto(out *YandexCertificateManagerCAProvider) {
  3209. *out = *in
  3210. in.Certificate.DeepCopyInto(&out.Certificate)
  3211. }
  3212. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerCAProvider.
  3213. func (in *YandexCertificateManagerCAProvider) DeepCopy() *YandexCertificateManagerCAProvider {
  3214. if in == nil {
  3215. return nil
  3216. }
  3217. out := new(YandexCertificateManagerCAProvider)
  3218. in.DeepCopyInto(out)
  3219. return out
  3220. }
  3221. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3222. func (in *YandexCertificateManagerProvider) DeepCopyInto(out *YandexCertificateManagerProvider) {
  3223. *out = *in
  3224. in.Auth.DeepCopyInto(&out.Auth)
  3225. if in.CAProvider != nil {
  3226. in, out := &in.CAProvider, &out.CAProvider
  3227. *out = new(YandexCertificateManagerCAProvider)
  3228. (*in).DeepCopyInto(*out)
  3229. }
  3230. }
  3231. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerProvider.
  3232. func (in *YandexCertificateManagerProvider) DeepCopy() *YandexCertificateManagerProvider {
  3233. if in == nil {
  3234. return nil
  3235. }
  3236. out := new(YandexCertificateManagerProvider)
  3237. in.DeepCopyInto(out)
  3238. return out
  3239. }
  3240. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3241. func (in *YandexLockboxAuth) DeepCopyInto(out *YandexLockboxAuth) {
  3242. *out = *in
  3243. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  3244. }
  3245. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxAuth.
  3246. func (in *YandexLockboxAuth) DeepCopy() *YandexLockboxAuth {
  3247. if in == nil {
  3248. return nil
  3249. }
  3250. out := new(YandexLockboxAuth)
  3251. in.DeepCopyInto(out)
  3252. return out
  3253. }
  3254. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3255. func (in *YandexLockboxCAProvider) DeepCopyInto(out *YandexLockboxCAProvider) {
  3256. *out = *in
  3257. in.Certificate.DeepCopyInto(&out.Certificate)
  3258. }
  3259. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxCAProvider.
  3260. func (in *YandexLockboxCAProvider) DeepCopy() *YandexLockboxCAProvider {
  3261. if in == nil {
  3262. return nil
  3263. }
  3264. out := new(YandexLockboxCAProvider)
  3265. in.DeepCopyInto(out)
  3266. return out
  3267. }
  3268. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3269. func (in *YandexLockboxProvider) DeepCopyInto(out *YandexLockboxProvider) {
  3270. *out = *in
  3271. in.Auth.DeepCopyInto(&out.Auth)
  3272. if in.CAProvider != nil {
  3273. in, out := &in.CAProvider, &out.CAProvider
  3274. *out = new(YandexLockboxCAProvider)
  3275. (*in).DeepCopyInto(*out)
  3276. }
  3277. }
  3278. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxProvider.
  3279. func (in *YandexLockboxProvider) DeepCopy() *YandexLockboxProvider {
  3280. if in == nil {
  3281. return nil
  3282. }
  3283. out := new(YandexLockboxProvider)
  3284. in.DeepCopyInto(out)
  3285. return out
  3286. }