1
0
mirror of https://github.com/rancher/types.git synced 2025-09-12 13:03:45 +00:00

Generated changes

This commit is contained in:
rajashree
2019-01-10 21:08:38 +05:30
committed by Alena Prokharchyk
parent 9c1fdca0fc
commit ccaf175432
6 changed files with 48 additions and 0 deletions

View File

@@ -2603,6 +2603,11 @@ func (in *GlobalDNSSpec) DeepCopyInto(out *GlobalDNSSpec) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Members != nil {
in, out := &in.Members, &out.Members
*out = make([]Member, len(*in))
copy(*out, *in)
}
return
}
@@ -3650,6 +3655,22 @@ func (in MapStringInterface) DeepCopyInto(out *MapStringInterface) {
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Member) DeepCopyInto(out *Member) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Member.
func (in *Member) DeepCopy() *Member {
if in == nil {
return nil
}
out := new(Member)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MetadataOpenstackOpts) DeepCopyInto(out *MetadataOpenstackOpts) {
*out = *in
@@ -3940,6 +3961,11 @@ func (in *MultiClusterAppSpec) DeepCopyInto(out *MultiClusterAppSpec) {
*out = make([]Target, len(*in))
copy(*out, *in)
}
if in.Members != nil {
in, out := &in.Members, &out.Members
*out = make([]Member, len(*in))
copy(*out, *in)
}
return
}