zz_generated.deepcopy.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 output
  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 *BootstrapToken) DeepCopyInto(out *BootstrapToken) {
  21. *out = *in
  22. out.TypeMeta = in.TypeMeta
  23. in.BootstrapToken.DeepCopyInto(&out.BootstrapToken)
  24. return
  25. }
  26. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BootstrapToken.
  27. func (in *BootstrapToken) DeepCopy() *BootstrapToken {
  28. if in == nil {
  29. return nil
  30. }
  31. out := new(BootstrapToken)
  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 *BootstrapToken) 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 *Images) DeepCopyInto(out *Images) {
  44. *out = *in
  45. out.TypeMeta = in.TypeMeta
  46. if in.Images != nil {
  47. in, out := &in.Images, &out.Images
  48. *out = make([]string, len(*in))
  49. copy(*out, *in)
  50. }
  51. return
  52. }
  53. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Images.
  54. func (in *Images) DeepCopy() *Images {
  55. if in == nil {
  56. return nil
  57. }
  58. out := new(Images)
  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 *Images) DeepCopyObject() runtime.Object {
  64. if c := in.DeepCopy(); c != nil {
  65. return c
  66. }
  67. return nil
  68. }