zz_generated.deepcopy.go 5.4 KB

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