zz_generated.deepcopy.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 v1
  15. import ()
  16. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  17. func (in *CAProvider) DeepCopyInto(out *CAProvider) {
  18. *out = *in
  19. if in.Namespace != nil {
  20. in, out := &in.Namespace, &out.Namespace
  21. *out = new(string)
  22. **out = **in
  23. }
  24. }
  25. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CAProvider.
  26. func (in *CAProvider) DeepCopy() *CAProvider {
  27. if in == nil {
  28. return nil
  29. }
  30. out := new(CAProvider)
  31. in.DeepCopyInto(out)
  32. return out
  33. }
  34. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  35. func (in *ProviderRef) DeepCopyInto(out *ProviderRef) {
  36. *out = *in
  37. }
  38. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProviderRef.
  39. func (in *ProviderRef) DeepCopy() *ProviderRef {
  40. if in == nil {
  41. return nil
  42. }
  43. out := new(ProviderRef)
  44. in.DeepCopyInto(out)
  45. return out
  46. }
  47. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  48. func (in *RetrySettings) DeepCopyInto(out *RetrySettings) {
  49. *out = *in
  50. if in.MaxRetries != nil {
  51. in, out := &in.MaxRetries, &out.MaxRetries
  52. *out = new(int32)
  53. **out = **in
  54. }
  55. if in.RetryInterval != nil {
  56. in, out := &in.RetryInterval, &out.RetryInterval
  57. *out = new(string)
  58. **out = **in
  59. }
  60. }
  61. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RetrySettings.
  62. func (in *RetrySettings) DeepCopy() *RetrySettings {
  63. if in == nil {
  64. return nil
  65. }
  66. out := new(RetrySettings)
  67. in.DeepCopyInto(out)
  68. return out
  69. }
  70. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  71. func (in *SecretKeySelector) DeepCopyInto(out *SecretKeySelector) {
  72. *out = *in
  73. if in.Namespace != nil {
  74. in, out := &in.Namespace, &out.Namespace
  75. *out = new(string)
  76. **out = **in
  77. }
  78. }
  79. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecretKeySelector.
  80. func (in *SecretKeySelector) DeepCopy() *SecretKeySelector {
  81. if in == nil {
  82. return nil
  83. }
  84. out := new(SecretKeySelector)
  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 *ServiceAccountSelector) DeepCopyInto(out *ServiceAccountSelector) {
  90. *out = *in
  91. if in.Namespace != nil {
  92. in, out := &in.Namespace, &out.Namespace
  93. *out = new(string)
  94. **out = **in
  95. }
  96. if in.Audiences != nil {
  97. in, out := &in.Audiences, &out.Audiences
  98. *out = make([]string, len(*in))
  99. copy(*out, *in)
  100. }
  101. }
  102. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAccountSelector.
  103. func (in *ServiceAccountSelector) DeepCopy() *ServiceAccountSelector {
  104. if in == nil {
  105. return nil
  106. }
  107. out := new(ServiceAccountSelector)
  108. in.DeepCopyInto(out)
  109. return out
  110. }