zz_generated.deepcopy.go 101 KB

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