zz_generated.deepcopy.go 3.6 KB

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