//go:build !ignore_autogenerated // +build !ignore_autogenerated // Code generated by deepcopy-gen. DO NOT EDIT. package ovirt // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *CPU) DeepCopyInto(out *CPU) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CPU. func (in *CPU) DeepCopy() *CPU { if in == nil { return nil } out := new(CPU) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Disk) DeepCopyInto(out *Disk) { *out = *in return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Disk. func (in *Disk) DeepCopy() *Disk { if in == nil { return nil } out := new(Disk) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *MachinePool) DeepCopyInto(out *MachinePool) { *out = *in if in.CPU != nil { in, out := &in.CPU, &out.CPU *out = new(CPU) **out = **in } if in.OSDisk != nil { in, out := &in.OSDisk, &out.OSDisk *out = new(Disk) **out = **in } return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MachinePool. func (in *MachinePool) DeepCopy() *MachinePool { if in == nil { return nil } out := new(MachinePool) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Platform) DeepCopyInto(out *Platform) { *out = *in out.CredentialsSecretRef = in.CredentialsSecretRef out.CertificatesSecretRef = in.CertificatesSecretRef return } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Platform. func (in *Platform) DeepCopy() *Platform { if in == nil { return nil } out := new(Platform) in.DeepCopyInto(out) return out }