func()

in apis/gcpfirewall/v1/zz_generated.deepcopy.go [113:127]


func (in *GCPFirewallSpec) DeepCopyInto(out *GCPFirewallSpec) {
	*out = *in
	if in.Ports != nil {
		in, out := &in.Ports, &out.Ports
		*out = make([]ProtocolPort, len(*in))
		for i := range *in {
			(*in)[i].DeepCopyInto(&(*out)[i])
		}
	}
	if in.Ingress != nil {
		in, out := &in.Ingress, &out.Ingress
		*out = new(GCPFirewallIngress)
		(*in).DeepCopyInto(*out)
	}
}