1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-11 20:11:13 +00:00

go generate

This commit is contained in:
siva-muni
2022-12-28 12:13:51 +05:30
parent 3a386cc60c
commit d9e0d2ca0a
3 changed files with 1263 additions and 31 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -72,6 +72,19 @@ func (in *AciNetworkProvider) DeepCopyInto(out *AciNetworkProvider) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.ServiceGraphEndpointAddServices != nil {
in, out := &in.ServiceGraphEndpointAddServices, &out.ServiceGraphEndpointAddServices
*out = make([]map[string]string, len(*in))
for i := range *in {
if (*in)[i] != nil {
in, out := &(*in)[i], &(*out)[i]
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
}
return
}