mirror of
https://github.com/rancher/rke.git
synced 2025-04-26 19:00:53 +00:00
generated types
This commit is contained in:
parent
d4d94b5a7a
commit
da26a5ab97
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user