Generated code for ResourceQuota API change

This commit is contained in:
derekwaynecarr
2016-02-22 11:13:32 -05:00
parent 55e3824272
commit d02c8dcd2e
9 changed files with 506 additions and 42 deletions

View File

@@ -2455,6 +2455,15 @@ func DeepCopy_api_ResourceQuotaSpec(in ResourceQuotaSpec, out *ResourceQuotaSpec
} else {
out.Hard = nil
}
if in.Scopes != nil {
in, out := in.Scopes, &out.Scopes
*out = make([]ResourceQuotaScope, len(in))
for i := range in {
(*out)[i] = in[i]
}
} else {
out.Scopes = nil
}
return nil
}