in pkg/apis/v1alpha2/zz_generated.deepcopy.go [89:128]
func (in *AKSNodeClassSpec) DeepCopyInto(out *AKSNodeClassSpec) {
*out = *in
if in.VNETSubnetID != nil {
in, out := &in.VNETSubnetID, &out.VNETSubnetID
*out = new(string)
**out = **in
}
if in.OSDiskSizeGB != nil {
in, out := &in.OSDiskSizeGB, &out.OSDiskSizeGB
*out = new(int32)
**out = **in
}
if in.ImageID != nil {
in, out := &in.ImageID, &out.ImageID
*out = new(string)
**out = **in
}
if in.ImageFamily != nil {
in, out := &in.ImageFamily, &out.ImageFamily
*out = new(string)
**out = **in
}
if in.Tags != nil {
in, out := &in.Tags, &out.Tags
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Kubelet != nil {
in, out := &in.Kubelet, &out.Kubelet
*out = new(KubeletConfiguration)
(*in).DeepCopyInto(*out)
}
if in.MaxPods != nil {
in, out := &in.MaxPods, &out.MaxPods
*out = new(int32)
**out = **in
}
}