...
1
2
3
4
5
6 package v1
7
8 import (
9 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
10 runtime "k8s.io/apimachinery/pkg/runtime"
11 )
12
13
14 func (in *CloudPrivateIPConfig) DeepCopyInto(out *CloudPrivateIPConfig) {
15 *out = *in
16 out.TypeMeta = in.TypeMeta
17 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
18 out.Spec = in.Spec
19 in.Status.DeepCopyInto(&out.Status)
20 return
21 }
22
23
24 func (in *CloudPrivateIPConfig) DeepCopy() *CloudPrivateIPConfig {
25 if in == nil {
26 return nil
27 }
28 out := new(CloudPrivateIPConfig)
29 in.DeepCopyInto(out)
30 return out
31 }
32
33
34 func (in *CloudPrivateIPConfig) DeepCopyObject() runtime.Object {
35 if c := in.DeepCopy(); c != nil {
36 return c
37 }
38 return nil
39 }
40
41
42 func (in *CloudPrivateIPConfigList) DeepCopyInto(out *CloudPrivateIPConfigList) {
43 *out = *in
44 out.TypeMeta = in.TypeMeta
45 in.ListMeta.DeepCopyInto(&out.ListMeta)
46 if in.Items != nil {
47 in, out := &in.Items, &out.Items
48 *out = make([]CloudPrivateIPConfig, len(*in))
49 for i := range *in {
50 (*in)[i].DeepCopyInto(&(*out)[i])
51 }
52 }
53 return
54 }
55
56
57 func (in *CloudPrivateIPConfigList) DeepCopy() *CloudPrivateIPConfigList {
58 if in == nil {
59 return nil
60 }
61 out := new(CloudPrivateIPConfigList)
62 in.DeepCopyInto(out)
63 return out
64 }
65
66
67 func (in *CloudPrivateIPConfigList) DeepCopyObject() runtime.Object {
68 if c := in.DeepCopy(); c != nil {
69 return c
70 }
71 return nil
72 }
73
74
75 func (in *CloudPrivateIPConfigSpec) DeepCopyInto(out *CloudPrivateIPConfigSpec) {
76 *out = *in
77 return
78 }
79
80
81 func (in *CloudPrivateIPConfigSpec) DeepCopy() *CloudPrivateIPConfigSpec {
82 if in == nil {
83 return nil
84 }
85 out := new(CloudPrivateIPConfigSpec)
86 in.DeepCopyInto(out)
87 return out
88 }
89
90
91 func (in *CloudPrivateIPConfigStatus) DeepCopyInto(out *CloudPrivateIPConfigStatus) {
92 *out = *in
93 if in.Conditions != nil {
94 in, out := &in.Conditions, &out.Conditions
95 *out = make([]metav1.Condition, len(*in))
96 for i := range *in {
97 (*in)[i].DeepCopyInto(&(*out)[i])
98 }
99 }
100 return
101 }
102
103
104 func (in *CloudPrivateIPConfigStatus) DeepCopy() *CloudPrivateIPConfigStatus {
105 if in == nil {
106 return nil
107 }
108 out := new(CloudPrivateIPConfigStatus)
109 in.DeepCopyInto(out)
110 return out
111 }
112
View as plain text