@@ -358,6 +358,11 @@ func (in *Collect) DeepCopyInto(out *Collect) {
358358 * out = new (Copy )
359359 (* in ).DeepCopyInto (* out )
360360 }
361+ if in .HTTP != nil {
362+ in , out := & in .HTTP , & out .HTTP
363+ * out = new (HTTP )
364+ (* in ).DeepCopyInto (* out )
365+ }
361366}
362367
363368// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Collect.
@@ -621,6 +626,58 @@ func (in *CustomResourceDefinition) DeepCopy() *CustomResourceDefinition {
621626 return out
622627}
623628
629+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
630+ func (in * Get ) DeepCopyInto (out * Get ) {
631+ * out = * in
632+ if in .Headers != nil {
633+ in , out := & in .Headers , & out .Headers
634+ * out = make (map [string ]string , len (* in ))
635+ for key , val := range * in {
636+ (* out )[key ] = val
637+ }
638+ }
639+ }
640+
641+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Get.
642+ func (in * Get ) DeepCopy () * Get {
643+ if in == nil {
644+ return nil
645+ }
646+ out := new (Get )
647+ in .DeepCopyInto (out )
648+ return out
649+ }
650+
651+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
652+ func (in * HTTP ) DeepCopyInto (out * HTTP ) {
653+ * out = * in
654+ if in .Get != nil {
655+ in , out := & in .Get , & out .Get
656+ * out = new (Get )
657+ (* in ).DeepCopyInto (* out )
658+ }
659+ if in .Post != nil {
660+ in , out := & in .Post , & out .Post
661+ * out = new (Post )
662+ (* in ).DeepCopyInto (* out )
663+ }
664+ if in .Put != nil {
665+ in , out := & in .Put , & out .Put
666+ * out = new (Put )
667+ (* in ).DeepCopyInto (* out )
668+ }
669+ }
670+
671+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTP.
672+ func (in * HTTP ) DeepCopy () * HTTP {
673+ if in == nil {
674+ return nil
675+ }
676+ out := new (HTTP )
677+ in .DeepCopyInto (out )
678+ return out
679+ }
680+
624681// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
625682func (in * Ingress ) DeepCopyInto (out * Ingress ) {
626683 * out = * in
@@ -718,6 +775,28 @@ func (in *Outcome) DeepCopy() *Outcome {
718775 return out
719776}
720777
778+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
779+ func (in * Post ) DeepCopyInto (out * Post ) {
780+ * out = * in
781+ if in .Headers != nil {
782+ in , out := & in .Headers , & out .Headers
783+ * out = make (map [string ]string , len (* in ))
784+ for key , val := range * in {
785+ (* out )[key ] = val
786+ }
787+ }
788+ }
789+
790+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Post.
791+ func (in * Post ) DeepCopy () * Post {
792+ if in == nil {
793+ return nil
794+ }
795+ out := new (Post )
796+ in .DeepCopyInto (out )
797+ return out
798+ }
799+
721800// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
722801func (in * Preflight ) DeepCopyInto (out * Preflight ) {
723802 * out = * in
@@ -964,6 +1043,28 @@ func (in *PreflightStatus) DeepCopy() *PreflightStatus {
9641043 return out
9651044}
9661045
1046+ // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1047+ func (in * Put ) DeepCopyInto (out * Put ) {
1048+ * out = * in
1049+ if in .Headers != nil {
1050+ in , out := & in .Headers , & out .Headers
1051+ * out = make (map [string ]string , len (* in ))
1052+ for key , val := range * in {
1053+ (* out )[key ] = val
1054+ }
1055+ }
1056+ }
1057+
1058+ // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Put.
1059+ func (in * Put ) DeepCopy () * Put {
1060+ if in == nil {
1061+ return nil
1062+ }
1063+ out := new (Put )
1064+ in .DeepCopyInto (out )
1065+ return out
1066+ }
1067+
9671068// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
9681069func (in * Run ) DeepCopyInto (out * Run ) {
9691070 * out = * in
0 commit comments