diff --git a/types/zz_generated_deepcopy.go b/types/zz_generated_deepcopy.go index 5a923a2a..93a4e1e6 100644 --- a/types/zz_generated_deepcopy.go +++ b/types/zz_generated_deepcopy.go @@ -554,6 +554,22 @@ func (in *DiskVsphereOpts) DeepCopy() *DiskVsphereOpts { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ECRCredentialPlugin) DeepCopyInto(out *ECRCredentialPlugin) { + *out = *in + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ECRCredentialPlugin. +func (in *ECRCredentialPlugin) DeepCopy() *ECRCredentialPlugin { + if in == nil { + return nil + } + out := new(ECRCredentialPlugin) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ETCDService) DeepCopyInto(out *ETCDService) { *out = *in @@ -1354,12 +1370,10 @@ func (in *PortCheck) DeepCopy() *PortCheck { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *PrivateRegistry) DeepCopyInto(out *PrivateRegistry) { *out = *in - if in.CredentialPlugin != nil { - in, out := &in.CredentialPlugin, &out.CredentialPlugin - *out = make(map[string]string, len(*in)) - for key, val := range *in { - (*out)[key] = val - } + if in.ECRCredentialPlugin != nil { + in, out := &in.ECRCredentialPlugin, &out.ECRCredentialPlugin + *out = new(ECRCredentialPlugin) + **out = **in } return }