zz_generated.deepcopy.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 v1beta1
  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 *PartialObjectMetadata) DeepCopyInto(out *PartialObjectMetadata) {
  21. *out = *in
  22. out.TypeMeta = in.TypeMeta
  23. in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
  24. return
  25. }
  26. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PartialObjectMetadata.
  27. func (in *PartialObjectMetadata) DeepCopy() *PartialObjectMetadata {
  28. if in == nil {
  29. return nil
  30. }
  31. out := new(PartialObjectMetadata)
  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 *PartialObjectMetadata) 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 *PartialObjectMetadataList) DeepCopyInto(out *PartialObjectMetadataList) {
  44. *out = *in
  45. out.TypeMeta = in.TypeMeta
  46. if in.Items != nil {
  47. in, out := &in.Items, &out.Items
  48. *out = make([]*PartialObjectMetadata, len(*in))
  49. for i := range *in {
  50. if (*in)[i] == nil {
  51. (*out)[i] = nil
  52. } else {
  53. (*out)[i] = new(PartialObjectMetadata)
  54. (*in)[i].DeepCopyInto((*out)[i])
  55. }
  56. }
  57. }
  58. return
  59. }
  60. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PartialObjectMetadataList.
  61. func (in *PartialObjectMetadataList) DeepCopy() *PartialObjectMetadataList {
  62. if in == nil {
  63. return nil
  64. }
  65. out := new(PartialObjectMetadataList)
  66. in.DeepCopyInto(out)
  67. return out
  68. }
  69. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  70. func (in *PartialObjectMetadataList) DeepCopyObject() runtime.Object {
  71. if c := in.DeepCopy(); c != nil {
  72. return c
  73. }
  74. return nil
  75. }
  76. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  77. func (in *Table) DeepCopyInto(out *Table) {
  78. *out = *in
  79. out.TypeMeta = in.TypeMeta
  80. out.ListMeta = in.ListMeta
  81. if in.ColumnDefinitions != nil {
  82. in, out := &in.ColumnDefinitions, &out.ColumnDefinitions
  83. *out = make([]TableColumnDefinition, len(*in))
  84. copy(*out, *in)
  85. }
  86. if in.Rows != nil {
  87. in, out := &in.Rows, &out.Rows
  88. *out = make([]TableRow, len(*in))
  89. for i := range *in {
  90. (*in)[i].DeepCopyInto(&(*out)[i])
  91. }
  92. }
  93. return
  94. }
  95. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Table.
  96. func (in *Table) DeepCopy() *Table {
  97. if in == nil {
  98. return nil
  99. }
  100. out := new(Table)
  101. in.DeepCopyInto(out)
  102. return out
  103. }
  104. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  105. func (in *Table) DeepCopyObject() runtime.Object {
  106. if c := in.DeepCopy(); c != nil {
  107. return c
  108. }
  109. return nil
  110. }
  111. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  112. func (in *TableColumnDefinition) DeepCopyInto(out *TableColumnDefinition) {
  113. *out = *in
  114. return
  115. }
  116. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableColumnDefinition.
  117. func (in *TableColumnDefinition) DeepCopy() *TableColumnDefinition {
  118. if in == nil {
  119. return nil
  120. }
  121. out := new(TableColumnDefinition)
  122. in.DeepCopyInto(out)
  123. return out
  124. }
  125. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  126. func (in *TableOptions) DeepCopyInto(out *TableOptions) {
  127. *out = *in
  128. out.TypeMeta = in.TypeMeta
  129. return
  130. }
  131. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableOptions.
  132. func (in *TableOptions) DeepCopy() *TableOptions {
  133. if in == nil {
  134. return nil
  135. }
  136. out := new(TableOptions)
  137. in.DeepCopyInto(out)
  138. return out
  139. }
  140. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  141. func (in *TableOptions) DeepCopyObject() runtime.Object {
  142. if c := in.DeepCopy(); c != nil {
  143. return c
  144. }
  145. return nil
  146. }
  147. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  148. func (in *TableRow) DeepCopyInto(out *TableRow) {
  149. clone := in.DeepCopy()
  150. *out = *clone
  151. return
  152. }
  153. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  154. func (in *TableRowCondition) DeepCopyInto(out *TableRowCondition) {
  155. *out = *in
  156. return
  157. }
  158. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableRowCondition.
  159. func (in *TableRowCondition) DeepCopy() *TableRowCondition {
  160. if in == nil {
  161. return nil
  162. }
  163. out := new(TableRowCondition)
  164. in.DeepCopyInto(out)
  165. return out
  166. }