zz_generated.deepcopy.go 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515
  1. //go:build !ignore_autogenerated
  2. /*
  3. Copyright © 2025 ESO Maintainer Team
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. https://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. // Code generated by controller-gen. DO NOT EDIT.
  15. package v1
  16. import (
  17. apismetav1 "github.com/external-secrets/external-secrets/apis/meta/v1"
  18. metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
  19. "k8s.io/apimachinery/pkg/runtime"
  20. )
  21. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  22. func (in *AWSAuth) DeepCopyInto(out *AWSAuth) {
  23. *out = *in
  24. if in.SecretRef != nil {
  25. in, out := &in.SecretRef, &out.SecretRef
  26. *out = new(AWSAuthSecretRef)
  27. (*in).DeepCopyInto(*out)
  28. }
  29. if in.JWTAuth != nil {
  30. in, out := &in.JWTAuth, &out.JWTAuth
  31. *out = new(AWSJWTAuth)
  32. (*in).DeepCopyInto(*out)
  33. }
  34. }
  35. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  36. func (in *AWSAuth) DeepCopy() *AWSAuth {
  37. if in == nil {
  38. return nil
  39. }
  40. out := new(AWSAuth)
  41. in.DeepCopyInto(out)
  42. return out
  43. }
  44. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  45. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  46. *out = *in
  47. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  48. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  49. if in.SessionToken != nil {
  50. in, out := &in.SessionToken, &out.SessionToken
  51. *out = new(apismetav1.SecretKeySelector)
  52. (*in).DeepCopyInto(*out)
  53. }
  54. }
  55. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  56. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  57. if in == nil {
  58. return nil
  59. }
  60. out := new(AWSAuthSecretRef)
  61. in.DeepCopyInto(out)
  62. return out
  63. }
  64. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  65. func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  66. *out = *in
  67. if in.ServiceAccountRef != nil {
  68. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  69. *out = new(apismetav1.ServiceAccountSelector)
  70. (*in).DeepCopyInto(*out)
  71. }
  72. }
  73. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  74. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  75. if in == nil {
  76. return nil
  77. }
  78. out := new(AWSJWTAuth)
  79. in.DeepCopyInto(out)
  80. return out
  81. }
  82. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  83. func (in *AWSProvider) DeepCopyInto(out *AWSProvider) {
  84. *out = *in
  85. in.Auth.DeepCopyInto(&out.Auth)
  86. if in.AdditionalRoles != nil {
  87. in, out := &in.AdditionalRoles, &out.AdditionalRoles
  88. *out = make([]string, len(*in))
  89. copy(*out, *in)
  90. }
  91. if in.SessionTags != nil {
  92. in, out := &in.SessionTags, &out.SessionTags
  93. *out = make([]*Tag, len(*in))
  94. for i := range *in {
  95. if (*in)[i] != nil {
  96. in, out := &(*in)[i], &(*out)[i]
  97. *out = new(Tag)
  98. **out = **in
  99. }
  100. }
  101. }
  102. if in.SecretsManager != nil {
  103. in, out := &in.SecretsManager, &out.SecretsManager
  104. *out = new(SecretsManager)
  105. **out = **in
  106. }
  107. if in.TransitiveTagKeys != nil {
  108. in, out := &in.TransitiveTagKeys, &out.TransitiveTagKeys
  109. *out = make([]string, len(*in))
  110. copy(*out, *in)
  111. }
  112. }
  113. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSProvider.
  114. func (in *AWSProvider) DeepCopy() *AWSProvider {
  115. if in == nil {
  116. return nil
  117. }
  118. out := new(AWSProvider)
  119. in.DeepCopyInto(out)
  120. return out
  121. }
  122. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  123. func (in *AkeylessAuth) DeepCopyInto(out *AkeylessAuth) {
  124. *out = *in
  125. in.SecretRef.DeepCopyInto(&out.SecretRef)
  126. if in.KubernetesAuth != nil {
  127. in, out := &in.KubernetesAuth, &out.KubernetesAuth
  128. *out = new(AkeylessKubernetesAuth)
  129. (*in).DeepCopyInto(*out)
  130. }
  131. }
  132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuth.
  133. func (in *AkeylessAuth) DeepCopy() *AkeylessAuth {
  134. if in == nil {
  135. return nil
  136. }
  137. out := new(AkeylessAuth)
  138. in.DeepCopyInto(out)
  139. return out
  140. }
  141. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  142. func (in *AkeylessAuthSecretRef) DeepCopyInto(out *AkeylessAuthSecretRef) {
  143. *out = *in
  144. in.AccessID.DeepCopyInto(&out.AccessID)
  145. in.AccessType.DeepCopyInto(&out.AccessType)
  146. in.AccessTypeParam.DeepCopyInto(&out.AccessTypeParam)
  147. }
  148. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessAuthSecretRef.
  149. func (in *AkeylessAuthSecretRef) DeepCopy() *AkeylessAuthSecretRef {
  150. if in == nil {
  151. return nil
  152. }
  153. out := new(AkeylessAuthSecretRef)
  154. in.DeepCopyInto(out)
  155. return out
  156. }
  157. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  158. func (in *AkeylessKubernetesAuth) DeepCopyInto(out *AkeylessKubernetesAuth) {
  159. *out = *in
  160. if in.ServiceAccountRef != nil {
  161. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  162. *out = new(apismetav1.ServiceAccountSelector)
  163. (*in).DeepCopyInto(*out)
  164. }
  165. if in.SecretRef != nil {
  166. in, out := &in.SecretRef, &out.SecretRef
  167. *out = new(apismetav1.SecretKeySelector)
  168. (*in).DeepCopyInto(*out)
  169. }
  170. }
  171. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessKubernetesAuth.
  172. func (in *AkeylessKubernetesAuth) DeepCopy() *AkeylessKubernetesAuth {
  173. if in == nil {
  174. return nil
  175. }
  176. out := new(AkeylessKubernetesAuth)
  177. in.DeepCopyInto(out)
  178. return out
  179. }
  180. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  181. func (in *AkeylessProvider) DeepCopyInto(out *AkeylessProvider) {
  182. *out = *in
  183. if in.AkeylessGWApiURL != nil {
  184. in, out := &in.AkeylessGWApiURL, &out.AkeylessGWApiURL
  185. *out = new(string)
  186. **out = **in
  187. }
  188. if in.Auth != nil {
  189. in, out := &in.Auth, &out.Auth
  190. *out = new(AkeylessAuth)
  191. (*in).DeepCopyInto(*out)
  192. }
  193. if in.CABundle != nil {
  194. in, out := &in.CABundle, &out.CABundle
  195. *out = make([]byte, len(*in))
  196. copy(*out, *in)
  197. }
  198. if in.CAProvider != nil {
  199. in, out := &in.CAProvider, &out.CAProvider
  200. *out = new(CAProvider)
  201. (*in).DeepCopyInto(*out)
  202. }
  203. }
  204. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AkeylessProvider.
  205. func (in *AkeylessProvider) DeepCopy() *AkeylessProvider {
  206. if in == nil {
  207. return nil
  208. }
  209. out := new(AkeylessProvider)
  210. in.DeepCopyInto(out)
  211. return out
  212. }
  213. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  214. func (in *AuthorizationProtocol) DeepCopyInto(out *AuthorizationProtocol) {
  215. *out = *in
  216. if in.NTLM != nil {
  217. in, out := &in.NTLM, &out.NTLM
  218. *out = new(NTLMProtocol)
  219. (*in).DeepCopyInto(*out)
  220. }
  221. }
  222. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationProtocol.
  223. func (in *AuthorizationProtocol) DeepCopy() *AuthorizationProtocol {
  224. if in == nil {
  225. return nil
  226. }
  227. out := new(AuthorizationProtocol)
  228. in.DeepCopyInto(out)
  229. return out
  230. }
  231. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  232. func (in *AwsAuthCredentials) DeepCopyInto(out *AwsAuthCredentials) {
  233. *out = *in
  234. in.IdentityID.DeepCopyInto(&out.IdentityID)
  235. }
  236. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AwsAuthCredentials.
  237. func (in *AwsAuthCredentials) DeepCopy() *AwsAuthCredentials {
  238. if in == nil {
  239. return nil
  240. }
  241. out := new(AwsAuthCredentials)
  242. in.DeepCopyInto(out)
  243. return out
  244. }
  245. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  246. func (in *AwsCredentialsConfig) DeepCopyInto(out *AwsCredentialsConfig) {
  247. *out = *in
  248. if in.AwsCredentialsSecretRef != nil {
  249. in, out := &in.AwsCredentialsSecretRef, &out.AwsCredentialsSecretRef
  250. *out = new(SecretReference)
  251. **out = **in
  252. }
  253. }
  254. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AwsCredentialsConfig.
  255. func (in *AwsCredentialsConfig) DeepCopy() *AwsCredentialsConfig {
  256. if in == nil {
  257. return nil
  258. }
  259. out := new(AwsCredentialsConfig)
  260. in.DeepCopyInto(out)
  261. return out
  262. }
  263. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  264. func (in *AzureAuthCredentials) DeepCopyInto(out *AzureAuthCredentials) {
  265. *out = *in
  266. in.IdentityID.DeepCopyInto(&out.IdentityID)
  267. in.Resource.DeepCopyInto(&out.Resource)
  268. }
  269. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureAuthCredentials.
  270. func (in *AzureAuthCredentials) DeepCopy() *AzureAuthCredentials {
  271. if in == nil {
  272. return nil
  273. }
  274. out := new(AzureAuthCredentials)
  275. in.DeepCopyInto(out)
  276. return out
  277. }
  278. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  279. func (in *AzureCustomCloudConfig) DeepCopyInto(out *AzureCustomCloudConfig) {
  280. *out = *in
  281. if in.KeyVaultEndpoint != nil {
  282. in, out := &in.KeyVaultEndpoint, &out.KeyVaultEndpoint
  283. *out = new(string)
  284. **out = **in
  285. }
  286. if in.KeyVaultDNSSuffix != nil {
  287. in, out := &in.KeyVaultDNSSuffix, &out.KeyVaultDNSSuffix
  288. *out = new(string)
  289. **out = **in
  290. }
  291. if in.ResourceManagerEndpoint != nil {
  292. in, out := &in.ResourceManagerEndpoint, &out.ResourceManagerEndpoint
  293. *out = new(string)
  294. **out = **in
  295. }
  296. }
  297. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureCustomCloudConfig.
  298. func (in *AzureCustomCloudConfig) DeepCopy() *AzureCustomCloudConfig {
  299. if in == nil {
  300. return nil
  301. }
  302. out := new(AzureCustomCloudConfig)
  303. in.DeepCopyInto(out)
  304. return out
  305. }
  306. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  307. func (in *AzureKVAuth) DeepCopyInto(out *AzureKVAuth) {
  308. *out = *in
  309. if in.ClientID != nil {
  310. in, out := &in.ClientID, &out.ClientID
  311. *out = new(apismetav1.SecretKeySelector)
  312. (*in).DeepCopyInto(*out)
  313. }
  314. if in.TenantID != nil {
  315. in, out := &in.TenantID, &out.TenantID
  316. *out = new(apismetav1.SecretKeySelector)
  317. (*in).DeepCopyInto(*out)
  318. }
  319. if in.ClientSecret != nil {
  320. in, out := &in.ClientSecret, &out.ClientSecret
  321. *out = new(apismetav1.SecretKeySelector)
  322. (*in).DeepCopyInto(*out)
  323. }
  324. if in.ClientCertificate != nil {
  325. in, out := &in.ClientCertificate, &out.ClientCertificate
  326. *out = new(apismetav1.SecretKeySelector)
  327. (*in).DeepCopyInto(*out)
  328. }
  329. }
  330. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVAuth.
  331. func (in *AzureKVAuth) DeepCopy() *AzureKVAuth {
  332. if in == nil {
  333. return nil
  334. }
  335. out := new(AzureKVAuth)
  336. in.DeepCopyInto(out)
  337. return out
  338. }
  339. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  340. func (in *AzureKVProvider) DeepCopyInto(out *AzureKVProvider) {
  341. *out = *in
  342. if in.AuthType != nil {
  343. in, out := &in.AuthType, &out.AuthType
  344. *out = new(AzureAuthType)
  345. **out = **in
  346. }
  347. if in.VaultURL != nil {
  348. in, out := &in.VaultURL, &out.VaultURL
  349. *out = new(string)
  350. **out = **in
  351. }
  352. if in.TenantID != nil {
  353. in, out := &in.TenantID, &out.TenantID
  354. *out = new(string)
  355. **out = **in
  356. }
  357. if in.AuthSecretRef != nil {
  358. in, out := &in.AuthSecretRef, &out.AuthSecretRef
  359. *out = new(AzureKVAuth)
  360. (*in).DeepCopyInto(*out)
  361. }
  362. if in.ServiceAccountRef != nil {
  363. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  364. *out = new(apismetav1.ServiceAccountSelector)
  365. (*in).DeepCopyInto(*out)
  366. }
  367. if in.IdentityID != nil {
  368. in, out := &in.IdentityID, &out.IdentityID
  369. *out = new(string)
  370. **out = **in
  371. }
  372. if in.UseAzureSDK != nil {
  373. in, out := &in.UseAzureSDK, &out.UseAzureSDK
  374. *out = new(bool)
  375. **out = **in
  376. }
  377. if in.CustomCloudConfig != nil {
  378. in, out := &in.CustomCloudConfig, &out.CustomCloudConfig
  379. *out = new(AzureCustomCloudConfig)
  380. (*in).DeepCopyInto(*out)
  381. }
  382. }
  383. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureKVProvider.
  384. func (in *AzureKVProvider) DeepCopy() *AzureKVProvider {
  385. if in == nil {
  386. return nil
  387. }
  388. out := new(AzureKVProvider)
  389. in.DeepCopyInto(out)
  390. return out
  391. }
  392. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  393. func (in *BarbicanAuth) DeepCopyInto(out *BarbicanAuth) {
  394. *out = *in
  395. in.Username.DeepCopyInto(&out.Username)
  396. in.Password.DeepCopyInto(&out.Password)
  397. }
  398. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BarbicanAuth.
  399. func (in *BarbicanAuth) DeepCopy() *BarbicanAuth {
  400. if in == nil {
  401. return nil
  402. }
  403. out := new(BarbicanAuth)
  404. in.DeepCopyInto(out)
  405. return out
  406. }
  407. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  408. func (in *BarbicanProvider) DeepCopyInto(out *BarbicanProvider) {
  409. *out = *in
  410. in.Auth.DeepCopyInto(&out.Auth)
  411. }
  412. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BarbicanProvider.
  413. func (in *BarbicanProvider) DeepCopy() *BarbicanProvider {
  414. if in == nil {
  415. return nil
  416. }
  417. out := new(BarbicanProvider)
  418. in.DeepCopyInto(out)
  419. return out
  420. }
  421. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  422. func (in *BarbicanProviderPasswordRef) DeepCopyInto(out *BarbicanProviderPasswordRef) {
  423. *out = *in
  424. if in.SecretRef != nil {
  425. in, out := &in.SecretRef, &out.SecretRef
  426. *out = new(apismetav1.SecretKeySelector)
  427. (*in).DeepCopyInto(*out)
  428. }
  429. }
  430. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BarbicanProviderPasswordRef.
  431. func (in *BarbicanProviderPasswordRef) DeepCopy() *BarbicanProviderPasswordRef {
  432. if in == nil {
  433. return nil
  434. }
  435. out := new(BarbicanProviderPasswordRef)
  436. in.DeepCopyInto(out)
  437. return out
  438. }
  439. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  440. func (in *BarbicanProviderUsernameRef) DeepCopyInto(out *BarbicanProviderUsernameRef) {
  441. *out = *in
  442. if in.SecretRef != nil {
  443. in, out := &in.SecretRef, &out.SecretRef
  444. *out = new(apismetav1.SecretKeySelector)
  445. (*in).DeepCopyInto(*out)
  446. }
  447. }
  448. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BarbicanProviderUsernameRef.
  449. func (in *BarbicanProviderUsernameRef) DeepCopy() *BarbicanProviderUsernameRef {
  450. if in == nil {
  451. return nil
  452. }
  453. out := new(BarbicanProviderUsernameRef)
  454. in.DeepCopyInto(out)
  455. return out
  456. }
  457. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  458. func (in *BeyondTrustProviderSecretRef) DeepCopyInto(out *BeyondTrustProviderSecretRef) {
  459. *out = *in
  460. if in.SecretRef != nil {
  461. in, out := &in.SecretRef, &out.SecretRef
  462. *out = new(apismetav1.SecretKeySelector)
  463. (*in).DeepCopyInto(*out)
  464. }
  465. }
  466. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondTrustProviderSecretRef.
  467. func (in *BeyondTrustProviderSecretRef) DeepCopy() *BeyondTrustProviderSecretRef {
  468. if in == nil {
  469. return nil
  470. }
  471. out := new(BeyondTrustProviderSecretRef)
  472. in.DeepCopyInto(out)
  473. return out
  474. }
  475. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  476. func (in *BeyondtrustAuth) DeepCopyInto(out *BeyondtrustAuth) {
  477. *out = *in
  478. if in.APIKey != nil {
  479. in, out := &in.APIKey, &out.APIKey
  480. *out = new(BeyondTrustProviderSecretRef)
  481. (*in).DeepCopyInto(*out)
  482. }
  483. if in.ClientID != nil {
  484. in, out := &in.ClientID, &out.ClientID
  485. *out = new(BeyondTrustProviderSecretRef)
  486. (*in).DeepCopyInto(*out)
  487. }
  488. if in.ClientSecret != nil {
  489. in, out := &in.ClientSecret, &out.ClientSecret
  490. *out = new(BeyondTrustProviderSecretRef)
  491. (*in).DeepCopyInto(*out)
  492. }
  493. if in.Certificate != nil {
  494. in, out := &in.Certificate, &out.Certificate
  495. *out = new(BeyondTrustProviderSecretRef)
  496. (*in).DeepCopyInto(*out)
  497. }
  498. if in.CertificateKey != nil {
  499. in, out := &in.CertificateKey, &out.CertificateKey
  500. *out = new(BeyondTrustProviderSecretRef)
  501. (*in).DeepCopyInto(*out)
  502. }
  503. }
  504. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustAuth.
  505. func (in *BeyondtrustAuth) DeepCopy() *BeyondtrustAuth {
  506. if in == nil {
  507. return nil
  508. }
  509. out := new(BeyondtrustAuth)
  510. in.DeepCopyInto(out)
  511. return out
  512. }
  513. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  514. func (in *BeyondtrustProvider) DeepCopyInto(out *BeyondtrustProvider) {
  515. *out = *in
  516. if in.Auth != nil {
  517. in, out := &in.Auth, &out.Auth
  518. *out = new(BeyondtrustAuth)
  519. (*in).DeepCopyInto(*out)
  520. }
  521. if in.Server != nil {
  522. in, out := &in.Server, &out.Server
  523. *out = new(BeyondtrustServer)
  524. **out = **in
  525. }
  526. }
  527. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustProvider.
  528. func (in *BeyondtrustProvider) DeepCopy() *BeyondtrustProvider {
  529. if in == nil {
  530. return nil
  531. }
  532. out := new(BeyondtrustProvider)
  533. in.DeepCopyInto(out)
  534. return out
  535. }
  536. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  537. func (in *BeyondtrustServer) DeepCopyInto(out *BeyondtrustServer) {
  538. *out = *in
  539. }
  540. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BeyondtrustServer.
  541. func (in *BeyondtrustServer) DeepCopy() *BeyondtrustServer {
  542. if in == nil {
  543. return nil
  544. }
  545. out := new(BeyondtrustServer)
  546. in.DeepCopyInto(out)
  547. return out
  548. }
  549. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  550. func (in *BitwardenSecretsManagerAuth) DeepCopyInto(out *BitwardenSecretsManagerAuth) {
  551. *out = *in
  552. in.SecretRef.DeepCopyInto(&out.SecretRef)
  553. }
  554. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerAuth.
  555. func (in *BitwardenSecretsManagerAuth) DeepCopy() *BitwardenSecretsManagerAuth {
  556. if in == nil {
  557. return nil
  558. }
  559. out := new(BitwardenSecretsManagerAuth)
  560. in.DeepCopyInto(out)
  561. return out
  562. }
  563. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  564. func (in *BitwardenSecretsManagerProvider) DeepCopyInto(out *BitwardenSecretsManagerProvider) {
  565. *out = *in
  566. if in.CAProvider != nil {
  567. in, out := &in.CAProvider, &out.CAProvider
  568. *out = new(CAProvider)
  569. (*in).DeepCopyInto(*out)
  570. }
  571. in.Auth.DeepCopyInto(&out.Auth)
  572. }
  573. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerProvider.
  574. func (in *BitwardenSecretsManagerProvider) DeepCopy() *BitwardenSecretsManagerProvider {
  575. if in == nil {
  576. return nil
  577. }
  578. out := new(BitwardenSecretsManagerProvider)
  579. in.DeepCopyInto(out)
  580. return out
  581. }
  582. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  583. func (in *BitwardenSecretsManagerSecretRef) DeepCopyInto(out *BitwardenSecretsManagerSecretRef) {
  584. *out = *in
  585. in.Credentials.DeepCopyInto(&out.Credentials)
  586. }
  587. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BitwardenSecretsManagerSecretRef.
  588. func (in *BitwardenSecretsManagerSecretRef) DeepCopy() *BitwardenSecretsManagerSecretRef {
  589. if in == nil {
  590. return nil
  591. }
  592. out := new(BitwardenSecretsManagerSecretRef)
  593. in.DeepCopyInto(out)
  594. return out
  595. }
  596. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  597. func (in *ByID) DeepCopyInto(out *ByID) {
  598. *out = *in
  599. }
  600. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ByID.
  601. func (in *ByID) DeepCopy() *ByID {
  602. if in == nil {
  603. return nil
  604. }
  605. out := new(ByID)
  606. in.DeepCopyInto(out)
  607. return out
  608. }
  609. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  610. func (in *ByName) DeepCopyInto(out *ByName) {
  611. *out = *in
  612. }
  613. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ByName.
  614. func (in *ByName) DeepCopy() *ByName {
  615. if in == nil {
  616. return nil
  617. }
  618. out := new(ByName)
  619. in.DeepCopyInto(out)
  620. return out
  621. }
  622. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  623. func (in *CAProvider) DeepCopyInto(out *CAProvider) {
  624. *out = *in
  625. if in.Namespace != nil {
  626. in, out := &in.Namespace, &out.Namespace
  627. *out = new(string)
  628. **out = **in
  629. }
  630. }
  631. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CAProvider.
  632. func (in *CAProvider) DeepCopy() *CAProvider {
  633. if in == nil {
  634. return nil
  635. }
  636. out := new(CAProvider)
  637. in.DeepCopyInto(out)
  638. return out
  639. }
  640. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  641. func (in *CSMAuth) DeepCopyInto(out *CSMAuth) {
  642. *out = *in
  643. if in.SecretRef != nil {
  644. in, out := &in.SecretRef, &out.SecretRef
  645. *out = new(CSMAuthSecretRef)
  646. (*in).DeepCopyInto(*out)
  647. }
  648. }
  649. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSMAuth.
  650. func (in *CSMAuth) DeepCopy() *CSMAuth {
  651. if in == nil {
  652. return nil
  653. }
  654. out := new(CSMAuth)
  655. in.DeepCopyInto(out)
  656. return out
  657. }
  658. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  659. func (in *CSMAuthSecretRef) DeepCopyInto(out *CSMAuthSecretRef) {
  660. *out = *in
  661. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  662. in.AccessKeySecret.DeepCopyInto(&out.AccessKeySecret)
  663. }
  664. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CSMAuthSecretRef.
  665. func (in *CSMAuthSecretRef) DeepCopy() *CSMAuthSecretRef {
  666. if in == nil {
  667. return nil
  668. }
  669. out := new(CSMAuthSecretRef)
  670. in.DeepCopyInto(out)
  671. return out
  672. }
  673. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  674. func (in *CacheConfig) DeepCopyInto(out *CacheConfig) {
  675. *out = *in
  676. out.TTL = in.TTL
  677. }
  678. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CacheConfig.
  679. func (in *CacheConfig) DeepCopy() *CacheConfig {
  680. if in == nil {
  681. return nil
  682. }
  683. out := new(CacheConfig)
  684. in.DeepCopyInto(out)
  685. return out
  686. }
  687. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  688. func (in *CertAuth) DeepCopyInto(out *CertAuth) {
  689. *out = *in
  690. in.ClientCert.DeepCopyInto(&out.ClientCert)
  691. in.ClientKey.DeepCopyInto(&out.ClientKey)
  692. }
  693. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertAuth.
  694. func (in *CertAuth) DeepCopy() *CertAuth {
  695. if in == nil {
  696. return nil
  697. }
  698. out := new(CertAuth)
  699. in.DeepCopyInto(out)
  700. return out
  701. }
  702. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  703. func (in *ChefAuth) DeepCopyInto(out *ChefAuth) {
  704. *out = *in
  705. in.SecretRef.DeepCopyInto(&out.SecretRef)
  706. }
  707. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefAuth.
  708. func (in *ChefAuth) DeepCopy() *ChefAuth {
  709. if in == nil {
  710. return nil
  711. }
  712. out := new(ChefAuth)
  713. in.DeepCopyInto(out)
  714. return out
  715. }
  716. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  717. func (in *ChefAuthSecretRef) DeepCopyInto(out *ChefAuthSecretRef) {
  718. *out = *in
  719. in.SecretKey.DeepCopyInto(&out.SecretKey)
  720. }
  721. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefAuthSecretRef.
  722. func (in *ChefAuthSecretRef) DeepCopy() *ChefAuthSecretRef {
  723. if in == nil {
  724. return nil
  725. }
  726. out := new(ChefAuthSecretRef)
  727. in.DeepCopyInto(out)
  728. return out
  729. }
  730. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  731. func (in *ChefProvider) DeepCopyInto(out *ChefProvider) {
  732. *out = *in
  733. if in.Auth != nil {
  734. in, out := &in.Auth, &out.Auth
  735. *out = new(ChefAuth)
  736. (*in).DeepCopyInto(*out)
  737. }
  738. }
  739. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChefProvider.
  740. func (in *ChefProvider) DeepCopy() *ChefProvider {
  741. if in == nil {
  742. return nil
  743. }
  744. out := new(ChefProvider)
  745. in.DeepCopyInto(out)
  746. return out
  747. }
  748. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  749. func (in *CloudruSMProvider) DeepCopyInto(out *CloudruSMProvider) {
  750. *out = *in
  751. in.Auth.DeepCopyInto(&out.Auth)
  752. }
  753. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudruSMProvider.
  754. func (in *CloudruSMProvider) DeepCopy() *CloudruSMProvider {
  755. if in == nil {
  756. return nil
  757. }
  758. out := new(CloudruSMProvider)
  759. in.DeepCopyInto(out)
  760. return out
  761. }
  762. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  763. func (in *ClusterExternalSecret) DeepCopyInto(out *ClusterExternalSecret) {
  764. *out = *in
  765. out.TypeMeta = in.TypeMeta
  766. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  767. in.Spec.DeepCopyInto(&out.Spec)
  768. in.Status.DeepCopyInto(&out.Status)
  769. }
  770. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecret.
  771. func (in *ClusterExternalSecret) DeepCopy() *ClusterExternalSecret {
  772. if in == nil {
  773. return nil
  774. }
  775. out := new(ClusterExternalSecret)
  776. in.DeepCopyInto(out)
  777. return out
  778. }
  779. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  780. func (in *ClusterExternalSecret) DeepCopyObject() runtime.Object {
  781. if c := in.DeepCopy(); c != nil {
  782. return c
  783. }
  784. return nil
  785. }
  786. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  787. func (in *ClusterExternalSecretList) DeepCopyInto(out *ClusterExternalSecretList) {
  788. *out = *in
  789. out.TypeMeta = in.TypeMeta
  790. in.ListMeta.DeepCopyInto(&out.ListMeta)
  791. if in.Items != nil {
  792. in, out := &in.Items, &out.Items
  793. *out = make([]ClusterExternalSecret, len(*in))
  794. for i := range *in {
  795. (*in)[i].DeepCopyInto(&(*out)[i])
  796. }
  797. }
  798. }
  799. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretList.
  800. func (in *ClusterExternalSecretList) DeepCopy() *ClusterExternalSecretList {
  801. if in == nil {
  802. return nil
  803. }
  804. out := new(ClusterExternalSecretList)
  805. in.DeepCopyInto(out)
  806. return out
  807. }
  808. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  809. func (in *ClusterExternalSecretList) DeepCopyObject() runtime.Object {
  810. if c := in.DeepCopy(); c != nil {
  811. return c
  812. }
  813. return nil
  814. }
  815. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  816. func (in *ClusterExternalSecretNamespaceFailure) DeepCopyInto(out *ClusterExternalSecretNamespaceFailure) {
  817. *out = *in
  818. }
  819. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretNamespaceFailure.
  820. func (in *ClusterExternalSecretNamespaceFailure) DeepCopy() *ClusterExternalSecretNamespaceFailure {
  821. if in == nil {
  822. return nil
  823. }
  824. out := new(ClusterExternalSecretNamespaceFailure)
  825. in.DeepCopyInto(out)
  826. return out
  827. }
  828. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  829. func (in *ClusterExternalSecretSpec) DeepCopyInto(out *ClusterExternalSecretSpec) {
  830. *out = *in
  831. in.ExternalSecretSpec.DeepCopyInto(&out.ExternalSecretSpec)
  832. in.ExternalSecretMetadata.DeepCopyInto(&out.ExternalSecretMetadata)
  833. if in.NamespaceSelector != nil {
  834. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  835. *out = new(metav1.LabelSelector)
  836. (*in).DeepCopyInto(*out)
  837. }
  838. if in.NamespaceSelectors != nil {
  839. in, out := &in.NamespaceSelectors, &out.NamespaceSelectors
  840. *out = make([]*metav1.LabelSelector, len(*in))
  841. for i := range *in {
  842. if (*in)[i] != nil {
  843. in, out := &(*in)[i], &(*out)[i]
  844. *out = new(metav1.LabelSelector)
  845. (*in).DeepCopyInto(*out)
  846. }
  847. }
  848. }
  849. if in.Namespaces != nil {
  850. in, out := &in.Namespaces, &out.Namespaces
  851. *out = make([]string, len(*in))
  852. copy(*out, *in)
  853. }
  854. if in.RefreshInterval != nil {
  855. in, out := &in.RefreshInterval, &out.RefreshInterval
  856. *out = new(metav1.Duration)
  857. **out = **in
  858. }
  859. }
  860. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretSpec.
  861. func (in *ClusterExternalSecretSpec) DeepCopy() *ClusterExternalSecretSpec {
  862. if in == nil {
  863. return nil
  864. }
  865. out := new(ClusterExternalSecretSpec)
  866. in.DeepCopyInto(out)
  867. return out
  868. }
  869. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  870. func (in *ClusterExternalSecretStatus) DeepCopyInto(out *ClusterExternalSecretStatus) {
  871. *out = *in
  872. if in.FailedNamespaces != nil {
  873. in, out := &in.FailedNamespaces, &out.FailedNamespaces
  874. *out = make([]ClusterExternalSecretNamespaceFailure, len(*in))
  875. copy(*out, *in)
  876. }
  877. if in.ProvisionedNamespaces != nil {
  878. in, out := &in.ProvisionedNamespaces, &out.ProvisionedNamespaces
  879. *out = make([]string, len(*in))
  880. copy(*out, *in)
  881. }
  882. if in.Conditions != nil {
  883. in, out := &in.Conditions, &out.Conditions
  884. *out = make([]ClusterExternalSecretStatusCondition, len(*in))
  885. copy(*out, *in)
  886. }
  887. }
  888. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatus.
  889. func (in *ClusterExternalSecretStatus) DeepCopy() *ClusterExternalSecretStatus {
  890. if in == nil {
  891. return nil
  892. }
  893. out := new(ClusterExternalSecretStatus)
  894. in.DeepCopyInto(out)
  895. return out
  896. }
  897. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  898. func (in *ClusterExternalSecretStatusCondition) DeepCopyInto(out *ClusterExternalSecretStatusCondition) {
  899. *out = *in
  900. }
  901. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterExternalSecretStatusCondition.
  902. func (in *ClusterExternalSecretStatusCondition) DeepCopy() *ClusterExternalSecretStatusCondition {
  903. if in == nil {
  904. return nil
  905. }
  906. out := new(ClusterExternalSecretStatusCondition)
  907. in.DeepCopyInto(out)
  908. return out
  909. }
  910. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  911. func (in *ClusterSecretStore) DeepCopyInto(out *ClusterSecretStore) {
  912. *out = *in
  913. out.TypeMeta = in.TypeMeta
  914. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  915. in.Spec.DeepCopyInto(&out.Spec)
  916. in.Status.DeepCopyInto(&out.Status)
  917. }
  918. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStore.
  919. func (in *ClusterSecretStore) DeepCopy() *ClusterSecretStore {
  920. if in == nil {
  921. return nil
  922. }
  923. out := new(ClusterSecretStore)
  924. in.DeepCopyInto(out)
  925. return out
  926. }
  927. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  928. func (in *ClusterSecretStore) DeepCopyObject() runtime.Object {
  929. if c := in.DeepCopy(); c != nil {
  930. return c
  931. }
  932. return nil
  933. }
  934. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  935. func (in *ClusterSecretStoreCondition) DeepCopyInto(out *ClusterSecretStoreCondition) {
  936. *out = *in
  937. if in.NamespaceSelector != nil {
  938. in, out := &in.NamespaceSelector, &out.NamespaceSelector
  939. *out = new(metav1.LabelSelector)
  940. (*in).DeepCopyInto(*out)
  941. }
  942. if in.Namespaces != nil {
  943. in, out := &in.Namespaces, &out.Namespaces
  944. *out = make([]string, len(*in))
  945. copy(*out, *in)
  946. }
  947. if in.NamespaceRegexes != nil {
  948. in, out := &in.NamespaceRegexes, &out.NamespaceRegexes
  949. *out = make([]string, len(*in))
  950. copy(*out, *in)
  951. }
  952. }
  953. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreCondition.
  954. func (in *ClusterSecretStoreCondition) DeepCopy() *ClusterSecretStoreCondition {
  955. if in == nil {
  956. return nil
  957. }
  958. out := new(ClusterSecretStoreCondition)
  959. in.DeepCopyInto(out)
  960. return out
  961. }
  962. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  963. func (in *ClusterSecretStoreList) DeepCopyInto(out *ClusterSecretStoreList) {
  964. *out = *in
  965. out.TypeMeta = in.TypeMeta
  966. in.ListMeta.DeepCopyInto(&out.ListMeta)
  967. if in.Items != nil {
  968. in, out := &in.Items, &out.Items
  969. *out = make([]ClusterSecretStore, len(*in))
  970. for i := range *in {
  971. (*in)[i].DeepCopyInto(&(*out)[i])
  972. }
  973. }
  974. }
  975. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSecretStoreList.
  976. func (in *ClusterSecretStoreList) DeepCopy() *ClusterSecretStoreList {
  977. if in == nil {
  978. return nil
  979. }
  980. out := new(ClusterSecretStoreList)
  981. in.DeepCopyInto(out)
  982. return out
  983. }
  984. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  985. func (in *ClusterSecretStoreList) DeepCopyObject() runtime.Object {
  986. if c := in.DeepCopy(); c != nil {
  987. return c
  988. }
  989. return nil
  990. }
  991. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  992. func (in *ConfigMapReference) DeepCopyInto(out *ConfigMapReference) {
  993. *out = *in
  994. }
  995. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigMapReference.
  996. func (in *ConfigMapReference) DeepCopy() *ConfigMapReference {
  997. if in == nil {
  998. return nil
  999. }
  1000. out := new(ConfigMapReference)
  1001. in.DeepCopyInto(out)
  1002. return out
  1003. }
  1004. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1005. func (in *ConjurAPIKey) DeepCopyInto(out *ConjurAPIKey) {
  1006. *out = *in
  1007. if in.UserRef != nil {
  1008. in, out := &in.UserRef, &out.UserRef
  1009. *out = new(apismetav1.SecretKeySelector)
  1010. (*in).DeepCopyInto(*out)
  1011. }
  1012. if in.APIKeyRef != nil {
  1013. in, out := &in.APIKeyRef, &out.APIKeyRef
  1014. *out = new(apismetav1.SecretKeySelector)
  1015. (*in).DeepCopyInto(*out)
  1016. }
  1017. }
  1018. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurAPIKey.
  1019. func (in *ConjurAPIKey) DeepCopy() *ConjurAPIKey {
  1020. if in == nil {
  1021. return nil
  1022. }
  1023. out := new(ConjurAPIKey)
  1024. in.DeepCopyInto(out)
  1025. return out
  1026. }
  1027. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1028. func (in *ConjurAuth) DeepCopyInto(out *ConjurAuth) {
  1029. *out = *in
  1030. if in.APIKey != nil {
  1031. in, out := &in.APIKey, &out.APIKey
  1032. *out = new(ConjurAPIKey)
  1033. (*in).DeepCopyInto(*out)
  1034. }
  1035. if in.Jwt != nil {
  1036. in, out := &in.Jwt, &out.Jwt
  1037. *out = new(ConjurJWT)
  1038. (*in).DeepCopyInto(*out)
  1039. }
  1040. }
  1041. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurAuth.
  1042. func (in *ConjurAuth) DeepCopy() *ConjurAuth {
  1043. if in == nil {
  1044. return nil
  1045. }
  1046. out := new(ConjurAuth)
  1047. in.DeepCopyInto(out)
  1048. return out
  1049. }
  1050. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1051. func (in *ConjurJWT) DeepCopyInto(out *ConjurJWT) {
  1052. *out = *in
  1053. if in.SecretRef != nil {
  1054. in, out := &in.SecretRef, &out.SecretRef
  1055. *out = new(apismetav1.SecretKeySelector)
  1056. (*in).DeepCopyInto(*out)
  1057. }
  1058. if in.ServiceAccountRef != nil {
  1059. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  1060. *out = new(apismetav1.ServiceAccountSelector)
  1061. (*in).DeepCopyInto(*out)
  1062. }
  1063. }
  1064. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurJWT.
  1065. func (in *ConjurJWT) DeepCopy() *ConjurJWT {
  1066. if in == nil {
  1067. return nil
  1068. }
  1069. out := new(ConjurJWT)
  1070. in.DeepCopyInto(out)
  1071. return out
  1072. }
  1073. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1074. func (in *ConjurProvider) DeepCopyInto(out *ConjurProvider) {
  1075. *out = *in
  1076. if in.CAProvider != nil {
  1077. in, out := &in.CAProvider, &out.CAProvider
  1078. *out = new(CAProvider)
  1079. (*in).DeepCopyInto(*out)
  1080. }
  1081. in.Auth.DeepCopyInto(&out.Auth)
  1082. }
  1083. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConjurProvider.
  1084. func (in *ConjurProvider) DeepCopy() *ConjurProvider {
  1085. if in == nil {
  1086. return nil
  1087. }
  1088. out := new(ConjurProvider)
  1089. in.DeepCopyInto(out)
  1090. return out
  1091. }
  1092. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1093. func (in *DVLSAuth) DeepCopyInto(out *DVLSAuth) {
  1094. *out = *in
  1095. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1096. }
  1097. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DVLSAuth.
  1098. func (in *DVLSAuth) DeepCopy() *DVLSAuth {
  1099. if in == nil {
  1100. return nil
  1101. }
  1102. out := new(DVLSAuth)
  1103. in.DeepCopyInto(out)
  1104. return out
  1105. }
  1106. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1107. func (in *DVLSAuthSecretRef) DeepCopyInto(out *DVLSAuthSecretRef) {
  1108. *out = *in
  1109. in.AppID.DeepCopyInto(&out.AppID)
  1110. in.AppSecret.DeepCopyInto(&out.AppSecret)
  1111. }
  1112. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DVLSAuthSecretRef.
  1113. func (in *DVLSAuthSecretRef) DeepCopy() *DVLSAuthSecretRef {
  1114. if in == nil {
  1115. return nil
  1116. }
  1117. out := new(DVLSAuthSecretRef)
  1118. in.DeepCopyInto(out)
  1119. return out
  1120. }
  1121. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1122. func (in *DVLSProvider) DeepCopyInto(out *DVLSProvider) {
  1123. *out = *in
  1124. in.Auth.DeepCopyInto(&out.Auth)
  1125. }
  1126. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DVLSProvider.
  1127. func (in *DVLSProvider) DeepCopy() *DVLSProvider {
  1128. if in == nil {
  1129. return nil
  1130. }
  1131. out := new(DVLSProvider)
  1132. in.DeepCopyInto(out)
  1133. return out
  1134. }
  1135. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1136. func (in *DelineaProvider) DeepCopyInto(out *DelineaProvider) {
  1137. *out = *in
  1138. if in.ClientID != nil {
  1139. in, out := &in.ClientID, &out.ClientID
  1140. *out = new(DelineaProviderSecretRef)
  1141. (*in).DeepCopyInto(*out)
  1142. }
  1143. if in.ClientSecret != nil {
  1144. in, out := &in.ClientSecret, &out.ClientSecret
  1145. *out = new(DelineaProviderSecretRef)
  1146. (*in).DeepCopyInto(*out)
  1147. }
  1148. }
  1149. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProvider.
  1150. func (in *DelineaProvider) DeepCopy() *DelineaProvider {
  1151. if in == nil {
  1152. return nil
  1153. }
  1154. out := new(DelineaProvider)
  1155. in.DeepCopyInto(out)
  1156. return out
  1157. }
  1158. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1159. func (in *DelineaProviderSecretRef) DeepCopyInto(out *DelineaProviderSecretRef) {
  1160. *out = *in
  1161. if in.SecretRef != nil {
  1162. in, out := &in.SecretRef, &out.SecretRef
  1163. *out = new(apismetav1.SecretKeySelector)
  1164. (*in).DeepCopyInto(*out)
  1165. }
  1166. }
  1167. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DelineaProviderSecretRef.
  1168. func (in *DelineaProviderSecretRef) DeepCopy() *DelineaProviderSecretRef {
  1169. if in == nil {
  1170. return nil
  1171. }
  1172. out := new(DelineaProviderSecretRef)
  1173. in.DeepCopyInto(out)
  1174. return out
  1175. }
  1176. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1177. func (in *DopplerAuth) DeepCopyInto(out *DopplerAuth) {
  1178. *out = *in
  1179. if in.SecretRef != nil {
  1180. in, out := &in.SecretRef, &out.SecretRef
  1181. *out = new(DopplerAuthSecretRef)
  1182. (*in).DeepCopyInto(*out)
  1183. }
  1184. if in.OIDCConfig != nil {
  1185. in, out := &in.OIDCConfig, &out.OIDCConfig
  1186. *out = new(DopplerOIDCAuth)
  1187. (*in).DeepCopyInto(*out)
  1188. }
  1189. }
  1190. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuth.
  1191. func (in *DopplerAuth) DeepCopy() *DopplerAuth {
  1192. if in == nil {
  1193. return nil
  1194. }
  1195. out := new(DopplerAuth)
  1196. in.DeepCopyInto(out)
  1197. return out
  1198. }
  1199. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1200. func (in *DopplerAuthSecretRef) DeepCopyInto(out *DopplerAuthSecretRef) {
  1201. *out = *in
  1202. in.DopplerToken.DeepCopyInto(&out.DopplerToken)
  1203. }
  1204. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerAuthSecretRef.
  1205. func (in *DopplerAuthSecretRef) DeepCopy() *DopplerAuthSecretRef {
  1206. if in == nil {
  1207. return nil
  1208. }
  1209. out := new(DopplerAuthSecretRef)
  1210. in.DeepCopyInto(out)
  1211. return out
  1212. }
  1213. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1214. func (in *DopplerOIDCAuth) DeepCopyInto(out *DopplerOIDCAuth) {
  1215. *out = *in
  1216. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  1217. if in.ExpirationSeconds != nil {
  1218. in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
  1219. *out = new(int64)
  1220. **out = **in
  1221. }
  1222. }
  1223. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerOIDCAuth.
  1224. func (in *DopplerOIDCAuth) DeepCopy() *DopplerOIDCAuth {
  1225. if in == nil {
  1226. return nil
  1227. }
  1228. out := new(DopplerOIDCAuth)
  1229. in.DeepCopyInto(out)
  1230. return out
  1231. }
  1232. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1233. func (in *DopplerProvider) DeepCopyInto(out *DopplerProvider) {
  1234. *out = *in
  1235. if in.Auth != nil {
  1236. in, out := &in.Auth, &out.Auth
  1237. *out = new(DopplerAuth)
  1238. (*in).DeepCopyInto(*out)
  1239. }
  1240. }
  1241. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DopplerProvider.
  1242. func (in *DopplerProvider) DeepCopy() *DopplerProvider {
  1243. if in == nil {
  1244. return nil
  1245. }
  1246. out := new(DopplerProvider)
  1247. in.DeepCopyInto(out)
  1248. return out
  1249. }
  1250. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1251. func (in *ExternalSecret) DeepCopyInto(out *ExternalSecret) {
  1252. *out = *in
  1253. out.TypeMeta = in.TypeMeta
  1254. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1255. in.Spec.DeepCopyInto(&out.Spec)
  1256. in.Status.DeepCopyInto(&out.Status)
  1257. }
  1258. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecret.
  1259. func (in *ExternalSecret) DeepCopy() *ExternalSecret {
  1260. if in == nil {
  1261. return nil
  1262. }
  1263. out := new(ExternalSecret)
  1264. in.DeepCopyInto(out)
  1265. return out
  1266. }
  1267. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1268. func (in *ExternalSecret) DeepCopyObject() runtime.Object {
  1269. if c := in.DeepCopy(); c != nil {
  1270. return c
  1271. }
  1272. return nil
  1273. }
  1274. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1275. func (in *ExternalSecretData) DeepCopyInto(out *ExternalSecretData) {
  1276. *out = *in
  1277. out.RemoteRef = in.RemoteRef
  1278. if in.SourceRef != nil {
  1279. in, out := &in.SourceRef, &out.SourceRef
  1280. *out = new(StoreSourceRef)
  1281. (*in).DeepCopyInto(*out)
  1282. }
  1283. }
  1284. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretData.
  1285. func (in *ExternalSecretData) DeepCopy() *ExternalSecretData {
  1286. if in == nil {
  1287. return nil
  1288. }
  1289. out := new(ExternalSecretData)
  1290. in.DeepCopyInto(out)
  1291. return out
  1292. }
  1293. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1294. func (in *ExternalSecretDataFromRemoteRef) DeepCopyInto(out *ExternalSecretDataFromRemoteRef) {
  1295. *out = *in
  1296. if in.Extract != nil {
  1297. in, out := &in.Extract, &out.Extract
  1298. *out = new(ExternalSecretDataRemoteRef)
  1299. **out = **in
  1300. }
  1301. if in.Find != nil {
  1302. in, out := &in.Find, &out.Find
  1303. *out = new(ExternalSecretFind)
  1304. (*in).DeepCopyInto(*out)
  1305. }
  1306. if in.Rewrite != nil {
  1307. in, out := &in.Rewrite, &out.Rewrite
  1308. *out = make([]ExternalSecretRewrite, len(*in))
  1309. for i := range *in {
  1310. (*in)[i].DeepCopyInto(&(*out)[i])
  1311. }
  1312. }
  1313. if in.SourceRef != nil {
  1314. in, out := &in.SourceRef, &out.SourceRef
  1315. *out = new(StoreGeneratorSourceRef)
  1316. (*in).DeepCopyInto(*out)
  1317. }
  1318. }
  1319. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataFromRemoteRef.
  1320. func (in *ExternalSecretDataFromRemoteRef) DeepCopy() *ExternalSecretDataFromRemoteRef {
  1321. if in == nil {
  1322. return nil
  1323. }
  1324. out := new(ExternalSecretDataFromRemoteRef)
  1325. in.DeepCopyInto(out)
  1326. return out
  1327. }
  1328. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1329. func (in *ExternalSecretDataRemoteRef) DeepCopyInto(out *ExternalSecretDataRemoteRef) {
  1330. *out = *in
  1331. }
  1332. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretDataRemoteRef.
  1333. func (in *ExternalSecretDataRemoteRef) DeepCopy() *ExternalSecretDataRemoteRef {
  1334. if in == nil {
  1335. return nil
  1336. }
  1337. out := new(ExternalSecretDataRemoteRef)
  1338. in.DeepCopyInto(out)
  1339. return out
  1340. }
  1341. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1342. func (in *ExternalSecretFind) DeepCopyInto(out *ExternalSecretFind) {
  1343. *out = *in
  1344. if in.Path != nil {
  1345. in, out := &in.Path, &out.Path
  1346. *out = new(string)
  1347. **out = **in
  1348. }
  1349. if in.Name != nil {
  1350. in, out := &in.Name, &out.Name
  1351. *out = new(FindName)
  1352. **out = **in
  1353. }
  1354. if in.Tags != nil {
  1355. in, out := &in.Tags, &out.Tags
  1356. *out = make(map[string]string, len(*in))
  1357. for key, val := range *in {
  1358. (*out)[key] = val
  1359. }
  1360. }
  1361. }
  1362. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretFind.
  1363. func (in *ExternalSecretFind) DeepCopy() *ExternalSecretFind {
  1364. if in == nil {
  1365. return nil
  1366. }
  1367. out := new(ExternalSecretFind)
  1368. in.DeepCopyInto(out)
  1369. return out
  1370. }
  1371. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1372. func (in *ExternalSecretList) DeepCopyInto(out *ExternalSecretList) {
  1373. *out = *in
  1374. out.TypeMeta = in.TypeMeta
  1375. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1376. if in.Items != nil {
  1377. in, out := &in.Items, &out.Items
  1378. *out = make([]ExternalSecret, len(*in))
  1379. for i := range *in {
  1380. (*in)[i].DeepCopyInto(&(*out)[i])
  1381. }
  1382. }
  1383. }
  1384. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretList.
  1385. func (in *ExternalSecretList) DeepCopy() *ExternalSecretList {
  1386. if in == nil {
  1387. return nil
  1388. }
  1389. out := new(ExternalSecretList)
  1390. in.DeepCopyInto(out)
  1391. return out
  1392. }
  1393. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1394. func (in *ExternalSecretList) DeepCopyObject() runtime.Object {
  1395. if c := in.DeepCopy(); c != nil {
  1396. return c
  1397. }
  1398. return nil
  1399. }
  1400. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1401. func (in *ExternalSecretMetadata) DeepCopyInto(out *ExternalSecretMetadata) {
  1402. *out = *in
  1403. if in.Annotations != nil {
  1404. in, out := &in.Annotations, &out.Annotations
  1405. *out = make(map[string]string, len(*in))
  1406. for key, val := range *in {
  1407. (*out)[key] = val
  1408. }
  1409. }
  1410. if in.Labels != nil {
  1411. in, out := &in.Labels, &out.Labels
  1412. *out = make(map[string]string, len(*in))
  1413. for key, val := range *in {
  1414. (*out)[key] = val
  1415. }
  1416. }
  1417. }
  1418. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretMetadata.
  1419. func (in *ExternalSecretMetadata) DeepCopy() *ExternalSecretMetadata {
  1420. if in == nil {
  1421. return nil
  1422. }
  1423. out := new(ExternalSecretMetadata)
  1424. in.DeepCopyInto(out)
  1425. return out
  1426. }
  1427. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1428. func (in *ExternalSecretRewrite) DeepCopyInto(out *ExternalSecretRewrite) {
  1429. *out = *in
  1430. if in.Merge != nil {
  1431. in, out := &in.Merge, &out.Merge
  1432. *out = new(ExternalSecretRewriteMerge)
  1433. (*in).DeepCopyInto(*out)
  1434. }
  1435. if in.Regexp != nil {
  1436. in, out := &in.Regexp, &out.Regexp
  1437. *out = new(ExternalSecretRewriteRegexp)
  1438. **out = **in
  1439. }
  1440. if in.Transform != nil {
  1441. in, out := &in.Transform, &out.Transform
  1442. *out = new(ExternalSecretRewriteTransform)
  1443. **out = **in
  1444. }
  1445. }
  1446. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewrite.
  1447. func (in *ExternalSecretRewrite) DeepCopy() *ExternalSecretRewrite {
  1448. if in == nil {
  1449. return nil
  1450. }
  1451. out := new(ExternalSecretRewrite)
  1452. in.DeepCopyInto(out)
  1453. return out
  1454. }
  1455. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1456. func (in *ExternalSecretRewriteMerge) DeepCopyInto(out *ExternalSecretRewriteMerge) {
  1457. *out = *in
  1458. if in.Priority != nil {
  1459. in, out := &in.Priority, &out.Priority
  1460. *out = make([]string, len(*in))
  1461. copy(*out, *in)
  1462. }
  1463. }
  1464. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteMerge.
  1465. func (in *ExternalSecretRewriteMerge) DeepCopy() *ExternalSecretRewriteMerge {
  1466. if in == nil {
  1467. return nil
  1468. }
  1469. out := new(ExternalSecretRewriteMerge)
  1470. in.DeepCopyInto(out)
  1471. return out
  1472. }
  1473. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1474. func (in *ExternalSecretRewriteRegexp) DeepCopyInto(out *ExternalSecretRewriteRegexp) {
  1475. *out = *in
  1476. }
  1477. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteRegexp.
  1478. func (in *ExternalSecretRewriteRegexp) DeepCopy() *ExternalSecretRewriteRegexp {
  1479. if in == nil {
  1480. return nil
  1481. }
  1482. out := new(ExternalSecretRewriteRegexp)
  1483. in.DeepCopyInto(out)
  1484. return out
  1485. }
  1486. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1487. func (in *ExternalSecretRewriteTransform) DeepCopyInto(out *ExternalSecretRewriteTransform) {
  1488. *out = *in
  1489. }
  1490. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretRewriteTransform.
  1491. func (in *ExternalSecretRewriteTransform) DeepCopy() *ExternalSecretRewriteTransform {
  1492. if in == nil {
  1493. return nil
  1494. }
  1495. out := new(ExternalSecretRewriteTransform)
  1496. in.DeepCopyInto(out)
  1497. return out
  1498. }
  1499. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1500. func (in *ExternalSecretSpec) DeepCopyInto(out *ExternalSecretSpec) {
  1501. *out = *in
  1502. out.SecretStoreRef = in.SecretStoreRef
  1503. in.Target.DeepCopyInto(&out.Target)
  1504. if in.RefreshInterval != nil {
  1505. in, out := &in.RefreshInterval, &out.RefreshInterval
  1506. *out = new(metav1.Duration)
  1507. **out = **in
  1508. }
  1509. if in.Data != nil {
  1510. in, out := &in.Data, &out.Data
  1511. *out = make([]ExternalSecretData, len(*in))
  1512. for i := range *in {
  1513. (*in)[i].DeepCopyInto(&(*out)[i])
  1514. }
  1515. }
  1516. if in.DataFrom != nil {
  1517. in, out := &in.DataFrom, &out.DataFrom
  1518. *out = make([]ExternalSecretDataFromRemoteRef, len(*in))
  1519. for i := range *in {
  1520. (*in)[i].DeepCopyInto(&(*out)[i])
  1521. }
  1522. }
  1523. }
  1524. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretSpec.
  1525. func (in *ExternalSecretSpec) DeepCopy() *ExternalSecretSpec {
  1526. if in == nil {
  1527. return nil
  1528. }
  1529. out := new(ExternalSecretSpec)
  1530. in.DeepCopyInto(out)
  1531. return out
  1532. }
  1533. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1534. func (in *ExternalSecretStatus) DeepCopyInto(out *ExternalSecretStatus) {
  1535. *out = *in
  1536. in.RefreshTime.DeepCopyInto(&out.RefreshTime)
  1537. if in.Conditions != nil {
  1538. in, out := &in.Conditions, &out.Conditions
  1539. *out = make([]ExternalSecretStatusCondition, len(*in))
  1540. for i := range *in {
  1541. (*in)[i].DeepCopyInto(&(*out)[i])
  1542. }
  1543. }
  1544. out.Binding = in.Binding
  1545. }
  1546. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatus.
  1547. func (in *ExternalSecretStatus) DeepCopy() *ExternalSecretStatus {
  1548. if in == nil {
  1549. return nil
  1550. }
  1551. out := new(ExternalSecretStatus)
  1552. in.DeepCopyInto(out)
  1553. return out
  1554. }
  1555. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1556. func (in *ExternalSecretStatusCondition) DeepCopyInto(out *ExternalSecretStatusCondition) {
  1557. *out = *in
  1558. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  1559. }
  1560. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretStatusCondition.
  1561. func (in *ExternalSecretStatusCondition) DeepCopy() *ExternalSecretStatusCondition {
  1562. if in == nil {
  1563. return nil
  1564. }
  1565. out := new(ExternalSecretStatusCondition)
  1566. in.DeepCopyInto(out)
  1567. return out
  1568. }
  1569. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1570. func (in *ExternalSecretTarget) DeepCopyInto(out *ExternalSecretTarget) {
  1571. *out = *in
  1572. if in.Template != nil {
  1573. in, out := &in.Template, &out.Template
  1574. *out = new(ExternalSecretTemplate)
  1575. (*in).DeepCopyInto(*out)
  1576. }
  1577. if in.Manifest != nil {
  1578. in, out := &in.Manifest, &out.Manifest
  1579. *out = new(ManifestReference)
  1580. **out = **in
  1581. }
  1582. }
  1583. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTarget.
  1584. func (in *ExternalSecretTarget) DeepCopy() *ExternalSecretTarget {
  1585. if in == nil {
  1586. return nil
  1587. }
  1588. out := new(ExternalSecretTarget)
  1589. in.DeepCopyInto(out)
  1590. return out
  1591. }
  1592. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1593. func (in *ExternalSecretTemplate) DeepCopyInto(out *ExternalSecretTemplate) {
  1594. *out = *in
  1595. in.Metadata.DeepCopyInto(&out.Metadata)
  1596. if in.Data != nil {
  1597. in, out := &in.Data, &out.Data
  1598. *out = make(map[string]string, len(*in))
  1599. for key, val := range *in {
  1600. (*out)[key] = val
  1601. }
  1602. }
  1603. if in.TemplateFrom != nil {
  1604. in, out := &in.TemplateFrom, &out.TemplateFrom
  1605. *out = make([]TemplateFrom, len(*in))
  1606. for i := range *in {
  1607. (*in)[i].DeepCopyInto(&(*out)[i])
  1608. }
  1609. }
  1610. }
  1611. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplate.
  1612. func (in *ExternalSecretTemplate) DeepCopy() *ExternalSecretTemplate {
  1613. if in == nil {
  1614. return nil
  1615. }
  1616. out := new(ExternalSecretTemplate)
  1617. in.DeepCopyInto(out)
  1618. return out
  1619. }
  1620. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1621. func (in *ExternalSecretTemplateMetadata) DeepCopyInto(out *ExternalSecretTemplateMetadata) {
  1622. *out = *in
  1623. if in.Annotations != nil {
  1624. in, out := &in.Annotations, &out.Annotations
  1625. *out = make(map[string]string, len(*in))
  1626. for key, val := range *in {
  1627. (*out)[key] = val
  1628. }
  1629. }
  1630. if in.Labels != nil {
  1631. in, out := &in.Labels, &out.Labels
  1632. *out = make(map[string]string, len(*in))
  1633. for key, val := range *in {
  1634. (*out)[key] = val
  1635. }
  1636. }
  1637. if in.Finalizers != nil {
  1638. in, out := &in.Finalizers, &out.Finalizers
  1639. *out = make([]string, len(*in))
  1640. copy(*out, *in)
  1641. }
  1642. }
  1643. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretTemplateMetadata.
  1644. func (in *ExternalSecretTemplateMetadata) DeepCopy() *ExternalSecretTemplateMetadata {
  1645. if in == nil {
  1646. return nil
  1647. }
  1648. out := new(ExternalSecretTemplateMetadata)
  1649. in.DeepCopyInto(out)
  1650. return out
  1651. }
  1652. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1653. func (in *ExternalSecretValidator) DeepCopyInto(out *ExternalSecretValidator) {
  1654. *out = *in
  1655. }
  1656. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalSecretValidator.
  1657. func (in *ExternalSecretValidator) DeepCopy() *ExternalSecretValidator {
  1658. if in == nil {
  1659. return nil
  1660. }
  1661. out := new(ExternalSecretValidator)
  1662. in.DeepCopyInto(out)
  1663. return out
  1664. }
  1665. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1666. func (in *FakeProvider) DeepCopyInto(out *FakeProvider) {
  1667. *out = *in
  1668. if in.Data != nil {
  1669. in, out := &in.Data, &out.Data
  1670. *out = make([]FakeProviderData, len(*in))
  1671. copy(*out, *in)
  1672. }
  1673. if in.ValidationResult != nil {
  1674. in, out := &in.ValidationResult, &out.ValidationResult
  1675. *out = new(ValidationResult)
  1676. **out = **in
  1677. }
  1678. }
  1679. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProvider.
  1680. func (in *FakeProvider) DeepCopy() *FakeProvider {
  1681. if in == nil {
  1682. return nil
  1683. }
  1684. out := new(FakeProvider)
  1685. in.DeepCopyInto(out)
  1686. return out
  1687. }
  1688. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1689. func (in *FakeProviderData) DeepCopyInto(out *FakeProviderData) {
  1690. *out = *in
  1691. }
  1692. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderData.
  1693. func (in *FakeProviderData) DeepCopy() *FakeProviderData {
  1694. if in == nil {
  1695. return nil
  1696. }
  1697. out := new(FakeProviderData)
  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 *FetchingPolicy) DeepCopyInto(out *FetchingPolicy) {
  1703. *out = *in
  1704. if in.ByID != nil {
  1705. in, out := &in.ByID, &out.ByID
  1706. *out = new(ByID)
  1707. **out = **in
  1708. }
  1709. if in.ByName != nil {
  1710. in, out := &in.ByName, &out.ByName
  1711. *out = new(ByName)
  1712. **out = **in
  1713. }
  1714. }
  1715. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FetchingPolicy.
  1716. func (in *FetchingPolicy) DeepCopy() *FetchingPolicy {
  1717. if in == nil {
  1718. return nil
  1719. }
  1720. out := new(FetchingPolicy)
  1721. in.DeepCopyInto(out)
  1722. return out
  1723. }
  1724. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1725. func (in *FindName) DeepCopyInto(out *FindName) {
  1726. *out = *in
  1727. }
  1728. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FindName.
  1729. func (in *FindName) DeepCopy() *FindName {
  1730. if in == nil {
  1731. return nil
  1732. }
  1733. out := new(FindName)
  1734. in.DeepCopyInto(out)
  1735. return out
  1736. }
  1737. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1738. func (in *FortanixProvider) DeepCopyInto(out *FortanixProvider) {
  1739. *out = *in
  1740. if in.APIKey != nil {
  1741. in, out := &in.APIKey, &out.APIKey
  1742. *out = new(FortanixProviderSecretRef)
  1743. (*in).DeepCopyInto(*out)
  1744. }
  1745. }
  1746. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FortanixProvider.
  1747. func (in *FortanixProvider) DeepCopy() *FortanixProvider {
  1748. if in == nil {
  1749. return nil
  1750. }
  1751. out := new(FortanixProvider)
  1752. in.DeepCopyInto(out)
  1753. return out
  1754. }
  1755. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1756. func (in *FortanixProviderSecretRef) DeepCopyInto(out *FortanixProviderSecretRef) {
  1757. *out = *in
  1758. if in.SecretRef != nil {
  1759. in, out := &in.SecretRef, &out.SecretRef
  1760. *out = new(apismetav1.SecretKeySelector)
  1761. (*in).DeepCopyInto(*out)
  1762. }
  1763. }
  1764. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FortanixProviderSecretRef.
  1765. func (in *FortanixProviderSecretRef) DeepCopy() *FortanixProviderSecretRef {
  1766. if in == nil {
  1767. return nil
  1768. }
  1769. out := new(FortanixProviderSecretRef)
  1770. in.DeepCopyInto(out)
  1771. return out
  1772. }
  1773. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1774. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  1775. *out = *in
  1776. if in.SecretRef != nil {
  1777. in, out := &in.SecretRef, &out.SecretRef
  1778. *out = new(GCPSMAuthSecretRef)
  1779. (*in).DeepCopyInto(*out)
  1780. }
  1781. if in.WorkloadIdentity != nil {
  1782. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  1783. *out = new(GCPWorkloadIdentity)
  1784. (*in).DeepCopyInto(*out)
  1785. }
  1786. if in.WorkloadIdentityFederation != nil {
  1787. in, out := &in.WorkloadIdentityFederation, &out.WorkloadIdentityFederation
  1788. *out = new(GCPWorkloadIdentityFederation)
  1789. (*in).DeepCopyInto(*out)
  1790. }
  1791. }
  1792. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  1793. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  1794. if in == nil {
  1795. return nil
  1796. }
  1797. out := new(GCPSMAuth)
  1798. in.DeepCopyInto(out)
  1799. return out
  1800. }
  1801. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1802. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  1803. *out = *in
  1804. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  1805. }
  1806. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  1807. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  1808. if in == nil {
  1809. return nil
  1810. }
  1811. out := new(GCPSMAuthSecretRef)
  1812. in.DeepCopyInto(out)
  1813. return out
  1814. }
  1815. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1816. func (in *GCPSMProvider) DeepCopyInto(out *GCPSMProvider) {
  1817. *out = *in
  1818. in.Auth.DeepCopyInto(&out.Auth)
  1819. }
  1820. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMProvider.
  1821. func (in *GCPSMProvider) DeepCopy() *GCPSMProvider {
  1822. if in == nil {
  1823. return nil
  1824. }
  1825. out := new(GCPSMProvider)
  1826. in.DeepCopyInto(out)
  1827. return out
  1828. }
  1829. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1830. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  1831. *out = *in
  1832. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  1833. }
  1834. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  1835. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  1836. if in == nil {
  1837. return nil
  1838. }
  1839. out := new(GCPWorkloadIdentity)
  1840. in.DeepCopyInto(out)
  1841. return out
  1842. }
  1843. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1844. func (in *GCPWorkloadIdentityFederation) DeepCopyInto(out *GCPWorkloadIdentityFederation) {
  1845. *out = *in
  1846. if in.CredConfig != nil {
  1847. in, out := &in.CredConfig, &out.CredConfig
  1848. *out = new(ConfigMapReference)
  1849. **out = **in
  1850. }
  1851. if in.ServiceAccountRef != nil {
  1852. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  1853. *out = new(apismetav1.ServiceAccountSelector)
  1854. (*in).DeepCopyInto(*out)
  1855. }
  1856. if in.AwsSecurityCredentials != nil {
  1857. in, out := &in.AwsSecurityCredentials, &out.AwsSecurityCredentials
  1858. *out = new(AwsCredentialsConfig)
  1859. (*in).DeepCopyInto(*out)
  1860. }
  1861. }
  1862. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentityFederation.
  1863. func (in *GCPWorkloadIdentityFederation) DeepCopy() *GCPWorkloadIdentityFederation {
  1864. if in == nil {
  1865. return nil
  1866. }
  1867. out := new(GCPWorkloadIdentityFederation)
  1868. in.DeepCopyInto(out)
  1869. return out
  1870. }
  1871. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1872. func (in *GcpIDTokenAuthCredentials) DeepCopyInto(out *GcpIDTokenAuthCredentials) {
  1873. *out = *in
  1874. in.IdentityID.DeepCopyInto(&out.IdentityID)
  1875. }
  1876. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GcpIDTokenAuthCredentials.
  1877. func (in *GcpIDTokenAuthCredentials) DeepCopy() *GcpIDTokenAuthCredentials {
  1878. if in == nil {
  1879. return nil
  1880. }
  1881. out := new(GcpIDTokenAuthCredentials)
  1882. in.DeepCopyInto(out)
  1883. return out
  1884. }
  1885. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1886. func (in *GcpIamAuthCredentials) DeepCopyInto(out *GcpIamAuthCredentials) {
  1887. *out = *in
  1888. in.IdentityID.DeepCopyInto(&out.IdentityID)
  1889. in.ServiceAccountKeyFilePath.DeepCopyInto(&out.ServiceAccountKeyFilePath)
  1890. }
  1891. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GcpIamAuthCredentials.
  1892. func (in *GcpIamAuthCredentials) DeepCopy() *GcpIamAuthCredentials {
  1893. if in == nil {
  1894. return nil
  1895. }
  1896. out := new(GcpIamAuthCredentials)
  1897. in.DeepCopyInto(out)
  1898. return out
  1899. }
  1900. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1901. func (in *GeneratorRef) DeepCopyInto(out *GeneratorRef) {
  1902. *out = *in
  1903. }
  1904. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorRef.
  1905. func (in *GeneratorRef) DeepCopy() *GeneratorRef {
  1906. if in == nil {
  1907. return nil
  1908. }
  1909. out := new(GeneratorRef)
  1910. in.DeepCopyInto(out)
  1911. return out
  1912. }
  1913. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1914. func (in *GenericClusterStoreValidator) DeepCopyInto(out *GenericClusterStoreValidator) {
  1915. *out = *in
  1916. }
  1917. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericClusterStoreValidator.
  1918. func (in *GenericClusterStoreValidator) DeepCopy() *GenericClusterStoreValidator {
  1919. if in == nil {
  1920. return nil
  1921. }
  1922. out := new(GenericClusterStoreValidator)
  1923. in.DeepCopyInto(out)
  1924. return out
  1925. }
  1926. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1927. func (in *GenericStoreValidator) DeepCopyInto(out *GenericStoreValidator) {
  1928. *out = *in
  1929. }
  1930. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericStoreValidator.
  1931. func (in *GenericStoreValidator) DeepCopy() *GenericStoreValidator {
  1932. if in == nil {
  1933. return nil
  1934. }
  1935. out := new(GenericStoreValidator)
  1936. in.DeepCopyInto(out)
  1937. return out
  1938. }
  1939. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1940. func (in *GithubAppAuth) DeepCopyInto(out *GithubAppAuth) {
  1941. *out = *in
  1942. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  1943. }
  1944. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAppAuth.
  1945. func (in *GithubAppAuth) DeepCopy() *GithubAppAuth {
  1946. if in == nil {
  1947. return nil
  1948. }
  1949. out := new(GithubAppAuth)
  1950. in.DeepCopyInto(out)
  1951. return out
  1952. }
  1953. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1954. func (in *GithubProvider) DeepCopyInto(out *GithubProvider) {
  1955. *out = *in
  1956. in.Auth.DeepCopyInto(&out.Auth)
  1957. }
  1958. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubProvider.
  1959. func (in *GithubProvider) DeepCopy() *GithubProvider {
  1960. if in == nil {
  1961. return nil
  1962. }
  1963. out := new(GithubProvider)
  1964. in.DeepCopyInto(out)
  1965. return out
  1966. }
  1967. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1968. func (in *GitlabAuth) DeepCopyInto(out *GitlabAuth) {
  1969. *out = *in
  1970. in.SecretRef.DeepCopyInto(&out.SecretRef)
  1971. }
  1972. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabAuth.
  1973. func (in *GitlabAuth) DeepCopy() *GitlabAuth {
  1974. if in == nil {
  1975. return nil
  1976. }
  1977. out := new(GitlabAuth)
  1978. in.DeepCopyInto(out)
  1979. return out
  1980. }
  1981. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1982. func (in *GitlabProvider) DeepCopyInto(out *GitlabProvider) {
  1983. *out = *in
  1984. in.Auth.DeepCopyInto(&out.Auth)
  1985. if in.GroupIDs != nil {
  1986. in, out := &in.GroupIDs, &out.GroupIDs
  1987. *out = make([]string, len(*in))
  1988. copy(*out, *in)
  1989. }
  1990. if in.CABundle != nil {
  1991. in, out := &in.CABundle, &out.CABundle
  1992. *out = make([]byte, len(*in))
  1993. copy(*out, *in)
  1994. }
  1995. if in.CAProvider != nil {
  1996. in, out := &in.CAProvider, &out.CAProvider
  1997. *out = new(CAProvider)
  1998. (*in).DeepCopyInto(*out)
  1999. }
  2000. }
  2001. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabProvider.
  2002. func (in *GitlabProvider) DeepCopy() *GitlabProvider {
  2003. if in == nil {
  2004. return nil
  2005. }
  2006. out := new(GitlabProvider)
  2007. in.DeepCopyInto(out)
  2008. return out
  2009. }
  2010. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2011. func (in *GitlabSecretRef) DeepCopyInto(out *GitlabSecretRef) {
  2012. *out = *in
  2013. in.AccessToken.DeepCopyInto(&out.AccessToken)
  2014. }
  2015. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GitlabSecretRef.
  2016. func (in *GitlabSecretRef) DeepCopy() *GitlabSecretRef {
  2017. if in == nil {
  2018. return nil
  2019. }
  2020. out := new(GitlabSecretRef)
  2021. in.DeepCopyInto(out)
  2022. return out
  2023. }
  2024. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2025. func (in *IBMAuth) DeepCopyInto(out *IBMAuth) {
  2026. *out = *in
  2027. if in.SecretRef != nil {
  2028. in, out := &in.SecretRef, &out.SecretRef
  2029. *out = new(IBMAuthSecretRef)
  2030. (*in).DeepCopyInto(*out)
  2031. }
  2032. if in.ContainerAuth != nil {
  2033. in, out := &in.ContainerAuth, &out.ContainerAuth
  2034. *out = new(IBMAuthContainerAuth)
  2035. **out = **in
  2036. }
  2037. }
  2038. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuth.
  2039. func (in *IBMAuth) DeepCopy() *IBMAuth {
  2040. if in == nil {
  2041. return nil
  2042. }
  2043. out := new(IBMAuth)
  2044. in.DeepCopyInto(out)
  2045. return out
  2046. }
  2047. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2048. func (in *IBMAuthContainerAuth) DeepCopyInto(out *IBMAuthContainerAuth) {
  2049. *out = *in
  2050. }
  2051. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthContainerAuth.
  2052. func (in *IBMAuthContainerAuth) DeepCopy() *IBMAuthContainerAuth {
  2053. if in == nil {
  2054. return nil
  2055. }
  2056. out := new(IBMAuthContainerAuth)
  2057. in.DeepCopyInto(out)
  2058. return out
  2059. }
  2060. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2061. func (in *IBMAuthSecretRef) DeepCopyInto(out *IBMAuthSecretRef) {
  2062. *out = *in
  2063. in.SecretAPIKey.DeepCopyInto(&out.SecretAPIKey)
  2064. }
  2065. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMAuthSecretRef.
  2066. func (in *IBMAuthSecretRef) DeepCopy() *IBMAuthSecretRef {
  2067. if in == nil {
  2068. return nil
  2069. }
  2070. out := new(IBMAuthSecretRef)
  2071. in.DeepCopyInto(out)
  2072. return out
  2073. }
  2074. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2075. func (in *IBMProvider) DeepCopyInto(out *IBMProvider) {
  2076. *out = *in
  2077. in.Auth.DeepCopyInto(&out.Auth)
  2078. if in.ServiceURL != nil {
  2079. in, out := &in.ServiceURL, &out.ServiceURL
  2080. *out = new(string)
  2081. **out = **in
  2082. }
  2083. }
  2084. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IBMProvider.
  2085. func (in *IBMProvider) DeepCopy() *IBMProvider {
  2086. if in == nil {
  2087. return nil
  2088. }
  2089. out := new(IBMProvider)
  2090. in.DeepCopyInto(out)
  2091. return out
  2092. }
  2093. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2094. func (in *InfisicalAuth) DeepCopyInto(out *InfisicalAuth) {
  2095. *out = *in
  2096. if in.UniversalAuthCredentials != nil {
  2097. in, out := &in.UniversalAuthCredentials, &out.UniversalAuthCredentials
  2098. *out = new(UniversalAuthCredentials)
  2099. (*in).DeepCopyInto(*out)
  2100. }
  2101. if in.AzureAuthCredentials != nil {
  2102. in, out := &in.AzureAuthCredentials, &out.AzureAuthCredentials
  2103. *out = new(AzureAuthCredentials)
  2104. (*in).DeepCopyInto(*out)
  2105. }
  2106. if in.GcpIDTokenAuthCredentials != nil {
  2107. in, out := &in.GcpIDTokenAuthCredentials, &out.GcpIDTokenAuthCredentials
  2108. *out = new(GcpIDTokenAuthCredentials)
  2109. (*in).DeepCopyInto(*out)
  2110. }
  2111. if in.GcpIamAuthCredentials != nil {
  2112. in, out := &in.GcpIamAuthCredentials, &out.GcpIamAuthCredentials
  2113. *out = new(GcpIamAuthCredentials)
  2114. (*in).DeepCopyInto(*out)
  2115. }
  2116. if in.JwtAuthCredentials != nil {
  2117. in, out := &in.JwtAuthCredentials, &out.JwtAuthCredentials
  2118. *out = new(JwtAuthCredentials)
  2119. (*in).DeepCopyInto(*out)
  2120. }
  2121. if in.LdapAuthCredentials != nil {
  2122. in, out := &in.LdapAuthCredentials, &out.LdapAuthCredentials
  2123. *out = new(LdapAuthCredentials)
  2124. (*in).DeepCopyInto(*out)
  2125. }
  2126. if in.OciAuthCredentials != nil {
  2127. in, out := &in.OciAuthCredentials, &out.OciAuthCredentials
  2128. *out = new(OciAuthCredentials)
  2129. (*in).DeepCopyInto(*out)
  2130. }
  2131. if in.KubernetesAuthCredentials != nil {
  2132. in, out := &in.KubernetesAuthCredentials, &out.KubernetesAuthCredentials
  2133. *out = new(KubernetesAuthCredentials)
  2134. (*in).DeepCopyInto(*out)
  2135. }
  2136. if in.AwsAuthCredentials != nil {
  2137. in, out := &in.AwsAuthCredentials, &out.AwsAuthCredentials
  2138. *out = new(AwsAuthCredentials)
  2139. (*in).DeepCopyInto(*out)
  2140. }
  2141. if in.TokenAuthCredentials != nil {
  2142. in, out := &in.TokenAuthCredentials, &out.TokenAuthCredentials
  2143. *out = new(TokenAuthCredentials)
  2144. (*in).DeepCopyInto(*out)
  2145. }
  2146. }
  2147. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalAuth.
  2148. func (in *InfisicalAuth) DeepCopy() *InfisicalAuth {
  2149. if in == nil {
  2150. return nil
  2151. }
  2152. out := new(InfisicalAuth)
  2153. in.DeepCopyInto(out)
  2154. return out
  2155. }
  2156. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2157. func (in *InfisicalProvider) DeepCopyInto(out *InfisicalProvider) {
  2158. *out = *in
  2159. in.Auth.DeepCopyInto(&out.Auth)
  2160. out.SecretsScope = in.SecretsScope
  2161. if in.CABundle != nil {
  2162. in, out := &in.CABundle, &out.CABundle
  2163. *out = make([]byte, len(*in))
  2164. copy(*out, *in)
  2165. }
  2166. if in.CAProvider != nil {
  2167. in, out := &in.CAProvider, &out.CAProvider
  2168. *out = new(CAProvider)
  2169. (*in).DeepCopyInto(*out)
  2170. }
  2171. }
  2172. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InfisicalProvider.
  2173. func (in *InfisicalProvider) DeepCopy() *InfisicalProvider {
  2174. if in == nil {
  2175. return nil
  2176. }
  2177. out := new(InfisicalProvider)
  2178. in.DeepCopyInto(out)
  2179. return out
  2180. }
  2181. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2182. func (in *IntegrationInfo) DeepCopyInto(out *IntegrationInfo) {
  2183. *out = *in
  2184. }
  2185. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IntegrationInfo.
  2186. func (in *IntegrationInfo) DeepCopy() *IntegrationInfo {
  2187. if in == nil {
  2188. return nil
  2189. }
  2190. out := new(IntegrationInfo)
  2191. in.DeepCopyInto(out)
  2192. return out
  2193. }
  2194. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2195. func (in *JwtAuthCredentials) DeepCopyInto(out *JwtAuthCredentials) {
  2196. *out = *in
  2197. in.IdentityID.DeepCopyInto(&out.IdentityID)
  2198. in.JWT.DeepCopyInto(&out.JWT)
  2199. }
  2200. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JwtAuthCredentials.
  2201. func (in *JwtAuthCredentials) DeepCopy() *JwtAuthCredentials {
  2202. if in == nil {
  2203. return nil
  2204. }
  2205. out := new(JwtAuthCredentials)
  2206. in.DeepCopyInto(out)
  2207. return out
  2208. }
  2209. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2210. func (in *KeeperSecurityProvider) DeepCopyInto(out *KeeperSecurityProvider) {
  2211. *out = *in
  2212. in.Auth.DeepCopyInto(&out.Auth)
  2213. }
  2214. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeeperSecurityProvider.
  2215. func (in *KeeperSecurityProvider) DeepCopy() *KeeperSecurityProvider {
  2216. if in == nil {
  2217. return nil
  2218. }
  2219. out := new(KeeperSecurityProvider)
  2220. in.DeepCopyInto(out)
  2221. return out
  2222. }
  2223. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2224. func (in *KubernetesAuth) DeepCopyInto(out *KubernetesAuth) {
  2225. *out = *in
  2226. if in.Cert != nil {
  2227. in, out := &in.Cert, &out.Cert
  2228. *out = new(CertAuth)
  2229. (*in).DeepCopyInto(*out)
  2230. }
  2231. if in.Token != nil {
  2232. in, out := &in.Token, &out.Token
  2233. *out = new(TokenAuth)
  2234. (*in).DeepCopyInto(*out)
  2235. }
  2236. if in.ServiceAccount != nil {
  2237. in, out := &in.ServiceAccount, &out.ServiceAccount
  2238. *out = new(apismetav1.ServiceAccountSelector)
  2239. (*in).DeepCopyInto(*out)
  2240. }
  2241. }
  2242. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuth.
  2243. func (in *KubernetesAuth) DeepCopy() *KubernetesAuth {
  2244. if in == nil {
  2245. return nil
  2246. }
  2247. out := new(KubernetesAuth)
  2248. in.DeepCopyInto(out)
  2249. return out
  2250. }
  2251. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2252. func (in *KubernetesAuthCredentials) DeepCopyInto(out *KubernetesAuthCredentials) {
  2253. *out = *in
  2254. in.IdentityID.DeepCopyInto(&out.IdentityID)
  2255. in.ServiceAccountTokenPath.DeepCopyInto(&out.ServiceAccountTokenPath)
  2256. }
  2257. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesAuthCredentials.
  2258. func (in *KubernetesAuthCredentials) DeepCopy() *KubernetesAuthCredentials {
  2259. if in == nil {
  2260. return nil
  2261. }
  2262. out := new(KubernetesAuthCredentials)
  2263. in.DeepCopyInto(out)
  2264. return out
  2265. }
  2266. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2267. func (in *KubernetesProvider) DeepCopyInto(out *KubernetesProvider) {
  2268. *out = *in
  2269. in.Server.DeepCopyInto(&out.Server)
  2270. if in.Auth != nil {
  2271. in, out := &in.Auth, &out.Auth
  2272. *out = new(KubernetesAuth)
  2273. (*in).DeepCopyInto(*out)
  2274. }
  2275. if in.AuthRef != nil {
  2276. in, out := &in.AuthRef, &out.AuthRef
  2277. *out = new(apismetav1.SecretKeySelector)
  2278. (*in).DeepCopyInto(*out)
  2279. }
  2280. }
  2281. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesProvider.
  2282. func (in *KubernetesProvider) DeepCopy() *KubernetesProvider {
  2283. if in == nil {
  2284. return nil
  2285. }
  2286. out := new(KubernetesProvider)
  2287. in.DeepCopyInto(out)
  2288. return out
  2289. }
  2290. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2291. func (in *KubernetesServer) DeepCopyInto(out *KubernetesServer) {
  2292. *out = *in
  2293. if in.CABundle != nil {
  2294. in, out := &in.CABundle, &out.CABundle
  2295. *out = make([]byte, len(*in))
  2296. copy(*out, *in)
  2297. }
  2298. if in.CAProvider != nil {
  2299. in, out := &in.CAProvider, &out.CAProvider
  2300. *out = new(CAProvider)
  2301. (*in).DeepCopyInto(*out)
  2302. }
  2303. }
  2304. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesServer.
  2305. func (in *KubernetesServer) DeepCopy() *KubernetesServer {
  2306. if in == nil {
  2307. return nil
  2308. }
  2309. out := new(KubernetesServer)
  2310. in.DeepCopyInto(out)
  2311. return out
  2312. }
  2313. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2314. func (in *LdapAuthCredentials) DeepCopyInto(out *LdapAuthCredentials) {
  2315. *out = *in
  2316. in.IdentityID.DeepCopyInto(&out.IdentityID)
  2317. in.LDAPPassword.DeepCopyInto(&out.LDAPPassword)
  2318. in.LDAPUsername.DeepCopyInto(&out.LDAPUsername)
  2319. }
  2320. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LdapAuthCredentials.
  2321. func (in *LdapAuthCredentials) DeepCopy() *LdapAuthCredentials {
  2322. if in == nil {
  2323. return nil
  2324. }
  2325. out := new(LdapAuthCredentials)
  2326. in.DeepCopyInto(out)
  2327. return out
  2328. }
  2329. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2330. func (in *MachineIdentityScopeInWorkspace) DeepCopyInto(out *MachineIdentityScopeInWorkspace) {
  2331. *out = *in
  2332. }
  2333. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachineIdentityScopeInWorkspace.
  2334. func (in *MachineIdentityScopeInWorkspace) DeepCopy() *MachineIdentityScopeInWorkspace {
  2335. if in == nil {
  2336. return nil
  2337. }
  2338. out := new(MachineIdentityScopeInWorkspace)
  2339. in.DeepCopyInto(out)
  2340. return out
  2341. }
  2342. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2343. func (in *ManifestReference) DeepCopyInto(out *ManifestReference) {
  2344. *out = *in
  2345. }
  2346. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManifestReference.
  2347. func (in *ManifestReference) DeepCopy() *ManifestReference {
  2348. if in == nil {
  2349. return nil
  2350. }
  2351. out := new(ManifestReference)
  2352. in.DeepCopyInto(out)
  2353. return out
  2354. }
  2355. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2356. func (in *NTLMProtocol) DeepCopyInto(out *NTLMProtocol) {
  2357. *out = *in
  2358. in.UserName.DeepCopyInto(&out.UserName)
  2359. in.Password.DeepCopyInto(&out.Password)
  2360. }
  2361. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NTLMProtocol.
  2362. func (in *NTLMProtocol) DeepCopy() *NTLMProtocol {
  2363. if in == nil {
  2364. return nil
  2365. }
  2366. out := new(NTLMProtocol)
  2367. in.DeepCopyInto(out)
  2368. return out
  2369. }
  2370. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2371. func (in *NgrokAuth) DeepCopyInto(out *NgrokAuth) {
  2372. *out = *in
  2373. if in.APIKey != nil {
  2374. in, out := &in.APIKey, &out.APIKey
  2375. *out = new(NgrokProviderSecretRef)
  2376. (*in).DeepCopyInto(*out)
  2377. }
  2378. }
  2379. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NgrokAuth.
  2380. func (in *NgrokAuth) DeepCopy() *NgrokAuth {
  2381. if in == nil {
  2382. return nil
  2383. }
  2384. out := new(NgrokAuth)
  2385. in.DeepCopyInto(out)
  2386. return out
  2387. }
  2388. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2389. func (in *NgrokProvider) DeepCopyInto(out *NgrokProvider) {
  2390. *out = *in
  2391. in.Auth.DeepCopyInto(&out.Auth)
  2392. out.Vault = in.Vault
  2393. }
  2394. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NgrokProvider.
  2395. func (in *NgrokProvider) DeepCopy() *NgrokProvider {
  2396. if in == nil {
  2397. return nil
  2398. }
  2399. out := new(NgrokProvider)
  2400. in.DeepCopyInto(out)
  2401. return out
  2402. }
  2403. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2404. func (in *NgrokProviderSecretRef) DeepCopyInto(out *NgrokProviderSecretRef) {
  2405. *out = *in
  2406. if in.SecretRef != nil {
  2407. in, out := &in.SecretRef, &out.SecretRef
  2408. *out = new(apismetav1.SecretKeySelector)
  2409. (*in).DeepCopyInto(*out)
  2410. }
  2411. }
  2412. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NgrokProviderSecretRef.
  2413. func (in *NgrokProviderSecretRef) DeepCopy() *NgrokProviderSecretRef {
  2414. if in == nil {
  2415. return nil
  2416. }
  2417. out := new(NgrokProviderSecretRef)
  2418. in.DeepCopyInto(out)
  2419. return out
  2420. }
  2421. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2422. func (in *NgrokVault) DeepCopyInto(out *NgrokVault) {
  2423. *out = *in
  2424. }
  2425. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NgrokVault.
  2426. func (in *NgrokVault) DeepCopy() *NgrokVault {
  2427. if in == nil {
  2428. return nil
  2429. }
  2430. out := new(NgrokVault)
  2431. in.DeepCopyInto(out)
  2432. return out
  2433. }
  2434. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2435. func (in *NoSecretError) DeepCopyInto(out *NoSecretError) {
  2436. *out = *in
  2437. }
  2438. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoSecretError.
  2439. func (in *NoSecretError) DeepCopy() *NoSecretError {
  2440. if in == nil {
  2441. return nil
  2442. }
  2443. out := new(NoSecretError)
  2444. in.DeepCopyInto(out)
  2445. return out
  2446. }
  2447. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2448. func (in *NotModifiedError) DeepCopyInto(out *NotModifiedError) {
  2449. *out = *in
  2450. }
  2451. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NotModifiedError.
  2452. func (in *NotModifiedError) DeepCopy() *NotModifiedError {
  2453. if in == nil {
  2454. return nil
  2455. }
  2456. out := new(NotModifiedError)
  2457. in.DeepCopyInto(out)
  2458. return out
  2459. }
  2460. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2461. func (in *OciAuthCredentials) DeepCopyInto(out *OciAuthCredentials) {
  2462. *out = *in
  2463. in.IdentityID.DeepCopyInto(&out.IdentityID)
  2464. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  2465. in.PrivateKeyPassphrase.DeepCopyInto(&out.PrivateKeyPassphrase)
  2466. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  2467. in.UserID.DeepCopyInto(&out.UserID)
  2468. in.TenancyID.DeepCopyInto(&out.TenancyID)
  2469. in.Region.DeepCopyInto(&out.Region)
  2470. }
  2471. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OciAuthCredentials.
  2472. func (in *OciAuthCredentials) DeepCopy() *OciAuthCredentials {
  2473. if in == nil {
  2474. return nil
  2475. }
  2476. out := new(OciAuthCredentials)
  2477. in.DeepCopyInto(out)
  2478. return out
  2479. }
  2480. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2481. func (in *OnboardbaseAuthSecretRef) DeepCopyInto(out *OnboardbaseAuthSecretRef) {
  2482. *out = *in
  2483. in.OnboardbaseAPIKeyRef.DeepCopyInto(&out.OnboardbaseAPIKeyRef)
  2484. in.OnboardbasePasscodeRef.DeepCopyInto(&out.OnboardbasePasscodeRef)
  2485. }
  2486. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnboardbaseAuthSecretRef.
  2487. func (in *OnboardbaseAuthSecretRef) DeepCopy() *OnboardbaseAuthSecretRef {
  2488. if in == nil {
  2489. return nil
  2490. }
  2491. out := new(OnboardbaseAuthSecretRef)
  2492. in.DeepCopyInto(out)
  2493. return out
  2494. }
  2495. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2496. func (in *OnboardbaseProvider) DeepCopyInto(out *OnboardbaseProvider) {
  2497. *out = *in
  2498. if in.Auth != nil {
  2499. in, out := &in.Auth, &out.Auth
  2500. *out = new(OnboardbaseAuthSecretRef)
  2501. (*in).DeepCopyInto(*out)
  2502. }
  2503. }
  2504. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnboardbaseProvider.
  2505. func (in *OnboardbaseProvider) DeepCopy() *OnboardbaseProvider {
  2506. if in == nil {
  2507. return nil
  2508. }
  2509. out := new(OnboardbaseProvider)
  2510. in.DeepCopyInto(out)
  2511. return out
  2512. }
  2513. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2514. func (in *OnePasswordAuth) DeepCopyInto(out *OnePasswordAuth) {
  2515. *out = *in
  2516. if in.SecretRef != nil {
  2517. in, out := &in.SecretRef, &out.SecretRef
  2518. *out = new(OnePasswordAuthSecretRef)
  2519. (*in).DeepCopyInto(*out)
  2520. }
  2521. }
  2522. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuth.
  2523. func (in *OnePasswordAuth) DeepCopy() *OnePasswordAuth {
  2524. if in == nil {
  2525. return nil
  2526. }
  2527. out := new(OnePasswordAuth)
  2528. in.DeepCopyInto(out)
  2529. return out
  2530. }
  2531. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2532. func (in *OnePasswordAuthSecretRef) DeepCopyInto(out *OnePasswordAuthSecretRef) {
  2533. *out = *in
  2534. in.ConnectToken.DeepCopyInto(&out.ConnectToken)
  2535. }
  2536. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordAuthSecretRef.
  2537. func (in *OnePasswordAuthSecretRef) DeepCopy() *OnePasswordAuthSecretRef {
  2538. if in == nil {
  2539. return nil
  2540. }
  2541. out := new(OnePasswordAuthSecretRef)
  2542. in.DeepCopyInto(out)
  2543. return out
  2544. }
  2545. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2546. func (in *OnePasswordProvider) DeepCopyInto(out *OnePasswordProvider) {
  2547. *out = *in
  2548. if in.Auth != nil {
  2549. in, out := &in.Auth, &out.Auth
  2550. *out = new(OnePasswordAuth)
  2551. (*in).DeepCopyInto(*out)
  2552. }
  2553. if in.Vaults != nil {
  2554. in, out := &in.Vaults, &out.Vaults
  2555. *out = make(map[string]int, len(*in))
  2556. for key, val := range *in {
  2557. (*out)[key] = val
  2558. }
  2559. }
  2560. }
  2561. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordProvider.
  2562. func (in *OnePasswordProvider) DeepCopy() *OnePasswordProvider {
  2563. if in == nil {
  2564. return nil
  2565. }
  2566. out := new(OnePasswordProvider)
  2567. in.DeepCopyInto(out)
  2568. return out
  2569. }
  2570. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2571. func (in *OnePasswordSDKAuth) DeepCopyInto(out *OnePasswordSDKAuth) {
  2572. *out = *in
  2573. in.ServiceAccountSecretRef.DeepCopyInto(&out.ServiceAccountSecretRef)
  2574. }
  2575. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordSDKAuth.
  2576. func (in *OnePasswordSDKAuth) DeepCopy() *OnePasswordSDKAuth {
  2577. if in == nil {
  2578. return nil
  2579. }
  2580. out := new(OnePasswordSDKAuth)
  2581. in.DeepCopyInto(out)
  2582. return out
  2583. }
  2584. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2585. func (in *OnePasswordSDKProvider) DeepCopyInto(out *OnePasswordSDKProvider) {
  2586. *out = *in
  2587. if in.IntegrationInfo != nil {
  2588. in, out := &in.IntegrationInfo, &out.IntegrationInfo
  2589. *out = new(IntegrationInfo)
  2590. **out = **in
  2591. }
  2592. if in.Auth != nil {
  2593. in, out := &in.Auth, &out.Auth
  2594. *out = new(OnePasswordSDKAuth)
  2595. (*in).DeepCopyInto(*out)
  2596. }
  2597. if in.Cache != nil {
  2598. in, out := &in.Cache, &out.Cache
  2599. *out = new(CacheConfig)
  2600. **out = **in
  2601. }
  2602. }
  2603. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OnePasswordSDKProvider.
  2604. func (in *OnePasswordSDKProvider) DeepCopy() *OnePasswordSDKProvider {
  2605. if in == nil {
  2606. return nil
  2607. }
  2608. out := new(OnePasswordSDKProvider)
  2609. in.DeepCopyInto(out)
  2610. return out
  2611. }
  2612. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2613. func (in *OracleAuth) DeepCopyInto(out *OracleAuth) {
  2614. *out = *in
  2615. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2616. }
  2617. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleAuth.
  2618. func (in *OracleAuth) DeepCopy() *OracleAuth {
  2619. if in == nil {
  2620. return nil
  2621. }
  2622. out := new(OracleAuth)
  2623. in.DeepCopyInto(out)
  2624. return out
  2625. }
  2626. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2627. func (in *OracleProvider) DeepCopyInto(out *OracleProvider) {
  2628. *out = *in
  2629. if in.Auth != nil {
  2630. in, out := &in.Auth, &out.Auth
  2631. *out = new(OracleAuth)
  2632. (*in).DeepCopyInto(*out)
  2633. }
  2634. if in.ServiceAccountRef != nil {
  2635. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  2636. *out = new(apismetav1.ServiceAccountSelector)
  2637. (*in).DeepCopyInto(*out)
  2638. }
  2639. }
  2640. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleProvider.
  2641. func (in *OracleProvider) DeepCopy() *OracleProvider {
  2642. if in == nil {
  2643. return nil
  2644. }
  2645. out := new(OracleProvider)
  2646. in.DeepCopyInto(out)
  2647. return out
  2648. }
  2649. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2650. func (in *OracleSecretRef) DeepCopyInto(out *OracleSecretRef) {
  2651. *out = *in
  2652. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  2653. in.Fingerprint.DeepCopyInto(&out.Fingerprint)
  2654. }
  2655. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OracleSecretRef.
  2656. func (in *OracleSecretRef) DeepCopy() *OracleSecretRef {
  2657. if in == nil {
  2658. return nil
  2659. }
  2660. out := new(OracleSecretRef)
  2661. in.DeepCopyInto(out)
  2662. return out
  2663. }
  2664. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2665. func (in *PassboltAuth) DeepCopyInto(out *PassboltAuth) {
  2666. *out = *in
  2667. if in.PasswordSecretRef != nil {
  2668. in, out := &in.PasswordSecretRef, &out.PasswordSecretRef
  2669. *out = new(apismetav1.SecretKeySelector)
  2670. (*in).DeepCopyInto(*out)
  2671. }
  2672. if in.PrivateKeySecretRef != nil {
  2673. in, out := &in.PrivateKeySecretRef, &out.PrivateKeySecretRef
  2674. *out = new(apismetav1.SecretKeySelector)
  2675. (*in).DeepCopyInto(*out)
  2676. }
  2677. }
  2678. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassboltAuth.
  2679. func (in *PassboltAuth) DeepCopy() *PassboltAuth {
  2680. if in == nil {
  2681. return nil
  2682. }
  2683. out := new(PassboltAuth)
  2684. in.DeepCopyInto(out)
  2685. return out
  2686. }
  2687. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2688. func (in *PassboltProvider) DeepCopyInto(out *PassboltProvider) {
  2689. *out = *in
  2690. if in.Auth != nil {
  2691. in, out := &in.Auth, &out.Auth
  2692. *out = new(PassboltAuth)
  2693. (*in).DeepCopyInto(*out)
  2694. }
  2695. }
  2696. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassboltProvider.
  2697. func (in *PassboltProvider) DeepCopy() *PassboltProvider {
  2698. if in == nil {
  2699. return nil
  2700. }
  2701. out := new(PassboltProvider)
  2702. in.DeepCopyInto(out)
  2703. return out
  2704. }
  2705. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2706. func (in *PasswordDepotAuth) DeepCopyInto(out *PasswordDepotAuth) {
  2707. *out = *in
  2708. in.SecretRef.DeepCopyInto(&out.SecretRef)
  2709. }
  2710. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotAuth.
  2711. func (in *PasswordDepotAuth) DeepCopy() *PasswordDepotAuth {
  2712. if in == nil {
  2713. return nil
  2714. }
  2715. out := new(PasswordDepotAuth)
  2716. in.DeepCopyInto(out)
  2717. return out
  2718. }
  2719. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2720. func (in *PasswordDepotProvider) DeepCopyInto(out *PasswordDepotProvider) {
  2721. *out = *in
  2722. in.Auth.DeepCopyInto(&out.Auth)
  2723. }
  2724. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotProvider.
  2725. func (in *PasswordDepotProvider) DeepCopy() *PasswordDepotProvider {
  2726. if in == nil {
  2727. return nil
  2728. }
  2729. out := new(PasswordDepotProvider)
  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 *PasswordDepotSecretRef) DeepCopyInto(out *PasswordDepotSecretRef) {
  2735. *out = *in
  2736. in.Credentials.DeepCopyInto(&out.Credentials)
  2737. }
  2738. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordDepotSecretRef.
  2739. func (in *PasswordDepotSecretRef) DeepCopy() *PasswordDepotSecretRef {
  2740. if in == nil {
  2741. return nil
  2742. }
  2743. out := new(PasswordDepotSecretRef)
  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 *PreviderAuth) DeepCopyInto(out *PreviderAuth) {
  2749. *out = *in
  2750. if in.SecretRef != nil {
  2751. in, out := &in.SecretRef, &out.SecretRef
  2752. *out = new(PreviderAuthSecretRef)
  2753. (*in).DeepCopyInto(*out)
  2754. }
  2755. }
  2756. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderAuth.
  2757. func (in *PreviderAuth) DeepCopy() *PreviderAuth {
  2758. if in == nil {
  2759. return nil
  2760. }
  2761. out := new(PreviderAuth)
  2762. in.DeepCopyInto(out)
  2763. return out
  2764. }
  2765. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2766. func (in *PreviderAuthSecretRef) DeepCopyInto(out *PreviderAuthSecretRef) {
  2767. *out = *in
  2768. in.AccessToken.DeepCopyInto(&out.AccessToken)
  2769. }
  2770. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderAuthSecretRef.
  2771. func (in *PreviderAuthSecretRef) DeepCopy() *PreviderAuthSecretRef {
  2772. if in == nil {
  2773. return nil
  2774. }
  2775. out := new(PreviderAuthSecretRef)
  2776. in.DeepCopyInto(out)
  2777. return out
  2778. }
  2779. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2780. func (in *PreviderProvider) DeepCopyInto(out *PreviderProvider) {
  2781. *out = *in
  2782. in.Auth.DeepCopyInto(&out.Auth)
  2783. }
  2784. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviderProvider.
  2785. func (in *PreviderProvider) DeepCopy() *PreviderProvider {
  2786. if in == nil {
  2787. return nil
  2788. }
  2789. out := new(PreviderProvider)
  2790. in.DeepCopyInto(out)
  2791. return out
  2792. }
  2793. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2794. func (in *PulumiProvider) DeepCopyInto(out *PulumiProvider) {
  2795. *out = *in
  2796. if in.AccessToken != nil {
  2797. in, out := &in.AccessToken, &out.AccessToken
  2798. *out = new(PulumiProviderSecretRef)
  2799. (*in).DeepCopyInto(*out)
  2800. }
  2801. }
  2802. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PulumiProvider.
  2803. func (in *PulumiProvider) DeepCopy() *PulumiProvider {
  2804. if in == nil {
  2805. return nil
  2806. }
  2807. out := new(PulumiProvider)
  2808. in.DeepCopyInto(out)
  2809. return out
  2810. }
  2811. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2812. func (in *PulumiProviderSecretRef) DeepCopyInto(out *PulumiProviderSecretRef) {
  2813. *out = *in
  2814. if in.SecretRef != nil {
  2815. in, out := &in.SecretRef, &out.SecretRef
  2816. *out = new(apismetav1.SecretKeySelector)
  2817. (*in).DeepCopyInto(*out)
  2818. }
  2819. }
  2820. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PulumiProviderSecretRef.
  2821. func (in *PulumiProviderSecretRef) DeepCopy() *PulumiProviderSecretRef {
  2822. if in == nil {
  2823. return nil
  2824. }
  2825. out := new(PulumiProviderSecretRef)
  2826. in.DeepCopyInto(out)
  2827. return out
  2828. }
  2829. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2830. func (in *ScalewayProvider) DeepCopyInto(out *ScalewayProvider) {
  2831. *out = *in
  2832. if in.AccessKey != nil {
  2833. in, out := &in.AccessKey, &out.AccessKey
  2834. *out = new(ScalewayProviderSecretRef)
  2835. (*in).DeepCopyInto(*out)
  2836. }
  2837. if in.SecretKey != nil {
  2838. in, out := &in.SecretKey, &out.SecretKey
  2839. *out = new(ScalewayProviderSecretRef)
  2840. (*in).DeepCopyInto(*out)
  2841. }
  2842. }
  2843. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProvider.
  2844. func (in *ScalewayProvider) DeepCopy() *ScalewayProvider {
  2845. if in == nil {
  2846. return nil
  2847. }
  2848. out := new(ScalewayProvider)
  2849. in.DeepCopyInto(out)
  2850. return out
  2851. }
  2852. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2853. func (in *ScalewayProviderSecretRef) DeepCopyInto(out *ScalewayProviderSecretRef) {
  2854. *out = *in
  2855. if in.SecretRef != nil {
  2856. in, out := &in.SecretRef, &out.SecretRef
  2857. *out = new(apismetav1.SecretKeySelector)
  2858. (*in).DeepCopyInto(*out)
  2859. }
  2860. }
  2861. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScalewayProviderSecretRef.
  2862. func (in *ScalewayProviderSecretRef) DeepCopy() *ScalewayProviderSecretRef {
  2863. if in == nil {
  2864. return nil
  2865. }
  2866. out := new(ScalewayProviderSecretRef)
  2867. in.DeepCopyInto(out)
  2868. return out
  2869. }
  2870. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2871. func (in *SecretReference) DeepCopyInto(out *SecretReference) {
  2872. *out = *in
  2873. }
  2874. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretReference.
  2875. func (in *SecretReference) DeepCopy() *SecretReference {
  2876. if in == nil {
  2877. return nil
  2878. }
  2879. out := new(SecretReference)
  2880. in.DeepCopyInto(out)
  2881. return out
  2882. }
  2883. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2884. func (in *SecretServerProvider) DeepCopyInto(out *SecretServerProvider) {
  2885. *out = *in
  2886. if in.Username != nil {
  2887. in, out := &in.Username, &out.Username
  2888. *out = new(SecretServerProviderRef)
  2889. (*in).DeepCopyInto(*out)
  2890. }
  2891. if in.Password != nil {
  2892. in, out := &in.Password, &out.Password
  2893. *out = new(SecretServerProviderRef)
  2894. (*in).DeepCopyInto(*out)
  2895. }
  2896. if in.CABundle != nil {
  2897. in, out := &in.CABundle, &out.CABundle
  2898. *out = make([]byte, len(*in))
  2899. copy(*out, *in)
  2900. }
  2901. if in.CAProvider != nil {
  2902. in, out := &in.CAProvider, &out.CAProvider
  2903. *out = new(CAProvider)
  2904. (*in).DeepCopyInto(*out)
  2905. }
  2906. }
  2907. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretServerProvider.
  2908. func (in *SecretServerProvider) DeepCopy() *SecretServerProvider {
  2909. if in == nil {
  2910. return nil
  2911. }
  2912. out := new(SecretServerProvider)
  2913. in.DeepCopyInto(out)
  2914. return out
  2915. }
  2916. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2917. func (in *SecretServerProviderRef) DeepCopyInto(out *SecretServerProviderRef) {
  2918. *out = *in
  2919. if in.SecretRef != nil {
  2920. in, out := &in.SecretRef, &out.SecretRef
  2921. *out = new(apismetav1.SecretKeySelector)
  2922. (*in).DeepCopyInto(*out)
  2923. }
  2924. }
  2925. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretServerProviderRef.
  2926. func (in *SecretServerProviderRef) DeepCopy() *SecretServerProviderRef {
  2927. if in == nil {
  2928. return nil
  2929. }
  2930. out := new(SecretServerProviderRef)
  2931. in.DeepCopyInto(out)
  2932. return out
  2933. }
  2934. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2935. func (in *SecretStore) DeepCopyInto(out *SecretStore) {
  2936. *out = *in
  2937. out.TypeMeta = in.TypeMeta
  2938. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  2939. in.Spec.DeepCopyInto(&out.Spec)
  2940. in.Status.DeepCopyInto(&out.Status)
  2941. }
  2942. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStore.
  2943. func (in *SecretStore) DeepCopy() *SecretStore {
  2944. if in == nil {
  2945. return nil
  2946. }
  2947. out := new(SecretStore)
  2948. in.DeepCopyInto(out)
  2949. return out
  2950. }
  2951. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  2952. func (in *SecretStore) DeepCopyObject() runtime.Object {
  2953. if c := in.DeepCopy(); c != nil {
  2954. return c
  2955. }
  2956. return nil
  2957. }
  2958. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2959. func (in *SecretStoreList) DeepCopyInto(out *SecretStoreList) {
  2960. *out = *in
  2961. out.TypeMeta = in.TypeMeta
  2962. in.ListMeta.DeepCopyInto(&out.ListMeta)
  2963. if in.Items != nil {
  2964. in, out := &in.Items, &out.Items
  2965. *out = make([]SecretStore, len(*in))
  2966. for i := range *in {
  2967. (*in)[i].DeepCopyInto(&(*out)[i])
  2968. }
  2969. }
  2970. }
  2971. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreList.
  2972. func (in *SecretStoreList) DeepCopy() *SecretStoreList {
  2973. if in == nil {
  2974. return nil
  2975. }
  2976. out := new(SecretStoreList)
  2977. in.DeepCopyInto(out)
  2978. return out
  2979. }
  2980. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  2981. func (in *SecretStoreList) DeepCopyObject() runtime.Object {
  2982. if c := in.DeepCopy(); c != nil {
  2983. return c
  2984. }
  2985. return nil
  2986. }
  2987. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  2988. func (in *SecretStoreProvider) DeepCopyInto(out *SecretStoreProvider) {
  2989. *out = *in
  2990. if in.AWS != nil {
  2991. in, out := &in.AWS, &out.AWS
  2992. *out = new(AWSProvider)
  2993. (*in).DeepCopyInto(*out)
  2994. }
  2995. if in.AzureKV != nil {
  2996. in, out := &in.AzureKV, &out.AzureKV
  2997. *out = new(AzureKVProvider)
  2998. (*in).DeepCopyInto(*out)
  2999. }
  3000. if in.Akeyless != nil {
  3001. in, out := &in.Akeyless, &out.Akeyless
  3002. *out = new(AkeylessProvider)
  3003. (*in).DeepCopyInto(*out)
  3004. }
  3005. if in.BitwardenSecretsManager != nil {
  3006. in, out := &in.BitwardenSecretsManager, &out.BitwardenSecretsManager
  3007. *out = new(BitwardenSecretsManagerProvider)
  3008. (*in).DeepCopyInto(*out)
  3009. }
  3010. if in.Vault != nil {
  3011. in, out := &in.Vault, &out.Vault
  3012. *out = new(VaultProvider)
  3013. (*in).DeepCopyInto(*out)
  3014. }
  3015. if in.GCPSM != nil {
  3016. in, out := &in.GCPSM, &out.GCPSM
  3017. *out = new(GCPSMProvider)
  3018. (*in).DeepCopyInto(*out)
  3019. }
  3020. if in.Oracle != nil {
  3021. in, out := &in.Oracle, &out.Oracle
  3022. *out = new(OracleProvider)
  3023. (*in).DeepCopyInto(*out)
  3024. }
  3025. if in.IBM != nil {
  3026. in, out := &in.IBM, &out.IBM
  3027. *out = new(IBMProvider)
  3028. (*in).DeepCopyInto(*out)
  3029. }
  3030. if in.YandexCertificateManager != nil {
  3031. in, out := &in.YandexCertificateManager, &out.YandexCertificateManager
  3032. *out = new(YandexCertificateManagerProvider)
  3033. (*in).DeepCopyInto(*out)
  3034. }
  3035. if in.YandexLockbox != nil {
  3036. in, out := &in.YandexLockbox, &out.YandexLockbox
  3037. *out = new(YandexLockboxProvider)
  3038. (*in).DeepCopyInto(*out)
  3039. }
  3040. if in.Github != nil {
  3041. in, out := &in.Github, &out.Github
  3042. *out = new(GithubProvider)
  3043. (*in).DeepCopyInto(*out)
  3044. }
  3045. if in.Gitlab != nil {
  3046. in, out := &in.Gitlab, &out.Gitlab
  3047. *out = new(GitlabProvider)
  3048. (*in).DeepCopyInto(*out)
  3049. }
  3050. if in.OnePassword != nil {
  3051. in, out := &in.OnePassword, &out.OnePassword
  3052. *out = new(OnePasswordProvider)
  3053. (*in).DeepCopyInto(*out)
  3054. }
  3055. if in.OnePasswordSDK != nil {
  3056. in, out := &in.OnePasswordSDK, &out.OnePasswordSDK
  3057. *out = new(OnePasswordSDKProvider)
  3058. (*in).DeepCopyInto(*out)
  3059. }
  3060. if in.Webhook != nil {
  3061. in, out := &in.Webhook, &out.Webhook
  3062. *out = new(WebhookProvider)
  3063. (*in).DeepCopyInto(*out)
  3064. }
  3065. if in.Kubernetes != nil {
  3066. in, out := &in.Kubernetes, &out.Kubernetes
  3067. *out = new(KubernetesProvider)
  3068. (*in).DeepCopyInto(*out)
  3069. }
  3070. if in.Fake != nil {
  3071. in, out := &in.Fake, &out.Fake
  3072. *out = new(FakeProvider)
  3073. (*in).DeepCopyInto(*out)
  3074. }
  3075. if in.Senhasegura != nil {
  3076. in, out := &in.Senhasegura, &out.Senhasegura
  3077. *out = new(SenhaseguraProvider)
  3078. (*in).DeepCopyInto(*out)
  3079. }
  3080. if in.Scaleway != nil {
  3081. in, out := &in.Scaleway, &out.Scaleway
  3082. *out = new(ScalewayProvider)
  3083. (*in).DeepCopyInto(*out)
  3084. }
  3085. if in.Doppler != nil {
  3086. in, out := &in.Doppler, &out.Doppler
  3087. *out = new(DopplerProvider)
  3088. (*in).DeepCopyInto(*out)
  3089. }
  3090. if in.Previder != nil {
  3091. in, out := &in.Previder, &out.Previder
  3092. *out = new(PreviderProvider)
  3093. (*in).DeepCopyInto(*out)
  3094. }
  3095. if in.Onboardbase != nil {
  3096. in, out := &in.Onboardbase, &out.Onboardbase
  3097. *out = new(OnboardbaseProvider)
  3098. (*in).DeepCopyInto(*out)
  3099. }
  3100. if in.KeeperSecurity != nil {
  3101. in, out := &in.KeeperSecurity, &out.KeeperSecurity
  3102. *out = new(KeeperSecurityProvider)
  3103. (*in).DeepCopyInto(*out)
  3104. }
  3105. if in.Conjur != nil {
  3106. in, out := &in.Conjur, &out.Conjur
  3107. *out = new(ConjurProvider)
  3108. (*in).DeepCopyInto(*out)
  3109. }
  3110. if in.Delinea != nil {
  3111. in, out := &in.Delinea, &out.Delinea
  3112. *out = new(DelineaProvider)
  3113. (*in).DeepCopyInto(*out)
  3114. }
  3115. if in.SecretServer != nil {
  3116. in, out := &in.SecretServer, &out.SecretServer
  3117. *out = new(SecretServerProvider)
  3118. (*in).DeepCopyInto(*out)
  3119. }
  3120. if in.Chef != nil {
  3121. in, out := &in.Chef, &out.Chef
  3122. *out = new(ChefProvider)
  3123. (*in).DeepCopyInto(*out)
  3124. }
  3125. if in.Pulumi != nil {
  3126. in, out := &in.Pulumi, &out.Pulumi
  3127. *out = new(PulumiProvider)
  3128. (*in).DeepCopyInto(*out)
  3129. }
  3130. if in.Fortanix != nil {
  3131. in, out := &in.Fortanix, &out.Fortanix
  3132. *out = new(FortanixProvider)
  3133. (*in).DeepCopyInto(*out)
  3134. }
  3135. if in.PasswordDepot != nil {
  3136. in, out := &in.PasswordDepot, &out.PasswordDepot
  3137. *out = new(PasswordDepotProvider)
  3138. (*in).DeepCopyInto(*out)
  3139. }
  3140. if in.Passbolt != nil {
  3141. in, out := &in.Passbolt, &out.Passbolt
  3142. *out = new(PassboltProvider)
  3143. (*in).DeepCopyInto(*out)
  3144. }
  3145. if in.DVLS != nil {
  3146. in, out := &in.DVLS, &out.DVLS
  3147. *out = new(DVLSProvider)
  3148. (*in).DeepCopyInto(*out)
  3149. }
  3150. if in.Infisical != nil {
  3151. in, out := &in.Infisical, &out.Infisical
  3152. *out = new(InfisicalProvider)
  3153. (*in).DeepCopyInto(*out)
  3154. }
  3155. if in.Beyondtrust != nil {
  3156. in, out := &in.Beyondtrust, &out.Beyondtrust
  3157. *out = new(BeyondtrustProvider)
  3158. (*in).DeepCopyInto(*out)
  3159. }
  3160. if in.CloudruSM != nil {
  3161. in, out := &in.CloudruSM, &out.CloudruSM
  3162. *out = new(CloudruSMProvider)
  3163. (*in).DeepCopyInto(*out)
  3164. }
  3165. if in.Volcengine != nil {
  3166. in, out := &in.Volcengine, &out.Volcengine
  3167. *out = new(VolcengineProvider)
  3168. (*in).DeepCopyInto(*out)
  3169. }
  3170. if in.Ngrok != nil {
  3171. in, out := &in.Ngrok, &out.Ngrok
  3172. *out = new(NgrokProvider)
  3173. (*in).DeepCopyInto(*out)
  3174. }
  3175. if in.Barbican != nil {
  3176. in, out := &in.Barbican, &out.Barbican
  3177. *out = new(BarbicanProvider)
  3178. (*in).DeepCopyInto(*out)
  3179. }
  3180. }
  3181. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreProvider.
  3182. func (in *SecretStoreProvider) DeepCopy() *SecretStoreProvider {
  3183. if in == nil {
  3184. return nil
  3185. }
  3186. out := new(SecretStoreProvider)
  3187. in.DeepCopyInto(out)
  3188. return out
  3189. }
  3190. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3191. func (in *SecretStoreRef) DeepCopyInto(out *SecretStoreRef) {
  3192. *out = *in
  3193. }
  3194. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRef.
  3195. func (in *SecretStoreRef) DeepCopy() *SecretStoreRef {
  3196. if in == nil {
  3197. return nil
  3198. }
  3199. out := new(SecretStoreRef)
  3200. in.DeepCopyInto(out)
  3201. return out
  3202. }
  3203. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3204. func (in *SecretStoreRetrySettings) DeepCopyInto(out *SecretStoreRetrySettings) {
  3205. *out = *in
  3206. if in.MaxRetries != nil {
  3207. in, out := &in.MaxRetries, &out.MaxRetries
  3208. *out = new(int32)
  3209. **out = **in
  3210. }
  3211. if in.RetryInterval != nil {
  3212. in, out := &in.RetryInterval, &out.RetryInterval
  3213. *out = new(string)
  3214. **out = **in
  3215. }
  3216. }
  3217. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreRetrySettings.
  3218. func (in *SecretStoreRetrySettings) DeepCopy() *SecretStoreRetrySettings {
  3219. if in == nil {
  3220. return nil
  3221. }
  3222. out := new(SecretStoreRetrySettings)
  3223. in.DeepCopyInto(out)
  3224. return out
  3225. }
  3226. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3227. func (in *SecretStoreSpec) DeepCopyInto(out *SecretStoreSpec) {
  3228. *out = *in
  3229. if in.Provider != nil {
  3230. in, out := &in.Provider, &out.Provider
  3231. *out = new(SecretStoreProvider)
  3232. (*in).DeepCopyInto(*out)
  3233. }
  3234. if in.RetrySettings != nil {
  3235. in, out := &in.RetrySettings, &out.RetrySettings
  3236. *out = new(SecretStoreRetrySettings)
  3237. (*in).DeepCopyInto(*out)
  3238. }
  3239. if in.Conditions != nil {
  3240. in, out := &in.Conditions, &out.Conditions
  3241. *out = make([]ClusterSecretStoreCondition, len(*in))
  3242. for i := range *in {
  3243. (*in)[i].DeepCopyInto(&(*out)[i])
  3244. }
  3245. }
  3246. }
  3247. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreSpec.
  3248. func (in *SecretStoreSpec) DeepCopy() *SecretStoreSpec {
  3249. if in == nil {
  3250. return nil
  3251. }
  3252. out := new(SecretStoreSpec)
  3253. in.DeepCopyInto(out)
  3254. return out
  3255. }
  3256. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3257. func (in *SecretStoreStatus) DeepCopyInto(out *SecretStoreStatus) {
  3258. *out = *in
  3259. if in.Conditions != nil {
  3260. in, out := &in.Conditions, &out.Conditions
  3261. *out = make([]SecretStoreStatusCondition, len(*in))
  3262. for i := range *in {
  3263. (*in)[i].DeepCopyInto(&(*out)[i])
  3264. }
  3265. }
  3266. }
  3267. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatus.
  3268. func (in *SecretStoreStatus) DeepCopy() *SecretStoreStatus {
  3269. if in == nil {
  3270. return nil
  3271. }
  3272. out := new(SecretStoreStatus)
  3273. in.DeepCopyInto(out)
  3274. return out
  3275. }
  3276. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3277. func (in *SecretStoreStatusCondition) DeepCopyInto(out *SecretStoreStatusCondition) {
  3278. *out = *in
  3279. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  3280. }
  3281. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretStoreStatusCondition.
  3282. func (in *SecretStoreStatusCondition) DeepCopy() *SecretStoreStatusCondition {
  3283. if in == nil {
  3284. return nil
  3285. }
  3286. out := new(SecretStoreStatusCondition)
  3287. in.DeepCopyInto(out)
  3288. return out
  3289. }
  3290. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3291. func (in *SecretsManager) DeepCopyInto(out *SecretsManager) {
  3292. *out = *in
  3293. }
  3294. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretsManager.
  3295. func (in *SecretsManager) DeepCopy() *SecretsManager {
  3296. if in == nil {
  3297. return nil
  3298. }
  3299. out := new(SecretsManager)
  3300. in.DeepCopyInto(out)
  3301. return out
  3302. }
  3303. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3304. func (in *SenhaseguraAuth) DeepCopyInto(out *SenhaseguraAuth) {
  3305. *out = *in
  3306. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  3307. }
  3308. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraAuth.
  3309. func (in *SenhaseguraAuth) DeepCopy() *SenhaseguraAuth {
  3310. if in == nil {
  3311. return nil
  3312. }
  3313. out := new(SenhaseguraAuth)
  3314. in.DeepCopyInto(out)
  3315. return out
  3316. }
  3317. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3318. func (in *SenhaseguraProvider) DeepCopyInto(out *SenhaseguraProvider) {
  3319. *out = *in
  3320. in.Auth.DeepCopyInto(&out.Auth)
  3321. }
  3322. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SenhaseguraProvider.
  3323. func (in *SenhaseguraProvider) DeepCopy() *SenhaseguraProvider {
  3324. if in == nil {
  3325. return nil
  3326. }
  3327. out := new(SenhaseguraProvider)
  3328. in.DeepCopyInto(out)
  3329. return out
  3330. }
  3331. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3332. func (in *StoreGeneratorSourceRef) DeepCopyInto(out *StoreGeneratorSourceRef) {
  3333. *out = *in
  3334. if in.SecretStoreRef != nil {
  3335. in, out := &in.SecretStoreRef, &out.SecretStoreRef
  3336. *out = new(SecretStoreRef)
  3337. **out = **in
  3338. }
  3339. if in.GeneratorRef != nil {
  3340. in, out := &in.GeneratorRef, &out.GeneratorRef
  3341. *out = new(GeneratorRef)
  3342. **out = **in
  3343. }
  3344. }
  3345. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreGeneratorSourceRef.
  3346. func (in *StoreGeneratorSourceRef) DeepCopy() *StoreGeneratorSourceRef {
  3347. if in == nil {
  3348. return nil
  3349. }
  3350. out := new(StoreGeneratorSourceRef)
  3351. in.DeepCopyInto(out)
  3352. return out
  3353. }
  3354. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3355. func (in *StoreSourceRef) DeepCopyInto(out *StoreSourceRef) {
  3356. *out = *in
  3357. out.SecretStoreRef = in.SecretStoreRef
  3358. if in.GeneratorRef != nil {
  3359. in, out := &in.GeneratorRef, &out.GeneratorRef
  3360. *out = new(GeneratorRef)
  3361. **out = **in
  3362. }
  3363. }
  3364. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StoreSourceRef.
  3365. func (in *StoreSourceRef) DeepCopy() *StoreSourceRef {
  3366. if in == nil {
  3367. return nil
  3368. }
  3369. out := new(StoreSourceRef)
  3370. in.DeepCopyInto(out)
  3371. return out
  3372. }
  3373. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3374. func (in *Tag) DeepCopyInto(out *Tag) {
  3375. *out = *in
  3376. }
  3377. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tag.
  3378. func (in *Tag) DeepCopy() *Tag {
  3379. if in == nil {
  3380. return nil
  3381. }
  3382. out := new(Tag)
  3383. in.DeepCopyInto(out)
  3384. return out
  3385. }
  3386. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3387. func (in *TemplateFrom) DeepCopyInto(out *TemplateFrom) {
  3388. *out = *in
  3389. if in.ConfigMap != nil {
  3390. in, out := &in.ConfigMap, &out.ConfigMap
  3391. *out = new(TemplateRef)
  3392. (*in).DeepCopyInto(*out)
  3393. }
  3394. if in.Secret != nil {
  3395. in, out := &in.Secret, &out.Secret
  3396. *out = new(TemplateRef)
  3397. (*in).DeepCopyInto(*out)
  3398. }
  3399. if in.Literal != nil {
  3400. in, out := &in.Literal, &out.Literal
  3401. *out = new(string)
  3402. **out = **in
  3403. }
  3404. }
  3405. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateFrom.
  3406. func (in *TemplateFrom) DeepCopy() *TemplateFrom {
  3407. if in == nil {
  3408. return nil
  3409. }
  3410. out := new(TemplateFrom)
  3411. in.DeepCopyInto(out)
  3412. return out
  3413. }
  3414. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3415. func (in *TemplateRef) DeepCopyInto(out *TemplateRef) {
  3416. *out = *in
  3417. if in.Items != nil {
  3418. in, out := &in.Items, &out.Items
  3419. *out = make([]TemplateRefItem, len(*in))
  3420. copy(*out, *in)
  3421. }
  3422. }
  3423. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRef.
  3424. func (in *TemplateRef) DeepCopy() *TemplateRef {
  3425. if in == nil {
  3426. return nil
  3427. }
  3428. out := new(TemplateRef)
  3429. in.DeepCopyInto(out)
  3430. return out
  3431. }
  3432. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3433. func (in *TemplateRefItem) DeepCopyInto(out *TemplateRefItem) {
  3434. *out = *in
  3435. }
  3436. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateRefItem.
  3437. func (in *TemplateRefItem) DeepCopy() *TemplateRefItem {
  3438. if in == nil {
  3439. return nil
  3440. }
  3441. out := new(TemplateRefItem)
  3442. in.DeepCopyInto(out)
  3443. return out
  3444. }
  3445. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3446. func (in *TokenAuth) DeepCopyInto(out *TokenAuth) {
  3447. *out = *in
  3448. in.BearerToken.DeepCopyInto(&out.BearerToken)
  3449. }
  3450. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenAuth.
  3451. func (in *TokenAuth) DeepCopy() *TokenAuth {
  3452. if in == nil {
  3453. return nil
  3454. }
  3455. out := new(TokenAuth)
  3456. in.DeepCopyInto(out)
  3457. return out
  3458. }
  3459. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3460. func (in *TokenAuthCredentials) DeepCopyInto(out *TokenAuthCredentials) {
  3461. *out = *in
  3462. in.AccessToken.DeepCopyInto(&out.AccessToken)
  3463. }
  3464. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TokenAuthCredentials.
  3465. func (in *TokenAuthCredentials) DeepCopy() *TokenAuthCredentials {
  3466. if in == nil {
  3467. return nil
  3468. }
  3469. out := new(TokenAuthCredentials)
  3470. in.DeepCopyInto(out)
  3471. return out
  3472. }
  3473. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3474. func (in *UniversalAuthCredentials) DeepCopyInto(out *UniversalAuthCredentials) {
  3475. *out = *in
  3476. in.ClientID.DeepCopyInto(&out.ClientID)
  3477. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  3478. }
  3479. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UniversalAuthCredentials.
  3480. func (in *UniversalAuthCredentials) DeepCopy() *UniversalAuthCredentials {
  3481. if in == nil {
  3482. return nil
  3483. }
  3484. out := new(UniversalAuthCredentials)
  3485. in.DeepCopyInto(out)
  3486. return out
  3487. }
  3488. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3489. func (in *VaultAppRole) DeepCopyInto(out *VaultAppRole) {
  3490. *out = *in
  3491. if in.RoleRef != nil {
  3492. in, out := &in.RoleRef, &out.RoleRef
  3493. *out = new(apismetav1.SecretKeySelector)
  3494. (*in).DeepCopyInto(*out)
  3495. }
  3496. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3497. }
  3498. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAppRole.
  3499. func (in *VaultAppRole) DeepCopy() *VaultAppRole {
  3500. if in == nil {
  3501. return nil
  3502. }
  3503. out := new(VaultAppRole)
  3504. in.DeepCopyInto(out)
  3505. return out
  3506. }
  3507. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3508. func (in *VaultAuth) DeepCopyInto(out *VaultAuth) {
  3509. *out = *in
  3510. if in.Namespace != nil {
  3511. in, out := &in.Namespace, &out.Namespace
  3512. *out = new(string)
  3513. **out = **in
  3514. }
  3515. if in.TokenSecretRef != nil {
  3516. in, out := &in.TokenSecretRef, &out.TokenSecretRef
  3517. *out = new(apismetav1.SecretKeySelector)
  3518. (*in).DeepCopyInto(*out)
  3519. }
  3520. if in.AppRole != nil {
  3521. in, out := &in.AppRole, &out.AppRole
  3522. *out = new(VaultAppRole)
  3523. (*in).DeepCopyInto(*out)
  3524. }
  3525. if in.Kubernetes != nil {
  3526. in, out := &in.Kubernetes, &out.Kubernetes
  3527. *out = new(VaultKubernetesAuth)
  3528. (*in).DeepCopyInto(*out)
  3529. }
  3530. if in.Ldap != nil {
  3531. in, out := &in.Ldap, &out.Ldap
  3532. *out = new(VaultLdapAuth)
  3533. (*in).DeepCopyInto(*out)
  3534. }
  3535. if in.Jwt != nil {
  3536. in, out := &in.Jwt, &out.Jwt
  3537. *out = new(VaultJwtAuth)
  3538. (*in).DeepCopyInto(*out)
  3539. }
  3540. if in.Cert != nil {
  3541. in, out := &in.Cert, &out.Cert
  3542. *out = new(VaultCertAuth)
  3543. (*in).DeepCopyInto(*out)
  3544. }
  3545. if in.Iam != nil {
  3546. in, out := &in.Iam, &out.Iam
  3547. *out = new(VaultIamAuth)
  3548. (*in).DeepCopyInto(*out)
  3549. }
  3550. if in.UserPass != nil {
  3551. in, out := &in.UserPass, &out.UserPass
  3552. *out = new(VaultUserPassAuth)
  3553. (*in).DeepCopyInto(*out)
  3554. }
  3555. if in.GCP != nil {
  3556. in, out := &in.GCP, &out.GCP
  3557. *out = new(VaultGCPAuth)
  3558. (*in).DeepCopyInto(*out)
  3559. }
  3560. }
  3561. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAuth.
  3562. func (in *VaultAuth) DeepCopy() *VaultAuth {
  3563. if in == nil {
  3564. return nil
  3565. }
  3566. out := new(VaultAuth)
  3567. in.DeepCopyInto(out)
  3568. return out
  3569. }
  3570. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3571. func (in *VaultAwsAuth) DeepCopyInto(out *VaultAwsAuth) {
  3572. *out = *in
  3573. if in.SecretRef != nil {
  3574. in, out := &in.SecretRef, &out.SecretRef
  3575. *out = new(VaultAwsAuthSecretRef)
  3576. (*in).DeepCopyInto(*out)
  3577. }
  3578. if in.JWTAuth != nil {
  3579. in, out := &in.JWTAuth, &out.JWTAuth
  3580. *out = new(VaultAwsJWTAuth)
  3581. (*in).DeepCopyInto(*out)
  3582. }
  3583. }
  3584. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuth.
  3585. func (in *VaultAwsAuth) DeepCopy() *VaultAwsAuth {
  3586. if in == nil {
  3587. return nil
  3588. }
  3589. out := new(VaultAwsAuth)
  3590. in.DeepCopyInto(out)
  3591. return out
  3592. }
  3593. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3594. func (in *VaultAwsAuthSecretRef) DeepCopyInto(out *VaultAwsAuthSecretRef) {
  3595. *out = *in
  3596. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  3597. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  3598. if in.SessionToken != nil {
  3599. in, out := &in.SessionToken, &out.SessionToken
  3600. *out = new(apismetav1.SecretKeySelector)
  3601. (*in).DeepCopyInto(*out)
  3602. }
  3603. }
  3604. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsAuthSecretRef.
  3605. func (in *VaultAwsAuthSecretRef) DeepCopy() *VaultAwsAuthSecretRef {
  3606. if in == nil {
  3607. return nil
  3608. }
  3609. out := new(VaultAwsAuthSecretRef)
  3610. in.DeepCopyInto(out)
  3611. return out
  3612. }
  3613. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3614. func (in *VaultAwsJWTAuth) DeepCopyInto(out *VaultAwsJWTAuth) {
  3615. *out = *in
  3616. if in.ServiceAccountRef != nil {
  3617. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  3618. *out = new(apismetav1.ServiceAccountSelector)
  3619. (*in).DeepCopyInto(*out)
  3620. }
  3621. }
  3622. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAwsJWTAuth.
  3623. func (in *VaultAwsJWTAuth) DeepCopy() *VaultAwsJWTAuth {
  3624. if in == nil {
  3625. return nil
  3626. }
  3627. out := new(VaultAwsJWTAuth)
  3628. in.DeepCopyInto(out)
  3629. return out
  3630. }
  3631. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3632. func (in *VaultCertAuth) DeepCopyInto(out *VaultCertAuth) {
  3633. *out = *in
  3634. in.ClientCert.DeepCopyInto(&out.ClientCert)
  3635. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3636. }
  3637. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCertAuth.
  3638. func (in *VaultCertAuth) DeepCopy() *VaultCertAuth {
  3639. if in == nil {
  3640. return nil
  3641. }
  3642. out := new(VaultCertAuth)
  3643. in.DeepCopyInto(out)
  3644. return out
  3645. }
  3646. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3647. func (in *VaultCheckAndSet) DeepCopyInto(out *VaultCheckAndSet) {
  3648. *out = *in
  3649. }
  3650. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultCheckAndSet.
  3651. func (in *VaultCheckAndSet) DeepCopy() *VaultCheckAndSet {
  3652. if in == nil {
  3653. return nil
  3654. }
  3655. out := new(VaultCheckAndSet)
  3656. in.DeepCopyInto(out)
  3657. return out
  3658. }
  3659. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3660. func (in *VaultClientTLS) DeepCopyInto(out *VaultClientTLS) {
  3661. *out = *in
  3662. if in.CertSecretRef != nil {
  3663. in, out := &in.CertSecretRef, &out.CertSecretRef
  3664. *out = new(apismetav1.SecretKeySelector)
  3665. (*in).DeepCopyInto(*out)
  3666. }
  3667. if in.KeySecretRef != nil {
  3668. in, out := &in.KeySecretRef, &out.KeySecretRef
  3669. *out = new(apismetav1.SecretKeySelector)
  3670. (*in).DeepCopyInto(*out)
  3671. }
  3672. }
  3673. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultClientTLS.
  3674. func (in *VaultClientTLS) DeepCopy() *VaultClientTLS {
  3675. if in == nil {
  3676. return nil
  3677. }
  3678. out := new(VaultClientTLS)
  3679. in.DeepCopyInto(out)
  3680. return out
  3681. }
  3682. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3683. func (in *VaultGCPAuth) DeepCopyInto(out *VaultGCPAuth) {
  3684. *out = *in
  3685. if in.SecretRef != nil {
  3686. in, out := &in.SecretRef, &out.SecretRef
  3687. *out = new(GCPSMAuthSecretRef)
  3688. (*in).DeepCopyInto(*out)
  3689. }
  3690. if in.WorkloadIdentity != nil {
  3691. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  3692. *out = new(GCPWorkloadIdentity)
  3693. (*in).DeepCopyInto(*out)
  3694. }
  3695. if in.ServiceAccountRef != nil {
  3696. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  3697. *out = new(apismetav1.ServiceAccountSelector)
  3698. (*in).DeepCopyInto(*out)
  3699. }
  3700. }
  3701. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultGCPAuth.
  3702. func (in *VaultGCPAuth) DeepCopy() *VaultGCPAuth {
  3703. if in == nil {
  3704. return nil
  3705. }
  3706. out := new(VaultGCPAuth)
  3707. in.DeepCopyInto(out)
  3708. return out
  3709. }
  3710. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3711. func (in *VaultIamAuth) DeepCopyInto(out *VaultIamAuth) {
  3712. *out = *in
  3713. if in.SecretRef != nil {
  3714. in, out := &in.SecretRef, &out.SecretRef
  3715. *out = new(VaultAwsAuthSecretRef)
  3716. (*in).DeepCopyInto(*out)
  3717. }
  3718. if in.JWTAuth != nil {
  3719. in, out := &in.JWTAuth, &out.JWTAuth
  3720. *out = new(VaultAwsJWTAuth)
  3721. (*in).DeepCopyInto(*out)
  3722. }
  3723. }
  3724. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultIamAuth.
  3725. func (in *VaultIamAuth) DeepCopy() *VaultIamAuth {
  3726. if in == nil {
  3727. return nil
  3728. }
  3729. out := new(VaultIamAuth)
  3730. in.DeepCopyInto(out)
  3731. return out
  3732. }
  3733. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3734. func (in *VaultJwtAuth) DeepCopyInto(out *VaultJwtAuth) {
  3735. *out = *in
  3736. if in.SecretRef != nil {
  3737. in, out := &in.SecretRef, &out.SecretRef
  3738. *out = new(apismetav1.SecretKeySelector)
  3739. (*in).DeepCopyInto(*out)
  3740. }
  3741. if in.KubernetesServiceAccountToken != nil {
  3742. in, out := &in.KubernetesServiceAccountToken, &out.KubernetesServiceAccountToken
  3743. *out = new(VaultKubernetesServiceAccountTokenAuth)
  3744. (*in).DeepCopyInto(*out)
  3745. }
  3746. }
  3747. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultJwtAuth.
  3748. func (in *VaultJwtAuth) DeepCopy() *VaultJwtAuth {
  3749. if in == nil {
  3750. return nil
  3751. }
  3752. out := new(VaultJwtAuth)
  3753. in.DeepCopyInto(out)
  3754. return out
  3755. }
  3756. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3757. func (in *VaultKubernetesAuth) DeepCopyInto(out *VaultKubernetesAuth) {
  3758. *out = *in
  3759. if in.ServiceAccountRef != nil {
  3760. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  3761. *out = new(apismetav1.ServiceAccountSelector)
  3762. (*in).DeepCopyInto(*out)
  3763. }
  3764. if in.SecretRef != nil {
  3765. in, out := &in.SecretRef, &out.SecretRef
  3766. *out = new(apismetav1.SecretKeySelector)
  3767. (*in).DeepCopyInto(*out)
  3768. }
  3769. }
  3770. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesAuth.
  3771. func (in *VaultKubernetesAuth) DeepCopy() *VaultKubernetesAuth {
  3772. if in == nil {
  3773. return nil
  3774. }
  3775. out := new(VaultKubernetesAuth)
  3776. in.DeepCopyInto(out)
  3777. return out
  3778. }
  3779. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3780. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopyInto(out *VaultKubernetesServiceAccountTokenAuth) {
  3781. *out = *in
  3782. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  3783. if in.Audiences != nil {
  3784. in, out := &in.Audiences, &out.Audiences
  3785. *out = new([]string)
  3786. if **in != nil {
  3787. in, out := *in, *out
  3788. *out = make([]string, len(*in))
  3789. copy(*out, *in)
  3790. }
  3791. }
  3792. if in.ExpirationSeconds != nil {
  3793. in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
  3794. *out = new(int64)
  3795. **out = **in
  3796. }
  3797. }
  3798. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultKubernetesServiceAccountTokenAuth.
  3799. func (in *VaultKubernetesServiceAccountTokenAuth) DeepCopy() *VaultKubernetesServiceAccountTokenAuth {
  3800. if in == nil {
  3801. return nil
  3802. }
  3803. out := new(VaultKubernetesServiceAccountTokenAuth)
  3804. in.DeepCopyInto(out)
  3805. return out
  3806. }
  3807. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3808. func (in *VaultLdapAuth) DeepCopyInto(out *VaultLdapAuth) {
  3809. *out = *in
  3810. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3811. }
  3812. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultLdapAuth.
  3813. func (in *VaultLdapAuth) DeepCopy() *VaultLdapAuth {
  3814. if in == nil {
  3815. return nil
  3816. }
  3817. out := new(VaultLdapAuth)
  3818. in.DeepCopyInto(out)
  3819. return out
  3820. }
  3821. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3822. func (in *VaultProvider) DeepCopyInto(out *VaultProvider) {
  3823. *out = *in
  3824. if in.Auth != nil {
  3825. in, out := &in.Auth, &out.Auth
  3826. *out = new(VaultAuth)
  3827. (*in).DeepCopyInto(*out)
  3828. }
  3829. if in.Path != nil {
  3830. in, out := &in.Path, &out.Path
  3831. *out = new(string)
  3832. **out = **in
  3833. }
  3834. if in.Namespace != nil {
  3835. in, out := &in.Namespace, &out.Namespace
  3836. *out = new(string)
  3837. **out = **in
  3838. }
  3839. if in.CABundle != nil {
  3840. in, out := &in.CABundle, &out.CABundle
  3841. *out = make([]byte, len(*in))
  3842. copy(*out, *in)
  3843. }
  3844. in.ClientTLS.DeepCopyInto(&out.ClientTLS)
  3845. if in.CAProvider != nil {
  3846. in, out := &in.CAProvider, &out.CAProvider
  3847. *out = new(CAProvider)
  3848. (*in).DeepCopyInto(*out)
  3849. }
  3850. if in.Headers != nil {
  3851. in, out := &in.Headers, &out.Headers
  3852. *out = make(map[string]string, len(*in))
  3853. for key, val := range *in {
  3854. (*out)[key] = val
  3855. }
  3856. }
  3857. if in.CheckAndSet != nil {
  3858. in, out := &in.CheckAndSet, &out.CheckAndSet
  3859. *out = new(VaultCheckAndSet)
  3860. **out = **in
  3861. }
  3862. }
  3863. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultProvider.
  3864. func (in *VaultProvider) DeepCopy() *VaultProvider {
  3865. if in == nil {
  3866. return nil
  3867. }
  3868. out := new(VaultProvider)
  3869. in.DeepCopyInto(out)
  3870. return out
  3871. }
  3872. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3873. func (in *VaultUserPassAuth) DeepCopyInto(out *VaultUserPassAuth) {
  3874. *out = *in
  3875. in.SecretRef.DeepCopyInto(&out.SecretRef)
  3876. }
  3877. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultUserPassAuth.
  3878. func (in *VaultUserPassAuth) DeepCopy() *VaultUserPassAuth {
  3879. if in == nil {
  3880. return nil
  3881. }
  3882. out := new(VaultUserPassAuth)
  3883. in.DeepCopyInto(out)
  3884. return out
  3885. }
  3886. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3887. func (in *VolcengineAuth) DeepCopyInto(out *VolcengineAuth) {
  3888. *out = *in
  3889. if in.SecretRef != nil {
  3890. in, out := &in.SecretRef, &out.SecretRef
  3891. *out = new(VolcengineAuthSecretRef)
  3892. (*in).DeepCopyInto(*out)
  3893. }
  3894. }
  3895. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolcengineAuth.
  3896. func (in *VolcengineAuth) DeepCopy() *VolcengineAuth {
  3897. if in == nil {
  3898. return nil
  3899. }
  3900. out := new(VolcengineAuth)
  3901. in.DeepCopyInto(out)
  3902. return out
  3903. }
  3904. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3905. func (in *VolcengineAuthSecretRef) DeepCopyInto(out *VolcengineAuthSecretRef) {
  3906. *out = *in
  3907. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  3908. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  3909. if in.Token != nil {
  3910. in, out := &in.Token, &out.Token
  3911. *out = new(apismetav1.SecretKeySelector)
  3912. (*in).DeepCopyInto(*out)
  3913. }
  3914. }
  3915. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolcengineAuthSecretRef.
  3916. func (in *VolcengineAuthSecretRef) DeepCopy() *VolcengineAuthSecretRef {
  3917. if in == nil {
  3918. return nil
  3919. }
  3920. out := new(VolcengineAuthSecretRef)
  3921. in.DeepCopyInto(out)
  3922. return out
  3923. }
  3924. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3925. func (in *VolcengineProvider) DeepCopyInto(out *VolcengineProvider) {
  3926. *out = *in
  3927. if in.Auth != nil {
  3928. in, out := &in.Auth, &out.Auth
  3929. *out = new(VolcengineAuth)
  3930. (*in).DeepCopyInto(*out)
  3931. }
  3932. }
  3933. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolcengineProvider.
  3934. func (in *VolcengineProvider) DeepCopy() *VolcengineProvider {
  3935. if in == nil {
  3936. return nil
  3937. }
  3938. out := new(VolcengineProvider)
  3939. in.DeepCopyInto(out)
  3940. return out
  3941. }
  3942. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3943. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  3944. *out = *in
  3945. if in.Namespace != nil {
  3946. in, out := &in.Namespace, &out.Namespace
  3947. *out = new(string)
  3948. **out = **in
  3949. }
  3950. }
  3951. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  3952. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  3953. if in == nil {
  3954. return nil
  3955. }
  3956. out := new(WebhookCAProvider)
  3957. in.DeepCopyInto(out)
  3958. return out
  3959. }
  3960. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  3961. func (in *WebhookProvider) DeepCopyInto(out *WebhookProvider) {
  3962. *out = *in
  3963. if in.Headers != nil {
  3964. in, out := &in.Headers, &out.Headers
  3965. *out = make(map[string]string, len(*in))
  3966. for key, val := range *in {
  3967. (*out)[key] = val
  3968. }
  3969. }
  3970. if in.Auth != nil {
  3971. in, out := &in.Auth, &out.Auth
  3972. *out = new(AuthorizationProtocol)
  3973. (*in).DeepCopyInto(*out)
  3974. }
  3975. if in.Timeout != nil {
  3976. in, out := &in.Timeout, &out.Timeout
  3977. *out = new(metav1.Duration)
  3978. **out = **in
  3979. }
  3980. out.Result = in.Result
  3981. if in.Secrets != nil {
  3982. in, out := &in.Secrets, &out.Secrets
  3983. *out = make([]WebhookSecret, len(*in))
  3984. for i := range *in {
  3985. (*in)[i].DeepCopyInto(&(*out)[i])
  3986. }
  3987. }
  3988. if in.CABundle != nil {
  3989. in, out := &in.CABundle, &out.CABundle
  3990. *out = make([]byte, len(*in))
  3991. copy(*out, *in)
  3992. }
  3993. if in.CAProvider != nil {
  3994. in, out := &in.CAProvider, &out.CAProvider
  3995. *out = new(WebhookCAProvider)
  3996. (*in).DeepCopyInto(*out)
  3997. }
  3998. }
  3999. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookProvider.
  4000. func (in *WebhookProvider) DeepCopy() *WebhookProvider {
  4001. if in == nil {
  4002. return nil
  4003. }
  4004. out := new(WebhookProvider)
  4005. in.DeepCopyInto(out)
  4006. return out
  4007. }
  4008. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4009. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  4010. *out = *in
  4011. }
  4012. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  4013. func (in *WebhookResult) DeepCopy() *WebhookResult {
  4014. if in == nil {
  4015. return nil
  4016. }
  4017. out := new(WebhookResult)
  4018. in.DeepCopyInto(out)
  4019. return out
  4020. }
  4021. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4022. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  4023. *out = *in
  4024. in.SecretRef.DeepCopyInto(&out.SecretRef)
  4025. }
  4026. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  4027. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  4028. if in == nil {
  4029. return nil
  4030. }
  4031. out := new(WebhookSecret)
  4032. in.DeepCopyInto(out)
  4033. return out
  4034. }
  4035. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4036. func (in *YandexAuth) DeepCopyInto(out *YandexAuth) {
  4037. *out = *in
  4038. in.AuthorizedKey.DeepCopyInto(&out.AuthorizedKey)
  4039. }
  4040. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexAuth.
  4041. func (in *YandexAuth) DeepCopy() *YandexAuth {
  4042. if in == nil {
  4043. return nil
  4044. }
  4045. out := new(YandexAuth)
  4046. in.DeepCopyInto(out)
  4047. return out
  4048. }
  4049. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4050. func (in *YandexCAProvider) DeepCopyInto(out *YandexCAProvider) {
  4051. *out = *in
  4052. in.Certificate.DeepCopyInto(&out.Certificate)
  4053. }
  4054. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCAProvider.
  4055. func (in *YandexCAProvider) DeepCopy() *YandexCAProvider {
  4056. if in == nil {
  4057. return nil
  4058. }
  4059. out := new(YandexCAProvider)
  4060. in.DeepCopyInto(out)
  4061. return out
  4062. }
  4063. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4064. func (in *YandexCertificateManagerProvider) DeepCopyInto(out *YandexCertificateManagerProvider) {
  4065. *out = *in
  4066. in.Auth.DeepCopyInto(&out.Auth)
  4067. if in.CAProvider != nil {
  4068. in, out := &in.CAProvider, &out.CAProvider
  4069. *out = new(YandexCAProvider)
  4070. (*in).DeepCopyInto(*out)
  4071. }
  4072. if in.FetchingPolicy != nil {
  4073. in, out := &in.FetchingPolicy, &out.FetchingPolicy
  4074. *out = new(FetchingPolicy)
  4075. (*in).DeepCopyInto(*out)
  4076. }
  4077. }
  4078. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexCertificateManagerProvider.
  4079. func (in *YandexCertificateManagerProvider) DeepCopy() *YandexCertificateManagerProvider {
  4080. if in == nil {
  4081. return nil
  4082. }
  4083. out := new(YandexCertificateManagerProvider)
  4084. in.DeepCopyInto(out)
  4085. return out
  4086. }
  4087. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  4088. func (in *YandexLockboxProvider) DeepCopyInto(out *YandexLockboxProvider) {
  4089. *out = *in
  4090. in.Auth.DeepCopyInto(&out.Auth)
  4091. if in.CAProvider != nil {
  4092. in, out := &in.CAProvider, &out.CAProvider
  4093. *out = new(YandexCAProvider)
  4094. (*in).DeepCopyInto(*out)
  4095. }
  4096. if in.FetchingPolicy != nil {
  4097. in, out := &in.FetchingPolicy, &out.FetchingPolicy
  4098. *out = new(FetchingPolicy)
  4099. (*in).DeepCopyInto(*out)
  4100. }
  4101. }
  4102. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new YandexLockboxProvider.
  4103. func (in *YandexLockboxProvider) DeepCopy() *YandexLockboxProvider {
  4104. if in == nil {
  4105. return nil
  4106. }
  4107. out := new(YandexLockboxProvider)
  4108. in.DeepCopyInto(out)
  4109. return out
  4110. }