@@ -76,6 +76,16 @@ func (in *Analyze) DeepCopyInto(out *Analyze) {
7676 * out = new (StatefulsetStatus )
7777 (* in ).DeepCopyInto (* out )
7878 }
79+ if in .ContainerRuntime != nil {
80+ in , out := & in .ContainerRuntime , & out .ContainerRuntime
81+ * out = new (ContainerRuntime )
82+ (* in ).DeepCopyInto (* out )
83+ }
84+ if in .Distribution != nil {
85+ in , out := & in .Distribution , & out .Distribution
86+ * out = new (Distribution )
87+ (* in ).DeepCopyInto (* out )
88+ }
7989}
8090
8191// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Analyze.
@@ -677,6 +687,33 @@ func (in *CollectorStatus) DeepCopy() *CollectorStatus {
677687 return out
678688}
679689
690+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
691+ func (in * ContainerRuntime ) DeepCopyInto (out * ContainerRuntime ) {
692+ * out = * in
693+ out .AnalyzeMeta = in .AnalyzeMeta
694+ if in .Outcomes != nil {
695+ in , out := & in .Outcomes , & out .Outcomes
696+ * out = make ([]* Outcome , len (* in ))
697+ for i := range * in {
698+ if (* in )[i ] != nil {
699+ in , out := & (* in )[i ], & (* out )[i ]
700+ * out = new (Outcome )
701+ (* in ).DeepCopyInto (* out )
702+ }
703+ }
704+ }
705+ }
706+
707+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerRuntime.
708+ func (in * ContainerRuntime ) DeepCopy () * ContainerRuntime {
709+ if in == nil {
710+ return nil
711+ }
712+ out := new (ContainerRuntime )
713+ in .DeepCopyInto (out )
714+ return out
715+ }
716+
680717// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
681718func (in * Copy ) DeepCopyInto (out * Copy ) {
682719 * out = * in
@@ -752,6 +789,33 @@ func (in *DeploymentStatus) DeepCopy() *DeploymentStatus {
752789 return out
753790}
754791
792+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
793+ func (in * Distribution ) DeepCopyInto (out * Distribution ) {
794+ * out = * in
795+ out .AnalyzeMeta = in .AnalyzeMeta
796+ if in .Outcomes != nil {
797+ in , out := & in .Outcomes , & out .Outcomes
798+ * out = make ([]* Outcome , len (* in ))
799+ for i := range * in {
800+ if (* in )[i ] != nil {
801+ in , out := & (* in )[i ], & (* out )[i ]
802+ * out = new (Outcome )
803+ (* in ).DeepCopyInto (* out )
804+ }
805+ }
806+ }
807+ }
808+
809+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Distribution.
810+ func (in * Distribution ) DeepCopy () * Distribution {
811+ if in == nil {
812+ return nil
813+ }
814+ out := new (Distribution )
815+ in .DeepCopyInto (out )
816+ return out
817+ }
818+
755819// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
756820func (in * Exec ) DeepCopyInto (out * Exec ) {
757821 * out = * in
0 commit comments