generated files

This commit is contained in:
Michelle Au
2017-11-06 11:54:22 -08:00
parent b60bd37114
commit 86dd5e8d98
16 changed files with 255 additions and 77 deletions

View File

@@ -60,6 +60,15 @@ func (in *StorageClass) DeepCopyInto(out *StorageClass) {
**out = **in
}
}
if in.VolumeBindingMode != nil {
in, out := &in.VolumeBindingMode, &out.VolumeBindingMode
if *in == nil {
*out = nil
} else {
*out = new(VolumeBindingMode)
**out = **in
}
}
return
}