zz_generated.deepcopy.go 74 KB

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