@@ -11,6 +11,16 @@ import (
1111// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1212func (in * Analyze ) DeepCopyInto (out * Analyze ) {
1313 * out = * in
14+ if in .ClusterVersion != nil {
15+ in , out := & in .ClusterVersion , & out .ClusterVersion
16+ * out = new (ClusterVersion )
17+ (* in ).DeepCopyInto (* out )
18+ }
19+ if in .StorageClass != nil {
20+ in , out := & in .StorageClass , & out .StorageClass
21+ * out = new (StorageClass )
22+ (* in ).DeepCopyInto (* out )
23+ }
1424}
1525
1626// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Analyze.
@@ -231,6 +241,32 @@ func (in *ClusterResources) DeepCopy() *ClusterResources {
231241 return out
232242}
233243
244+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
245+ func (in * ClusterVersion ) DeepCopyInto (out * ClusterVersion ) {
246+ * out = * in
247+ if in .Outcomes != nil {
248+ in , out := & in .Outcomes , & out .Outcomes
249+ * out = make ([]* Outcome , len (* in ))
250+ for i := range * in {
251+ if (* in )[i ] != nil {
252+ in , out := & (* in )[i ], & (* out )[i ]
253+ * out = new (Outcome )
254+ (* in ).DeepCopyInto (* out )
255+ }
256+ }
257+ }
258+ }
259+
260+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterVersion.
261+ func (in * ClusterVersion ) DeepCopy () * ClusterVersion {
262+ if in == nil {
263+ return nil
264+ }
265+ out := new (ClusterVersion )
266+ in .DeepCopyInto (out )
267+ return out
268+ }
269+
234270// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
235271func (in * Collect ) DeepCopyInto (out * Collect ) {
236272 * out = * in
@@ -460,6 +496,36 @@ func (in *CollectorStatus) DeepCopy() *CollectorStatus {
460496 return out
461497}
462498
499+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
500+ func (in * Outcome ) DeepCopyInto (out * Outcome ) {
501+ * out = * in
502+ if in .Fail != nil {
503+ in , out := & in .Fail , & out .Fail
504+ * out = new (SingleOutcome )
505+ * * out = * * in
506+ }
507+ if in .Warn != nil {
508+ in , out := & in .Warn , & out .Warn
509+ * out = new (SingleOutcome )
510+ * * out = * * in
511+ }
512+ if in .Pass != nil {
513+ in , out := & in .Pass , & out .Pass
514+ * out = new (SingleOutcome )
515+ * * out = * * in
516+ }
517+ }
518+
519+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Outcome.
520+ func (in * Outcome ) DeepCopy () * Outcome {
521+ if in == nil {
522+ return nil
523+ }
524+ out := new (Outcome )
525+ in .DeepCopyInto (out )
526+ return out
527+ }
528+
463529// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
464530func (in * Preflight ) DeepCopyInto (out * Preflight ) {
465531 * out = * in
@@ -675,7 +741,7 @@ func (in *PreflightSpec) DeepCopyInto(out *PreflightSpec) {
675741 if (* in )[i ] != nil {
676742 in , out := & (* in )[i ], & (* out )[i ]
677743 * out = new (Analyze )
678- * * out = * * in
744+ ( * in ). DeepCopyInto ( * out )
679745 }
680746 }
681747 }
@@ -705,3 +771,44 @@ func (in *PreflightStatus) DeepCopy() *PreflightStatus {
705771 in .DeepCopyInto (out )
706772 return out
707773}
774+
775+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
776+ func (in * SingleOutcome ) DeepCopyInto (out * SingleOutcome ) {
777+ * out = * in
778+ }
779+
780+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SingleOutcome.
781+ func (in * SingleOutcome ) DeepCopy () * SingleOutcome {
782+ if in == nil {
783+ return nil
784+ }
785+ out := new (SingleOutcome )
786+ in .DeepCopyInto (out )
787+ return out
788+ }
789+
790+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
791+ func (in * StorageClass ) DeepCopyInto (out * StorageClass ) {
792+ * out = * in
793+ if in .Outcome != nil {
794+ in , out := & in .Outcome , & out .Outcome
795+ * out = make ([]* Outcome , len (* in ))
796+ for i := range * in {
797+ if (* in )[i ] != nil {
798+ in , out := & (* in )[i ], & (* out )[i ]
799+ * out = new (Outcome )
800+ (* in ).DeepCopyInto (* out )
801+ }
802+ }
803+ }
804+ }
805+
806+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageClass.
807+ func (in * StorageClass ) DeepCopy () * StorageClass {
808+ if in == nil {
809+ return nil
810+ }
811+ out := new (StorageClass )
812+ in .DeepCopyInto (out )
813+ return out
814+ }
0 commit comments