zz_generated.deepcopy.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. //go:build !ignore_autogenerated
  2. // +build !ignore_autogenerated
  3. /*
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. // Code generated by controller-gen. DO NOT EDIT.
  15. package v1alpha1
  16. import (
  17. "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
  18. "github.com/external-secrets/external-secrets/apis/meta/v1"
  19. apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
  20. runtime "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(v1.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(v1.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 *AzureACRManagedIdentityAuth) DeepCopyInto(out *AzureACRManagedIdentityAuth) {
  179. *out = *in
  180. }
  181. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRManagedIdentityAuth.
  182. func (in *AzureACRManagedIdentityAuth) DeepCopy() *AzureACRManagedIdentityAuth {
  183. if in == nil {
  184. return nil
  185. }
  186. out := new(AzureACRManagedIdentityAuth)
  187. in.DeepCopyInto(out)
  188. return out
  189. }
  190. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  191. func (in *AzureACRServicePrincipalAuth) DeepCopyInto(out *AzureACRServicePrincipalAuth) {
  192. *out = *in
  193. in.SecretRef.DeepCopyInto(&out.SecretRef)
  194. }
  195. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuth.
  196. func (in *AzureACRServicePrincipalAuth) DeepCopy() *AzureACRServicePrincipalAuth {
  197. if in == nil {
  198. return nil
  199. }
  200. out := new(AzureACRServicePrincipalAuth)
  201. in.DeepCopyInto(out)
  202. return out
  203. }
  204. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  205. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopyInto(out *AzureACRServicePrincipalAuthSecretRef) {
  206. *out = *in
  207. in.ClientID.DeepCopyInto(&out.ClientID)
  208. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  209. }
  210. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuthSecretRef.
  211. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopy() *AzureACRServicePrincipalAuthSecretRef {
  212. if in == nil {
  213. return nil
  214. }
  215. out := new(AzureACRServicePrincipalAuthSecretRef)
  216. in.DeepCopyInto(out)
  217. return out
  218. }
  219. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  220. func (in *AzureACRWorkloadIdentityAuth) DeepCopyInto(out *AzureACRWorkloadIdentityAuth) {
  221. *out = *in
  222. if in.ServiceAccountRef != nil {
  223. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  224. *out = new(v1.ServiceAccountSelector)
  225. (*in).DeepCopyInto(*out)
  226. }
  227. }
  228. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRWorkloadIdentityAuth.
  229. func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth {
  230. if in == nil {
  231. return nil
  232. }
  233. out := new(AzureACRWorkloadIdentityAuth)
  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 *ControllerClassResource) DeepCopyInto(out *ControllerClassResource) {
  239. *out = *in
  240. out.Spec = in.Spec
  241. }
  242. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerClassResource.
  243. func (in *ControllerClassResource) DeepCopy() *ControllerClassResource {
  244. if in == nil {
  245. return nil
  246. }
  247. out := new(ControllerClassResource)
  248. in.DeepCopyInto(out)
  249. return out
  250. }
  251. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  252. func (in *ECRAuthorizationToken) DeepCopyInto(out *ECRAuthorizationToken) {
  253. *out = *in
  254. out.TypeMeta = in.TypeMeta
  255. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  256. in.Spec.DeepCopyInto(&out.Spec)
  257. }
  258. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationToken.
  259. func (in *ECRAuthorizationToken) DeepCopy() *ECRAuthorizationToken {
  260. if in == nil {
  261. return nil
  262. }
  263. out := new(ECRAuthorizationToken)
  264. in.DeepCopyInto(out)
  265. return out
  266. }
  267. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  268. func (in *ECRAuthorizationToken) DeepCopyObject() runtime.Object {
  269. if c := in.DeepCopy(); c != nil {
  270. return c
  271. }
  272. return nil
  273. }
  274. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  275. func (in *ECRAuthorizationTokenList) DeepCopyInto(out *ECRAuthorizationTokenList) {
  276. *out = *in
  277. out.TypeMeta = in.TypeMeta
  278. in.ListMeta.DeepCopyInto(&out.ListMeta)
  279. if in.Items != nil {
  280. in, out := &in.Items, &out.Items
  281. *out = make([]ECRAuthorizationToken, len(*in))
  282. for i := range *in {
  283. (*in)[i].DeepCopyInto(&(*out)[i])
  284. }
  285. }
  286. }
  287. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenList.
  288. func (in *ECRAuthorizationTokenList) DeepCopy() *ECRAuthorizationTokenList {
  289. if in == nil {
  290. return nil
  291. }
  292. out := new(ECRAuthorizationTokenList)
  293. in.DeepCopyInto(out)
  294. return out
  295. }
  296. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  297. func (in *ECRAuthorizationTokenList) DeepCopyObject() runtime.Object {
  298. if c := in.DeepCopy(); c != nil {
  299. return c
  300. }
  301. return nil
  302. }
  303. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  304. func (in *ECRAuthorizationTokenSpec) DeepCopyInto(out *ECRAuthorizationTokenSpec) {
  305. *out = *in
  306. in.Auth.DeepCopyInto(&out.Auth)
  307. }
  308. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenSpec.
  309. func (in *ECRAuthorizationTokenSpec) DeepCopy() *ECRAuthorizationTokenSpec {
  310. if in == nil {
  311. return nil
  312. }
  313. out := new(ECRAuthorizationTokenSpec)
  314. in.DeepCopyInto(out)
  315. return out
  316. }
  317. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  318. func (in *Fake) DeepCopyInto(out *Fake) {
  319. *out = *in
  320. out.TypeMeta = in.TypeMeta
  321. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  322. in.Spec.DeepCopyInto(&out.Spec)
  323. }
  324. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
  325. func (in *Fake) DeepCopy() *Fake {
  326. if in == nil {
  327. return nil
  328. }
  329. out := new(Fake)
  330. in.DeepCopyInto(out)
  331. return out
  332. }
  333. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  334. func (in *Fake) DeepCopyObject() runtime.Object {
  335. if c := in.DeepCopy(); c != nil {
  336. return c
  337. }
  338. return nil
  339. }
  340. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  341. func (in *FakeList) DeepCopyInto(out *FakeList) {
  342. *out = *in
  343. out.TypeMeta = in.TypeMeta
  344. in.ListMeta.DeepCopyInto(&out.ListMeta)
  345. if in.Items != nil {
  346. in, out := &in.Items, &out.Items
  347. *out = make([]Fake, len(*in))
  348. for i := range *in {
  349. (*in)[i].DeepCopyInto(&(*out)[i])
  350. }
  351. }
  352. }
  353. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
  354. func (in *FakeList) DeepCopy() *FakeList {
  355. if in == nil {
  356. return nil
  357. }
  358. out := new(FakeList)
  359. in.DeepCopyInto(out)
  360. return out
  361. }
  362. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  363. func (in *FakeList) DeepCopyObject() runtime.Object {
  364. if c := in.DeepCopy(); c != nil {
  365. return c
  366. }
  367. return nil
  368. }
  369. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  370. func (in *FakeSpec) DeepCopyInto(out *FakeSpec) {
  371. *out = *in
  372. if in.Data != nil {
  373. in, out := &in.Data, &out.Data
  374. *out = make(map[string]string, len(*in))
  375. for key, val := range *in {
  376. (*out)[key] = val
  377. }
  378. }
  379. }
  380. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeSpec.
  381. func (in *FakeSpec) DeepCopy() *FakeSpec {
  382. if in == nil {
  383. return nil
  384. }
  385. out := new(FakeSpec)
  386. in.DeepCopyInto(out)
  387. return out
  388. }
  389. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  390. func (in *GCPSMAuth) DeepCopyInto(out *GCPSMAuth) {
  391. *out = *in
  392. if in.SecretRef != nil {
  393. in, out := &in.SecretRef, &out.SecretRef
  394. *out = new(GCPSMAuthSecretRef)
  395. (*in).DeepCopyInto(*out)
  396. }
  397. if in.WorkloadIdentity != nil {
  398. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  399. *out = new(GCPWorkloadIdentity)
  400. (*in).DeepCopyInto(*out)
  401. }
  402. }
  403. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuth.
  404. func (in *GCPSMAuth) DeepCopy() *GCPSMAuth {
  405. if in == nil {
  406. return nil
  407. }
  408. out := new(GCPSMAuth)
  409. in.DeepCopyInto(out)
  410. return out
  411. }
  412. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  413. func (in *GCPSMAuthSecretRef) DeepCopyInto(out *GCPSMAuthSecretRef) {
  414. *out = *in
  415. in.SecretAccessKey.DeepCopyInto(&out.SecretAccessKey)
  416. }
  417. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPSMAuthSecretRef.
  418. func (in *GCPSMAuthSecretRef) DeepCopy() *GCPSMAuthSecretRef {
  419. if in == nil {
  420. return nil
  421. }
  422. out := new(GCPSMAuthSecretRef)
  423. in.DeepCopyInto(out)
  424. return out
  425. }
  426. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  427. func (in *GCPWorkloadIdentity) DeepCopyInto(out *GCPWorkloadIdentity) {
  428. *out = *in
  429. in.ServiceAccountRef.DeepCopyInto(&out.ServiceAccountRef)
  430. }
  431. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCPWorkloadIdentity.
  432. func (in *GCPWorkloadIdentity) DeepCopy() *GCPWorkloadIdentity {
  433. if in == nil {
  434. return nil
  435. }
  436. out := new(GCPWorkloadIdentity)
  437. in.DeepCopyInto(out)
  438. return out
  439. }
  440. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  441. func (in *GCRAccessToken) DeepCopyInto(out *GCRAccessToken) {
  442. *out = *in
  443. out.TypeMeta = in.TypeMeta
  444. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  445. in.Spec.DeepCopyInto(&out.Spec)
  446. }
  447. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessToken.
  448. func (in *GCRAccessToken) DeepCopy() *GCRAccessToken {
  449. if in == nil {
  450. return nil
  451. }
  452. out := new(GCRAccessToken)
  453. in.DeepCopyInto(out)
  454. return out
  455. }
  456. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  457. func (in *GCRAccessToken) DeepCopyObject() runtime.Object {
  458. if c := in.DeepCopy(); c != nil {
  459. return c
  460. }
  461. return nil
  462. }
  463. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  464. func (in *GCRAccessTokenList) DeepCopyInto(out *GCRAccessTokenList) {
  465. *out = *in
  466. out.TypeMeta = in.TypeMeta
  467. in.ListMeta.DeepCopyInto(&out.ListMeta)
  468. if in.Items != nil {
  469. in, out := &in.Items, &out.Items
  470. *out = make([]GCRAccessToken, len(*in))
  471. for i := range *in {
  472. (*in)[i].DeepCopyInto(&(*out)[i])
  473. }
  474. }
  475. }
  476. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenList.
  477. func (in *GCRAccessTokenList) DeepCopy() *GCRAccessTokenList {
  478. if in == nil {
  479. return nil
  480. }
  481. out := new(GCRAccessTokenList)
  482. in.DeepCopyInto(out)
  483. return out
  484. }
  485. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  486. func (in *GCRAccessTokenList) DeepCopyObject() runtime.Object {
  487. if c := in.DeepCopy(); c != nil {
  488. return c
  489. }
  490. return nil
  491. }
  492. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  493. func (in *GCRAccessTokenSpec) DeepCopyInto(out *GCRAccessTokenSpec) {
  494. *out = *in
  495. in.Auth.DeepCopyInto(&out.Auth)
  496. }
  497. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenSpec.
  498. func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
  499. if in == nil {
  500. return nil
  501. }
  502. out := new(GCRAccessTokenSpec)
  503. in.DeepCopyInto(out)
  504. return out
  505. }
  506. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  507. func (in *Password) DeepCopyInto(out *Password) {
  508. *out = *in
  509. out.TypeMeta = in.TypeMeta
  510. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  511. in.Spec.DeepCopyInto(&out.Spec)
  512. }
  513. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Password.
  514. func (in *Password) DeepCopy() *Password {
  515. if in == nil {
  516. return nil
  517. }
  518. out := new(Password)
  519. in.DeepCopyInto(out)
  520. return out
  521. }
  522. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  523. func (in *Password) DeepCopyObject() runtime.Object {
  524. if c := in.DeepCopy(); c != nil {
  525. return c
  526. }
  527. return nil
  528. }
  529. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  530. func (in *PasswordList) DeepCopyInto(out *PasswordList) {
  531. *out = *in
  532. out.TypeMeta = in.TypeMeta
  533. in.ListMeta.DeepCopyInto(&out.ListMeta)
  534. if in.Items != nil {
  535. in, out := &in.Items, &out.Items
  536. *out = make([]Password, len(*in))
  537. for i := range *in {
  538. (*in)[i].DeepCopyInto(&(*out)[i])
  539. }
  540. }
  541. }
  542. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordList.
  543. func (in *PasswordList) DeepCopy() *PasswordList {
  544. if in == nil {
  545. return nil
  546. }
  547. out := new(PasswordList)
  548. in.DeepCopyInto(out)
  549. return out
  550. }
  551. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  552. func (in *PasswordList) DeepCopyObject() runtime.Object {
  553. if c := in.DeepCopy(); c != nil {
  554. return c
  555. }
  556. return nil
  557. }
  558. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  559. func (in *PasswordSpec) DeepCopyInto(out *PasswordSpec) {
  560. *out = *in
  561. if in.Digits != nil {
  562. in, out := &in.Digits, &out.Digits
  563. *out = new(int)
  564. **out = **in
  565. }
  566. if in.Symbols != nil {
  567. in, out := &in.Symbols, &out.Symbols
  568. *out = new(int)
  569. **out = **in
  570. }
  571. if in.SymbolCharacters != nil {
  572. in, out := &in.SymbolCharacters, &out.SymbolCharacters
  573. *out = new(string)
  574. **out = **in
  575. }
  576. }
  577. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PasswordSpec.
  578. func (in *PasswordSpec) DeepCopy() *PasswordSpec {
  579. if in == nil {
  580. return nil
  581. }
  582. out := new(PasswordSpec)
  583. in.DeepCopyInto(out)
  584. return out
  585. }
  586. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  587. func (in *VaultDynamicSecret) DeepCopyInto(out *VaultDynamicSecret) {
  588. *out = *in
  589. out.TypeMeta = in.TypeMeta
  590. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  591. in.Spec.DeepCopyInto(&out.Spec)
  592. }
  593. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecret.
  594. func (in *VaultDynamicSecret) DeepCopy() *VaultDynamicSecret {
  595. if in == nil {
  596. return nil
  597. }
  598. out := new(VaultDynamicSecret)
  599. in.DeepCopyInto(out)
  600. return out
  601. }
  602. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  603. func (in *VaultDynamicSecret) DeepCopyObject() runtime.Object {
  604. if c := in.DeepCopy(); c != nil {
  605. return c
  606. }
  607. return nil
  608. }
  609. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  610. func (in *VaultDynamicSecretList) DeepCopyInto(out *VaultDynamicSecretList) {
  611. *out = *in
  612. out.TypeMeta = in.TypeMeta
  613. in.ListMeta.DeepCopyInto(&out.ListMeta)
  614. if in.Items != nil {
  615. in, out := &in.Items, &out.Items
  616. *out = make([]VaultDynamicSecret, len(*in))
  617. for i := range *in {
  618. (*in)[i].DeepCopyInto(&(*out)[i])
  619. }
  620. }
  621. }
  622. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretList.
  623. func (in *VaultDynamicSecretList) DeepCopy() *VaultDynamicSecretList {
  624. if in == nil {
  625. return nil
  626. }
  627. out := new(VaultDynamicSecretList)
  628. in.DeepCopyInto(out)
  629. return out
  630. }
  631. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  632. func (in *VaultDynamicSecretList) DeepCopyObject() runtime.Object {
  633. if c := in.DeepCopy(); c != nil {
  634. return c
  635. }
  636. return nil
  637. }
  638. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  639. func (in *VaultDynamicSecretSpec) DeepCopyInto(out *VaultDynamicSecretSpec) {
  640. *out = *in
  641. if in.Parameters != nil {
  642. in, out := &in.Parameters, &out.Parameters
  643. *out = new(apiextensionsv1.JSON)
  644. (*in).DeepCopyInto(*out)
  645. }
  646. if in.Provider != nil {
  647. in, out := &in.Provider, &out.Provider
  648. *out = new(v1beta1.VaultProvider)
  649. (*in).DeepCopyInto(*out)
  650. }
  651. }
  652. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultDynamicSecretSpec.
  653. func (in *VaultDynamicSecretSpec) DeepCopy() *VaultDynamicSecretSpec {
  654. if in == nil {
  655. return nil
  656. }
  657. out := new(VaultDynamicSecretSpec)
  658. in.DeepCopyInto(out)
  659. return out
  660. }