zz_generated.deepcopy.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //go:build !ignore_autogenerated
  2. /*
  3. Copyright © The ESO 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. https://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 v2alpha1
  16. import (
  17. runtime "k8s.io/apimachinery/pkg/runtime"
  18. )
  19. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  20. func (in *Fake) DeepCopyInto(out *Fake) {
  21. *out = *in
  22. out.TypeMeta = in.TypeMeta
  23. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  24. in.Spec.DeepCopyInto(&out.Spec)
  25. }
  26. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fake.
  27. func (in *Fake) DeepCopy() *Fake {
  28. if in == nil {
  29. return nil
  30. }
  31. out := new(Fake)
  32. in.DeepCopyInto(out)
  33. return out
  34. }
  35. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  36. func (in *Fake) DeepCopyObject() runtime.Object {
  37. if c := in.DeepCopy(); c != nil {
  38. return c
  39. }
  40. return nil
  41. }
  42. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  43. func (in *FakeList) DeepCopyInto(out *FakeList) {
  44. *out = *in
  45. out.TypeMeta = in.TypeMeta
  46. in.ListMeta.DeepCopyInto(&out.ListMeta)
  47. if in.Items != nil {
  48. in, out := &in.Items, &out.Items
  49. *out = make([]Fake, len(*in))
  50. for i := range *in {
  51. (*in)[i].DeepCopyInto(&(*out)[i])
  52. }
  53. }
  54. }
  55. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeList.
  56. func (in *FakeList) DeepCopy() *FakeList {
  57. if in == nil {
  58. return nil
  59. }
  60. out := new(FakeList)
  61. in.DeepCopyInto(out)
  62. return out
  63. }
  64. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  65. func (in *FakeList) DeepCopyObject() runtime.Object {
  66. if c := in.DeepCopy(); c != nil {
  67. return c
  68. }
  69. return nil
  70. }
  71. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  72. func (in *FakeProviderData) DeepCopyInto(out *FakeProviderData) {
  73. *out = *in
  74. }
  75. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderData.
  76. func (in *FakeProviderData) DeepCopy() *FakeProviderData {
  77. if in == nil {
  78. return nil
  79. }
  80. out := new(FakeProviderData)
  81. in.DeepCopyInto(out)
  82. return out
  83. }
  84. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  85. func (in *FakeProviderSpec) DeepCopyInto(out *FakeProviderSpec) {
  86. *out = *in
  87. if in.Data != nil {
  88. in, out := &in.Data, &out.Data
  89. *out = make([]FakeProviderData, len(*in))
  90. copy(*out, *in)
  91. }
  92. if in.ValidationResult != nil {
  93. in, out := &in.ValidationResult, &out.ValidationResult
  94. *out = new(string)
  95. **out = **in
  96. }
  97. }
  98. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FakeProviderSpec.
  99. func (in *FakeProviderSpec) DeepCopy() *FakeProviderSpec {
  100. if in == nil {
  101. return nil
  102. }
  103. out := new(FakeProviderSpec)
  104. in.DeepCopyInto(out)
  105. return out
  106. }