GENERATED: all

This commit is contained in:
Clayton Coleman
2015-12-21 00:50:36 -05:00
parent 4a6935b31f
commit 3262d8efd8
16 changed files with 868 additions and 2365 deletions

View File

@@ -2778,6 +2778,11 @@ func deepCopy_runtime_RawExtension(in runtime.RawExtension, out *runtime.RawExte
} else {
out.RawJSON = nil
}
if newVal, err := c.DeepCopy(in.Object); err != nil {
return err
} else {
out.Object = newVal.(runtime.Object)
}
return nil
}