@@ -26,6 +26,11 @@ func (in *Analyze) DeepCopyInto(out *Analyze) {
2626 * out = new (CustomResourceDefinition )
2727 (* in ).DeepCopyInto (* out )
2828 }
29+ if in .Ingress != nil {
30+ in , out := & in .Ingress , & out .Ingress
31+ * out = new (Ingress )
32+ (* in ).DeepCopyInto (* out )
33+ }
2934}
3035
3136// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Analyze.
@@ -544,6 +549,33 @@ func (in *CustomResourceDefinition) DeepCopy() *CustomResourceDefinition {
544549 return out
545550}
546551
552+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
553+ func (in * Ingress ) DeepCopyInto (out * Ingress ) {
554+ * out = * in
555+ out .AnalyzeMeta = in .AnalyzeMeta
556+ if in .Outcomes != nil {
557+ in , out := & in .Outcomes , & out .Outcomes
558+ * out = make ([]* Outcome , len (* in ))
559+ for i := range * in {
560+ if (* in )[i ] != nil {
561+ in , out := & (* in )[i ], & (* out )[i ]
562+ * out = new (Outcome )
563+ (* in ).DeepCopyInto (* out )
564+ }
565+ }
566+ }
567+ }
568+
569+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Ingress.
570+ func (in * Ingress ) DeepCopy () * Ingress {
571+ if in == nil {
572+ return nil
573+ }
574+ out := new (Ingress )
575+ in .DeepCopyInto (out )
576+ return out
577+ }
578+
547579// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
548580func (in * Outcome ) DeepCopyInto (out * Outcome ) {
549581 * out = * in
0 commit comments