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