phase 2: generated items

This commit is contained in:
Khaled Henidak(Kal)
2019-08-28 16:11:46 +00:00
parent 313a5c5734
commit c27e0b029d
17 changed files with 957 additions and 845 deletions

View File

@@ -5127,6 +5127,11 @@ func (in *ServiceSpec) DeepCopyInto(out *ServiceSpec) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.IPFamily != nil {
in, out := &in.IPFamily, &out.IPFamily
*out = new(IPFamily)
**out = **in
}
return
}