zz_generated.deepcopy.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 *ExecCredential) DeepCopyInto(out *ExecCredential) {
  21. *out = *in
  22. out.TypeMeta = in.TypeMeta
  23. out.Spec = in.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. return
  51. }
  52. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialSpec.
  53. func (in *ExecCredentialSpec) DeepCopy() *ExecCredentialSpec {
  54. if in == nil {
  55. return nil
  56. }
  57. out := new(ExecCredentialSpec)
  58. in.DeepCopyInto(out)
  59. return out
  60. }
  61. // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
  62. func (in *ExecCredentialStatus) DeepCopyInto(out *ExecCredentialStatus) {
  63. *out = *in
  64. if in.ExpirationTimestamp != nil {
  65. in, out := &in.ExpirationTimestamp, &out.ExpirationTimestamp
  66. *out = (*in).DeepCopy()
  67. }
  68. return
  69. }
  70. // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecCredentialStatus.
  71. func (in *ExecCredentialStatus) DeepCopy() *ExecCredentialStatus {
  72. if in == nil {
  73. return nil
  74. }
  75. out := new(ExecCredentialStatus)
  76. in.DeepCopyInto(out)
  77. return out
  78. }