//go:build !ignore_autogenerated // +build !ignore_autogenerated // Code generated by deepcopy-gen. DO NOT EDIT. package v1 import ( runtime "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSRecord) DeepCopyInto(out *DNSRecord) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) in.Status.DeepCopyInto(&out.Status) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSRecord. func (in *DNSRecord) DeepCopy() *DNSRecord { if in == nil { return nil } out := new(DNSRecord) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *DNSRecord) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSRecordList) DeepCopyInto(out *DNSRecordList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]DNSRecord, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSRecordList. func (in *DNSRecordList) DeepCopy() *DNSRecordList { if in == nil { return nil } out := new(DNSRecordList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *DNSRecordList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSRecordSpec) DeepCopyInto(out *DNSRecordSpec) { *out = *in if in.Targets != nil { in, out := &in.Targets, &out.Targets *out = make([]string, len(*in)) copy(*out, *in) } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSRecordSpec. func (in *DNSRecordSpec) DeepCopy() *DNSRecordSpec { if in == nil { return nil } out := new(DNSRecordSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSRecordStatus) DeepCopyInto(out *DNSRecordStatus) { *out = *in if in.Zones != nil { in, out := &in.Zones, &out.Zones *out = make([]DNSZoneStatus, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSRecordStatus. func (in *DNSRecordStatus) DeepCopy() *DNSRecordStatus { if in == nil { return nil } out := new(DNSRecordStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSZoneCondition) DeepCopyInto(out *DNSZoneCondition) { *out = *in in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime) return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSZoneCondition. func (in *DNSZoneCondition) DeepCopy() *DNSZoneCondition { if in == nil { return nil } out := new(DNSZoneCondition) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *DNSZoneStatus) DeepCopyInto(out *DNSZoneStatus) { *out = *in in.DNSZone.DeepCopyInto(&out.DNSZone) if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]DNSZoneCondition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSZoneStatus. func (in *DNSZoneStatus) DeepCopy() *DNSZoneStatus { if in == nil { return nil } out := new(DNSZoneStatus) in.DeepCopyInto(out) return out }