zz_generated.deepcopy.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  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. "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
  17. "github.com/external-secrets/external-secrets/apis/meta/v1"
  18. apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
  19. runtime "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 *ACRAccessToken) DeepCopyInto(out *ACRAccessToken) {
  23. *out = *in
  24. out.TypeMeta = in.TypeMeta
  25. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  26. in.Spec.DeepCopyInto(&out.Spec)
  27. }
  28. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessToken.
  29. func (in *ACRAccessToken) DeepCopy() *ACRAccessToken {
  30. if in == nil {
  31. return nil
  32. }
  33. out := new(ACRAccessToken)
  34. in.DeepCopyInto(out)
  35. return out
  36. }
  37. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  38. func (in *ACRAccessToken) DeepCopyObject() runtime.Object {
  39. if c := in.DeepCopy(); c != nil {
  40. return c
  41. }
  42. return nil
  43. }
  44. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  45. func (in *ACRAccessTokenList) DeepCopyInto(out *ACRAccessTokenList) {
  46. *out = *in
  47. out.TypeMeta = in.TypeMeta
  48. in.ListMeta.DeepCopyInto(&out.ListMeta)
  49. if in.Items != nil {
  50. in, out := &in.Items, &out.Items
  51. *out = make([]ACRAccessToken, len(*in))
  52. for i := range *in {
  53. (*in)[i].DeepCopyInto(&(*out)[i])
  54. }
  55. }
  56. }
  57. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenList.
  58. func (in *ACRAccessTokenList) DeepCopy() *ACRAccessTokenList {
  59. if in == nil {
  60. return nil
  61. }
  62. out := new(ACRAccessTokenList)
  63. in.DeepCopyInto(out)
  64. return out
  65. }
  66. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  67. func (in *ACRAccessTokenList) DeepCopyObject() runtime.Object {
  68. if c := in.DeepCopy(); c != nil {
  69. return c
  70. }
  71. return nil
  72. }
  73. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  74. func (in *ACRAccessTokenSpec) DeepCopyInto(out *ACRAccessTokenSpec) {
  75. *out = *in
  76. in.Auth.DeepCopyInto(&out.Auth)
  77. }
  78. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenSpec.
  79. func (in *ACRAccessTokenSpec) DeepCopy() *ACRAccessTokenSpec {
  80. if in == nil {
  81. return nil
  82. }
  83. out := new(ACRAccessTokenSpec)
  84. in.DeepCopyInto(out)
  85. return out
  86. }
  87. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  88. func (in *ACRAuth) DeepCopyInto(out *ACRAuth) {
  89. *out = *in
  90. if in.ServicePrincipal != nil {
  91. in, out := &in.ServicePrincipal, &out.ServicePrincipal
  92. *out = new(AzureACRServicePrincipalAuth)
  93. (*in).DeepCopyInto(*out)
  94. }
  95. if in.ManagedIdentity != nil {
  96. in, out := &in.ManagedIdentity, &out.ManagedIdentity
  97. *out = new(AzureACRManagedIdentityAuth)
  98. **out = **in
  99. }
  100. if in.WorkloadIdentity != nil {
  101. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  102. *out = new(AzureACRWorkloadIdentityAuth)
  103. (*in).DeepCopyInto(*out)
  104. }
  105. }
  106. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAuth.
  107. func (in *ACRAuth) DeepCopy() *ACRAuth {
  108. if in == nil {
  109. return nil
  110. }
  111. out := new(ACRAuth)
  112. in.DeepCopyInto(out)
  113. return out
  114. }
  115. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  116. func (in *AWSAuth) DeepCopyInto(out *AWSAuth) {
  117. *out = *in
  118. if in.SecretRef != nil {
  119. in, out := &in.SecretRef, &out.SecretRef
  120. *out = new(AWSAuthSecretRef)
  121. (*in).DeepCopyInto(*out)
  122. }
  123. if in.JWTAuth != nil {
  124. in, out := &in.JWTAuth, &out.JWTAuth
  125. *out = new(AWSJWTAuth)
  126. (*in).DeepCopyInto(*out)
  127. }
  128. }
  129. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuth.
  130. func (in *AWSAuth) DeepCopy() *AWSAuth {
  131. if in == nil {
  132. return nil
  133. }
  134. out := new(AWSAuth)
  135. in.DeepCopyInto(out)
  136. return out
  137. }
  138. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  139. func (in *AWSAuthSecretRef) DeepCopyInto(out *AWSAuthSecretRef) {
  140. *out = *in
  141. in.AccessKeyID.DeepCopyInto(&out.AccessKeyID)
  142. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  143. if in.SessionToken != nil {
  144. in, out := &in.SessionToken, &out.SessionToken
  145. *out = new(v1.SecretKeySelector)
  146. (*in).DeepCopyInto(*out)
  147. }
  148. }
  149. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSAuthSecretRef.
  150. func (in *AWSAuthSecretRef) DeepCopy() *AWSAuthSecretRef {
  151. if in == nil {
  152. return nil
  153. }
  154. out := new(AWSAuthSecretRef)
  155. in.DeepCopyInto(out)
  156. return out
  157. }
  158. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  159. func (in *AWSJWTAuth) DeepCopyInto(out *AWSJWTAuth) {
  160. *out = *in
  161. if in.ServiceAccountRef != nil {
  162. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  163. *out = new(v1.ServiceAccountSelector)
  164. (*in).DeepCopyInto(*out)
  165. }
  166. }
  167. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSJWTAuth.
  168. func (in *AWSJWTAuth) DeepCopy() *AWSJWTAuth {
  169. if in == nil {
  170. return nil
  171. }
  172. out := new(AWSJWTAuth)
  173. in.DeepCopyInto(out)
  174. return out
  175. }
  176. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  177. func (in *AzureACRManagedIdentityAuth) DeepCopyInto(out *AzureACRManagedIdentityAuth) {
  178. *out = *in
  179. }
  180. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRManagedIdentityAuth.
  181. func (in *AzureACRManagedIdentityAuth) DeepCopy() *AzureACRManagedIdentityAuth {
  182. if in == nil {
  183. return nil
  184. }
  185. out := new(AzureACRManagedIdentityAuth)
  186. in.DeepCopyInto(out)
  187. return out
  188. }
  189. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  190. func (in *AzureACRServicePrincipalAuth) DeepCopyInto(out *AzureACRServicePrincipalAuth) {
  191. *out = *in
  192. in.SecretRef.DeepCopyInto(&out.SecretRef)
  193. }
  194. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuth.
  195. func (in *AzureACRServicePrincipalAuth) DeepCopy() *AzureACRServicePrincipalAuth {
  196. if in == nil {
  197. return nil
  198. }
  199. out := new(AzureACRServicePrincipalAuth)
  200. in.DeepCopyInto(out)
  201. return out
  202. }
  203. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  204. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopyInto(out *AzureACRServicePrincipalAuthSecretRef) {
  205. *out = *in
  206. in.ClientID.DeepCopyInto(&out.ClientID)
  207. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  208. }
  209. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuthSecretRef.
  210. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopy() *AzureACRServicePrincipalAuthSecretRef {
  211. if in == nil {
  212. return nil
  213. }
  214. out := new(AzureACRServicePrincipalAuthSecretRef)
  215. in.DeepCopyInto(out)
  216. return out
  217. }
  218. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  219. func (in *AzureACRWorkloadIdentityAuth) DeepCopyInto(out *AzureACRWorkloadIdentityAuth) {
  220. *out = *in
  221. if in.ServiceAccountRef != nil {
  222. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  223. *out = new(v1.ServiceAccountSelector)
  224. (*in).DeepCopyInto(*out)
  225. }
  226. }
  227. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRWorkloadIdentityAuth.
  228. func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth {
  229. if in == nil {
  230. return nil
  231. }
  232. out := new(AzureACRWorkloadIdentityAuth)
  233. in.DeepCopyInto(out)
  234. return out
  235. }
  236. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  237. func (in *ControllerClassResource) DeepCopyInto(out *ControllerClassResource) {
  238. *out = *in
  239. out.Spec = in.Spec
  240. }
  241. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerClassResource.
  242. func (in *ControllerClassResource) DeepCopy() *ControllerClassResource {
  243. if in == nil {
  244. return nil
  245. }
  246. out := new(ControllerClassResource)
  247. in.DeepCopyInto(out)
  248. return out
  249. }
  250. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  251. func (in *ECRAuthorizationToken) DeepCopyInto(out *ECRAuthorizationToken) {
  252. *out = *in
  253. out.TypeMeta = in.TypeMeta
  254. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  255. in.Spec.DeepCopyInto(&out.Spec)
  256. }
  257. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationToken.
  258. func (in *ECRAuthorizationToken) DeepCopy() *ECRAuthorizationToken {
  259. if in == nil {
  260. return nil
  261. }
  262. out := new(ECRAuthorizationToken)
  263. in.DeepCopyInto(out)
  264. return out
  265. }
  266. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  267. func (in *ECRAuthorizationToken) DeepCopyObject() runtime.Object {
  268. if c := in.DeepCopy(); c != nil {
  269. return c
  270. }
  271. return nil
  272. }
  273. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  274. func (in *ECRAuthorizationTokenList) DeepCopyInto(out *ECRAuthorizationTokenList) {
  275. *out = *in
  276. out.TypeMeta = in.TypeMeta
  277. in.ListMeta.DeepCopyInto(&out.ListMeta)
  278. if in.Items != nil {
  279. in, out := &in.Items, &out.Items
  280. *out = make([]ECRAuthorizationToken, len(*in))
  281. for i := range *in {
  282. (*in)[i].DeepCopyInto(&(*out)[i])
  283. }
  284. }
  285. }
  286. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenList.
  287. func (in *ECRAuthorizationTokenList) DeepCopy() *ECRAuthorizationTokenList {
  288. if in == nil {
  289. return nil
  290. }
  291. out := new(ECRAuthorizationTokenList)
  292. in.DeepCopyInto(out)
  293. return out
  294. }
  295. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  296. func (in *ECRAuthorizationTokenList) DeepCopyObject() runtime.Object {
  297. if c := in.DeepCopy(); c != nil {
  298. return c
  299. }
  300. return nil
  301. }
  302. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  303. func (in *ECRAuthorizationTokenSpec) DeepCopyInto(out *ECRAuthorizationTokenSpec) {
  304. *out = *in
  305. in.Auth.DeepCopyInto(&out.Auth)
  306. }
  307. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenSpec.
  308. func (in *ECRAuthorizationTokenSpec) DeepCopy() *ECRAuthorizationTokenSpec {
  309. if in == nil {
  310. return nil
  311. }
  312. out := new(ECRAuthorizationTokenSpec)
  313. in.DeepCopyInto(out)
  314. return out
  315. }
  316. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  317. func (in *Fake) DeepCopyInto(out *Fake) {
  318. *out = *in
  319. out.TypeMeta = in.TypeMeta
  320. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  321. in.Spec.DeepCopyInto(&out.Spec)
  322. }
  323. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
  324. func (in *Fake) DeepCopy() *Fake {
  325. if in == nil {
  326. return nil
  327. }
  328. out := new(Fake)
  329. in.DeepCopyInto(out)
  330. return out
  331. }
  332. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  333. func (in *Fake) DeepCopyObject() runtime.Object {
  334. if c := in.DeepCopy(); c != nil {
  335. return c
  336. }
  337. return nil
  338. }
  339. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  340. func (in *FakeList) DeepCopyInto(out *FakeList) {
  341. *out = *in
  342. out.TypeMeta = in.TypeMeta
  343. in.ListMeta.DeepCopyInto(&out.ListMeta)
  344. if in.Items != nil {
  345. in, out := &in.Items, &out.Items
  346. *out = make([]Fake, len(*in))
  347. for i := range *in {
  348. (*in)[i].DeepCopyInto(&(*out)[i])
  349. }
  350. }
  351. }
  352. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
  353. func (in *FakeList) DeepCopy() *FakeList {
  354. if in == nil {
  355. return nil
  356. }
  357. out := new(FakeList)
  358. in.DeepCopyInto(out)
  359. return out
  360. }
  361. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  362. func (in *FakeList) DeepCopyObject() runtime.Object {
  363. if c := in.DeepCopy(); c != nil {
  364. return c
  365. }
  366. return nil
  367. }
  368. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  369. func (in *FakeSpec) DeepCopyInto(out *FakeSpec) {
  370. *out = *in
  371. if in.Data != nil {
  372. in, out := &in.Data, &out.Data
  373. *out = make(map[string]string, len(*in))
  374. for key, val := range *in {
  375. (*out)[key] = val
  376. }
  377. }
  378. }
  379. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeSpec.
  380. func (in *FakeSpec) DeepCopy() *FakeSpec {
  381. if in == nil {
  382. return nil
  383. }
  384. out := new(FakeSpec)
  385. in.DeepCopyInto(out)
  386. return out
  387. }
  388. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  389. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  390. *out = *in
  391. if in.SecretRef != nil {
  392. in, out := &in.SecretRef, &out.SecretRef
  393. *out = new(GCPSMAuthSecretRef)
  394. (*in).DeepCopyInto(*out)
  395. }
  396. if in.WorkloadIdentity != nil {
  397. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  398. *out = new(GCPWorkloadIdentity)
  399. (*in).DeepCopyInto(*out)
  400. }
  401. }
  402. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  403. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  404. if in == nil {
  405. return nil
  406. }
  407. out := new(GCPSMAuth)
  408. in.DeepCopyInto(out)
  409. return out
  410. }
  411. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  412. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  413. *out = *in
  414. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  415. }
  416. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  417. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  418. if in == nil {
  419. return nil
  420. }
  421. out := new(GCPSMAuthSecretRef)
  422. in.DeepCopyInto(out)
  423. return out
  424. }
  425. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  426. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  427. *out = *in
  428. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  429. }
  430. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  431. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  432. if in == nil {
  433. return nil
  434. }
  435. out := new(GCPWorkloadIdentity)
  436. in.DeepCopyInto(out)
  437. return out
  438. }
  439. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  440. func (in *GCRAccessToken) DeepCopyInto(out *GCRAccessToken) {
  441. *out = *in
  442. out.TypeMeta = in.TypeMeta
  443. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  444. in.Spec.DeepCopyInto(&out.Spec)
  445. }
  446. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessToken.
  447. func (in *GCRAccessToken) DeepCopy() *GCRAccessToken {
  448. if in == nil {
  449. return nil
  450. }
  451. out := new(GCRAccessToken)
  452. in.DeepCopyInto(out)
  453. return out
  454. }
  455. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  456. func (in *GCRAccessToken) DeepCopyObject() runtime.Object {
  457. if c := in.DeepCopy(); c != nil {
  458. return c
  459. }
  460. return nil
  461. }
  462. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  463. func (in *GCRAccessTokenList) DeepCopyInto(out *GCRAccessTokenList) {
  464. *out = *in
  465. out.TypeMeta = in.TypeMeta
  466. in.ListMeta.DeepCopyInto(&out.ListMeta)
  467. if in.Items != nil {
  468. in, out := &in.Items, &out.Items
  469. *out = make([]GCRAccessToken, len(*in))
  470. for i := range *in {
  471. (*in)[i].DeepCopyInto(&(*out)[i])
  472. }
  473. }
  474. }
  475. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenList.
  476. func (in *GCRAccessTokenList) DeepCopy() *GCRAccessTokenList {
  477. if in == nil {
  478. return nil
  479. }
  480. out := new(GCRAccessTokenList)
  481. in.DeepCopyInto(out)
  482. return out
  483. }
  484. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  485. func (in *GCRAccessTokenList) DeepCopyObject() runtime.Object {
  486. if c := in.DeepCopy(); c != nil {
  487. return c
  488. }
  489. return nil
  490. }
  491. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  492. func (in *GCRAccessTokenSpec) DeepCopyInto(out *GCRAccessTokenSpec) {
  493. *out = *in
  494. in.Auth.DeepCopyInto(&out.Auth)
  495. }
  496. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenSpec.
  497. func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
  498. if in == nil {
  499. return nil
  500. }
  501. out := new(GCRAccessTokenSpec)
  502. in.DeepCopyInto(out)
  503. return out
  504. }
  505. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  506. func (in *Password) DeepCopyInto(out *Password) {
  507. *out = *in
  508. out.TypeMeta = in.TypeMeta
  509. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  510. in.Spec.DeepCopyInto(&out.Spec)
  511. }
  512. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Password.
  513. func (in *Password) DeepCopy() *Password {
  514. if in == nil {
  515. return nil
  516. }
  517. out := new(Password)
  518. in.DeepCopyInto(out)
  519. return out
  520. }
  521. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  522. func (in *Password) DeepCopyObject() runtime.Object {
  523. if c := in.DeepCopy(); c != nil {
  524. return c
  525. }
  526. return nil
  527. }
  528. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  529. func (in *PasswordList) DeepCopyInto(out *PasswordList) {
  530. *out = *in
  531. out.TypeMeta = in.TypeMeta
  532. in.ListMeta.DeepCopyInto(&out.ListMeta)
  533. if in.Items != nil {
  534. in, out := &in.Items, &out.Items
  535. *out = make([]Password, len(*in))
  536. for i := range *in {
  537. (*in)[i].DeepCopyInto(&(*out)[i])
  538. }
  539. }
  540. }
  541. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordList.
  542. func (in *PasswordList) DeepCopy() *PasswordList {
  543. if in == nil {
  544. return nil
  545. }
  546. out := new(PasswordList)
  547. in.DeepCopyInto(out)
  548. return out
  549. }
  550. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  551. func (in *PasswordList) DeepCopyObject() runtime.Object {
  552. if c := in.DeepCopy(); c != nil {
  553. return c
  554. }
  555. return nil
  556. }
  557. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  558. func (in *PasswordSpec) DeepCopyInto(out *PasswordSpec) {
  559. *out = *in
  560. if in.Digits != nil {
  561. in, out := &in.Digits, &out.Digits
  562. *out = new(int)
  563. **out = **in
  564. }
  565. if in.Symbols != nil {
  566. in, out := &in.Symbols, &out.Symbols
  567. *out = new(int)
  568. **out = **in
  569. }
  570. if in.SymbolCharacters != nil {
  571. in, out := &in.SymbolCharacters, &out.SymbolCharacters
  572. *out = new(string)
  573. **out = **in
  574. }
  575. }
  576. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordSpec.
  577. func (in *PasswordSpec) DeepCopy() *PasswordSpec {
  578. if in == nil {
  579. return nil
  580. }
  581. out := new(PasswordSpec)
  582. in.DeepCopyInto(out)
  583. return out
  584. }
  585. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  586. func (in *VaultDynamicSecret) DeepCopyInto(out *VaultDynamicSecret) {
  587. *out = *in
  588. out.TypeMeta = in.TypeMeta
  589. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  590. in.Spec.DeepCopyInto(&out.Spec)
  591. }
  592. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecret.
  593. func (in *VaultDynamicSecret) DeepCopy() *VaultDynamicSecret {
  594. if in == nil {
  595. return nil
  596. }
  597. out := new(VaultDynamicSecret)
  598. in.DeepCopyInto(out)
  599. return out
  600. }
  601. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  602. func (in *VaultDynamicSecret) DeepCopyObject() runtime.Object {
  603. if c := in.DeepCopy(); c != nil {
  604. return c
  605. }
  606. return nil
  607. }
  608. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  609. func (in *VaultDynamicSecretList) DeepCopyInto(out *VaultDynamicSecretList) {
  610. *out = *in
  611. out.TypeMeta = in.TypeMeta
  612. in.ListMeta.DeepCopyInto(&out.ListMeta)
  613. if in.Items != nil {
  614. in, out := &in.Items, &out.Items
  615. *out = make([]VaultDynamicSecret, len(*in))
  616. for i := range *in {
  617. (*in)[i].DeepCopyInto(&(*out)[i])
  618. }
  619. }
  620. }
  621. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretList.
  622. func (in *VaultDynamicSecretList) DeepCopy() *VaultDynamicSecretList {
  623. if in == nil {
  624. return nil
  625. }
  626. out := new(VaultDynamicSecretList)
  627. in.DeepCopyInto(out)
  628. return out
  629. }
  630. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  631. func (in *VaultDynamicSecretList) DeepCopyObject() runtime.Object {
  632. if c := in.DeepCopy(); c != nil {
  633. return c
  634. }
  635. return nil
  636. }
  637. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  638. func (in *VaultDynamicSecretSpec) DeepCopyInto(out *VaultDynamicSecretSpec) {
  639. *out = *in
  640. if in.Parameters != nil {
  641. in, out := &in.Parameters, &out.Parameters
  642. *out = new(apiextensionsv1.JSON)
  643. (*in).DeepCopyInto(*out)
  644. }
  645. if in.Provider != nil {
  646. in, out := &in.Provider, &out.Provider
  647. *out = new(v1beta1.VaultProvider)
  648. (*in).DeepCopyInto(*out)
  649. }
  650. }
  651. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretSpec.
  652. func (in *VaultDynamicSecretSpec) DeepCopy() *VaultDynamicSecretSpec {
  653. if in == nil {
  654. return nil
  655. }
  656. out := new(VaultDynamicSecretSpec)
  657. in.DeepCopyInto(out)
  658. return out
  659. }