zz_generated.deepcopy.go 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. //go:build !ignore_autogenerated
  2. /*
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. // Code generated by controller-gen. DO NOT EDIT.
  14. package v1alpha1
  15. import (
  16. externalsecretsv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
  17. metav1 "github.com/external-secrets/external-secrets/apis/meta/v1"
  18. "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
  19. apismetav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
  20. "k8s.io/apimachinery/pkg/runtime"
  21. )
  22. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  23. func (in *ACRAccessToken) DeepCopyInto(out *ACRAccessToken) {
  24. *out = *in
  25. out.TypeMeta = in.TypeMeta
  26. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  27. in.Spec.DeepCopyInto(&out.Spec)
  28. }
  29. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessToken.
  30. func (in *ACRAccessToken) DeepCopy() *ACRAccessToken {
  31. if in == nil {
  32. return nil
  33. }
  34. out := new(ACRAccessToken)
  35. in.DeepCopyInto(out)
  36. return out
  37. }
  38. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  39. func (in *ACRAccessToken) DeepCopyObject() runtime.Object {
  40. if c := in.DeepCopy(); c != nil {
  41. return c
  42. }
  43. return nil
  44. }
  45. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  46. func (in *ACRAccessTokenList) DeepCopyInto(out *ACRAccessTokenList) {
  47. *out = *in
  48. out.TypeMeta = in.TypeMeta
  49. in.ListMeta.DeepCopyInto(&out.ListMeta)
  50. if in.Items != nil {
  51. in, out := &in.Items, &out.Items
  52. *out = make([]ACRAccessToken, len(*in))
  53. for i := range *in {
  54. (*in)[i].DeepCopyInto(&(*out)[i])
  55. }
  56. }
  57. }
  58. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenList.
  59. func (in *ACRAccessTokenList) DeepCopy() *ACRAccessTokenList {
  60. if in == nil {
  61. return nil
  62. }
  63. out := new(ACRAccessTokenList)
  64. in.DeepCopyInto(out)
  65. return out
  66. }
  67. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  68. func (in *ACRAccessTokenList) DeepCopyObject() runtime.Object {
  69. if c := in.DeepCopy(); c != nil {
  70. return c
  71. }
  72. return nil
  73. }
  74. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  75. func (in *ACRAccessTokenSpec) DeepCopyInto(out *ACRAccessTokenSpec) {
  76. *out = *in
  77. in.Auth.DeepCopyInto(&out.Auth)
  78. }
  79. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenSpec.
  80. func (in *ACRAccessTokenSpec) DeepCopy() *ACRAccessTokenSpec {
  81. if in == nil {
  82. return nil
  83. }
  84. out := new(ACRAccessTokenSpec)
  85. in.DeepCopyInto(out)
  86. return out
  87. }
  88. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  89. func (in *ACRAuth) DeepCopyInto(out *ACRAuth) {
  90. *out = *in
  91. if in.ServicePrincipal != nil {
  92. in, out := &in.ServicePrincipal, &out.ServicePrincipal
  93. *out = new(AzureACRServicePrincipalAuth)
  94. (*in).DeepCopyInto(*out)
  95. }
  96. if in.ManagedIdentity != nil {
  97. in, out := &in.ManagedIdentity, &out.ManagedIdentity
  98. *out = new(AzureACRManagedIdentityAuth)
  99. **out = **in
  100. }
  101. if in.WorkloadIdentity != nil {
  102. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  103. *out = new(AzureACRWorkloadIdentityAuth)
  104. (*in).DeepCopyInto(*out)
  105. }
  106. }
  107. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAuth.
  108. func (in *ACRAuth) DeepCopy() *ACRAuth {
  109. if in == nil {
  110. return nil
  111. }
  112. out := new(ACRAuth)
  113. in.DeepCopyInto(out)
  114. return out
  115. }
  116. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  117. func (in *AWSAuth) DeepCopyInto(out *AWSAuth) {
  118. *out = *in
  119. if in.SecretRef != nil {
  120. in, out := &in.SecretRef, &out.SecretRef
  121. *out = new(AWSAuthSecretRef)
  122. (*in).DeepCopyInto(*out)
  123. }
  124. if in.JWTAuth != nil {
  125. in, out := &in.JWTAuth, &out.JWTAuth
  126. *out = new(AWSJWTAuth)
  127. (*in).DeepCopyInto(*out)
  128. }
  129. }
  130. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  131. func (in *AWSAuth) DeepCopy() *AWSAuth {
  132. if in == nil {
  133. return nil
  134. }
  135. out := new(AWSAuth)
  136. in.DeepCopyInto(out)
  137. return out
  138. }
  139. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  140. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  141. *out = *in
  142. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  143. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  144. if in.SessionToken != nil {
  145. in, out := &in.SessionToken, &out.SessionToken
  146. *out = new(metav1.SecretKeySelector)
  147. (*in).DeepCopyInto(*out)
  148. }
  149. }
  150. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  151. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  152. if in == nil {
  153. return nil
  154. }
  155. out := new(AWSAuthSecretRef)
  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 *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  161. *out = *in
  162. if in.ServiceAccountRef != nil {
  163. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  164. *out = new(metav1.ServiceAccountSelector)
  165. (*in).DeepCopyInto(*out)
  166. }
  167. }
  168. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  169. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  170. if in == nil {
  171. return nil
  172. }
  173. out := new(AWSJWTAuth)
  174. in.DeepCopyInto(out)
  175. return out
  176. }
  177. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  178. func (in *AuthorizationProtocol) DeepCopyInto(out *AuthorizationProtocol) {
  179. *out = *in
  180. if in.NTLM != nil {
  181. in, out := &in.NTLM, &out.NTLM
  182. *out = new(NTLMProtocol)
  183. (*in).DeepCopyInto(*out)
  184. }
  185. }
  186. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthorizationProtocol.
  187. func (in *AuthorizationProtocol) DeepCopy() *AuthorizationProtocol {
  188. if in == nil {
  189. return nil
  190. }
  191. out := new(AuthorizationProtocol)
  192. in.DeepCopyInto(out)
  193. return out
  194. }
  195. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  196. func (in *AzureACRManagedIdentityAuth) DeepCopyInto(out *AzureACRManagedIdentityAuth) {
  197. *out = *in
  198. }
  199. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRManagedIdentityAuth.
  200. func (in *AzureACRManagedIdentityAuth) DeepCopy() *AzureACRManagedIdentityAuth {
  201. if in == nil {
  202. return nil
  203. }
  204. out := new(AzureACRManagedIdentityAuth)
  205. in.DeepCopyInto(out)
  206. return out
  207. }
  208. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  209. func (in *AzureACRServicePrincipalAuth) DeepCopyInto(out *AzureACRServicePrincipalAuth) {
  210. *out = *in
  211. in.SecretRef.DeepCopyInto(&out.SecretRef)
  212. }
  213. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuth.
  214. func (in *AzureACRServicePrincipalAuth) DeepCopy() *AzureACRServicePrincipalAuth {
  215. if in == nil {
  216. return nil
  217. }
  218. out := new(AzureACRServicePrincipalAuth)
  219. in.DeepCopyInto(out)
  220. return out
  221. }
  222. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  223. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopyInto(out *AzureACRServicePrincipalAuthSecretRef) {
  224. *out = *in
  225. in.ClientID.DeepCopyInto(&out.ClientID)
  226. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  227. }
  228. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuthSecretRef.
  229. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopy() *AzureACRServicePrincipalAuthSecretRef {
  230. if in == nil {
  231. return nil
  232. }
  233. out := new(AzureACRServicePrincipalAuthSecretRef)
  234. in.DeepCopyInto(out)
  235. return out
  236. }
  237. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  238. func (in *AzureACRWorkloadIdentityAuth) DeepCopyInto(out *AzureACRWorkloadIdentityAuth) {
  239. *out = *in
  240. if in.ServiceAccountRef != nil {
  241. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  242. *out = new(metav1.ServiceAccountSelector)
  243. (*in).DeepCopyInto(*out)
  244. }
  245. }
  246. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRWorkloadIdentityAuth.
  247. func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth {
  248. if in == nil {
  249. return nil
  250. }
  251. out := new(AzureACRWorkloadIdentityAuth)
  252. in.DeepCopyInto(out)
  253. return out
  254. }
  255. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  256. func (in *ClusterGenerator) DeepCopyInto(out *ClusterGenerator) {
  257. *out = *in
  258. out.TypeMeta = in.TypeMeta
  259. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  260. in.Spec.DeepCopyInto(&out.Spec)
  261. }
  262. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGenerator.
  263. func (in *ClusterGenerator) DeepCopy() *ClusterGenerator {
  264. if in == nil {
  265. return nil
  266. }
  267. out := new(ClusterGenerator)
  268. in.DeepCopyInto(out)
  269. return out
  270. }
  271. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  272. func (in *ClusterGenerator) DeepCopyObject() runtime.Object {
  273. if c := in.DeepCopy(); c != nil {
  274. return c
  275. }
  276. return nil
  277. }
  278. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  279. func (in *ClusterGeneratorList) DeepCopyInto(out *ClusterGeneratorList) {
  280. *out = *in
  281. out.TypeMeta = in.TypeMeta
  282. in.ListMeta.DeepCopyInto(&out.ListMeta)
  283. if in.Items != nil {
  284. in, out := &in.Items, &out.Items
  285. *out = make([]ClusterGenerator, len(*in))
  286. for i := range *in {
  287. (*in)[i].DeepCopyInto(&(*out)[i])
  288. }
  289. }
  290. }
  291. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorList.
  292. func (in *ClusterGeneratorList) DeepCopy() *ClusterGeneratorList {
  293. if in == nil {
  294. return nil
  295. }
  296. out := new(ClusterGeneratorList)
  297. in.DeepCopyInto(out)
  298. return out
  299. }
  300. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  301. func (in *ClusterGeneratorList) DeepCopyObject() runtime.Object {
  302. if c := in.DeepCopy(); c != nil {
  303. return c
  304. }
  305. return nil
  306. }
  307. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  308. func (in *ClusterGeneratorSpec) DeepCopyInto(out *ClusterGeneratorSpec) {
  309. *out = *in
  310. in.Generator.DeepCopyInto(&out.Generator)
  311. }
  312. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterGeneratorSpec.
  313. func (in *ClusterGeneratorSpec) DeepCopy() *ClusterGeneratorSpec {
  314. if in == nil {
  315. return nil
  316. }
  317. out := new(ClusterGeneratorSpec)
  318. in.DeepCopyInto(out)
  319. return out
  320. }
  321. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  322. func (in *ControllerClassResource) DeepCopyInto(out *ControllerClassResource) {
  323. *out = *in
  324. out.Spec = in.Spec
  325. }
  326. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerClassResource.
  327. func (in *ControllerClassResource) DeepCopy() *ControllerClassResource {
  328. if in == nil {
  329. return nil
  330. }
  331. out := new(ControllerClassResource)
  332. in.DeepCopyInto(out)
  333. return out
  334. }
  335. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  336. func (in *ECRAuthorizationToken) DeepCopyInto(out *ECRAuthorizationToken) {
  337. *out = *in
  338. out.TypeMeta = in.TypeMeta
  339. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  340. in.Spec.DeepCopyInto(&out.Spec)
  341. }
  342. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationToken.
  343. func (in *ECRAuthorizationToken) DeepCopy() *ECRAuthorizationToken {
  344. if in == nil {
  345. return nil
  346. }
  347. out := new(ECRAuthorizationToken)
  348. in.DeepCopyInto(out)
  349. return out
  350. }
  351. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  352. func (in *ECRAuthorizationToken) DeepCopyObject() runtime.Object {
  353. if c := in.DeepCopy(); c != nil {
  354. return c
  355. }
  356. return nil
  357. }
  358. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  359. func (in *ECRAuthorizationTokenList) DeepCopyInto(out *ECRAuthorizationTokenList) {
  360. *out = *in
  361. out.TypeMeta = in.TypeMeta
  362. in.ListMeta.DeepCopyInto(&out.ListMeta)
  363. if in.Items != nil {
  364. in, out := &in.Items, &out.Items
  365. *out = make([]ECRAuthorizationToken, len(*in))
  366. for i := range *in {
  367. (*in)[i].DeepCopyInto(&(*out)[i])
  368. }
  369. }
  370. }
  371. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenList.
  372. func (in *ECRAuthorizationTokenList) DeepCopy() *ECRAuthorizationTokenList {
  373. if in == nil {
  374. return nil
  375. }
  376. out := new(ECRAuthorizationTokenList)
  377. in.DeepCopyInto(out)
  378. return out
  379. }
  380. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  381. func (in *ECRAuthorizationTokenList) DeepCopyObject() runtime.Object {
  382. if c := in.DeepCopy(); c != nil {
  383. return c
  384. }
  385. return nil
  386. }
  387. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  388. func (in *ECRAuthorizationTokenSpec) DeepCopyInto(out *ECRAuthorizationTokenSpec) {
  389. *out = *in
  390. in.Auth.DeepCopyInto(&out.Auth)
  391. }
  392. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenSpec.
  393. func (in *ECRAuthorizationTokenSpec) DeepCopy() *ECRAuthorizationTokenSpec {
  394. if in == nil {
  395. return nil
  396. }
  397. out := new(ECRAuthorizationTokenSpec)
  398. in.DeepCopyInto(out)
  399. return out
  400. }
  401. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  402. func (in *Fake) DeepCopyInto(out *Fake) {
  403. *out = *in
  404. out.TypeMeta = in.TypeMeta
  405. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  406. in.Spec.DeepCopyInto(&out.Spec)
  407. }
  408. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
  409. func (in *Fake) DeepCopy() *Fake {
  410. if in == nil {
  411. return nil
  412. }
  413. out := new(Fake)
  414. in.DeepCopyInto(out)
  415. return out
  416. }
  417. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  418. func (in *Fake) DeepCopyObject() runtime.Object {
  419. if c := in.DeepCopy(); c != nil {
  420. return c
  421. }
  422. return nil
  423. }
  424. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  425. func (in *FakeList) DeepCopyInto(out *FakeList) {
  426. *out = *in
  427. out.TypeMeta = in.TypeMeta
  428. in.ListMeta.DeepCopyInto(&out.ListMeta)
  429. if in.Items != nil {
  430. in, out := &in.Items, &out.Items
  431. *out = make([]Fake, len(*in))
  432. for i := range *in {
  433. (*in)[i].DeepCopyInto(&(*out)[i])
  434. }
  435. }
  436. }
  437. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
  438. func (in *FakeList) DeepCopy() *FakeList {
  439. if in == nil {
  440. return nil
  441. }
  442. out := new(FakeList)
  443. in.DeepCopyInto(out)
  444. return out
  445. }
  446. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  447. func (in *FakeList) DeepCopyObject() runtime.Object {
  448. if c := in.DeepCopy(); c != nil {
  449. return c
  450. }
  451. return nil
  452. }
  453. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  454. func (in *FakeSpec) DeepCopyInto(out *FakeSpec) {
  455. *out = *in
  456. if in.Data != nil {
  457. in, out := &in.Data, &out.Data
  458. *out = make(map[string]string, len(*in))
  459. for key, val := range *in {
  460. (*out)[key] = val
  461. }
  462. }
  463. }
  464. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeSpec.
  465. func (in *FakeSpec) DeepCopy() *FakeSpec {
  466. if in == nil {
  467. return nil
  468. }
  469. out := new(FakeSpec)
  470. in.DeepCopyInto(out)
  471. return out
  472. }
  473. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  474. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  475. *out = *in
  476. if in.SecretRef != nil {
  477. in, out := &in.SecretRef, &out.SecretRef
  478. *out = new(GCPSMAuthSecretRef)
  479. (*in).DeepCopyInto(*out)
  480. }
  481. if in.WorkloadIdentity != nil {
  482. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  483. *out = new(GCPWorkloadIdentity)
  484. (*in).DeepCopyInto(*out)
  485. }
  486. }
  487. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  488. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  489. if in == nil {
  490. return nil
  491. }
  492. out := new(GCPSMAuth)
  493. in.DeepCopyInto(out)
  494. return out
  495. }
  496. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  497. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  498. *out = *in
  499. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  500. }
  501. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  502. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  503. if in == nil {
  504. return nil
  505. }
  506. out := new(GCPSMAuthSecretRef)
  507. in.DeepCopyInto(out)
  508. return out
  509. }
  510. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  511. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  512. *out = *in
  513. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  514. }
  515. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  516. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  517. if in == nil {
  518. return nil
  519. }
  520. out := new(GCPWorkloadIdentity)
  521. in.DeepCopyInto(out)
  522. return out
  523. }
  524. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  525. func (in *GCRAccessToken) DeepCopyInto(out *GCRAccessToken) {
  526. *out = *in
  527. out.TypeMeta = in.TypeMeta
  528. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  529. in.Spec.DeepCopyInto(&out.Spec)
  530. }
  531. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessToken.
  532. func (in *GCRAccessToken) DeepCopy() *GCRAccessToken {
  533. if in == nil {
  534. return nil
  535. }
  536. out := new(GCRAccessToken)
  537. in.DeepCopyInto(out)
  538. return out
  539. }
  540. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  541. func (in *GCRAccessToken) DeepCopyObject() runtime.Object {
  542. if c := in.DeepCopy(); c != nil {
  543. return c
  544. }
  545. return nil
  546. }
  547. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  548. func (in *GCRAccessTokenList) DeepCopyInto(out *GCRAccessTokenList) {
  549. *out = *in
  550. out.TypeMeta = in.TypeMeta
  551. in.ListMeta.DeepCopyInto(&out.ListMeta)
  552. if in.Items != nil {
  553. in, out := &in.Items, &out.Items
  554. *out = make([]GCRAccessToken, len(*in))
  555. for i := range *in {
  556. (*in)[i].DeepCopyInto(&(*out)[i])
  557. }
  558. }
  559. }
  560. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenList.
  561. func (in *GCRAccessTokenList) DeepCopy() *GCRAccessTokenList {
  562. if in == nil {
  563. return nil
  564. }
  565. out := new(GCRAccessTokenList)
  566. in.DeepCopyInto(out)
  567. return out
  568. }
  569. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  570. func (in *GCRAccessTokenList) DeepCopyObject() runtime.Object {
  571. if c := in.DeepCopy(); c != nil {
  572. return c
  573. }
  574. return nil
  575. }
  576. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  577. func (in *GCRAccessTokenSpec) DeepCopyInto(out *GCRAccessTokenSpec) {
  578. *out = *in
  579. in.Auth.DeepCopyInto(&out.Auth)
  580. }
  581. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenSpec.
  582. func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
  583. if in == nil {
  584. return nil
  585. }
  586. out := new(GCRAccessTokenSpec)
  587. in.DeepCopyInto(out)
  588. return out
  589. }
  590. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  591. func (in *GeneratorSpec) DeepCopyInto(out *GeneratorSpec) {
  592. *out = *in
  593. if in.ACRAccessTokenSpec != nil {
  594. in, out := &in.ACRAccessTokenSpec, &out.ACRAccessTokenSpec
  595. *out = new(ACRAccessTokenSpec)
  596. (*in).DeepCopyInto(*out)
  597. }
  598. if in.ECRAuthorizationTokenSpec != nil {
  599. in, out := &in.ECRAuthorizationTokenSpec, &out.ECRAuthorizationTokenSpec
  600. *out = new(ECRAuthorizationTokenSpec)
  601. (*in).DeepCopyInto(*out)
  602. }
  603. if in.FakeSpec != nil {
  604. in, out := &in.FakeSpec, &out.FakeSpec
  605. *out = new(FakeSpec)
  606. (*in).DeepCopyInto(*out)
  607. }
  608. if in.GCRAccessTokenSpec != nil {
  609. in, out := &in.GCRAccessTokenSpec, &out.GCRAccessTokenSpec
  610. *out = new(GCRAccessTokenSpec)
  611. (*in).DeepCopyInto(*out)
  612. }
  613. if in.GithubAccessTokenSpec != nil {
  614. in, out := &in.GithubAccessTokenSpec, &out.GithubAccessTokenSpec
  615. *out = new(GithubAccessTokenSpec)
  616. (*in).DeepCopyInto(*out)
  617. }
  618. if in.QuayAccessTokenSpec != nil {
  619. in, out := &in.QuayAccessTokenSpec, &out.QuayAccessTokenSpec
  620. *out = new(QuayAccessTokenSpec)
  621. (*in).DeepCopyInto(*out)
  622. }
  623. if in.PasswordSpec != nil {
  624. in, out := &in.PasswordSpec, &out.PasswordSpec
  625. *out = new(PasswordSpec)
  626. (*in).DeepCopyInto(*out)
  627. }
  628. if in.SSHKeySpec != nil {
  629. in, out := &in.SSHKeySpec, &out.SSHKeySpec
  630. *out = new(SSHKeySpec)
  631. (*in).DeepCopyInto(*out)
  632. }
  633. if in.STSSessionTokenSpec != nil {
  634. in, out := &in.STSSessionTokenSpec, &out.STSSessionTokenSpec
  635. *out = new(STSSessionTokenSpec)
  636. (*in).DeepCopyInto(*out)
  637. }
  638. if in.UUIDSpec != nil {
  639. in, out := &in.UUIDSpec, &out.UUIDSpec
  640. *out = new(UUIDSpec)
  641. **out = **in
  642. }
  643. if in.VaultDynamicSecretSpec != nil {
  644. in, out := &in.VaultDynamicSecretSpec, &out.VaultDynamicSecretSpec
  645. *out = new(VaultDynamicSecretSpec)
  646. (*in).DeepCopyInto(*out)
  647. }
  648. if in.WebhookSpec != nil {
  649. in, out := &in.WebhookSpec, &out.WebhookSpec
  650. *out = new(WebhookSpec)
  651. (*in).DeepCopyInto(*out)
  652. }
  653. if in.GrafanaSpec != nil {
  654. in, out := &in.GrafanaSpec, &out.GrafanaSpec
  655. *out = new(GrafanaSpec)
  656. (*in).DeepCopyInto(*out)
  657. }
  658. if in.MFASpec != nil {
  659. in, out := &in.MFASpec, &out.MFASpec
  660. *out = new(MFASpec)
  661. (*in).DeepCopyInto(*out)
  662. }
  663. }
  664. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorSpec.
  665. func (in *GeneratorSpec) DeepCopy() *GeneratorSpec {
  666. if in == nil {
  667. return nil
  668. }
  669. out := new(GeneratorSpec)
  670. in.DeepCopyInto(out)
  671. return out
  672. }
  673. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  674. func (in *GeneratorState) DeepCopyInto(out *GeneratorState) {
  675. *out = *in
  676. out.TypeMeta = in.TypeMeta
  677. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  678. in.Spec.DeepCopyInto(&out.Spec)
  679. in.Status.DeepCopyInto(&out.Status)
  680. }
  681. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorState.
  682. func (in *GeneratorState) DeepCopy() *GeneratorState {
  683. if in == nil {
  684. return nil
  685. }
  686. out := new(GeneratorState)
  687. in.DeepCopyInto(out)
  688. return out
  689. }
  690. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  691. func (in *GeneratorState) DeepCopyObject() runtime.Object {
  692. if c := in.DeepCopy(); c != nil {
  693. return c
  694. }
  695. return nil
  696. }
  697. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  698. func (in *GeneratorStateList) DeepCopyInto(out *GeneratorStateList) {
  699. *out = *in
  700. out.TypeMeta = in.TypeMeta
  701. in.ListMeta.DeepCopyInto(&out.ListMeta)
  702. if in.Items != nil {
  703. in, out := &in.Items, &out.Items
  704. *out = make([]GeneratorState, len(*in))
  705. for i := range *in {
  706. (*in)[i].DeepCopyInto(&(*out)[i])
  707. }
  708. }
  709. }
  710. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateList.
  711. func (in *GeneratorStateList) DeepCopy() *GeneratorStateList {
  712. if in == nil {
  713. return nil
  714. }
  715. out := new(GeneratorStateList)
  716. in.DeepCopyInto(out)
  717. return out
  718. }
  719. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  720. func (in *GeneratorStateList) DeepCopyObject() runtime.Object {
  721. if c := in.DeepCopy(); c != nil {
  722. return c
  723. }
  724. return nil
  725. }
  726. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  727. func (in *GeneratorStateSpec) DeepCopyInto(out *GeneratorStateSpec) {
  728. *out = *in
  729. if in.GarbageCollectionDeadline != nil {
  730. in, out := &in.GarbageCollectionDeadline, &out.GarbageCollectionDeadline
  731. *out = (*in).DeepCopy()
  732. }
  733. if in.Resource != nil {
  734. in, out := &in.Resource, &out.Resource
  735. *out = new(v1.JSON)
  736. (*in).DeepCopyInto(*out)
  737. }
  738. if in.State != nil {
  739. in, out := &in.State, &out.State
  740. *out = new(v1.JSON)
  741. (*in).DeepCopyInto(*out)
  742. }
  743. }
  744. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateSpec.
  745. func (in *GeneratorStateSpec) DeepCopy() *GeneratorStateSpec {
  746. if in == nil {
  747. return nil
  748. }
  749. out := new(GeneratorStateSpec)
  750. in.DeepCopyInto(out)
  751. return out
  752. }
  753. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  754. func (in *GeneratorStateStatus) DeepCopyInto(out *GeneratorStateStatus) {
  755. *out = *in
  756. if in.Conditions != nil {
  757. in, out := &in.Conditions, &out.Conditions
  758. *out = make([]GeneratorStateStatusCondition, len(*in))
  759. for i := range *in {
  760. (*in)[i].DeepCopyInto(&(*out)[i])
  761. }
  762. }
  763. }
  764. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateStatus.
  765. func (in *GeneratorStateStatus) DeepCopy() *GeneratorStateStatus {
  766. if in == nil {
  767. return nil
  768. }
  769. out := new(GeneratorStateStatus)
  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 *GeneratorStateStatusCondition) DeepCopyInto(out *GeneratorStateStatusCondition) {
  775. *out = *in
  776. in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
  777. }
  778. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GeneratorStateStatusCondition.
  779. func (in *GeneratorStateStatusCondition) DeepCopy() *GeneratorStateStatusCondition {
  780. if in == nil {
  781. return nil
  782. }
  783. out := new(GeneratorStateStatusCondition)
  784. in.DeepCopyInto(out)
  785. return out
  786. }
  787. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  788. func (in *GithubAccessToken) DeepCopyInto(out *GithubAccessToken) {
  789. *out = *in
  790. out.TypeMeta = in.TypeMeta
  791. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  792. in.Spec.DeepCopyInto(&out.Spec)
  793. }
  794. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessToken.
  795. func (in *GithubAccessToken) DeepCopy() *GithubAccessToken {
  796. if in == nil {
  797. return nil
  798. }
  799. out := new(GithubAccessToken)
  800. in.DeepCopyInto(out)
  801. return out
  802. }
  803. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  804. func (in *GithubAccessToken) DeepCopyObject() runtime.Object {
  805. if c := in.DeepCopy(); c != nil {
  806. return c
  807. }
  808. return nil
  809. }
  810. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  811. func (in *GithubAccessTokenList) DeepCopyInto(out *GithubAccessTokenList) {
  812. *out = *in
  813. out.TypeMeta = in.TypeMeta
  814. in.ListMeta.DeepCopyInto(&out.ListMeta)
  815. if in.Items != nil {
  816. in, out := &in.Items, &out.Items
  817. *out = make([]GithubAccessToken, len(*in))
  818. for i := range *in {
  819. (*in)[i].DeepCopyInto(&(*out)[i])
  820. }
  821. }
  822. }
  823. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessTokenList.
  824. func (in *GithubAccessTokenList) DeepCopy() *GithubAccessTokenList {
  825. if in == nil {
  826. return nil
  827. }
  828. out := new(GithubAccessTokenList)
  829. in.DeepCopyInto(out)
  830. return out
  831. }
  832. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  833. func (in *GithubAccessTokenList) DeepCopyObject() runtime.Object {
  834. if c := in.DeepCopy(); c != nil {
  835. return c
  836. }
  837. return nil
  838. }
  839. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  840. func (in *GithubAccessTokenSpec) DeepCopyInto(out *GithubAccessTokenSpec) {
  841. *out = *in
  842. if in.Repositories != nil {
  843. in, out := &in.Repositories, &out.Repositories
  844. *out = make([]string, len(*in))
  845. copy(*out, *in)
  846. }
  847. if in.Permissions != nil {
  848. in, out := &in.Permissions, &out.Permissions
  849. *out = make(map[string]string, len(*in))
  850. for key, val := range *in {
  851. (*out)[key] = val
  852. }
  853. }
  854. in.Auth.DeepCopyInto(&out.Auth)
  855. }
  856. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAccessTokenSpec.
  857. func (in *GithubAccessTokenSpec) DeepCopy() *GithubAccessTokenSpec {
  858. if in == nil {
  859. return nil
  860. }
  861. out := new(GithubAccessTokenSpec)
  862. in.DeepCopyInto(out)
  863. return out
  864. }
  865. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  866. func (in *GithubAuth) DeepCopyInto(out *GithubAuth) {
  867. *out = *in
  868. in.PrivateKey.DeepCopyInto(&out.PrivateKey)
  869. }
  870. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAuth.
  871. func (in *GithubAuth) DeepCopy() *GithubAuth {
  872. if in == nil {
  873. return nil
  874. }
  875. out := new(GithubAuth)
  876. in.DeepCopyInto(out)
  877. return out
  878. }
  879. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  880. func (in *GithubSecretRef) DeepCopyInto(out *GithubSecretRef) {
  881. *out = *in
  882. in.SecretRef.DeepCopyInto(&out.SecretRef)
  883. }
  884. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubSecretRef.
  885. func (in *GithubSecretRef) DeepCopy() *GithubSecretRef {
  886. if in == nil {
  887. return nil
  888. }
  889. out := new(GithubSecretRef)
  890. in.DeepCopyInto(out)
  891. return out
  892. }
  893. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  894. func (in *Grafana) DeepCopyInto(out *Grafana) {
  895. *out = *in
  896. out.TypeMeta = in.TypeMeta
  897. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  898. in.Spec.DeepCopyInto(&out.Spec)
  899. }
  900. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Grafana.
  901. func (in *Grafana) DeepCopy() *Grafana {
  902. if in == nil {
  903. return nil
  904. }
  905. out := new(Grafana)
  906. in.DeepCopyInto(out)
  907. return out
  908. }
  909. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  910. func (in *Grafana) DeepCopyObject() runtime.Object {
  911. if c := in.DeepCopy(); c != nil {
  912. return c
  913. }
  914. return nil
  915. }
  916. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  917. func (in *GrafanaAuth) DeepCopyInto(out *GrafanaAuth) {
  918. *out = *in
  919. if in.Token != nil {
  920. in, out := &in.Token, &out.Token
  921. *out = new(SecretKeySelector)
  922. **out = **in
  923. }
  924. if in.Basic != nil {
  925. in, out := &in.Basic, &out.Basic
  926. *out = new(GrafanaBasicAuth)
  927. **out = **in
  928. }
  929. }
  930. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaAuth.
  931. func (in *GrafanaAuth) DeepCopy() *GrafanaAuth {
  932. if in == nil {
  933. return nil
  934. }
  935. out := new(GrafanaAuth)
  936. in.DeepCopyInto(out)
  937. return out
  938. }
  939. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  940. func (in *GrafanaBasicAuth) DeepCopyInto(out *GrafanaBasicAuth) {
  941. *out = *in
  942. out.Password = in.Password
  943. }
  944. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaBasicAuth.
  945. func (in *GrafanaBasicAuth) DeepCopy() *GrafanaBasicAuth {
  946. if in == nil {
  947. return nil
  948. }
  949. out := new(GrafanaBasicAuth)
  950. in.DeepCopyInto(out)
  951. return out
  952. }
  953. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  954. func (in *GrafanaList) DeepCopyInto(out *GrafanaList) {
  955. *out = *in
  956. out.TypeMeta = in.TypeMeta
  957. in.ListMeta.DeepCopyInto(&out.ListMeta)
  958. if in.Items != nil {
  959. in, out := &in.Items, &out.Items
  960. *out = make([]Grafana, len(*in))
  961. for i := range *in {
  962. (*in)[i].DeepCopyInto(&(*out)[i])
  963. }
  964. }
  965. }
  966. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaList.
  967. func (in *GrafanaList) DeepCopy() *GrafanaList {
  968. if in == nil {
  969. return nil
  970. }
  971. out := new(GrafanaList)
  972. in.DeepCopyInto(out)
  973. return out
  974. }
  975. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  976. func (in *GrafanaList) DeepCopyObject() runtime.Object {
  977. if c := in.DeepCopy(); c != nil {
  978. return c
  979. }
  980. return nil
  981. }
  982. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  983. func (in *GrafanaServiceAccount) DeepCopyInto(out *GrafanaServiceAccount) {
  984. *out = *in
  985. }
  986. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaServiceAccount.
  987. func (in *GrafanaServiceAccount) DeepCopy() *GrafanaServiceAccount {
  988. if in == nil {
  989. return nil
  990. }
  991. out := new(GrafanaServiceAccount)
  992. in.DeepCopyInto(out)
  993. return out
  994. }
  995. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  996. func (in *GrafanaServiceAccountTokenState) DeepCopyInto(out *GrafanaServiceAccountTokenState) {
  997. *out = *in
  998. in.ServiceAccount.DeepCopyInto(&out.ServiceAccount)
  999. }
  1000. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaServiceAccountTokenState.
  1001. func (in *GrafanaServiceAccountTokenState) DeepCopy() *GrafanaServiceAccountTokenState {
  1002. if in == nil {
  1003. return nil
  1004. }
  1005. out := new(GrafanaServiceAccountTokenState)
  1006. in.DeepCopyInto(out)
  1007. return out
  1008. }
  1009. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1010. func (in *GrafanaSpec) DeepCopyInto(out *GrafanaSpec) {
  1011. *out = *in
  1012. in.Auth.DeepCopyInto(&out.Auth)
  1013. out.ServiceAccount = in.ServiceAccount
  1014. }
  1015. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaSpec.
  1016. func (in *GrafanaSpec) DeepCopy() *GrafanaSpec {
  1017. if in == nil {
  1018. return nil
  1019. }
  1020. out := new(GrafanaSpec)
  1021. in.DeepCopyInto(out)
  1022. return out
  1023. }
  1024. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1025. func (in *GrafanaStateServiceAccount) DeepCopyInto(out *GrafanaStateServiceAccount) {
  1026. *out = *in
  1027. if in.ServiceAccountID != nil {
  1028. in, out := &in.ServiceAccountID, &out.ServiceAccountID
  1029. *out = new(int64)
  1030. **out = **in
  1031. }
  1032. if in.ServiceAccountLogin != nil {
  1033. in, out := &in.ServiceAccountLogin, &out.ServiceAccountLogin
  1034. *out = new(string)
  1035. **out = **in
  1036. }
  1037. if in.ServiceAccountTokenID != nil {
  1038. in, out := &in.ServiceAccountTokenID, &out.ServiceAccountTokenID
  1039. *out = new(int64)
  1040. **out = **in
  1041. }
  1042. }
  1043. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaStateServiceAccount.
  1044. func (in *GrafanaStateServiceAccount) DeepCopy() *GrafanaStateServiceAccount {
  1045. if in == nil {
  1046. return nil
  1047. }
  1048. out := new(GrafanaStateServiceAccount)
  1049. in.DeepCopyInto(out)
  1050. return out
  1051. }
  1052. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1053. func (in *MFA) DeepCopyInto(out *MFA) {
  1054. *out = *in
  1055. out.TypeMeta = in.TypeMeta
  1056. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1057. in.Spec.DeepCopyInto(&out.Spec)
  1058. }
  1059. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFA.
  1060. func (in *MFA) DeepCopy() *MFA {
  1061. if in == nil {
  1062. return nil
  1063. }
  1064. out := new(MFA)
  1065. in.DeepCopyInto(out)
  1066. return out
  1067. }
  1068. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1069. func (in *MFA) DeepCopyObject() runtime.Object {
  1070. if c := in.DeepCopy(); c != nil {
  1071. return c
  1072. }
  1073. return nil
  1074. }
  1075. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1076. func (in *MFAList) DeepCopyInto(out *MFAList) {
  1077. *out = *in
  1078. out.TypeMeta = in.TypeMeta
  1079. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1080. if in.Items != nil {
  1081. in, out := &in.Items, &out.Items
  1082. *out = make([]MFA, len(*in))
  1083. for i := range *in {
  1084. (*in)[i].DeepCopyInto(&(*out)[i])
  1085. }
  1086. }
  1087. }
  1088. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFAList.
  1089. func (in *MFAList) DeepCopy() *MFAList {
  1090. if in == nil {
  1091. return nil
  1092. }
  1093. out := new(MFAList)
  1094. in.DeepCopyInto(out)
  1095. return out
  1096. }
  1097. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1098. func (in *MFAList) DeepCopyObject() runtime.Object {
  1099. if c := in.DeepCopy(); c != nil {
  1100. return c
  1101. }
  1102. return nil
  1103. }
  1104. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1105. func (in *MFASpec) DeepCopyInto(out *MFASpec) {
  1106. *out = *in
  1107. in.Secret.DeepCopyInto(&out.Secret)
  1108. if in.When != nil {
  1109. in, out := &in.When, &out.When
  1110. *out = (*in).DeepCopy()
  1111. }
  1112. }
  1113. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MFASpec.
  1114. func (in *MFASpec) DeepCopy() *MFASpec {
  1115. if in == nil {
  1116. return nil
  1117. }
  1118. out := new(MFASpec)
  1119. in.DeepCopyInto(out)
  1120. return out
  1121. }
  1122. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1123. func (in *NTLMProtocol) DeepCopyInto(out *NTLMProtocol) {
  1124. *out = *in
  1125. in.UserName.DeepCopyInto(&out.UserName)
  1126. in.Password.DeepCopyInto(&out.Password)
  1127. }
  1128. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NTLMProtocol.
  1129. func (in *NTLMProtocol) DeepCopy() *NTLMProtocol {
  1130. if in == nil {
  1131. return nil
  1132. }
  1133. out := new(NTLMProtocol)
  1134. in.DeepCopyInto(out)
  1135. return out
  1136. }
  1137. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1138. func (in *Password) DeepCopyInto(out *Password) {
  1139. *out = *in
  1140. out.TypeMeta = in.TypeMeta
  1141. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1142. in.Spec.DeepCopyInto(&out.Spec)
  1143. }
  1144. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Password.
  1145. func (in *Password) DeepCopy() *Password {
  1146. if in == nil {
  1147. return nil
  1148. }
  1149. out := new(Password)
  1150. in.DeepCopyInto(out)
  1151. return out
  1152. }
  1153. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1154. func (in *Password) DeepCopyObject() runtime.Object {
  1155. if c := in.DeepCopy(); c != nil {
  1156. return c
  1157. }
  1158. return nil
  1159. }
  1160. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1161. func (in *PasswordList) DeepCopyInto(out *PasswordList) {
  1162. *out = *in
  1163. out.TypeMeta = in.TypeMeta
  1164. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1165. if in.Items != nil {
  1166. in, out := &in.Items, &out.Items
  1167. *out = make([]Password, len(*in))
  1168. for i := range *in {
  1169. (*in)[i].DeepCopyInto(&(*out)[i])
  1170. }
  1171. }
  1172. }
  1173. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordList.
  1174. func (in *PasswordList) DeepCopy() *PasswordList {
  1175. if in == nil {
  1176. return nil
  1177. }
  1178. out := new(PasswordList)
  1179. in.DeepCopyInto(out)
  1180. return out
  1181. }
  1182. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1183. func (in *PasswordList) DeepCopyObject() runtime.Object {
  1184. if c := in.DeepCopy(); c != nil {
  1185. return c
  1186. }
  1187. return nil
  1188. }
  1189. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1190. func (in *PasswordSpec) DeepCopyInto(out *PasswordSpec) {
  1191. *out = *in
  1192. if in.Digits != nil {
  1193. in, out := &in.Digits, &out.Digits
  1194. *out = new(int)
  1195. **out = **in
  1196. }
  1197. if in.Symbols != nil {
  1198. in, out := &in.Symbols, &out.Symbols
  1199. *out = new(int)
  1200. **out = **in
  1201. }
  1202. if in.SymbolCharacters != nil {
  1203. in, out := &in.SymbolCharacters, &out.SymbolCharacters
  1204. *out = new(string)
  1205. **out = **in
  1206. }
  1207. }
  1208. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordSpec.
  1209. func (in *PasswordSpec) DeepCopy() *PasswordSpec {
  1210. if in == nil {
  1211. return nil
  1212. }
  1213. out := new(PasswordSpec)
  1214. in.DeepCopyInto(out)
  1215. return out
  1216. }
  1217. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1218. func (in *QuayAccessToken) DeepCopyInto(out *QuayAccessToken) {
  1219. *out = *in
  1220. out.TypeMeta = in.TypeMeta
  1221. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1222. in.Spec.DeepCopyInto(&out.Spec)
  1223. }
  1224. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessToken.
  1225. func (in *QuayAccessToken) DeepCopy() *QuayAccessToken {
  1226. if in == nil {
  1227. return nil
  1228. }
  1229. out := new(QuayAccessToken)
  1230. in.DeepCopyInto(out)
  1231. return out
  1232. }
  1233. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1234. func (in *QuayAccessToken) DeepCopyObject() runtime.Object {
  1235. if c := in.DeepCopy(); c != nil {
  1236. return c
  1237. }
  1238. return nil
  1239. }
  1240. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1241. func (in *QuayAccessTokenList) DeepCopyInto(out *QuayAccessTokenList) {
  1242. *out = *in
  1243. out.TypeMeta = in.TypeMeta
  1244. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1245. if in.Items != nil {
  1246. in, out := &in.Items, &out.Items
  1247. *out = make([]QuayAccessToken, len(*in))
  1248. for i := range *in {
  1249. (*in)[i].DeepCopyInto(&(*out)[i])
  1250. }
  1251. }
  1252. }
  1253. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessTokenList.
  1254. func (in *QuayAccessTokenList) DeepCopy() *QuayAccessTokenList {
  1255. if in == nil {
  1256. return nil
  1257. }
  1258. out := new(QuayAccessTokenList)
  1259. in.DeepCopyInto(out)
  1260. return out
  1261. }
  1262. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1263. func (in *QuayAccessTokenList) DeepCopyObject() runtime.Object {
  1264. if c := in.DeepCopy(); c != nil {
  1265. return c
  1266. }
  1267. return nil
  1268. }
  1269. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1270. func (in *QuayAccessTokenSpec) DeepCopyInto(out *QuayAccessTokenSpec) {
  1271. *out = *in
  1272. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  1273. }
  1274. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuayAccessTokenSpec.
  1275. func (in *QuayAccessTokenSpec) DeepCopy() *QuayAccessTokenSpec {
  1276. if in == nil {
  1277. return nil
  1278. }
  1279. out := new(QuayAccessTokenSpec)
  1280. in.DeepCopyInto(out)
  1281. return out
  1282. }
  1283. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1284. func (in *RequestParameters) DeepCopyInto(out *RequestParameters) {
  1285. *out = *in
  1286. if in.SessionDuration != nil {
  1287. in, out := &in.SessionDuration, &out.SessionDuration
  1288. *out = new(int32)
  1289. **out = **in
  1290. }
  1291. if in.SerialNumber != nil {
  1292. in, out := &in.SerialNumber, &out.SerialNumber
  1293. *out = new(string)
  1294. **out = **in
  1295. }
  1296. if in.TokenCode != nil {
  1297. in, out := &in.TokenCode, &out.TokenCode
  1298. *out = new(string)
  1299. **out = **in
  1300. }
  1301. }
  1302. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestParameters.
  1303. func (in *RequestParameters) DeepCopy() *RequestParameters {
  1304. if in == nil {
  1305. return nil
  1306. }
  1307. out := new(RequestParameters)
  1308. in.DeepCopyInto(out)
  1309. return out
  1310. }
  1311. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1312. func (in *SSHKey) DeepCopyInto(out *SSHKey) {
  1313. *out = *in
  1314. out.TypeMeta = in.TypeMeta
  1315. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1316. in.Spec.DeepCopyInto(&out.Spec)
  1317. }
  1318. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKey.
  1319. func (in *SSHKey) DeepCopy() *SSHKey {
  1320. if in == nil {
  1321. return nil
  1322. }
  1323. out := new(SSHKey)
  1324. in.DeepCopyInto(out)
  1325. return out
  1326. }
  1327. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1328. func (in *SSHKey) DeepCopyObject() runtime.Object {
  1329. if c := in.DeepCopy(); c != nil {
  1330. return c
  1331. }
  1332. return nil
  1333. }
  1334. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1335. func (in *SSHKeyList) DeepCopyInto(out *SSHKeyList) {
  1336. *out = *in
  1337. out.TypeMeta = in.TypeMeta
  1338. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1339. if in.Items != nil {
  1340. in, out := &in.Items, &out.Items
  1341. *out = make([]SSHKey, len(*in))
  1342. for i := range *in {
  1343. (*in)[i].DeepCopyInto(&(*out)[i])
  1344. }
  1345. }
  1346. }
  1347. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKeyList.
  1348. func (in *SSHKeyList) DeepCopy() *SSHKeyList {
  1349. if in == nil {
  1350. return nil
  1351. }
  1352. out := new(SSHKeyList)
  1353. in.DeepCopyInto(out)
  1354. return out
  1355. }
  1356. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1357. func (in *SSHKeyList) DeepCopyObject() runtime.Object {
  1358. if c := in.DeepCopy(); c != nil {
  1359. return c
  1360. }
  1361. return nil
  1362. }
  1363. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1364. func (in *SSHKeySpec) DeepCopyInto(out *SSHKeySpec) {
  1365. *out = *in
  1366. if in.KeySize != nil {
  1367. in, out := &in.KeySize, &out.KeySize
  1368. *out = new(int)
  1369. **out = **in
  1370. }
  1371. }
  1372. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SSHKeySpec.
  1373. func (in *SSHKeySpec) DeepCopy() *SSHKeySpec {
  1374. if in == nil {
  1375. return nil
  1376. }
  1377. out := new(SSHKeySpec)
  1378. in.DeepCopyInto(out)
  1379. return out
  1380. }
  1381. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1382. func (in *STSSessionToken) DeepCopyInto(out *STSSessionToken) {
  1383. *out = *in
  1384. out.TypeMeta = in.TypeMeta
  1385. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1386. in.Spec.DeepCopyInto(&out.Spec)
  1387. }
  1388. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionToken.
  1389. func (in *STSSessionToken) DeepCopy() *STSSessionToken {
  1390. if in == nil {
  1391. return nil
  1392. }
  1393. out := new(STSSessionToken)
  1394. in.DeepCopyInto(out)
  1395. return out
  1396. }
  1397. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1398. func (in *STSSessionToken) DeepCopyObject() runtime.Object {
  1399. if c := in.DeepCopy(); c != nil {
  1400. return c
  1401. }
  1402. return nil
  1403. }
  1404. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1405. func (in *STSSessionTokenList) DeepCopyInto(out *STSSessionTokenList) {
  1406. *out = *in
  1407. out.TypeMeta = in.TypeMeta
  1408. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1409. if in.Items != nil {
  1410. in, out := &in.Items, &out.Items
  1411. *out = make([]STSSessionToken, len(*in))
  1412. for i := range *in {
  1413. (*in)[i].DeepCopyInto(&(*out)[i])
  1414. }
  1415. }
  1416. }
  1417. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionTokenList.
  1418. func (in *STSSessionTokenList) DeepCopy() *STSSessionTokenList {
  1419. if in == nil {
  1420. return nil
  1421. }
  1422. out := new(STSSessionTokenList)
  1423. in.DeepCopyInto(out)
  1424. return out
  1425. }
  1426. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1427. func (in *STSSessionTokenList) DeepCopyObject() runtime.Object {
  1428. if c := in.DeepCopy(); c != nil {
  1429. return c
  1430. }
  1431. return nil
  1432. }
  1433. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1434. func (in *STSSessionTokenSpec) DeepCopyInto(out *STSSessionTokenSpec) {
  1435. *out = *in
  1436. in.Auth.DeepCopyInto(&out.Auth)
  1437. if in.RequestParameters != nil {
  1438. in, out := &in.RequestParameters, &out.RequestParameters
  1439. *out = new(RequestParameters)
  1440. (*in).DeepCopyInto(*out)
  1441. }
  1442. }
  1443. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new STSSessionTokenSpec.
  1444. func (in *STSSessionTokenSpec) DeepCopy() *STSSessionTokenSpec {
  1445. if in == nil {
  1446. return nil
  1447. }
  1448. out := new(STSSessionTokenSpec)
  1449. in.DeepCopyInto(out)
  1450. return out
  1451. }
  1452. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1453. func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
  1454. *out = *in
  1455. }
  1456. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
  1457. func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
  1458. if in == nil {
  1459. return nil
  1460. }
  1461. out := new(SecretKeySelector)
  1462. in.DeepCopyInto(out)
  1463. return out
  1464. }
  1465. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1466. func (in *UUID) DeepCopyInto(out *UUID) {
  1467. *out = *in
  1468. out.TypeMeta = in.TypeMeta
  1469. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1470. out.Spec = in.Spec
  1471. }
  1472. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUID.
  1473. func (in *UUID) DeepCopy() *UUID {
  1474. if in == nil {
  1475. return nil
  1476. }
  1477. out := new(UUID)
  1478. in.DeepCopyInto(out)
  1479. return out
  1480. }
  1481. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1482. func (in *UUID) DeepCopyObject() runtime.Object {
  1483. if c := in.DeepCopy(); c != nil {
  1484. return c
  1485. }
  1486. return nil
  1487. }
  1488. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1489. func (in *UUIDList) DeepCopyInto(out *UUIDList) {
  1490. *out = *in
  1491. out.TypeMeta = in.TypeMeta
  1492. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1493. if in.Items != nil {
  1494. in, out := &in.Items, &out.Items
  1495. *out = make([]UUID, len(*in))
  1496. for i := range *in {
  1497. (*in)[i].DeepCopyInto(&(*out)[i])
  1498. }
  1499. }
  1500. }
  1501. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDList.
  1502. func (in *UUIDList) DeepCopy() *UUIDList {
  1503. if in == nil {
  1504. return nil
  1505. }
  1506. out := new(UUIDList)
  1507. in.DeepCopyInto(out)
  1508. return out
  1509. }
  1510. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1511. func (in *UUIDList) DeepCopyObject() runtime.Object {
  1512. if c := in.DeepCopy(); c != nil {
  1513. return c
  1514. }
  1515. return nil
  1516. }
  1517. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1518. func (in *UUIDSpec) DeepCopyInto(out *UUIDSpec) {
  1519. *out = *in
  1520. }
  1521. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UUIDSpec.
  1522. func (in *UUIDSpec) DeepCopy() *UUIDSpec {
  1523. if in == nil {
  1524. return nil
  1525. }
  1526. out := new(UUIDSpec)
  1527. in.DeepCopyInto(out)
  1528. return out
  1529. }
  1530. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1531. func (in *VaultDynamicSecret) DeepCopyInto(out *VaultDynamicSecret) {
  1532. *out = *in
  1533. out.TypeMeta = in.TypeMeta
  1534. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1535. in.Spec.DeepCopyInto(&out.Spec)
  1536. }
  1537. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecret.
  1538. func (in *VaultDynamicSecret) DeepCopy() *VaultDynamicSecret {
  1539. if in == nil {
  1540. return nil
  1541. }
  1542. out := new(VaultDynamicSecret)
  1543. in.DeepCopyInto(out)
  1544. return out
  1545. }
  1546. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1547. func (in *VaultDynamicSecret) DeepCopyObject() runtime.Object {
  1548. if c := in.DeepCopy(); c != nil {
  1549. return c
  1550. }
  1551. return nil
  1552. }
  1553. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1554. func (in *VaultDynamicSecretList) DeepCopyInto(out *VaultDynamicSecretList) {
  1555. *out = *in
  1556. out.TypeMeta = in.TypeMeta
  1557. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1558. if in.Items != nil {
  1559. in, out := &in.Items, &out.Items
  1560. *out = make([]VaultDynamicSecret, len(*in))
  1561. for i := range *in {
  1562. (*in)[i].DeepCopyInto(&(*out)[i])
  1563. }
  1564. }
  1565. }
  1566. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretList.
  1567. func (in *VaultDynamicSecretList) DeepCopy() *VaultDynamicSecretList {
  1568. if in == nil {
  1569. return nil
  1570. }
  1571. out := new(VaultDynamicSecretList)
  1572. in.DeepCopyInto(out)
  1573. return out
  1574. }
  1575. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1576. func (in *VaultDynamicSecretList) DeepCopyObject() runtime.Object {
  1577. if c := in.DeepCopy(); c != nil {
  1578. return c
  1579. }
  1580. return nil
  1581. }
  1582. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1583. func (in *VaultDynamicSecretSpec) DeepCopyInto(out *VaultDynamicSecretSpec) {
  1584. *out = *in
  1585. if in.Parameters != nil {
  1586. in, out := &in.Parameters, &out.Parameters
  1587. *out = new(v1.JSON)
  1588. (*in).DeepCopyInto(*out)
  1589. }
  1590. if in.RetrySettings != nil {
  1591. in, out := &in.RetrySettings, &out.RetrySettings
  1592. *out = new(externalsecretsv1.SecretStoreRetrySettings)
  1593. (*in).DeepCopyInto(*out)
  1594. }
  1595. if in.Provider != nil {
  1596. in, out := &in.Provider, &out.Provider
  1597. *out = new(externalsecretsv1.VaultProvider)
  1598. (*in).DeepCopyInto(*out)
  1599. }
  1600. }
  1601. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretSpec.
  1602. func (in *VaultDynamicSecretSpec) DeepCopy() *VaultDynamicSecretSpec {
  1603. if in == nil {
  1604. return nil
  1605. }
  1606. out := new(VaultDynamicSecretSpec)
  1607. in.DeepCopyInto(out)
  1608. return out
  1609. }
  1610. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1611. func (in *Webhook) DeepCopyInto(out *Webhook) {
  1612. *out = *in
  1613. out.TypeMeta = in.TypeMeta
  1614. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  1615. in.Spec.DeepCopyInto(&out.Spec)
  1616. }
  1617. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Webhook.
  1618. func (in *Webhook) DeepCopy() *Webhook {
  1619. if in == nil {
  1620. return nil
  1621. }
  1622. out := new(Webhook)
  1623. in.DeepCopyInto(out)
  1624. return out
  1625. }
  1626. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1627. func (in *Webhook) DeepCopyObject() runtime.Object {
  1628. if c := in.DeepCopy(); c != nil {
  1629. return c
  1630. }
  1631. return nil
  1632. }
  1633. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1634. func (in *WebhookCAProvider) DeepCopyInto(out *WebhookCAProvider) {
  1635. *out = *in
  1636. if in.Namespace != nil {
  1637. in, out := &in.Namespace, &out.Namespace
  1638. *out = new(string)
  1639. **out = **in
  1640. }
  1641. }
  1642. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookCAProvider.
  1643. func (in *WebhookCAProvider) DeepCopy() *WebhookCAProvider {
  1644. if in == nil {
  1645. return nil
  1646. }
  1647. out := new(WebhookCAProvider)
  1648. in.DeepCopyInto(out)
  1649. return out
  1650. }
  1651. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1652. func (in *WebhookList) DeepCopyInto(out *WebhookList) {
  1653. *out = *in
  1654. out.TypeMeta = in.TypeMeta
  1655. in.ListMeta.DeepCopyInto(&out.ListMeta)
  1656. if in.Items != nil {
  1657. in, out := &in.Items, &out.Items
  1658. *out = make([]Webhook, len(*in))
  1659. for i := range *in {
  1660. (*in)[i].DeepCopyInto(&(*out)[i])
  1661. }
  1662. }
  1663. }
  1664. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookList.
  1665. func (in *WebhookList) DeepCopy() *WebhookList {
  1666. if in == nil {
  1667. return nil
  1668. }
  1669. out := new(WebhookList)
  1670. in.DeepCopyInto(out)
  1671. return out
  1672. }
  1673. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  1674. func (in *WebhookList) DeepCopyObject() runtime.Object {
  1675. if c := in.DeepCopy(); c != nil {
  1676. return c
  1677. }
  1678. return nil
  1679. }
  1680. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1681. func (in *WebhookResult) DeepCopyInto(out *WebhookResult) {
  1682. *out = *in
  1683. }
  1684. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookResult.
  1685. func (in *WebhookResult) DeepCopy() *WebhookResult {
  1686. if in == nil {
  1687. return nil
  1688. }
  1689. out := new(WebhookResult)
  1690. in.DeepCopyInto(out)
  1691. return out
  1692. }
  1693. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1694. func (in *WebhookSecret) DeepCopyInto(out *WebhookSecret) {
  1695. *out = *in
  1696. out.SecretRef = in.SecretRef
  1697. }
  1698. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSecret.
  1699. func (in *WebhookSecret) DeepCopy() *WebhookSecret {
  1700. if in == nil {
  1701. return nil
  1702. }
  1703. out := new(WebhookSecret)
  1704. in.DeepCopyInto(out)
  1705. return out
  1706. }
  1707. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  1708. func (in *WebhookSpec) DeepCopyInto(out *WebhookSpec) {
  1709. *out = *in
  1710. if in.Headers != nil {
  1711. in, out := &in.Headers, &out.Headers
  1712. *out = make(map[string]string, len(*in))
  1713. for key, val := range *in {
  1714. (*out)[key] = val
  1715. }
  1716. }
  1717. if in.Auth != nil {
  1718. in, out := &in.Auth, &out.Auth
  1719. *out = new(AuthorizationProtocol)
  1720. (*in).DeepCopyInto(*out)
  1721. }
  1722. if in.Timeout != nil {
  1723. in, out := &in.Timeout, &out.Timeout
  1724. *out = new(apismetav1.Duration)
  1725. **out = **in
  1726. }
  1727. out.Result = in.Result
  1728. if in.Secrets != nil {
  1729. in, out := &in.Secrets, &out.Secrets
  1730. *out = make([]WebhookSecret, len(*in))
  1731. copy(*out, *in)
  1732. }
  1733. if in.CABundle != nil {
  1734. in, out := &in.CABundle, &out.CABundle
  1735. *out = make([]byte, len(*in))
  1736. copy(*out, *in)
  1737. }
  1738. if in.CAProvider != nil {
  1739. in, out := &in.CAProvider, &out.CAProvider
  1740. *out = new(WebhookCAProvider)
  1741. (*in).DeepCopyInto(*out)
  1742. }
  1743. }
  1744. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookSpec.
  1745. func (in *WebhookSpec) DeepCopy() *WebhookSpec {
  1746. if in == nil {
  1747. return nil
  1748. }
  1749. out := new(WebhookSpec)
  1750. in.DeepCopyInto(out)
  1751. return out
  1752. }