zz_generated.deepcopy.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. //go:build !ignore_autogenerated
  2. /*
  3. Copyright 2023.
  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 v1
  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 *Conditions) DeepCopyInto(out *Conditions) {
  21. *out = *in
  22. }
  23. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Conditions.
  24. func (in *Conditions) DeepCopy() *Conditions {
  25. if in == nil {
  26. return nil
  27. }
  28. out := new(Conditions)
  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 *Listen) DeepCopyInto(out *Listen) {
  34. *out = *in
  35. }
  36. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Listen.
  37. func (in *Listen) DeepCopy() *Listen {
  38. if in == nil {
  39. return nil
  40. }
  41. out := new(Listen)
  42. in.DeepCopyInto(out)
  43. return out
  44. }
  45. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  46. func (in *PostgreSQL) DeepCopyInto(out *PostgreSQL) {
  47. *out = *in
  48. out.TypeMeta = in.TypeMeta
  49. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  50. out.Spec = in.Spec
  51. out.Status = in.Status
  52. }
  53. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgreSQL.
  54. func (in *PostgreSQL) DeepCopy() *PostgreSQL {
  55. if in == nil {
  56. return nil
  57. }
  58. out := new(PostgreSQL)
  59. in.DeepCopyInto(out)
  60. return out
  61. }
  62. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  63. func (in *PostgreSQL) DeepCopyObject() runtime.Object {
  64. if c := in.DeepCopy(); c != nil {
  65. return c
  66. }
  67. return nil
  68. }
  69. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  70. func (in *PostgreSQLList) DeepCopyInto(out *PostgreSQLList) {
  71. *out = *in
  72. out.TypeMeta = in.TypeMeta
  73. in.ListMeta.DeepCopyInto(&out.ListMeta)
  74. if in.Items != nil {
  75. in, out := &in.Items, &out.Items
  76. *out = make([]PostgreSQL, len(*in))
  77. for i := range *in {
  78. (*in)[i].DeepCopyInto(&(*out)[i])
  79. }
  80. }
  81. }
  82. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgreSQLList.
  83. func (in *PostgreSQLList) DeepCopy() *PostgreSQLList {
  84. if in == nil {
  85. return nil
  86. }
  87. out := new(PostgreSQLList)
  88. in.DeepCopyInto(out)
  89. return out
  90. }
  91. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  92. func (in *PostgreSQLList) DeepCopyObject() runtime.Object {
  93. if c := in.DeepCopy(); c != nil {
  94. return c
  95. }
  96. return nil
  97. }
  98. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  99. func (in *PostgreSQLSpec) DeepCopyInto(out *PostgreSQLSpec) {
  100. *out = *in
  101. }
  102. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgreSQLSpec.
  103. func (in *PostgreSQLSpec) DeepCopy() *PostgreSQLSpec {
  104. if in == nil {
  105. return nil
  106. }
  107. out := new(PostgreSQLSpec)
  108. in.DeepCopyInto(out)
  109. return out
  110. }
  111. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  112. func (in *PostgreSQLStatus) DeepCopyInto(out *PostgreSQLStatus) {
  113. *out = *in
  114. out.Conditions = in.Conditions
  115. out.ListenOn = in.ListenOn
  116. }
  117. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgreSQLStatus.
  118. func (in *PostgreSQLStatus) DeepCopy() *PostgreSQLStatus {
  119. if in == nil {
  120. return nil
  121. }
  122. out := new(PostgreSQLStatus)
  123. in.DeepCopyInto(out)
  124. return out
  125. }