zz_generated.deepcopy.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //go:build !ignore_autogenerated
  2. // +build !ignore_autogenerated
  3. /*
  4. Copyright The Kubernetes Authors.
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. */
  15. // Code generated by deepcopy-gen. DO NOT EDIT.
  16. package clientauthentication
  17. import (
  18. runtime "k8s.io/apimachinery/pkg/runtime"
  19. )
  20. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  21. func (in *Cluster) DeepCopyInto(out *Cluster) {
  22. *out = *in
  23. if in.CertificateAuthorityData != nil {
  24. in, out := &in.CertificateAuthorityData, &out.CertificateAuthorityData
  25. *out = make([]byte, len(*in))
  26. copy(*out, *in)
  27. }
  28. if in.Config != nil {
  29. out.Config = in.Config.DeepCopyObject()
  30. }
  31. return
  32. }
  33. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cluster.
  34. func (in *Cluster) DeepCopy() *Cluster {
  35. if in == nil {
  36. return nil
  37. }
  38. out := new(Cluster)
  39. in.DeepCopyInto(out)
  40. return out
  41. }
  42. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  43. func (in *ExecCredential) DeepCopyInto(out *ExecCredential) {
  44. *out = *in
  45. out.TypeMeta = in.TypeMeta
  46. in.Spec.DeepCopyInto(&out.Spec)
  47. if in.Status != nil {
  48. in, out := &in.Status, &out.Status
  49. *out = new(ExecCredentialStatus)
  50. (*in).DeepCopyInto(*out)
  51. }
  52. return
  53. }
  54. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredential.
  55. func (in *ExecCredential) DeepCopy() *ExecCredential {
  56. if in == nil {
  57. return nil
  58. }
  59. out := new(ExecCredential)
  60. in.DeepCopyInto(out)
  61. return out
  62. }
  63. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  64. func (in *ExecCredential) DeepCopyObject() runtime.Object {
  65. if c := in.DeepCopy(); c != nil {
  66. return c
  67. }
  68. return nil
  69. }
  70. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  71. func (in *ExecCredentialSpec) DeepCopyInto(out *ExecCredentialSpec) {
  72. *out = *in
  73. if in.Cluster != nil {
  74. in, out := &in.Cluster, &out.Cluster
  75. *out = new(Cluster)
  76. (*in).DeepCopyInto(*out)
  77. }
  78. return
  79. }
  80. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
  81. func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
  82. if in == nil {
  83. return nil
  84. }
  85. out := new(ExecCredentialSpec)
  86. in.DeepCopyInto(out)
  87. return out
  88. }
  89. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  90. func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
  91. *out = *in
  92. if in.ExpirationTimestamp != nil {
  93. in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
  94. *out = (*in).DeepCopy()
  95. }
  96. return
  97. }
  98. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
  99. func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
  100. if in == nil {
  101. return nil
  102. }
  103. out := new(ExecCredentialStatus)
  104. in.DeepCopyInto(out)
  105. return out
  106. }