zz_generated.deepcopy.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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/meta/v1"
  18. runtime "k8s.io/apimachinery/pkg/runtime"
  19. )
  20. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  21. func (in *ACRAccessToken) DeepCopyInto(out *ACRAccessToken) {
  22. *out = *in
  23. out.TypeMeta = in.TypeMeta
  24. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  25. in.Spec.DeepCopyInto(&out.Spec)
  26. }
  27. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessToken.
  28. func (in *ACRAccessToken) DeepCopy() *ACRAccessToken {
  29. if in == nil {
  30. return nil
  31. }
  32. out := new(ACRAccessToken)
  33. in.DeepCopyInto(out)
  34. return out
  35. }
  36. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  37. func (in *ACRAccessToken) DeepCopyObject() runtime.Object {
  38. if c := in.DeepCopy(); c != nil {
  39. return c
  40. }
  41. return nil
  42. }
  43. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  44. func (in *ACRAccessTokenList) DeepCopyInto(out *ACRAccessTokenList) {
  45. *out = *in
  46. out.TypeMeta = in.TypeMeta
  47. in.ListMeta.DeepCopyInto(&out.ListMeta)
  48. if in.Items != nil {
  49. in, out := &in.Items, &out.Items
  50. *out = make([]ACRAccessToken, len(*in))
  51. for i := range *in {
  52. (*in)[i].DeepCopyInto(&(*out)[i])
  53. }
  54. }
  55. }
  56. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenList.
  57. func (in *ACRAccessTokenList) DeepCopy() *ACRAccessTokenList {
  58. if in == nil {
  59. return nil
  60. }
  61. out := new(ACRAccessTokenList)
  62. in.DeepCopyInto(out)
  63. return out
  64. }
  65. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  66. func (in *ACRAccessTokenList) DeepCopyObject() runtime.Object {
  67. if c := in.DeepCopy(); c != nil {
  68. return c
  69. }
  70. return nil
  71. }
  72. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  73. func (in *ACRAccessTokenSpec) DeepCopyInto(out *ACRAccessTokenSpec) {
  74. *out = *in
  75. in.Auth.DeepCopyInto(&out.Auth)
  76. }
  77. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAccessTokenSpec.
  78. func (in *ACRAccessTokenSpec) DeepCopy() *ACRAccessTokenSpec {
  79. if in == nil {
  80. return nil
  81. }
  82. out := new(ACRAccessTokenSpec)
  83. in.DeepCopyInto(out)
  84. return out
  85. }
  86. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  87. func (in *ACRAuth) DeepCopyInto(out *ACRAuth) {
  88. *out = *in
  89. if in.ServicePrincipal != nil {
  90. in, out := &in.ServicePrincipal, &out.ServicePrincipal
  91. *out = new(AzureACRServicePrincipalAuth)
  92. (*in).DeepCopyInto(*out)
  93. }
  94. if in.ManagedIdentity != nil {
  95. in, out := &in.ManagedIdentity, &out.ManagedIdentity
  96. *out = new(AzureACRManagedIdentityAuth)
  97. **out = **in
  98. }
  99. if in.WorkloadIdentity != nil {
  100. in, out := &in.WorkloadIdentity, &out.WorkloadIdentity
  101. *out = new(AzureACRWorkloadIdentityAuth)
  102. (*in).DeepCopyInto(*out)
  103. }
  104. }
  105. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACRAuth.
  106. func (in *ACRAuth) DeepCopy() *ACRAuth {
  107. if in == nil {
  108. return nil
  109. }
  110. out := new(ACRAuth)
  111. in.DeepCopyInto(out)
  112. return out
  113. }
  114. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  115. func (in *AzureACRManagedIdentityAuth) DeepCopyInto(out *AzureACRManagedIdentityAuth) {
  116. *out = *in
  117. }
  118. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRManagedIdentityAuth.
  119. func (in *AzureACRManagedIdentityAuth) DeepCopy() *AzureACRManagedIdentityAuth {
  120. if in == nil {
  121. return nil
  122. }
  123. out := new(AzureACRManagedIdentityAuth)
  124. in.DeepCopyInto(out)
  125. return out
  126. }
  127. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  128. func (in *AzureACRServicePrincipalAuth) DeepCopyInto(out *AzureACRServicePrincipalAuth) {
  129. *out = *in
  130. in.SecretRef.DeepCopyInto(&out.SecretRef)
  131. }
  132. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuth.
  133. func (in *AzureACRServicePrincipalAuth) DeepCopy() *AzureACRServicePrincipalAuth {
  134. if in == nil {
  135. return nil
  136. }
  137. out := new(AzureACRServicePrincipalAuth)
  138. in.DeepCopyInto(out)
  139. return out
  140. }
  141. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  142. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopyInto(out *AzureACRServicePrincipalAuthSecretRef) {
  143. *out = *in
  144. in.ClientID.DeepCopyInto(&out.ClientID)
  145. in.ClientSecret.DeepCopyInto(&out.ClientSecret)
  146. }
  147. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRServicePrincipalAuthSecretRef.
  148. func (in *AzureACRServicePrincipalAuthSecretRef) DeepCopy() *AzureACRServicePrincipalAuthSecretRef {
  149. if in == nil {
  150. return nil
  151. }
  152. out := new(AzureACRServicePrincipalAuthSecretRef)
  153. in.DeepCopyInto(out)
  154. return out
  155. }
  156. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  157. func (in *AzureACRWorkloadIdentityAuth) DeepCopyInto(out *AzureACRWorkloadIdentityAuth) {
  158. *out = *in
  159. if in.ServiceAccountRef != nil {
  160. in, out := &in.ServiceAccountRef, &out.ServiceAccountRef
  161. *out = new(v1.ServiceAccountSelector)
  162. (*in).DeepCopyInto(*out)
  163. }
  164. }
  165. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureACRWorkloadIdentityAuth.
  166. func (in *AzureACRWorkloadIdentityAuth) DeepCopy() *AzureACRWorkloadIdentityAuth {
  167. if in == nil {
  168. return nil
  169. }
  170. out := new(AzureACRWorkloadIdentityAuth)
  171. in.DeepCopyInto(out)
  172. return out
  173. }
  174. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  175. func (in *ECRAuthorizationToken) DeepCopyInto(out *ECRAuthorizationToken) {
  176. *out = *in
  177. out.TypeMeta = in.TypeMeta
  178. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  179. in.Spec.DeepCopyInto(&out.Spec)
  180. }
  181. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationToken.
  182. func (in *ECRAuthorizationToken) DeepCopy() *ECRAuthorizationToken {
  183. if in == nil {
  184. return nil
  185. }
  186. out := new(ECRAuthorizationToken)
  187. in.DeepCopyInto(out)
  188. return out
  189. }
  190. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  191. func (in *ECRAuthorizationToken) DeepCopyObject() runtime.Object {
  192. if c := in.DeepCopy(); c != nil {
  193. return c
  194. }
  195. return nil
  196. }
  197. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  198. func (in *ECRAuthorizationTokenList) DeepCopyInto(out *ECRAuthorizationTokenList) {
  199. *out = *in
  200. out.TypeMeta = in.TypeMeta
  201. in.ListMeta.DeepCopyInto(&out.ListMeta)
  202. if in.Items != nil {
  203. in, out := &in.Items, &out.Items
  204. *out = make([]ECRAuthorizationToken, len(*in))
  205. for i := range *in {
  206. (*in)[i].DeepCopyInto(&(*out)[i])
  207. }
  208. }
  209. }
  210. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenList.
  211. func (in *ECRAuthorizationTokenList) DeepCopy() *ECRAuthorizationTokenList {
  212. if in == nil {
  213. return nil
  214. }
  215. out := new(ECRAuthorizationTokenList)
  216. in.DeepCopyInto(out)
  217. return out
  218. }
  219. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  220. func (in *ECRAuthorizationTokenList) DeepCopyObject() runtime.Object {
  221. if c := in.DeepCopy(); c != nil {
  222. return c
  223. }
  224. return nil
  225. }
  226. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  227. func (in *ECRAuthorizationTokenSpec) DeepCopyInto(out *ECRAuthorizationTokenSpec) {
  228. *out = *in
  229. in.Auth.DeepCopyInto(&out.Auth)
  230. }
  231. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRAuthorizationTokenSpec.
  232. func (in *ECRAuthorizationTokenSpec) DeepCopy() *ECRAuthorizationTokenSpec {
  233. if in == nil {
  234. return nil
  235. }
  236. out := new(ECRAuthorizationTokenSpec)
  237. in.DeepCopyInto(out)
  238. return out
  239. }
  240. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  241. func (in *Fake) DeepCopyInto(out *Fake) {
  242. *out = *in
  243. out.TypeMeta = in.TypeMeta
  244. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  245. in.Spec.DeepCopyInto(&out.Spec)
  246. }
  247. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
  248. func (in *Fake) DeepCopy() *Fake {
  249. if in == nil {
  250. return nil
  251. }
  252. out := new(Fake)
  253. in.DeepCopyInto(out)
  254. return out
  255. }
  256. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  257. func (in *Fake) DeepCopyObject() runtime.Object {
  258. if c := in.DeepCopy(); c != nil {
  259. return c
  260. }
  261. return nil
  262. }
  263. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  264. func (in *FakeList) DeepCopyInto(out *FakeList) {
  265. *out = *in
  266. out.TypeMeta = in.TypeMeta
  267. in.ListMeta.DeepCopyInto(&out.ListMeta)
  268. if in.Items != nil {
  269. in, out := &in.Items, &out.Items
  270. *out = make([]Fake, len(*in))
  271. for i := range *in {
  272. (*in)[i].DeepCopyInto(&(*out)[i])
  273. }
  274. }
  275. }
  276. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
  277. func (in *FakeList) DeepCopy() *FakeList {
  278. if in == nil {
  279. return nil
  280. }
  281. out := new(FakeList)
  282. in.DeepCopyInto(out)
  283. return out
  284. }
  285. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  286. func (in *FakeList) DeepCopyObject() runtime.Object {
  287. if c := in.DeepCopy(); c != nil {
  288. return c
  289. }
  290. return nil
  291. }
  292. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  293. func (in *FakeSpec) DeepCopyInto(out *FakeSpec) {
  294. *out = *in
  295. if in.Data != nil {
  296. in, out := &in.Data, &out.Data
  297. *out = make(map[string]string, len(*in))
  298. for key, val := range *in {
  299. (*out)[key] = val
  300. }
  301. }
  302. }
  303. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeSpec.
  304. func (in *FakeSpec) DeepCopy() *FakeSpec {
  305. if in == nil {
  306. return nil
  307. }
  308. out := new(FakeSpec)
  309. in.DeepCopyInto(out)
  310. return out
  311. }
  312. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  313. func (in *GCRAccessToken) DeepCopyInto(out *GCRAccessToken) {
  314. *out = *in
  315. out.TypeMeta = in.TypeMeta
  316. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  317. in.Spec.DeepCopyInto(&out.Spec)
  318. }
  319. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessToken.
  320. func (in *GCRAccessToken) DeepCopy() *GCRAccessToken {
  321. if in == nil {
  322. return nil
  323. }
  324. out := new(GCRAccessToken)
  325. in.DeepCopyInto(out)
  326. return out
  327. }
  328. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  329. func (in *GCRAccessToken) DeepCopyObject() runtime.Object {
  330. if c := in.DeepCopy(); c != nil {
  331. return c
  332. }
  333. return nil
  334. }
  335. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  336. func (in *GCRAccessTokenList) DeepCopyInto(out *GCRAccessTokenList) {
  337. *out = *in
  338. out.TypeMeta = in.TypeMeta
  339. in.ListMeta.DeepCopyInto(&out.ListMeta)
  340. if in.Items != nil {
  341. in, out := &in.Items, &out.Items
  342. *out = make([]GCRAccessToken, len(*in))
  343. for i := range *in {
  344. (*in)[i].DeepCopyInto(&(*out)[i])
  345. }
  346. }
  347. }
  348. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenList.
  349. func (in *GCRAccessTokenList) DeepCopy() *GCRAccessTokenList {
  350. if in == nil {
  351. return nil
  352. }
  353. out := new(GCRAccessTokenList)
  354. in.DeepCopyInto(out)
  355. return out
  356. }
  357. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  358. func (in *GCRAccessTokenList) DeepCopyObject() runtime.Object {
  359. if c := in.DeepCopy(); c != nil {
  360. return c
  361. }
  362. return nil
  363. }
  364. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  365. func (in *GCRAccessTokenSpec) DeepCopyInto(out *GCRAccessTokenSpec) {
  366. *out = *in
  367. in.Auth.DeepCopyInto(&out.Auth)
  368. }
  369. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GCRAccessTokenSpec.
  370. func (in *GCRAccessTokenSpec) DeepCopy() *GCRAccessTokenSpec {
  371. if in == nil {
  372. return nil
  373. }
  374. out := new(GCRAccessTokenSpec)
  375. in.DeepCopyInto(out)
  376. return out
  377. }