zz_generated.deepcopy.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 clientauthentication
  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 *ExecCredential) DeepCopyInto(out *ExecCredential) {
  21. *out = *in
  22. out.TypeMeta = in.TypeMeta
  23. in.Spec.DeepCopyInto(&out.Spec)
  24. if in.Status != nil {
  25. in, out := &in.Status, &out.Status
  26. *out = new(ExecCredentialStatus)
  27. (*in).DeepCopyInto(*out)
  28. }
  29. return
  30. }
  31. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredential.
  32. func (in *ExecCredential) DeepCopy() *ExecCredential {
  33. if in == nil {
  34. return nil
  35. }
  36. out := new(ExecCredential)
  37. in.DeepCopyInto(out)
  38. return out
  39. }
  40. // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
  41. func (in *ExecCredential) DeepCopyObject() runtime.Object {
  42. if c := in.DeepCopy(); c != nil {
  43. return c
  44. }
  45. return nil
  46. }
  47. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  48. func (in *ExecCredentialSpec) DeepCopyInto(out *ExecCredentialSpec) {
  49. *out = *in
  50. if in.Response != nil {
  51. in, out := &in.Response, &out.Response
  52. *out = new(Response)
  53. (*in).DeepCopyInto(*out)
  54. }
  55. return
  56. }
  57. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
  58. func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
  59. if in == nil {
  60. return nil
  61. }
  62. out := new(ExecCredentialSpec)
  63. in.DeepCopyInto(out)
  64. return out
  65. }
  66. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  67. func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
  68. *out = *in
  69. if in.ExpirationTimestamp != nil {
  70. in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
  71. *out = (*in).DeepCopy()
  72. }
  73. return
  74. }
  75. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
  76. func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
  77. if in == nil {
  78. return nil
  79. }
  80. out := new(ExecCredentialStatus)
  81. in.DeepCopyInto(out)
  82. return out
  83. }
  84. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  85. func (in *Response) DeepCopyInto(out *Response) {
  86. *out = *in
  87. if in.Header != nil {
  88. in, out := &in.Header, &out.Header
  89. *out = make(map[string][]string, len(*in))
  90. for key, val := range *in {
  91. var outVal []string
  92. if val == nil {
  93. (*out)[key] = nil
  94. } else {
  95. in, out := &val, &outVal
  96. *out = make([]string, len(*in))
  97. copy(*out, *in)
  98. }
  99. (*out)[key] = outVal
  100. }
  101. }
  102. return
  103. }
  104. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Response.
  105. func (in *Response) DeepCopy() *Response {
  106. if in == nil {
  107. return nil
  108. }
  109. out := new(Response)
  110. in.DeepCopyInto(out)
  111. return out
  112. }