...
1
2
3
4
5
6 package v1alpha1
7
8 import (
9 v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
10 runtime "k8s.io/apimachinery/pkg/runtime"
11 )
12
13
14 func (in *NotStableConfigType) DeepCopyInto(out *NotStableConfigType) {
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 *NotStableConfigType) DeepCopy() *NotStableConfigType {
25 if in == nil {
26 return nil
27 }
28 out := new(NotStableConfigType)
29 in.DeepCopyInto(out)
30 return out
31 }
32
33
34 func (in *NotStableConfigType) DeepCopyObject() runtime.Object {
35 if c := in.DeepCopy(); c != nil {
36 return c
37 }
38 return nil
39 }
40
41
42 func (in *NotStableConfigTypeList) DeepCopyInto(out *NotStableConfigTypeList) {
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([]NotStableConfigType, len(*in))
49 for i := range *in {
50 (*in)[i].DeepCopyInto(&(*out)[i])
51 }
52 }
53 return
54 }
55
56
57 func (in *NotStableConfigTypeList) DeepCopy() *NotStableConfigTypeList {
58 if in == nil {
59 return nil
60 }
61 out := new(NotStableConfigTypeList)
62 in.DeepCopyInto(out)
63 return out
64 }
65
66
67 func (in *NotStableConfigTypeList) DeepCopyObject() runtime.Object {
68 if c := in.DeepCopy(); c != nil {
69 return c
70 }
71 return nil
72 }
73
74
75 func (in *NotStableConfigTypeSpec) DeepCopyInto(out *NotStableConfigTypeSpec) {
76 *out = *in
77 return
78 }
79
80
81 func (in *NotStableConfigTypeSpec) DeepCopy() *NotStableConfigTypeSpec {
82 if in == nil {
83 return nil
84 }
85 out := new(NotStableConfigTypeSpec)
86 in.DeepCopyInto(out)
87 return out
88 }
89
90
91 func (in *NotStableConfigTypeStatus) DeepCopyInto(out *NotStableConfigTypeStatus) {
92 *out = *in
93 if in.Conditions != nil {
94 in, out := &in.Conditions, &out.Conditions
95 *out = make([]v1.Condition, len(*in))
96 for i := range *in {
97 (*in)[i].DeepCopyInto(&(*out)[i])
98 }
99 }
100 return
101 }
102
103
104 func (in *NotStableConfigTypeStatus) DeepCopy() *NotStableConfigTypeStatus {
105 if in == nil {
106 return nil
107 }
108 out := new(NotStableConfigTypeStatus)
109 in.DeepCopyInto(out)
110 return out
111 }
112
View as plain text