zz_generated.deepcopy.go 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // +build !ignore_autogenerated
  2. /*
  3. Copyright The Kubernetes Authors.
  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 deepcopy-gen. DO NOT EDIT.
  15. package config
  16. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  17. func (in *PersistentVolumeBinderControllerConfiguration) DeepCopyInto(out *PersistentVolumeBinderControllerConfiguration) {
  18. *out = *in
  19. out.PVClaimBinderSyncPeriod = in.PVClaimBinderSyncPeriod
  20. out.VolumeConfiguration = in.VolumeConfiguration
  21. return
  22. }
  23. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeBinderControllerConfiguration.
  24. func (in *PersistentVolumeBinderControllerConfiguration) DeepCopy() *PersistentVolumeBinderControllerConfiguration {
  25. if in == nil {
  26. return nil
  27. }
  28. out := new(PersistentVolumeBinderControllerConfiguration)
  29. in.DeepCopyInto(out)
  30. return out
  31. }
  32. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  33. func (in *PersistentVolumeRecyclerConfiguration) DeepCopyInto(out *PersistentVolumeRecyclerConfiguration) {
  34. *out = *in
  35. return
  36. }
  37. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeRecyclerConfiguration.
  38. func (in *PersistentVolumeRecyclerConfiguration) DeepCopy() *PersistentVolumeRecyclerConfiguration {
  39. if in == nil {
  40. return nil
  41. }
  42. out := new(PersistentVolumeRecyclerConfiguration)
  43. in.DeepCopyInto(out)
  44. return out
  45. }
  46. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  47. func (in *VolumeConfiguration) DeepCopyInto(out *VolumeConfiguration) {
  48. *out = *in
  49. out.PersistentVolumeRecyclerConfiguration = in.PersistentVolumeRecyclerConfiguration
  50. return
  51. }
  52. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeConfiguration.
  53. func (in *VolumeConfiguration) DeepCopy() *VolumeConfiguration {
  54. if in == nil {
  55. return nil
  56. }
  57. out := new(VolumeConfiguration)
  58. in.DeepCopyInto(out)
  59. return out
  60. }